/* ===== ON.STRATEGY — SHARED STYLESHEET v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a18;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --ink:        #1a1a18;
  --green:      #1e3a2f;
  --green-mid:  #2c5040;
  --green-warm: #3a6350;
  --green-pale: #edf2ef;
  --green-line: #c4d4cb;
  --gold:       #b8963c;
  --gold-light: #d4b05a;
  --cream:      #fafaf8;
  --white:      #ffffff;
  --grey-1:     #f2f2f0;
  --grey-2:     #e0e0dc;
  --grey-3:     #a8a8a0;
  --grey-4:     #6a6a62;
  --max-w:      1200px;
  --t:          0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-2);
  transition: var(--t);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: 0.85rem; font-weight: 500; color: var(--grey-4);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color var(--t);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--green); }
.nav-cta {
  font-size: 0.82rem; font-weight: 600; color: var(--white) !important;
  background: var(--green); padding: 9px 20px; border-radius: 2px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background var(--t) !important;
}
.nav-cta:hover { background: var(--green-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: var(--t); }

/* ===== NAV DROPDOWNS ===== */
.nav-menu li.has-dropdown { position: relative; }
.dropdown-arrow {
  display: inline-block; width: 8px; height: 8px;
  vertical-align: middle; margin-left: 3px;
  transition: transform 0.2s ease;
}
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%;
  background: #fff; border: 1px solid #e8e4dc; border-radius: 6px;
  padding: 8px 0; min-width: 230px; list-style: none;
  box-shadow: 0 8px 28px rgba(30,58,47,0.12);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 300;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 6px; background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav-dropdown li a {
  display: block; padding: 9px 18px;
  font-size: 0.80rem; font-weight: 500; color: #555;
  text-decoration: none; transition: color 0.15s, background 0.15s;
  letter-spacing: 0; white-space: nowrap;
}
.nav-dropdown li a:hover { color: #1e3a2f; background: #f3f0e8; }
.nav-dropdown li:first-child a { border-radius: 6px 6px 0 0; }
.nav-dropdown li:last-child a { border-radius: 0 0 6px 6px; }
.nav-dropdown .dd-divider {
  height: 1px; background: #ede9e0; margin: 6px 12px;
}


/* ===== FLOATING RDV BUTTON ===== */
.float-rdv {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  background: var(--gold); color: var(--green);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; padding: 14px 22px; border-radius: 2px;
  box-shadow: 0 8px 32px rgba(184,150,60,0.35);
  transition: var(--t); display: flex; align-items: center; gap: 10px;
}
.float-rdv:hover { background: var(--gold-light); transform: translateY(-2px); }
.float-rdv svg { width: 16px; height: 16px; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; background: var(--green);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 68px; position: relative; overflow: hidden;
}
.hero-bg-geo {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  overflow: hidden; pointer-events: none;
}
.hero-bg-geo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--green) 30%, transparent 70%);
  z-index: 1;
}
.hero-bg-lines {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent-ring {
  position: absolute; bottom: -20%; right: -5%;
  width: 640px; height: 640px; border-radius: 50%;
  border: 1px solid rgba(184,150,60,0.2);
  pointer-events: none;
}
.hero-accent-ring::before {
  content: ''; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(184,150,60,0.15);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 40px 80px;
  width: 100%; display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: end;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--white); margin-bottom: 32px;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 480px; line-height: 1.8; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); background: var(--gold); padding: 15px 28px;
  text-decoration: none; border-radius: 2px;
  transition: var(--t); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-hero-ghost {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); background: transparent;
  border: 1px solid rgba(255,255,255,0.25); padding: 15px 28px;
  text-decoration: none; border-radius: 2px; transition: var(--t);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* Hero right panel (agrément card) */
.hero-right-panel {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.hrp-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.hrp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1.2;
}
.hrp-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 4px;
}
.hrp-years {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--gold); margin-top: 4px;
}
.hrp-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.hrp-link:hover { color: var(--gold); border-color: var(--gold); }

.hero-credentials {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-cred-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.hci-line {
  width: 2px; height: 36px; background: var(--gold); flex-shrink: 0; margin-top: 3px;
}
.hci-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.hci-value {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.4;
}

.hero-stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.15);
}
.hero-stats-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 28px 0; border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 32px; margin-right: 32px;
}
.hero-stat:last-child { border-right: none; }
.hs-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.02em; line-height: 1;
}
.hs-l { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.04em; line-height: 1.4; }

/* ===== SECTION BASICS ===== */
section { padding: 68px 0; }
.overline {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.overline::after { content: ''; flex: 0 0 32px; height: 1px; background: var(--green); }
.section-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1.1; margin-bottom: 20px;
}
.section-h em { font-style: italic; color: var(--green); }
.section-p { font-size: 1rem; color: var(--grey-4); max-width: 540px; line-height: 1.75; }

/* ===== SERVICES ===== */
#services { background: var(--cream); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.services-intro { font-size: 0.95rem; color: var(--grey-4); line-height: 1.8; }
.svc-list { display: flex; flex-direction: column; }
.svc-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: start; gap: 32px;
  padding: 36px 0; border-bottom: 1px solid var(--grey-2);
  transition: var(--t); cursor: default;
  position: relative;
}
.svc-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform var(--t);
}
.svc-item:hover::before { transform: scaleY(1); }
.svc-item:hover { padding-left: 20px; }
.svc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 800; color: var(--grey-2);
  line-height: 1; margin-top: 6px;
  transition: color var(--t);
}
.svc-item:hover .svc-num { color: var(--gold); }
.svc-content {}
.svc-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.svc-title {
  font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.3;
}
.svc-desc { font-size: 0.875rem; color: var(--grey-4); line-height: 1.7; max-width: 500px; }
.svc-icon-wrap {
  width: 48px; height: 48px; border: 1px solid var(--grey-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--t);
}
.svc-item:hover .svc-icon-wrap { border-color: var(--green); background: var(--green); }
.svc-icon-wrap svg { width: 20px; height: 20px; stroke: var(--grey-3); transition: var(--t); }
.svc-item:hover .svc-icon-wrap svg { stroke: var(--white); }
.svc-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); text-decoration: none; margin-top: 16px; display: inline-flex;
  align-items: center; gap: 6px; transition: gap var(--t);
}
.svc-link:hover { gap: 10px; }

/* ===== EXPERTISE ===== */
#expertise { background: var(--white); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.expertise-visual {
  position: relative; background: var(--green); border-radius: 0;
  padding: 52px; overflow: hidden;
}
.expertise-visual::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(184,150,60,0.2);
}
.ev-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-style: italic; font-weight: 700;
  color: var(--white); line-height: 1.6; margin-bottom: 36px; position: relative; z-index: 1;
}
.ev-quote::before {
  content: '"'; display: block;
  font-size: 5rem; color: var(--gold); line-height: 0.8;
  margin-bottom: 12px; font-style: normal;
}
.ev-author {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
}
.ev-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 800; color: var(--green); flex-shrink: 0;
}
.ev-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.ev-title { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; line-height: 1.4; }
.ev-cert {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(184,150,60,0.12); border-left: 2px solid var(--gold);
  position: relative; z-index: 1;
}
.ev-cert-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ev-cert-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

.expertise-points { display: flex; flex-direction: column; gap: 0; }
.exp-point {
  padding: 28px 0; border-bottom: 1px solid var(--grey-2);
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start;
}
.ep-icon {
  width: 52px; height: 52px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ep-icon svg { width: 22px; height: 22px; stroke: var(--green); }
.ep-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.ep-desc { font-size: 0.85rem; color: var(--grey-4); line-height: 1.65; }

/* ===== PROCESS ===== */
#process { background: var(--ink); }
#process .overline { color: var(--gold); }
#process .overline::after { background: var(--gold); }
#process .section-h { color: var(--white); }
#process .section-h em { color: var(--gold-light); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; border-top: 1px solid rgba(255,255,255,0.1);
}
.proc-step {
  padding: 40px 36px 40px 0; border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 36px; margin-right: 0;
  position: relative;
}
.proc-step:first-child { padding-left: 0; }
.proc-step:last-child { border-right: none; }
.proc-step + .proc-step { padding-left: 36px; }
.ps-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem; font-weight: 800; color: rgba(255,255,255,0.06);
  line-height: 1; margin-bottom: 20px; display: block;
}
.ps-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.ps-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.ps-dot {
  position: absolute; top: -1px; left: 0;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.proc-step + .proc-step .ps-dot { left: 36px; }

/* ===== CREDENTIALS ===== */
#credentials { background: var(--cream); }
.cred-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.cred-featured {
  background: var(--green); padding: 48px; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 360px;
}
.cf-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.cf-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 16px; }
.cf-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.cf-years { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: baseline; gap: 8px; }
.cf-year-n { font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.cf-year-l { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.cred-list { display: flex; flex-direction: column; gap: 0; }
.cred-item {
  display: flex; align-items: center; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--grey-2);
}
.ci-icon { width: 44px; height: 44px; background: var(--white); border: 1px solid var(--grey-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 20px; height: 20px; stroke: var(--green); }
.ci-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.ci-org { font-size: 0.75rem; color: var(--grey-3); margin-top: 2px; }

/* ===== CONTACT ===== */
#contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { padding-right: 40px; border-right: 1px solid var(--grey-2); }
.contact-perks { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.cp { display: flex; gap: 16px; align-items: flex-start; }
.cp-icon { width: 40px; height: 40px; border: 1px solid var(--grey-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cp-icon svg { width: 18px; height: 18px; stroke: var(--green); }
.cp-title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.cp-desc { font-size: 0.78rem; color: var(--grey-3); margin-top: 2px; line-height: 1.5; }
.contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.c-link {
  display: flex; align-items: center; gap: 12px; font-size: 0.875rem; font-weight: 500;
  color: var(--ink); text-decoration: none; padding: 14px 18px;
  border: 1px solid var(--grey-2); transition: var(--t);
}
.c-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.c-link.calendly { background: var(--green); color: var(--white); border-color: var(--green); }
.c-link.calendly:hover { background: var(--green-mid); }
.c-link.linkedin svg { stroke: #0077B5; }
.c-link:not(.calendly):hover { border-color: var(--green); color: var(--green); }

.contact-form {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-4); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; border: 1px solid var(--grey-2); background: var(--white);
  padding: 12px 16px; font-size: 0.9rem; color: var(--ink);
  font-family: inherit; outline: none; border-radius: 0;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-3); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a6a62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.btn-submit {
  width: 100%; background: var(--green); color: var(--white);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px; border: none; cursor: pointer; font-family: inherit;
  transition: background var(--t); border-radius: 0; margin-top: 4px;
}
.btn-submit:hover { background: var(--green-mid); }
#form-success { display: none; text-align: center; padding: 40px 0; }
#form-success .fs-icon { width: 48px; height: 48px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
#form-success .fs-icon svg { width: 24px; height: 24px; stroke: var(--green); }
#form-success h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
#form-success p { font-size: 0.875rem; color: var(--grey-4); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: rgba(255,255,255,0.45);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; margin: 20px 0 24px; max-width: 260px; }
.footer-col-h {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--t); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; }
.footer-linkedin {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color var(--t);
}
.footer-linkedin:hover { color: #0a66c2; }
.footer-linkedin svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.footer-linkedin-icon-only {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); text-decoration: none;
  color: rgba(255,255,255,0.55); transition: background var(--t), color var(--t);
}
.footer-linkedin-icon-only:hover { background: #0a66c2; color: #fff; }
.footer-linkedin-icon-only svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== SCROLLING TICKER ===== */
.ticker-wrap {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.18);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  animation: ticker-scroll 36s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 18px 56px; border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap; flex-shrink: 0; gap: 5px;
}
.ticker-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.02em; line-height: 1;
}
.ticker-sep { display: none; }
.ticker-l {
  font-size: 0.65rem; color: rgba(255,255,255,0.5);
  max-width: none; line-height: 1.3; letter-spacing: 0.07em; text-transform: uppercase;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SHARED BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer; padding: 14px 26px;
  transition: var(--t); border-radius: 0; font-family: inherit;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); }
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ===== SHARED ===== */
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--ink); }
.text-white { color: var(--white); }
.cta-strip { background: var(--gold); padding: 48px 0; }
.cta-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-strip-text { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 800; color: var(--green); }
.cta-strip-sub { font-size: 0.875rem; color: rgba(30,58,47,0.65); margin-top: 4px; }

/* Page hero (inner pages) */
.page-hero { background: var(--green); padding: 110px 0 56px; }
.ph-overline { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ph-overline::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.ph-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px; }
.ph-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.75; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* Info box */
.info-box { padding: 20px 24px; margin: 20px 0; border-left: 3px solid; }
.info-box.green { background: var(--green-pale); border-color: var(--green); }
.info-box.gold { background: rgba(184,150,60,0.08); border-color: var(--gold); }
.info-box p { font-size: 0.875rem; color: var(--grey-4); line-height: 1.7; }
.info-box strong { color: var(--ink); }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th { background: var(--green); color: var(--white); padding: 12px 18px; text-align: left; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.data-table td { padding: 12px 18px; border-bottom: 1px solid var(--grey-2); color: var(--ink); vertical-align: top; }
.data-table tr:hover td { background: var(--cream); }

/* Tags/pills */
.tag { display: inline-flex; align-items: center; padding: 3px 10px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.tag-green { background: var(--green-pale); color: var(--green); }
.tag-gold { background: rgba(184,150,60,0.1); color: var(--gold); }
.tag-grey { background: var(--grey-1); color: var(--grey-4); }
.tag-blue { background: rgba(59,130,246,0.08); color: #1d4ed8; }

/* Animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-credentials { display: none; }
  .hero-right-panel { display: none; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .cred-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { border-right: none; padding-right: 0; border-bottom: 1px solid var(--grey-2); padding-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0; background: var(--white);
    padding: 20px 24px; gap: 0;
    border-bottom: 1px solid var(--grey-2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .nav-menu.open li a { display: block; padding: 13px 0; border-bottom: 1px solid var(--grey-1); font-size: 1rem; }
  .hamburger { display: flex; }
  .hero-inner { padding: 48px 20px 48px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .svc-item { grid-template-columns: 40px 1fr; }
  .svc-icon-wrap { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-rdv { bottom: 16px; right: 16px; font-size: 0.75rem; padding: 12px 16px; }
}
