/* ════════════════════════════════════════════════
   1. RESET & TOKENS
   ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Couleurs ──────────────────────────────── */
  --dark:  #0B1A11;
  --block: #0E2318;
  --terra: #E34A1C;
  --teal:  #277A6E;
  --cream: #EDE8D9;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.52);
  --border: rgba(255,255,255,0.10);

  /* ── Couleurs accent ───────────────────────── */
  --terra-hover: #C03810;
  --teal-hover:  #1C5C52;
  --border-strong: rgba(255,255,255,0.18);
  --border-dark:   rgba(11,26,17,0.10);

  /* ── Échelle typographique ─────────────────── */
  --t-display: clamp(48px, 6vw, 88px);   /* hero title */
  --t-h2:      clamp(36px, 4vw, 60px);   /* section titles, contact */
  --t-h3:      28px;                      /* card titles (services, pricing, process) */
  --t-xl:      20px;                      /* hero-sub, contact-sub */
  --t-body:    16px;                      /* corps standard */
  --t-small:   15px;                      /* secondaire (stat-label, features) */
  --t-label:   12px;                      /* eyebrows, nav, boutons, tags */
  --t-micro:   11px;                      /* footer, ci-label */

  /* ── Espacement ────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  40px;
  --space-8:  48px;
  --space-9:  56px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 100px;
  --space-13: 120px;

  /* ── Transitions ───────────────────────────── */
  --t-fast: 0.2s;
  --t-base: 0.3s;
  --t-slow: 0.4s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Z-index scale ─────────────────────────── */
  --z-nav:   100;
  --z-modal: 1000;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--white); overflow-x: clip; touch-action: pan-y pinch-zoom; }


/* ════════════════════════════════════════════════
   2. ANIMATIONS — initial states
   ════════════════════════════════════════════════ */
.line-wrap { display: block; overflow: hidden; line-height: 1.05; }
.line      { display: block; will-change: transform; }


/* ════════════════════════════════════════════════
   3. NAV
   ════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-11);
  background: rgba(11,26,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-wrap {
  display: flex; align-items: baseline; gap: 0;
}
/* ── Logo header : picto spark qui tourne en boucle ── */
.nav-logo-wrap::before {
  content: '';
  flex: 0 0 auto; align-self: center; width: 26px; height: 26px; margin-right: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E34A1C' d='M12 1.5c.5 5.7 3 8.2 8.5 8.5-5.5.3-8 2.8-8.5 8.5-.5-5.7-3-8.2-8.5-8.5 5.5-.3 8-2.8 8.5-8.5Z'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: logospin 8s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes logospin { to { transform: rotate(360deg); } }
/* ── Logo header : shimmer (reflet) qui balaie le wordmark ── */
.nav-logo .yana, .nav-logo .web {
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoshine 5s linear infinite;
}
.nav-logo .yana { background-image: linear-gradient(110deg, rgba(237,232,217,0.78) 40%, #FFFFFF 50%, rgba(237,232,217,0.78) 60%); }
.nav-logo .web  { background-image: linear-gradient(110deg, #E34A1C 40%, #FF7B47 50%, #E34A1C 60%); }
@keyframes logoshine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) {
  .nav-logo-wrap::before { animation: none; }
  .nav-logo .yana { -webkit-text-fill-color: var(--white); animation: none; }
  .nav-logo .web  { -webkit-text-fill-color: var(--terra); animation: none; }
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 26px; line-height: 1; text-decoration: none;
}
.nav-logo .yana { font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.nav-logo .web  { font-weight: 700; color: var(--terra); }
.nav-by {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-left: 14px;
}
.nav-links {
  display: flex; align-items: center; gap: var(--space-7); list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--terra); color: var(--white) !important;
  padding: var(--space-3) 28px;
}
.nav-cta:hover { background: var(--terra-hover) !important; }

/* ════════════════════════════════════════════════
   4. HERO
   ════════════════════════════════════════════════ */
#hero {
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: 72px;
}
.botanical-process {
  position: absolute; right: -20px; top: -20px;
  width: 440px; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.10;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); margin-bottom: var(--space-5);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-display);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.025em;
}
.hero-title em { font-style: normal; color: var(--terra); }
.hero-sub {
  font-size: var(--t-xl); font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-top: 36px; max-width: 520px;
}
.hero-actions {
  display: flex; gap: var(--space-4); margin-top: var(--space-9); align-items: center;
}
.btn-primary {
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px var(--space-7); text-decoration: none;
  transition: background var(--t-fast);
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.btn-primary:hover { background: var(--terra-hover); }
.btn-ghost {
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-1); transition: color var(--t-fast), border-color var(--t-fast);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-location {
  margin-top: auto;
  padding-top: var(--space-8);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero-location::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 4.5vw, 64px); font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; color: var(--white);
}
.stat-num-unit {
  font-size: 32px; font-weight: 300; color: var(--muted);
}
.stat-num-unit.teal { color: var(--teal); }
.stat-num-currency {
  font-size: 32px; font-weight: 300; vertical-align: super;
}


/* ════════════════════════════════════════════════
   5. SERVICES
   ════════════════════════════════════════════════ */
#services { padding: 0; border-bottom: 1px solid var(--border); }
.services-header {
  padding: var(--space-12) var(--space-11) var(--space-11);
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h2);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.section-title.no-mb { margin-bottom: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
}
.service-card {
  padding: var(--space-9) 60px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--space-5);
  position: relative; overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--terra);
}
.service-card.tl::before { background: var(--teal); }
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px; font-weight: 900;
  color: rgba(255,255,255,0.05); line-height: 1;
  position: absolute; right: var(--space-6); top: var(--space-4);
}
.service-icon {
  width: var(--space-9); height: var(--space-9);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--terra); }
.service-card.tl .service-icon svg { fill: var(--teal); }
.service-name {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 900;
  text-transform: uppercase; line-height: 1.05;
}
.service-desc {
  font-size: var(--t-body); font-weight: 300; color: var(--muted); line-height: 1.7;
  flex: 1;
}
.service-items {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: var(--space-5); border-top: 1px solid var(--border);
}
.service-item {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: var(--space-3);
}
.service-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra); flex-shrink: 0;
}
.service-card.tl .service-item::before { background: var(--teal); }


/* ════════════════════════════════════════════════
   6. PROCESSUS
   ════════════════════════════════════════════════ */
#processus { border-bottom: 1px solid rgba(29,77,55,0.12); background: var(--cream); color: var(--dark); }
.process-top {
  padding: var(--space-12) var(--space-11) var(--space-11);
  border-bottom: 1px solid var(--border-dark);
  position: relative; overflow: hidden;
}
.process-top .section-eyebrow { color: var(--terra); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
}
.process-step {
  padding: 60px var(--space-9);
  border-right: 1px solid var(--border-dark);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
}
.process-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; color: var(--dark);
}
.process-step-desc {
  font-size: var(--t-body); font-weight: 300; color: rgba(11,26,17,0.55); line-height: 1.7;
}
.process-step-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}


/* ════════════════════════════════════════════════
   7. TARIFS
   ════════════════════════════════════════════════ */
#tarifs { padding: var(--space-12) var(--space-11); border-bottom: 1px solid var(--border); }
.pricing-intro {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--space-10); gap: var(--space-11);
}
.pricing-note {
  font-size: var(--t-body); font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 480px;
  padding-bottom: var(--space-1);
}
.pricing-tabs {
  display: flex; gap: 0; margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}
.ptab {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: var(--space-4) var(--space-6); cursor: pointer;
  color: var(--muted); border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  user-select: none; margin-bottom: -1px;
}
.ptab:hover { color: var(--white); }
.ptab.active { color: var(--terra); border-bottom-color: var(--terra); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
}
.pcard {
  padding: 52px var(--space-9); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.pcard:last-child { border-right: none; }
.pcard.featured {
  border-top: 3px solid var(--teal);
  background: rgba(39,122,110,0.07);
}
.pcard-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px;
}
.pcard-label.teal { color: var(--teal); }
.pcard.featured .pcard-label { color: var(--teal); }
.pcard-name {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 900;
  text-transform: uppercase; line-height: 1; margin-bottom: 36px;
}
.pcard-from {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--t-small); font-weight: 400; color: var(--muted);
  margin-bottom: 4px;
}
.pcard-price {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 3.5vw, 48px); font-weight: 900;
  line-height: 1; letter-spacing: -0.03em;
}
.pcard-price sup { font-size: 20px; vertical-align: super; letter-spacing: 0; }
.pcard-freq {
  font-size: var(--t-small); font-weight: 300; color: var(--muted);
  margin-top: var(--space-2); margin-bottom: 36px;
}
.pcard-div { height: 1px; background: var(--border); margin-bottom: 28px; }
.pcard-features { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.pcard-feature {
  font-size: var(--t-small); font-weight: 300; color: var(--muted);
  display: flex; align-items: flex-start; gap: 14px; line-height: 1.5;
}
.pcard-feature::before { content: '—'; color: var(--terra); font-weight: 700; flex-shrink: 0; }
.pcard.featured .pcard-feature::before { color: var(--teal); }
.pcard-cta {
  margin-top: var(--space-7);
  display: inline-flex; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-1); transition: color var(--t-fast), border-color var(--t-fast);
  align-self: flex-start;
}
.pcard-cta:hover { color: var(--white); border-color: var(--white); }
.pcard.featured .pcard-cta {
  background: var(--teal); color: var(--white);
  border: none; padding: 14px 28px; margin-top: var(--space-7);
}
.pcard.featured .pcard-cta:hover { background: var(--teal-hover); }
.pricing-footer {
  margin-top: var(--space-7); padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: var(--t-body); font-weight: 300; color: var(--muted);
}
.pricing-footer strong { color: var(--white); font-weight: 500; }


/* ════════════════════════════════════════════════
   8. CONTACT
   ════════════════════════════════════════════════ */
#contact {
  display: flex; min-height: 480px;
}
.contact-left {
  flex: 1; background: var(--cream);
  padding: var(--space-12) var(--space-11);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border-dark);
}
.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h2);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--dark);
}
.contact-sub {
  font-size: var(--t-xl); font-weight: 300;
  color: rgba(11,26,17,0.55); line-height: 1.6;
  max-width: 460px;
}
.contact-right {
  width: 560px; background: var(--block);
  padding: var(--space-11) 72px;
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-5);
}
#contact-form {
  display: flex; flex-direction: column; gap: var(--space-5);
}
.contact-field {
  display: flex; flex-direction: column; gap: 10px;
}
/* Honeypot anti-bot — invisible humain, visible aux bots */
.contact-hp {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}
#form-msg {
  display: none;
  font-size: var(--t-label);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid transparent;
}
#form-msg.ok  { display: block; color: #4ECDB4; background: rgba(39,122,110,0.14); border-color: rgba(39,122,110,0.4); }
#form-msg.err { display: block; color: var(--terra); background: rgba(227,74,28,0.10); border-color: rgba(227,74,28,0.4); }
.contact-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--muted);
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 300;
  padding: 14px 18px;
  outline: none; resize: none;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); }
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--terra); }
.contact-field select option { background: var(--block); }
.contact-submit {
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px var(--space-7); border: none; cursor: pointer;
  width: 100%; transition: background var(--t-fast);
}
.contact-submit:hover { background: var(--terra-hover); }
.contact-info {
  display: flex; gap: var(--space-7); margin-top: var(--space-2);
}
.contact-info-item {
  display: flex; flex-direction: column; gap: var(--space-1);
}
.ci-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); opacity: 0.6;
}
.ci-val { font-size: var(--t-body); font-weight: 300; color: rgba(255,255,255,0.8); }

/* ── CONTACT LEFT — dark overrides ───────────── */
.contact-left .ci-label { color: rgba(11,26,17,0.40); opacity: 1; }
.contact-left .ci-val   { color: var(--dark); }
.contact-left .contact-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); margin-bottom: var(--space-5);
}
.contact-form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: var(--space-2);
}
.contact-split-bar {
  margin-top: var(--space-7); height: 3px; display: flex; max-width: 120px;
}
.contact-split-bar .sl { flex: 1; background: var(--terra); }
.contact-split-bar .sr { flex: 1; background: var(--teal); }

/* ── CONTACT INFO — inline margin override ─── */
.contact-info.mt-40 { margin-top: var(--space-7); }


/* ════════════════════════════════════════════════
   9. FOOTER
   ════════════════════════════════════════════════ */
footer {
  padding: var(--space-8) var(--space-11); background: var(--block);
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo-wrap {
  display: flex; align-items: baseline;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; text-decoration: none;
}
.footer-logo .yana { font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.footer-logo .web  { font-weight: 700; color: var(--terra); }
.footer-by {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); opacity: 0.5; margin-left: 12px;
}
.footer-copy {
  font-size: var(--t-label); font-weight: 300; color: var(--muted); opacity: 0.5;
}
.footer-links { display: flex; gap: var(--space-6); }
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; opacity: 0.5;
  transition: opacity var(--t-fast);
}
.footer-links a:hover { opacity: 1; }


/* ════════════════════════════════════════════════
   10. RESPONSIVE — @media
   ════════════════════════════════════════════════ */
.nav-burger { display: none; }

/* ── HEIGHT-BASED : hero compact sur écrans courts ────────── */
@media (min-width: 769px) and (max-height: 900px) {
  .hero-title    { font-size: clamp(40px, 5.2vw, 72px); }
  .hero-sub      { margin-top: 24px; line-height: 1.55; }
  .hero-actions  { margin-top: 36px; }
  .hero-location { padding-top: 32px; }
  .hero-left     { padding-top: 40px; padding-bottom: 40px; }
  .stat-block    { padding: 24px var(--space-8); }
}
@media (min-width: 769px) and (max-height: 760px) {
  .hero-title    { font-size: clamp(36px, 4.8vw, 60px); }
  .hero-sub      { font-size: 17px; margin-top: 18px; }
  .hero-actions  { margin-top: 28px; }
  .hero-location { padding-top: 24px; }
  .hero-left     { padding-top: 28px; padding-bottom: 28px; }
  .stat-block    { padding: 18px var(--space-7); gap: 6px; }
  .stat-num      { font-size: clamp(34px, 3.6vw, 48px); }
}

@media (max-width: 1024px) {
  nav { padding: 0 40px; }
  .hero-left { padding: 80px 60px 80px 40px; }
  .hero-right { width: 360px; }
  .stat-block { padding: 36px 40px; }
  #services { padding: 80px 40px; }
  .services-header { padding: 80px 40px 60px; }
  .service-card { padding: 40px 36px; }
  .process-top { padding: 80px 40px 60px; }
  .process-step { padding: 48px 36px; }
  #tarifs { padding: 80px 40px; }
  .pcard { padding: 40px 36px; }
  .contact-left { padding: 80px 40px; }
  .contact-right { padding: 60px 48px; width: 460px; }
  footer { padding: 40px; }
}

@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--block);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 8px;
  }
  .nav-burger span {
    width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all var(--t-fast);
  }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* HERO — en mobile, hauteur naturelle (pas 100svh) */
  #hero {
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
    padding-top: 64px;
  }
  .hero-body { flex-direction: column; }
  .hero-left {
    padding: 48px 24px 56px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    min-height: auto; overflow: visible;
  }
  .botanical-hero { display: none; }
  /* CTA hero : empilés pleine largeur (sinon « Découvrir nos services » wrappe sur 3 lignes) */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .btn-ghost { display: flex; align-items: center; }
  .hero-right {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid var(--border);
    overflow: visible;
  }
  .stat-block {
    flex: 1 1 50%; min-width: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:last-child { flex: 1 1 100%; border-bottom: none; border-right: none; }
  .stat-num { font-size: 48px; }

  /* SERVICES */
  #services { padding: 60px 24px; }
  .services-header { padding: 60px 24px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  /* PROCESSUS */
  .botanical-process { display: none; }
  .process-top { padding: 60px 24px 40px; }
  .process-top .section-title { font-size: clamp(28px, 7vw, 40px); margin-bottom: 0; }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step { padding: 36px 24px; }

  /* SECTION TITLES — compact en mobile */
  .section-title { font-size: clamp(28px, 7vw, 40px); margin-bottom: 32px; }
  .hero-title    { font-size: clamp(40px, 11vw, 64px); }

  /* TARIFS */
  #tarifs { padding: 60px 24px; }
  .pricing-intro { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pcard { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .pcard:last-child { border-bottom: none; }
  .ptab { padding: 12px 20px; font-size: 11px; }

  /* CONTACT */
  #contact { flex-direction: column; }
  .contact-left {
    padding: 60px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
  .contact-right { width: 100%; padding: 48px 24px; }

  /* FOOTER */
  footer { flex-direction: column; gap: 20px; padding: 40px 24px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .process-step:last-child { border-bottom: none; }
  .hero-right { flex-direction: column; flex-wrap: nowrap; }
  .stat-block {
    flex: 1 1 auto; width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:last-child { border-bottom: none; }
}


/* ════════════════════════════════════════════════
   11. PAGES LÉGALES (mentions-légales, politique-confidentialité)
   ════════════════════════════════════════════════ */
.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 152px var(--space-11) var(--space-13);
}
.legal-header {
  padding-bottom: var(--space-9);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-9);
}
.legal-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); margin-bottom: var(--space-5);
}
.legal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--space-5);
}
.legal-meta {
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

.legal-body { color: rgba(255,255,255,0.78); }
.legal-section { margin-bottom: var(--space-11); }
.legal-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.legal-section p {
  font-size: var(--t-body);
  line-height: 1.75; font-weight: 300;
  margin-bottom: var(--space-4);
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(227,74,28,0.4);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.legal-section a:hover { color: var(--white); border-color: var(--white); }
.legal-section strong { color: var(--white); font-weight: 500; }

.legal-list {
  list-style: none;
  margin-bottom: var(--space-4);
}
.legal-list li {
  font-size: var(--t-body); line-height: 1.7; font-weight: 300;
  padding-left: var(--space-5); position: relative;
  margin-bottom: 10px;
}
.legal-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--terra); font-weight: 700;
}

.legal-dl {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px 32px;
}
.legal-dl dt {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding-top: 4px;
}
.legal-dl dd {
  font-size: var(--t-body); font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.legal-dl dd a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(227,74,28,0.4);
}

.legal-back {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.legal-back a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color var(--t-fast);
}
.legal-back a:hover { color: var(--white); }

@media (max-width: 768px) {
  .legal-page { padding: 112px 24px 80px; }
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-dl dt { padding-top: 16px; }
  .legal-dl dt:first-child { padding-top: 0; }
}


/* ════════════════════════════════════════════════
   12. OVERHAUL CRÉATIF — profondeur · matière · motion
   (calque additif on-brand : terra / teal / cream / vert)
   ════════════════════════════════════════════════ */
:root {
  /* ── Rayons ───────────────────────────────────── */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   34px;
  --r-pill: 100px;

  /* ── Dégradés de marque ───────────────────────── */
  --grad-warm:       linear-gradient(135deg, #F0632F 0%, #E34A1C 55%, #C03810 100%);
  --grad-teal:       linear-gradient(135deg, #2F9183 0%, #277A6E 60%, #1C5C52 100%);
  --grad-terra-teal: linear-gradient(110deg, #E34A1C 0%, #E68A4E 38%, #2F9183 100%);

  /* ── Ombres douces + glows colorés ────────────── */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.28);
  --shadow-md: 0 16px 38px -12px rgba(0,0,0,0.48);
  --shadow-lg: 0 36px 70px -20px rgba(0,0,0,0.62);
  --glow-terra: 0 22px 52px -14px rgba(227,74,28,0.50);
  --glow-teal:  0 22px 52px -14px rgba(39,122,110,0.50);
  --shadow-cream: 0 18px 40px -16px rgba(11,26,17,0.20);
}

/* ── Canvas + couches d'ambiance ─────────────────── */
body { background: #08160E; position: relative; }

/* Aurora : halos diffus terra/teal/vert flottants, derrière le contenu */
.fx-aurora {
  position: fixed; inset: -15vh -10vw; z-index: -1;
  pointer-events: none; overflow: hidden;
}
.fx-aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.55; will-change: transform;
}
.fx-aurora .a1 {
  width: 52vw; height: 52vw; top: -12vh; left: -8vw;
  background: radial-gradient(circle at 50% 50%, rgba(227,74,28,0.55), transparent 68%);
  animation: auroraA 26s ease-in-out infinite;
}
.fx-aurora .a2 {
  width: 48vw; height: 48vw; bottom: -14vh; right: -6vw;
  background: radial-gradient(circle at 50% 50%, rgba(39,122,110,0.55), transparent 68%);
  animation: auroraB 32s ease-in-out infinite;
}
.fx-aurora .a3 {
  width: 40vw; height: 40vw; top: 38%; left: 42%;
  background: radial-gradient(circle at 50% 50%, rgba(46,145,131,0.35), transparent 70%);
  animation: auroraC 38s ease-in-out infinite;
}
@keyframes auroraA { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(7vw,9vh) scale(1.12)} }
@keyframes auroraB { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-8vw,-6vh) scale(1.15)} }
@keyframes auroraC { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-42%,-58%) scale(1.2)} }

/* Grain : texture fine au-dessus de tout (sous la nav) */
.fx-grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV : glass renforcé + CTA pill glow + soulignés ─ */
nav { background: rgba(8,22,14,0.68); backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3); }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0;
  background: var(--grad-terra-teal); border-radius: 2px;
  transition: width 0.28s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--grad-warm) !important; border-radius: var(--r-pill);
  box-shadow: var(--glow-terra);
  transition: transform var(--t-fast), filter var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 26px 56px -14px rgba(227,74,28,0.6) !important; }

/* ── HERO : texte dégradé animé + boutons pill glow ── */
.hero-title em {
  background: linear-gradient(100deg, #E34A1C, #F2A877, #2F9183, #E34A1C);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.btn-primary {
  background: var(--grad-warm); border-radius: var(--r-pill);
  box-shadow: var(--glow-terra);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), filter 0.2s;
}
.btn-primary:hover { background: var(--grad-warm); transform: translateY(-3px); filter: brightness(1.07); box-shadow: 0 28px 64px -14px rgba(227,74,28,0.62); }
.btn-ghost {
  border: 1px solid var(--border-strong); border-radius: var(--r-pill);
  padding: 16px 26px; border-bottom: 1px solid var(--border-strong);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ── MARQUEE : bandeau outline défilant ──────────── */
.marquee {
  overflow: hidden; background: var(--block);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 0; position: relative;
}
.marquee-track {
  display: flex; align-items: center; gap: 0; width: max-content;
  animation: marq 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(22px, 2.6vw, 38px); text-transform: uppercase;
  letter-spacing: -0.01em; color: transparent;
  -webkit-text-stroke: 1px rgba(237,232,217,0.34); padding: 0 30px;
  transition: color 0.3s, -webkit-text-stroke-color 0.3s;
}
.marquee-track:hover .marquee-item { color: rgba(237,232,217,0.06); }
.marquee-star { color: var(--terra); font-size: 16px; flex-shrink: 0; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ── Courbes organiques entre sections ───────────── */
#processus { position: relative; }
.sec-curve { position: absolute; left: 0; right: 0; line-height: 0; z-index: 2; pointer-events: none; }
.sec-curve svg { display: block; width: 100%; height: 56px; }
.sec-curve path { fill: #08160E; }
.sec-curve-top { top: -1px; }
.sec-curve-bottom { bottom: -1px; }
.process-top { padding-top: var(--space-13); }

/* ── SERVICES : tuiles en relief + hover lift ────── */
.services-grid { gap: var(--space-5); padding: 0 var(--space-11) var(--space-12); }
.service-card {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.014));
  box-shadow: var(--shadow-md);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
}
.service-card:last-child { border-right: 1px solid var(--border); }
.service-card::before { height: 4px; background: var(--grad-warm); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.service-card.tl::before { background: var(--grad-teal); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg), var(--glow-terra); border-color: rgba(227,74,28,0.42); }
.service-card.tl:hover { box-shadow: var(--shadow-lg), var(--glow-teal); border-color: rgba(39,122,110,0.45); }
.service-card:hover .service-num { color: rgba(227,74,28,0.16); }
.service-card.tl:hover .service-num { color: rgba(39,122,110,0.18); }
.service-icon {
  border-radius: var(--r-md); background: rgba(227,74,28,0.08);
  border-color: rgba(227,74,28,0.26);
  transition: transform 0.32s var(--ease), background 0.32s;
}
.service-card.tl .service-icon { background: rgba(39,122,110,0.10); border-color: rgba(39,122,110,0.3); }
.service-card:hover .service-icon { transform: translateY(-4px) rotate(-6deg) scale(1.06); }

/* ── PROCESSUS : étapes en cartes claires ────────── */
.process-steps { gap: var(--space-5); padding: 0 var(--space-11) var(--space-13); }
.process-step {
  border: 1px solid var(--border-dark); border-radius: var(--r-lg);
  background: rgba(255,255,255,0.5); box-shadow: var(--shadow-cream);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-step:last-child { border-right: none; }
.process-step:hover { transform: translateY(-8px); box-shadow: 0 28px 54px -18px rgba(11,26,17,0.30); }
.process-step-num {
  background: var(--grad-warm); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; width: max-content;
}

/* ── TARIFS : segmented control pill + cartes relief ─ */
.pricing-tabs {
  border-bottom: none; gap: var(--space-2); flex-wrap: wrap;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: 6px; width: max-content;
}
.ptab {
  border-bottom: none !important; border-radius: var(--r-pill); margin-bottom: 0;
  transition: color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.ptab.active { color: var(--white); background: var(--grad-warm); box-shadow: var(--glow-terra); }
.pricing-grid { gap: var(--space-5); }
.pcard {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  box-shadow: var(--shadow-md);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s;
}
.pcard:last-child { border-right: 1px solid var(--border); }
.pcard:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.pcard.featured {
  border: 1px solid rgba(39,122,110,0.42);
  background: linear-gradient(165deg, rgba(39,122,110,0.20), rgba(39,122,110,0.04));
  box-shadow: var(--shadow-lg), var(--glow-teal);
  transform: translateY(-6px) scale(1.02); position: relative; z-index: 1;
}
.pcard.featured:hover { transform: translateY(-14px) scale(1.02); }
.pcard.featured::after {
  content: 'Recommandé'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-teal); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  padding: 7px 18px; border-radius: var(--r-pill); box-shadow: var(--glow-teal);
}
.pcard.featured .pcard-cta { border-radius: var(--r-pill); box-shadow: var(--glow-teal); }
.pcard.featured .pcard-cta:hover { filter: brightness(1.07); transform: translateY(-2px); }

/* ── CONTACT : champs arrondis + focus glow + CTA ── */
.contact-field input, .contact-field textarea, .contact-field select { border-radius: var(--r-sm); }
.contact-field input:focus, .contact-field textarea:focus, .contact-field select:focus {
  border-color: var(--terra); box-shadow: 0 0 0 3px rgba(227,74,28,0.15);
}
.contact-submit {
  background: var(--grad-warm); border-radius: var(--r-pill); box-shadow: var(--glow-terra);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.2s;
}
.contact-submit:hover { background: var(--grad-warm); transform: translateY(-3px); filter: brightness(1.07); box-shadow: 0 28px 64px -14px rgba(227,74,28,0.62); }
.contact-submit:disabled { transform: none; filter: grayscale(0.3) brightness(0.85); cursor: default; }

/* ── FOOTER : liseré dégradé ─────────────────────── */
footer { position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-terra-teal); }

/* ── Décor botanique flottant (sections sombres) ─── */
.botanical-float {
  position: absolute; pointer-events: none; z-index: 0; opacity: 0.10;
  will-change: transform;
}
#services, #tarifs { position: relative; overflow: hidden; }
#services > *:not(.botanical-float),
#tarifs > *:not(.botanical-float) { position: relative; z-index: 1; }
/* Le dropdown tarifs DOIT passer au-dessus du panneau de cartes, sinon ses options
   tombent sous les .pcard (z-index 1, plus loin dans le DOM) et deviennent intappables. */
#tarifs > .pricing-select { z-index: 40; }

/* ── RESPONSIVE — overrides du calque créatif ────── */
@media (max-width: 1024px) {
  .services-grid { padding: 0 40px 80px; }
  .process-steps { padding: 0 40px 80px; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: var(--space-5); padding: 0 24px 60px; }
  .service-card { border: 1px solid var(--border); }
  .service-card:last-child { border: 1px solid var(--border); }
  .process-steps { grid-template-columns: 1fr; gap: var(--space-4); padding: 0 24px 64px; }
  /* bordures .process-step retirées (vestige bento) : la règle :last-child créait un carré autour du dernier step "Formation & Suivi" */
  .pcard { border: 1px solid var(--border); }
  .pcard:last-child { border: 1px solid var(--border); }
  .pcard.featured { border: 1px solid rgba(39,122,110,0.42); transform: none; }
  .pcard.featured:hover { transform: translateY(-8px); }
  .marquee-item { -webkit-text-stroke-width: 1px; padding: 0 18px; }
  .pricing-tabs { width: 100%; justify-content: flex-start; }
  .ptab { flex: 1 1 auto; text-align: center; }
  .sec-curve svg { height: 34px; }
  .process-top { padding-top: var(--space-12); }
  .fx-aurora span { filter: blur(70px); }
}

/* ── Accessibilité : respect prefers-reduced-motion ─ */
@media (prefers-reduced-motion: reduce) {
  .fx-aurora span, .marquee-track, .hero-title em,
  .stat-block.featured .stat-num { animation: none !important; }
  html { scroll-behavior: auto; }
}


/* ════════════════════════════════════════════════
   13. HERO IMMERSIF « FENÊTRE SUR LA CANOPÉE »
   fond clair + panneau arrondi foncé + menu flottant
   ════════════════════════════════════════════════ */

/* ── MENU PILL FLOTTANT DÉTACHÉ ──────────────────── */
nav {
  top: 16px; left: 22px; right: 22px; height: 62px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  background: rgba(8,22,14,0.55);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-md);
  padding: 0 12px 0 26px;
  transition: height var(--t-base) var(--ease), background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
}
nav.scrolled { height: 54px; background: rgba(8,22,14,0.82); box-shadow: var(--shadow-lg); }

/* ── HERO : fond clair encadrant le panneau foncé ── */
#hero {
  min-height: 100svh; height: auto; max-height: none; overflow: visible;
  display: flex; flex-direction: column;
  background: var(--cream);
  padding: 98px 22px 26px;
}
.hero-panel {
  position: relative; flex: 1; display: flex; overflow: hidden;
  border-radius: clamp(24px, 3vw, 40px);
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  min-height: calc(100svh - 124px);
}

/* ── CANOPÉE (fond immersif du panneau) ──────────── */
.hero-canopy { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(95px); opacity: 0.2; will-change: transform; }
.hero-glow-1 { width: 48%; aspect-ratio: 1; top: -14%; right: -6%;  background: radial-gradient(circle at 50% 50%, rgba(227,74,28,0.55), transparent 66%); animation: auroraA 24s ease-in-out infinite; }
.hero-glow-2 { width: 44%; aspect-ratio: 1; bottom: -16%; left: -8%; background: radial-gradient(circle at 50% 50%, rgba(39,122,110,0.55), transparent 66%); animation: auroraB 30s ease-in-out infinite; }

.hero-foliage { position: absolute; pointer-events: none; will-change: transform; }
.hero-foliage-back { bottom: -8%;  left: 50%; width: 58%; margin-left: -29%; color: #2F9183; opacity: 0.12; }
.hero-foliage-l    { bottom: -12%; left: -7%;  width: 40%; color: #277A6E; opacity: 0.20; }
.hero-foliage-r    { bottom: -12%; right: -7%; width: 36%; color: #E34A1C; opacity: 0.16; }

.firefly {
  position: absolute; width: 5px; height: 5px; border-radius: 50%; opacity: 0;
  will-change: transform, opacity;
  animation: fly var(--dur,14s) ease-in-out var(--d,0s) infinite,
             twinkle calc(var(--dur,14s) / 4) ease-in-out var(--d,0s) infinite;
}
.firefly.cream { background: radial-gradient(circle, rgba(237,232,217,0.95), rgba(237,232,217,0) 70%); box-shadow: 0 0 8px rgba(237,232,217,0.5); }
.firefly.terra { background: radial-gradient(circle, rgba(242,135,90,0.95), rgba(242,135,90,0) 70%);   box-shadow: 0 0 8px rgba(227,74,28,0.55); }
.firefly.teal  { background: radial-gradient(circle, rgba(90,200,180,0.95), rgba(90,200,180,0) 70%);   box-shadow: 0 0 8px rgba(39,122,110,0.55); }
@keyframes fly { 0%,100%{transform:translate(0,0)} 25%{transform:translate(16px,-26px)} 50%{transform:translate(-12px,-46px)} 75%{transform:translate(10px,-20px)} }
@keyframes twinkle { 0%,100%{opacity:0.15} 50%{opacity:0.9} }

.hero-mist {
  position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  background: linear-gradient(to top, rgba(8,22,14,0.92), rgba(8,22,14,0.35) 45%, transparent);
}

/* ── CONTENU DU PANNEAU ──────────────────────────── */
.hero-panel-inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 5.5vw, 92px);
}
.hero-panel-inner .hero-location { margin-top: var(--space-7); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 52px);
  margin-top: clamp(30px, 4.5vh, 54px); padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; gap: 7px; }
.hero-stat-label {
  font-family: 'Montserrat', sans-serif; font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.hero-stat .stat-num {
  font-family: 'Montserrat', sans-serif; font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--white);
}
.hero-stat.featured .stat-num {
  background: linear-gradient(120deg, #F0632F, #F2A877);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero-stat-sub { font-size: var(--t-small); font-weight: 300; color: var(--muted); line-height: 1.4; max-width: 210px; }

/* ── RESPONSIVE — hero immersif ──────────────────── */
@media (max-width: 1024px) {
  nav { left: 16px; right: 16px; }
  #hero { padding: 92px 16px 20px; }
  .hero-panel-inner { padding: 56px 40px; }
}
@media (max-width: 768px) {
  nav { top: 12px; left: 12px; right: 12px; height: 56px; padding: 0 10px 0 18px; }
  nav.scrolled { height: 50px; }
  .nav-links.open { top: 78px; left: 12px; right: 12px; border-radius: var(--r-lg); border: 1px solid var(--border-strong); }
  #hero { min-height: auto; padding: 84px 12px 16px; }
  .hero-panel { min-height: calc(100svh - 100px); border-radius: 24px; }
  .hero-panel-inner { padding: 56px 26px 40px; justify-content: flex-start; }
  .hero-stats { gap: 22px 28px; margin-top: 34px; }
  .hero-stat { flex: 1 1 40%; }
  .hero-foliage-back { width: 80%; margin-left: -40%; }
  .hero-glow { filter: blur(60px); }
}
@media (max-width: 480px) {
  .hero-stat { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow, .firefly, .hero-foliage { animation: none !important; }
  .firefly { opacity: 0.4; }
}


/* ════════════════════════════════════════════════
   14. RACCORDS DE FONDS UNIFIÉS + MENU + CARTES 3D
   ════════════════════════════════════════════════ */
/* Fond sombre UNIQUE sur toute la page : supprime l'effet
   « dégradé ici / plat ailleurs ». Aurora globale désactivée
   (la profondeur immersive reste dans le panneau du hero). */
.fx-aurora { display: none; }
body          { background: var(--dark); }
.marquee      { background: var(--dark); }
footer        { background: var(--dark); }
.contact-right { background: var(--dark); }
.sec-curve path { fill: var(--dark); }

/* MENU : même fond que le panneau du hero (vert foncé plein) */
nav {
  background: var(--dark);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
nav.scrolled { background: var(--dark); }

/* CARTES : socle effet 3D (inclinaison pilotée en JS) */
.service-card, .pcard, .process-step {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}


/* ════════════════════════════════════════════════
   15. IMMERSION JUNGLE — scroll animé & feuillages
   ════════════════════════════════════════════════ */
/* Pas de transition CSS sur 'transform' : évite le jank pendant le
   scrub/pin et les reveals (le tilt 3D pose sa propre transition). */
.service-card, .pcard, .process-step {
  transition: box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
}
/* Feuillages en arrière-plan aussi sur Processus & Contact */
#processus, #contact { position: relative; overflow: hidden; }
#processus > *:not(.botanical-float),
#contact   > *:not(.botanical-float) { position: relative; z-index: 1; }
/* Feuillages un peu plus présents (profondeur jungle) */
.botanical-float { opacity: 0.12; }


/* ════════════════════════════════════════════════
   16. SUPPRESSION DES TRAITS DE SÉPARATION
   Filets 1px parasites entre blocs/sections — incohérents
   depuis l'unification des fonds. (Contours de cartes conservés.)
   ════════════════════════════════════════════════ */
#services, #tarifs, #processus     { border-bottom: none; }
.services-header, .process-top     { border-bottom: none; }
.service-items                     { border-top: none; }
.process-step-duration             { border-top: none; }
.hero-stats                        { border-top: none; }
.pricing-footer                    { border-top: none; }
footer                             { border-top: none; }
.pcard-div                         { background: transparent; }


/* ════════════════════════════════════════════════
   17. SIGNATURE AGENCE — superpositions, rotations, stickers
   ════════════════════════════════════════════════ */
#hero { position: relative; }

/* Tampon circulaire rotatif — chevauche le coin du panneau */
.stamp {
  position: absolute; right: 160px; top: 256px; z-index: 6;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--terra);
  box-shadow: var(--shadow-md), 0 0 0 6px rgba(227,74,28,0.14);
  display: grid; place-items: center; pointer-events: none;
}
.stamp-rotor { width: 100%; height: 100%; animation: stampspin 20s linear infinite; transform-origin: 50% 50%; }
.stamp text {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14.5px;
  letter-spacing: 1.4px; text-transform: uppercase; fill: var(--cream);
}
.stamp-mark { position: absolute; color: var(--cream); font-size: 22px; line-height: 1; }
@keyframes stampspin { to { transform: rotate(360deg); } }

/* Libellés verticaux éditoriaux — superposition dans la marge */
#services .v-label, #processus .v-label, #tarifs .v-label {
  position: absolute; top: var(--space-12); left: 26px; z-index: 2;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: rgba(255,255,255,0.20); white-space: nowrap; pointer-events: none;
}
#processus .v-label { color: rgba(11,26,17,0.24); }

/* Nav tablette : « by yanacom » masqué + liens resserrés (sinon ça colle) */
@media (max-width: 1024px) {
  .nav-by { display: none; }
  .nav-links { gap: 22px; }
}
@media (max-width: 768px) {
  .stamp { display: none; }   /* hero mobile trop dense — tampon masqué */
  #services .v-label, #processus .v-label, #tarifs .v-label { display: none; }
}
@media (prefers-reduced-motion: reduce) { .stamp-rotor { animation: none !important; } }


/* ════════════════════════════════════════════════
   18. PICTOS SUR-MESURE & ÉLÉMENTS GRAPHIQUES
   ════════════════════════════════════════════════ */
/* Pictos services — trait sur-mesure (remplacent les icônes génériques) */
.service-icon { color: var(--terra); }
.service-card.tl .service-icon { color: var(--teal); }
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; }
.service-card.tl .service-icon svg { fill: none; }

/* Pictos processus (nouveaux) — badge arrondi sur la section crème */
.process-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); background: rgba(227,74,28,0.07);
  border: 1px solid rgba(227,74,28,0.22);
}
.process-step:nth-child(even) .process-icon {
  color: var(--teal); background: rgba(39,122,110,0.09); border-color: rgba(39,122,110,0.26);
}
.process-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; }

/* Étincelle sur-mesure — marqueur de marque récurrent */
.spark { display: inline-block; width: 0.8em; height: 0.8em; vertical-align: -0.04em; margin-right: 0.5em; color: var(--terra); flex-shrink: 0; }
.spark path { fill: currentColor; }
.stamp-mark .spark { width: 22px; height: 22px; margin: 0; color: var(--cream); }


/* ════════════════════════════════════════════════
   19. MOTIFS SIGNATURE — topographie Guyane + trame
   ════════════════════════════════════════════════ */
/* Motif topographique (lignes de niveau) — récurrent, évoque
   le relief guyanais. Décliné en plusieurs sections. */
.topo { position: absolute; pointer-events: none; will-change: transform; stroke-width: 2; }
.topo-hero      { right: -70px; top: -50px;     width: 540px; height: 540px; color: var(--cream); opacity: 0.10; z-index: 0; }
.topo-contact   { left: -90px;  bottom: -120px; width: 600px; height: 600px; color: #1C5C52; opacity: 0.26; z-index: 0; }
.topo-processus { right: -90px; top: -70px;     width: 540px; height: 540px; color: #1C5C52; opacity: 0.20; z-index: 0; }
#contact   > .topo,
#processus > .topo { position: absolute; z-index: 0; }

/* Trame de points sous le bandeau marquee (texture d'agence) */
.marquee {
  background-color: var(--dark);
  background-image: radial-gradient(rgba(237,232,217,0.055) 1px, transparent 1.4px);
  background-size: 22px 22px;
}


/* ════════════════════════════════════════════════
   20. BENTO ÉDITORIAL + BRUTALIST MÉGA-TYPO
   ════════════════════════════════════════════════ */
/* Chiffres de section GÉANTS en outline (méga-typo, débordent) */
#services .v-label, #processus .v-label, #tarifs .v-label {
  position: absolute; top: -0.24em; left: 10px; z-index: 0;
  writing-mode: horizontal-tb; transform: none;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-style: normal;
  font-size: clamp(120px, 17vw, 260px); line-height: 0.8; letter-spacing: -0.05em;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  pointer-events: none; user-select: none;
}
#services .v-label { top: -0.12em; }
#processus .v-label { -webkit-text-stroke: 2px rgba(11,26,17,0.14); }

/* Bento Services — 2 tuiles en haut + 1 tuile large (horizontale) en bas */
@media (min-width: 769px) {
  .services-grid { grid-template-columns: repeat(12, 1fr); align-items: stretch; }
  .service-card:nth-child(1) { grid-column: 1 / 7; }
  .service-card:nth-child(2) { grid-column: 7 / 13; }
  .service-card:nth-child(3) {
    grid-column: 1 / 13;
    flex-direction: row; flex-wrap: wrap; align-items: center; gap: 22px 48px;
  }
  .service-card:nth-child(3) .service-name { margin: 0; flex: 0 0 auto; }
  .service-card:nth-child(3) .service-desc { flex: 1 1 280px; margin: 0; }
  .service-card:nth-child(3) .service-items {
    flex-direction: row; flex-wrap: wrap; gap: 12px 26px;
    padding: 0; flex: 1 1 320px;
  }
}

/* Double marquee — 2ᵉ bande inversée, texte plein terra (contraste) */
.marquee + .marquee { border-top: none; }
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee-rev .marquee-item { -webkit-text-stroke: 0; color: var(--terra); }
.marquee-rev .marquee-star { color: var(--cream); }


/* ════════════════════════════════════════════════
   21. PROCESSUS — TIMELINE VERTICALE (fil + trait)
   ════════════════════════════════════════════════ */
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  grid-template-columns: none;
  padding: 6px var(--space-11) var(--space-13);
  max-width: 860px;
}
.process-step {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: 0 0 52px 92px;
  border: none; background: none; box-shadow: none; border-radius: 0;
  transform: none;
}
.process-step:hover { transform: none; box-shadow: none; }
.process-step:last-child { padding-bottom: 0; }
/* Le trait vertical reliant les nœuds (terra → teal) */
.process-step:not(:last-child)::before {
  content: ''; position: absolute; left: 23px; top: 26px;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--terra), var(--teal));
  opacity: 0.4; z-index: 0;
}
/* Picto = nœud opaque posé sur le trait */
.process-icon,
.process-step:nth-child(even) .process-icon { position: absolute; left: 0; top: 0; z-index: 1; background: var(--cream); }
.process-step-duration { margin-top: 4px; }

@media (max-width: 768px) {
  .process-steps { padding: 6px 24px 56px; max-width: none; }
  .process-step { padding: 0 0 40px 72px; }
}


/* ════════════════════════════════════════════════
   22. ANIMATIONS TIMELINE — tracé du trait au scroll
   ════════════════════════════════════════════════ */
.process-step:not(:last-child)::before {
  transform: scaleY(0); transform-origin: top center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step.drawn::before { transform: scaleY(1); }

@media (prefers-reduced-motion: reduce) {
  .process-step:not(:last-child)::before { transform: scaleY(1); transition: none; }
}


/* ════════════════════════════════════════════════
   23. SMOOTH SCROLL (Lenis) · CURSEUR · MARQUEE JS
   ════════════════════════════════════════════════ */
html { overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
/* Tactile (pas de Lenis) : scroll natif + ancres douces sous la nav flottante */
@media (pointer: coarse) {
  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
}

/* Marquee 100% CSS (keyframes `marq` + animation-direction:reverse pour .marquee-rev) :
   GPU, pause au survol, statique en reduced-motion. Plus de pilotage JS au scroll. */

/* Curseur custom (pointeur fin ; le curseur système reste visible) */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px;
  border: 1.6px solid var(--terra); border-radius: 50%;
  pointer-events: none; z-index: 9000; opacity: 0;
  mix-blend-mode: difference;
  transition: width .28s var(--ease), height .28s var(--ease), opacity .3s, background-color .28s, border-color .28s;
}
.cursor-dot.active { opacity: 1; }
.cursor-dot.grow { width: 58px; height: 58px; background-color: rgba(237,232,217,0.18); border-color: transparent; }
@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }
@media (prefers-reduced-motion: reduce) { .cursor-dot { display: none; } }


/* ════════════════════════════════════════════════
   24. CANOPÉE VIVANTE — shader génératif · toucan · révélation
   ════════════════════════════════════════════════ */
/* Shader génératif = fond vivant du panneau (remplace les halos) */
.hero-shader { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.hero-panel.shader-on .hero-glow { display: none; }

/* Toucan signature, perché dans la canopée */
.toucan { position: absolute; z-index: 1; pointer-events: none; }
.toucan-hero { right: 5%; bottom: 17%; width: clamp(140px, 16vw, 230px); height: auto; opacity: 0.9; }
.toucan .eye-lid { transform-box: fill-box; transform-origin: center; transform: scaleY(0); animation: blink 6.5s infinite; }
@keyframes blink { 0%,92%,100%{transform:scaleY(0)} 94%,96%{transform:scaleY(1)} }

/* Révélation au curseur — la jungle s'illumine sous le pointeur */
.canopy-reveal {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  -webkit-mask-image: radial-gradient(circle 200px at var(--mx,-300px) var(--my,-300px), #000 0 32%, transparent 72%);
          mask-image: radial-gradient(circle 200px at var(--mx,-300px) var(--my,-300px), #000 0 32%, transparent 72%);
  transition: opacity .45s var(--ease);
}
.canopy-reveal .reveal-wash {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(46,145,131,0.40), rgba(227,74,28,0.22) 48%, transparent 74%);
}
.canopy-reveal .botanical-float { opacity: 0.5; }
.hero-panel.revealing .canopy-reveal { opacity: 1; }
@media (hover: none), (pointer: coarse) { .canopy-reveal { display: none; } }
@media (prefers-reduced-motion: reduce) { .toucan .eye-lid { animation: none; } }


/* ════════════════════════════════════════════════
   25. TIMELINE ALTERNÉE · BLOC YANACOM · BLOC HUMAIN
   ════════════════════════════════════════════════ */
/* Processus : timeline centrale alternée (desktop) — comble le vide à droite */
@media (min-width: 769px) {
  .process-steps { max-width: 1060px; margin: 0 auto; padding: 6px var(--space-11) var(--space-13); }
  .process-step { padding: 0 0 56px 0; }
  .process-step:last-child { padding-bottom: 0; }
  .process-icon, .process-step:nth-child(even) .process-icon { left: 50%; transform: translateX(-50%); }
  .process-step:not(:last-child)::before { left: 50%; width: 3.5px; opacity: 0.55; transform: translateX(-50%) scaleY(0); }
  .process-step.drawn:not(:last-child)::before { transform: translateX(-50%) scaleY(1); }
  .process-step:nth-child(odd)  { align-items: flex-end;   text-align: right; padding-right: calc(50% + 46px); }
  .process-step:nth-child(even) { align-items: flex-start; text-align: left;  padding-left:  calc(50% + 46px); }
  .process-step-duration { width: max-content; }
  /* branche courbe + feuille (effet arbre), rattachée au nœud */
  .process-step::after {
    content: ''; position: absolute; top: 6px; width: 42px; height: 34px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 44'%3E%3Cpath d='M2 16 C22 16 38 23 50 32' stroke='%23277A6E' stroke-width='3.4' fill='none' stroke-linecap='round'/%3E%3Cpath d='M48 32 C59 24 64 29 62 42 C52 41 51 38 48 32Z' fill='%23E34A1C'/%3E%3C/svg%3E") no-repeat center / contain;
  }
  .process-step:nth-child(odd)::after  { right: calc(50% + 12px); transform: scaleX(-1); }
  .process-step:nth-child(even)::after { left:  calc(50% + 12px); }
}

/* ── IDENTITÉ (Yanacom + 4 offres) ─────────────────────────── */
#identite {
  padding: var(--space-13) var(--space-11);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--space-10);
  align-items: center; position: relative; overflow: hidden;
}
#identite > * { position: relative; z-index: 1; }
.identite-tag {
  font-family: 'Montserrat', sans-serif; font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--terra); margin-bottom: var(--space-5);
}
.identite-title {
  font-family: 'Montserrat', sans-serif; font-size: var(--t-h2); font-weight: 900;
  text-transform: uppercase; line-height: 1.04; letter-spacing: -0.02em; margin-bottom: var(--space-6);
}
.identite-title em {
  font-style: normal;
  background: linear-gradient(100deg, #E34A1C, #F2A877, #2F9183);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.identite-desc { font-size: var(--t-body); font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: var(--space-7); }
.identite-desc strong { color: var(--white); font-weight: 500; }
.identite-pillars { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.identite-pillar {
  font-family: 'Montserrat', sans-serif; font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.82);
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border: 1px solid var(--border); border-radius: var(--r-pill);
}
.identite-pillar .t, .identite-pillar .g { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.identite-pillar .t { background: var(--terra); }
.identite-pillar .g { background: var(--teal); }
.identite-photos { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.identite-photo {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-lg); overflow: hidden;
  background-size: cover; background-position: center; box-shadow: var(--shadow-md);
}
.identite-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,26,17,0.75), transparent 55%); }
.identite-photo-label {
  position: absolute; left: 16px; bottom: 14px; z-index: 1;
  font-family: 'Montserrat', sans-serif; font-size: var(--t-label); font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--white);
}

/* ── HUMAIN (dimension humaine) ────────────────────────────── */
#humain { padding: var(--space-13) var(--space-11); position: relative; overflow: hidden; }
#humain > * { position: relative; z-index: 1; }
.humain-title {
  font-family: 'Montserrat', sans-serif; font-size: var(--t-h2); font-weight: 900;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.02em; margin-bottom: var(--space-10);
}
.humain-title em {
  display: block; font-style: normal; color: var(--terra); font-weight: 700;
  font-size: 0.34em; letter-spacing: 0.22em; margin-bottom: var(--space-3);
}
.humain-pilliers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.humain-pilier {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  box-shadow: var(--shadow-md); padding: var(--space-8) var(--space-7);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.humain-pilier-num {
  font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 900; line-height: 1;
  background: linear-gradient(120deg, var(--terra), var(--teal));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.humain-pilier-titre { font-family: 'Montserrat', sans-serif; font-size: var(--t-h3); font-weight: 900; text-transform: uppercase; line-height: 1.05; }
.humain-pilier-desc { font-size: var(--t-body); font-weight: 300; color: var(--muted); line-height: 1.65; }

@media (max-width: 1024px) {
  #identite, #humain { padding: var(--space-12) 40px; }
}
@media (max-width: 768px) {
  #identite { grid-template-columns: 1fr; gap: var(--space-8); padding: var(--space-11) 24px; }
  #humain { padding: var(--space-11) 24px; }
  .humain-pilliers { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════
   26. CORRECTIFS RESPONSIVE + ARBRE DE GUYANE
   ════════════════════════════════════════════════ */
/* Onglets tarifs : pleine largeur répartie dès la tablette (sinon wrap moche) */
@media (max-width: 1024px) {
  .pricing-tabs { width: 100%; justify-content: flex-start; }
  .ptab { flex: 1 1 auto; text-align: center; }
  /* Toucan : masqué là où le hero est trop dense (il chevauchait les stats) */
  .toucan-hero { display: none; }
}

/* Arbre étiré abandonné (non aligné aux nœuds) — remplacé par des branches par étape */
.process-tree { display: none !important; }

/* ── Animation des visuels ──────────────────────────────────── */
/* Étincelles qui pulsent doucement */
.spark { animation: sparkPulse 4.5s ease-in-out infinite; }
@keyframes sparkPulse { 0%,100% { transform: scale(1) rotate(0); opacity: 1; } 50% { transform: scale(1.28) rotate(22deg); opacity: 0.72; } }
.stamp-mark .spark { animation-duration: 6s; }
/* Photos Yanacom : ken-burns continu + zoom au survol */
.identite-photo { animation: kenburns 20s ease-in-out infinite; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
@keyframes kenburns { 0%,100% { background-position: 52% center; } 50% { background-position: 38% center; } }
.identite-photo:hover { transform: scale(1.025); box-shadow: var(--shadow-lg); z-index: 2; }
@media (prefers-reduced-motion: reduce) { .spark, .identite-photo { animation: none !important; } }
/* Ken-burns coupé sur mobile : il anime background-position = repaints d'images en continu (jank scroll) */
@media (max-width: 768px) { .identite-photo { animation: none; } }


/* ════════════════════════════════════════════════
   28. MÉGA-CHIFFRES PLUS VISIBLES + FONDS GRAPHIQUES
   ════════════════════════════════════════════════ */
/* 01 / 02 / 03 : contour plus marqué + léger remplissage */
/* top positif : le chiffre vit en backdrop derrière le titre, jamais rogné par overflow:hidden (cf. parallaxe assagie) */
#services .v-label, #tarifs .v-label {
  -webkit-text-stroke: 2.4px rgba(237,232,217,0.34); color: rgba(237,232,217,0.05); top: 0.12em;
}
#processus .v-label {
  -webkit-text-stroke: 2.4px rgba(11,26,17,0.30); color: rgba(11,26,17,0.05); top: 0.12em;
}

/* Texture de points discrète sur les sections sombres (fond plus riche) */
#services, #tarifs, #humain, #identite {
  background-image: radial-gradient(rgba(237,232,217,0.03) 1px, transparent 1.6px);
  background-size: 26px 26px;
}

/* Motif topographique signature décliné dans plus de sections */
.topo-services { top: -90px; left: -100px; width: 540px; height: 540px; color: var(--cream); opacity: 0.09; }
.topo-tarifs   { bottom: -110px; left: -90px; width: 540px; height: 540px; color: var(--cream); opacity: 0.08; }
.topo-humain   { top: -80px; right: -100px; width: 520px; height: 520px; color: var(--cream); opacity: 0.08; }
#services > .topo, #tarifs > .topo, #humain > .topo { position: absolute; z-index: 0; }
@media (min-width: 769px) {
  .process-steps { position: relative; }
  .process-step { z-index: 1; }
}

/* ════════════════════════════════════════════════
   29. TARIFS — sélecteur déroulant (mobile)
   ════════════════════════════════════════════════ */
.pricing-select { display: none; position: relative; margin-bottom: var(--space-7); z-index: 5; }
.psel-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 22px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); text-align: left;
  background: var(--grad-warm); border: none; border-radius: var(--r-pill);
  box-shadow: var(--glow-terra);
  transition: filter var(--t-fast), transform var(--t-fast);
}
.psel-trigger:active { transform: scale(0.992); filter: brightness(0.96); }
.psel-label { flex: 1; min-width: 0; }
.psel-chev {
  flex: none; width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--t-base);
}
.pricing-select.open .psel-chev { transform: rotate(180deg); }
.psel-menu {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 30;
  display: flex; flex-direction: column; gap: 4px; padding: 6px;
  background: #11241a; border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.pricing-select.open .psel-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.psel-opt {
  width: 100%; text-align: left; padding: 14px 16px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  background: transparent; border: none; border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.psel-opt:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.psel-opt.active { color: var(--terra); background: rgba(227,74,28,0.12); }

@media (max-width: 768px) {
  .pricing-tabs { display: none; }
  .pricing-select { display: block; }
}

/* ════════════════════════════════════════════════
   30. BOUTONS — harmonisation mobile (tailles cohérentes)
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* CTA des cartes prix : tous en vrais boutons pleine largeur
     (avant : lien souligné riquiqui sur 2 cartes, pill sur la featured → incohérent) */
  .pcard-cta {
    align-self: stretch; width: 100%; justify-content: center;
    border: 1.5px solid rgba(227,74,28,0.55); border-bottom-width: 1.5px;
    border-radius: var(--r-pill); padding: 15px 24px;
    color: var(--terra); margin-top: var(--space-6);
  }
  .pcard-cta:hover { color: var(--white); border-color: var(--terra); background: rgba(227,74,28,0.12); }
  .pcard.featured .pcard-cta {
    width: 100%; justify-content: center; border: none; padding: 16px 24px;
  }
  /* CTA hero : hauteurs strictement identiques + un poil moins épais */
  .btn-primary { padding: 16px 24px; }
  .btn-ghost   { padding: 15px 24px; }
}
