
    :root {
      --green: #14452F;
      --green-dark: #0E3323;
      --gold: #C9A24B;
      --cream: #FAF9F5;
      --mist: #EEF2EF;
      --ink: #1C2520;
      --grey: #5A655E;
      --line: rgba(20, 69, 47, .18);
      --white: #fff;
      --shadow: 0 24px 70px rgba(14, 51, 35, .14);
      --radius: 24px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Barlow", Arial, sans-serif;
      color: var(--ink);
      background: var(--cream);
      font-size: 16px;
      line-height: 1.5;
    }
    a { color: inherit; text-decoration: none; }
    .page {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
    }
    .section { padding: 58px 0; position: relative; }
    .section.tight { padding: 42px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: 13px;
      margin: 0 0 14px;
    }
    .eyebrow::before {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--gold);
      transform: skewX(-30deg);
      display: inline-block;
    }
    h1, h2, h3 {
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      margin: 0;
      color: var(--green-dark);
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: .96;
    }
    h1 { font-size: clamp(38px, 4.6vw, 66px); max-width: 720px; }
    h2 { font-size: clamp(34px, 4vw, 56px); max-width: 820px; }
    h3 { font-size: 27px; letter-spacing: .025em; }
    p { margin: 0; }
    .lead { font-size: clamp(19px, 2vw, 24px); line-height: 1.35; color: var(--green-dark); max-width: 680px; font-weight: 500; }
    .muted { color: var(--grey); }
    .small { font-size: 14px; }

    .brand { display: flex; align-items: center; gap: 16px; }
    .brand-stack { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; }
    .mark { width: 52px; height: auto; display: block; }
    .wordmark {
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-weight: 800;
      font-size: 25px;
      letter-spacing: .18em;
      line-height: 1;
      color: var(--green-dark);
    }
    .baseline {
      font-size: 11px;
      letter-spacing: .06em;
      color: var(--grey);
      line-height: 1.1;
    }
    .url { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .08em; }

    .logo-lockup {
      width: 182px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 2px;
    }
    .hero-logo .logo-lockup { width: 238px; }
    footer .logo-lockup { width: 168px; }
    @media (max-width: 720px) {
      .logo-lockup { width: 158px; }
      .hero-logo .logo-lockup { width: 198px; }
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0 12px;
      gap: 20px;
    }
    .topbar .brand { gap: 13px; }
    .topbar .mark { width: 40px; }
    .top-contact {
      display: flex;
      gap: 18px;
      align-items: center;
      color: var(--green-dark);
      font-size: 15px;
      font-weight: 600;
    }
    .top-contact span { color: var(--line); }
    .top-right { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
    .lang-switch { display: inline-flex; gap: 3px; align-items: center; }
    .lang-switch a {
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: .06em;
      padding: 3px 9px;
      border-radius: 8px;
      color: var(--grey);
      line-height: 1;
    }
    .lang-switch a:hover { color: var(--green-dark); }
    .lang-switch a.active { background: var(--green); color: #fff; }

    .hero {
      padding: 24px 0 72px;
      overflow: hidden;
    }
    .hero-card {
      background: var(--white);
      border: 1px solid rgba(20,69,47,.10);
      border-radius: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }
    .hero-card::after {
      content: "";
      position: absolute;
      left: -30px;
      right: -30px;
      bottom: 14px;
      height: 3px;
      background: var(--gold);
      transform: rotate(-1.3deg);
      transform-origin: left center;
      z-index: 3;
      opacity: .95;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      align-items: stretch;
    }
    .hero-copy {
      padding: clamp(30px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 26px;
      position: relative;
      z-index: 4;
    }
    .hero-right { display: flex; flex-direction: column; }
    .hero-right .hero-visual { height: auto; flex: 0 0 auto; }
    .hero-right-copy {
      padding: clamp(24px, 3vw, 38px) clamp(30px, 4vw, 52px) clamp(58px, 6vw, 84px);
      display: flex;
      flex-direction: column;
      gap: 22px;
      flex: 1 1 auto;
      justify-content: center;
    }
    .hero-right-copy .lead { max-width: 560px; }
    .hero-logo { margin-bottom: 6px; }
    .hero-logo .mark { width: 68px; }
    .hero-logo .wordmark { font-size: 31px; }
    .hero-logo .baseline, .hero-logo .url { font-size: 12px; }
    .promise {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      align-self: flex-start;
      padding: 13px 16px;
      border: 1px solid rgba(201,162,75,.55);
      background: #fffbf0;
      color: var(--green-dark);
      font-weight: 700;
      border-radius: 999px;
      box-shadow: 0 10px 28px rgba(201,162,75,.12);
    }
    .promise strong { color: var(--green); }
    .promise-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      flex: 0 0 9px;
    }
    .cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .btn {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      padding: 13px 19px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: .015em;
      border: 1px solid transparent;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 30px rgba(20,69,47,.22); }
    .btn-secondary { background: #fff; color: var(--green-dark); border-color: rgba(20,69,47,.22); }
    .hero-visual {
      background: #f1f1f1;
      position: relative;
      display: flex;
      align-items: stretch;
      justify-content: center;
      min-width: 0;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #f1f1f1 0%, rgba(241,241,241,0) 11%);
      z-index: 3;
      pointer-events: none;
    }
    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      padding: 18px 18px 56px 0;
      position: relative;
      z-index: 0;
      background: var(--cream);
    }

    /* ---- Van arrival animation ---- */
    .van-stage {
      position: relative;
      width: 100%;
      z-index: 2;
      display: block;
      overflow: hidden;
    }
    .hero-visual img.van {
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
      background: none;
      padding: 0;
      display: block;
      opacity: 1;
      transform: none;
      transform-origin: 70% 100%;
      will-change: transform;
    }
    .van-stage.play img.van { animation: vanArrive 1.7s cubic-bezier(.16,.72,.2,1) .1s both; }
    @keyframes vanArrive {
      0%   { opacity: 0; transform: translateX(-150%) skewX(10deg) rotate(-2.2deg); }
      8%   { opacity: 1; }
      46%  { transform: translateX(6.5%) skewX(-5deg) rotate(3.4deg); }
      61%  { transform: translateX(-3.2%) skewX(2.5deg) rotate(-2deg); }
      74%  { transform: translateX(1.8%) skewX(-1deg) rotate(1.1deg); }
      87%  { transform: translateX(-0.7%) rotate(-0.4deg); }
      100% { transform: translateX(0) skewX(0) rotate(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .van-stage.play img.van { animation: none; }
    }

    .gold-split {
      height: 3px;
      background: var(--gold);
      transform: skewX(-28deg);
      width: 124px;
      margin: 26px 0 0;
    }
    .intro-row {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 42px;
      align-items: end;
      margin-bottom: 28px;
    }
    .card-grid { display: grid; gap: 18px; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .card {
      background: #fff;
      border: 1px solid rgba(20,69,47,.11);
      border-radius: var(--radius);
      padding: 25px;
      min-height: 178px;
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 66px;
      height: 4px;
      background: var(--gold);
      transform: skewX(-24deg) translateX(-8px);
    }
    .card p { color: var(--grey); margin-top: 13px; }
    .icon-no {
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-size: 58px;
      line-height: .8;
      color: rgba(20,69,47,.13);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .answer {
      background: var(--green-dark);
      color: #fff;
      border-radius: 34px;
      padding: clamp(30px, 4vw, 48px);
      position: relative;
      overflow: hidden;
    }
    .answer::after {
      content: "";
      position: absolute;
      left: -30px;
      right: -30px;
      bottom: 16px;
      height: 3px;
      background: var(--gold);
      transform: rotate(-1.1deg);
      transform-origin: left center;
      opacity: .95;
    }
    .answer h2, .answer h3 { color: #fff; }
    .answer .eyebrow { color: #fff; }
    .answer .eyebrow::before { background: var(--gold); }
    .answer-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      position: relative;
      z-index: 2;
    }
    .answer-panel {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px;
      padding: 26px;
    }
    .chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
    .chip {
      display: inline-flex;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
    }
    .chip.gold { background: rgba(201,162,75,.14); border-color: rgba(201,162,75,.45); }

    .proof-band {
      background: #fff;
      border-top: 1px solid rgba(20,69,47,.10);
      border-bottom: 1px solid rgba(20,69,47,.10);
    }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border-left: 1px solid rgba(20,69,47,.10);
    }
    .metric {
      padding: 32px 24px;
      border-right: 1px solid rgba(20,69,47,.10);
      min-height: 152px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 14px;
      background: linear-gradient(180deg, #fff, #fffdf8);
    }
    .metric strong {
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      color: var(--green-dark);
      font-size: clamp(31px, 3vw, 44px);
      line-height: .9;
      text-transform: uppercase;
      letter-spacing: .02em;
    }
    .metric span { color: var(--grey); font-weight: 600; }

    .org-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: stretch;
    }
    .org-intro {
      background: var(--mist);
      border-radius: 30px;
      padding: 34px;
      border: 1px solid rgba(20,69,47,.10);
    }
    .quote {
      font-size: clamp(23px, 2.5vw, 34px);
      line-height: 1.1;
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-weight: 700;
      color: var(--green-dark);
      text-transform: uppercase;
    }
    .mini-list { display: grid; gap: 14px; }
    .benefit {
      background: #fff;
      border: 1px solid rgba(20,69,47,.11);
      border-radius: 22px;
      padding: 22px;
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      align-items: start;
    }
    .benefit .badge {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      background: var(--green);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-size: 24px;
      font-weight: 800;
    }
    .benefit p { color: var(--grey); margin-top: 4px; }

    .risk { background: var(--mist); }
    .risk .card { background: #fff; }

    .legit {
      background: var(--green);
      color: #fff;
      border-radius: 34px;
      padding: clamp(30px, 5vw, 56px);
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 42px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .legit::before {
      content: "";
      position: absolute;
      left: -10%;
      bottom: 20px;
      width: 120%;
      height: 3px;
      background: var(--gold);
      transform: rotate(-1deg);
      opacity: .9;
    }
    .legit > * { position: relative; z-index: 1; }
    .legit h2 { color: #fff; }
    .legit p { color: rgba(255,255,255,.82); font-size: 18px; }
    .legit-metric {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 20px;
      padding: 22px 24px;
    }
    .legit-metric strong {
      display: block;
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-size: clamp(40px, 5vw, 64px);
      line-height: .85;
      color: #fff;
    }
    .legit-metric span { color: rgba(255,255,255,.84); font-weight: 700; font-size: 15px; }

    /* ---- contact form ---- */
    .formwrap { background:#fff; border:1px solid rgba(20,69,47,.11); border-radius:var(--radius); padding:clamp(28px,4vw,46px); max-width:760px; }
    .cform { display:flex; flex-direction:column; gap:16px; margin-top:22px; position:relative; }
    .cform .frow { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .cform label { display:flex; flex-direction:column; gap:6px; font-weight:700; font-size:14px; color:var(--green-dark); }
    .cform input, .cform select, .cform textarea { font-family:inherit; font-size:16px; padding:12px 14px; border:1px solid rgba(20,69,47,.22); border-radius:12px; background:#fff; color:var(--ink); font-weight:500; width:100%; }
    .cform input:focus, .cform select:focus, .cform textarea:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(20,69,47,.08); }
    .cform textarea { resize:vertical; }
    .cform .hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
    .cform button { align-self:flex-start; margin-top:6px; cursor:pointer; }
    .formnote { padding:14px 18px; border-radius:12px; font-weight:700; margin-top:18px; }
    .formnote.ok { background:#eaf3ec; color:var(--green-dark); border:1px solid rgba(20,69,47,.25); }
    .formnote.err { background:#fbeaea; color:#7a2020; border:1px solid rgba(122,32,32,.25); }
    @media (max-width:620px){ .cform .frow { grid-template-columns:1fr; } }

    .steps {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 22px;
      counter-reset: steps;
    }
    .step {
      background: #fff;
      border: 1px solid rgba(20,69,47,.11);
      border-radius: 25px;
      padding: 28px;
      min-height: 190px;
      position: relative;
    }
    .step::before {
      counter-increment: steps;
      content: "0" counter(steps);
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-size: 58px;
      color: rgba(20,69,47,.13);
      font-weight: 800;
      display: block;
      line-height: .85;
      margin-bottom: 24px;
    }
    .step:not(:last-child)::after {
      content: "";
      position: absolute;
      right: -23px;
      top: 50%;
      width: 24px;
      height: 3px;
      background: var(--gold);
      transform: translateY(-50%) skewX(-28deg);
      z-index: 2;
    }
    .step p { color: var(--grey); margin-top: 10px; }

    .final {
      padding-bottom: 70px;
    }
    .final-card {
      background: var(--green-dark);
      color: #fff;
      border-radius: 34px;
      padding: clamp(32px, 5vw, 56px);
      display: grid;
      grid-template-columns: 1fr 270px;
      gap: 42px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .final-card::after {
      content: "";
      position: absolute;
      left: -40px;
      right: -40px;
      bottom: 42px;
      height: 3px;
      background: var(--gold);
      transform: rotate(-3.2deg);
      opacity: .9;
    }
    .final-card > * { position: relative; z-index: 2; }
    .final-card h2 { color: #fff; }
    .final-card .lead { color: rgba(255,255,255,.9); }
    .contact-lines {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      margin: 24px 0 22px;
      color: rgba(255,255,255,.86);
      font-weight: 600;
    }
    .contact-lines a { text-decoration: underline; text-decoration-color: rgba(201,162,75,.55); text-underline-offset: 4px; }
    .final-card .btn-secondary { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); color: #fff; }
    .qr-box {
      background: var(--cream);
      border-radius: 24px;
      padding: 20px;
      color: var(--green-dark);
      text-align: center;
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
    }
    .qr-box img { width: 180px; height: 180px; display: block; margin: 0 auto 12px; }
    .qr-box strong { display: block; font-family: "Barlow Condensed", Arial Narrow, sans-serif; font-size: 25px; text-transform: uppercase; line-height: 1; }
    .qr-box span { display: block; color: var(--grey); font-size: 13px; margin-top: 7px; }

    footer {
      padding: 24px 0 34px;
      color: var(--grey);
      border-top: 1px solid rgba(20,69,47,.10);
    }
    .footer-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; }

    @media (max-width: 980px) {
      .hero-grid, .intro-row, .answer-grid, .org-wrap, .legit, .final-card { grid-template-columns: 1fr; }
      .hero-grid { min-height: auto; }
      .hero-visual { min-height: 0; }
      .hero-visual::before { display: none; }
      .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
      .proof-grid { grid-template-columns: repeat(2, 1fr); }
      .metric:last-child { grid-column: 1 / -1; }
      .step:not(:last-child)::after { display: none; }
      .topbar { align-items: flex-start; }
      .top-contact { flex-direction: column; gap: 4px; align-items: flex-end; }
      .top-contact span { display: none; }
      .qr-box { max-width: 270px; }
    }
    @media (max-width: 620px) {
      .page { width: min(100% - 24px, 1180px); }
      .section { padding: 42px 0; }
      .topbar { flex-direction: column; }
      .top-contact { align-items: flex-start; }
      .hero-copy { padding: 28px; }
      .hero-card { border-radius: 24px; }
      .promise { border-radius: 22px; align-items: flex-start; }
      .proof-grid { grid-template-columns: 1fr; border-left: 0; }
      .metric { border-left: 1px solid rgba(20,69,47,.10); }
      .answer, .legit, .final-card { border-radius: 24px; }
      .final-card { gap: 28px; }
      .footer-row { flex-direction: column; align-items: flex-start; }
      .contact-lines { flex-direction: column; }
    }

    @media print {
      @page { size: A4; margin: 12mm; }
      body { background: #fff; font-size: 11.4pt; }
      .page { width: 100%; }
      .topbar { padding: 0 0 10px; }
      .hero { padding: 0 0 18px; }
      .hero-card, .card, .answer, .org-intro, .benefit, .legit, .step, .final-card, .qr-box { box-shadow: none !important; break-inside: avoid; }
      .hero-card { border-radius: 18px; }
      .hero-grid { grid-template-columns: .9fr 1.1fr; min-height: 420px; }
      .hero-copy { padding: 24px; gap: 16px; }
      h1 { font-size: 46pt; }
      h2 { font-size: 31pt; }
      h3 { font-size: 18pt; }
      .section { padding: 18px 0; break-inside: avoid; }
      .proof-grid { grid-template-columns: repeat(5, 1fr); }
      .metric { padding: 18px 12px; min-height: 105px; }
      .metric strong { font-size: 25pt; }
      .grid-3 { grid-template-columns: repeat(3, 1fr); }
      .grid-2 { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(3, 1fr); }
      .answer-grid, .org-wrap, .legit, .final-card { grid-template-columns: 1fr 1fr; }
      .hero-visual img { padding-bottom: 30px; }
      .btn { border: 1px solid currentColor; }
      a[href]::after { content: ""; }
    }
  
    /* ---- multi-page nav ---- */
    .nav-cluster { display: flex; align-items: center; gap: 26px; }
    .mainnav { display: flex; gap: 22px; }
    .mainnav a {
      font-family: "Barlow Condensed", Arial Narrow, sans-serif;
      font-weight: 600; font-size: 18px; letter-spacing: .04em; text-transform: uppercase;
      color: var(--green-dark); padding: 4px 1px; border-bottom: 2px solid transparent;
    }
    .mainnav a:hover { color: var(--green); }
    .mainnav a.active { border-bottom-color: var(--gold); }
    .mainnav a.nav-join { color: var(--gold); }
    .mainnav a.nav-join:hover { color: var(--green); border-bottom-color: var(--gold); }
    .btn-gold-cta {
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--gold); color: var(--green-dark);
      padding: 11px 18px; border-radius: 999px; font-weight: 800; font-size: 15px;
      white-space: nowrap; transition: filter .15s ease, transform .15s ease;
    }
    .btn-gold-cta:hover { filter: brightness(.95); transform: translateY(-1px); }
    .btn-gold-cta.lg { font-size: 16px; padding: 14px 22px; }
    .cta-band {
      background: var(--green); color: #fff; border-radius: 34px;
      padding: clamp(28px, 4vw, 46px);
      display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
    }
    .cta-band h2 { color: #fff; }
    .cta-band .eyebrow { color: #fff; }
    .cta-band .eyebrow::before { background: var(--gold); }
    @media (max-width: 980px) {
      .nav-cluster { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
      .mainnav { gap: 16px; }
    }
    @media (max-width: 620px) {
      .topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
      .nav-cluster { width: 100%; justify-content: space-between; }
      .mainnav { flex-wrap: wrap; gap: 12px 16px; }
      .cta-band { border-radius: 24px; }
    }

    /* ---- Immersive hero (hybride v2) ---- */
    .hero-immersive { padding: 22px 0 64px; }
    .hero-stage {
      position: relative;
      border-radius: 34px;
      overflow: hidden;
      min-height: min(80vh, 740px);
      display: flex;
      align-items: flex-end;
      background: var(--green-dark);
      box-shadow: var(--shadow);
    }
    .hero-photo {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: 72% center;
      z-index: 0;
    }
    .hero-stage::before {
      content: ""; position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(102deg,
        rgba(14,51,35,.95) 0%, rgba(14,51,35,.78) 40%,
        rgba(14,51,35,.34) 70%, rgba(14,51,35,.10) 100%);
    }
    .hero-stage::after {
      content: ""; position: absolute;
      left: -30px; right: -30px; bottom: 16px; height: 3px;
      background: var(--gold); transform: rotate(-1.1deg);
      transform-origin: left center; z-index: 3; opacity: .95;
    }
    .hero-content {
      position: relative; z-index: 2; width: 100%;
      padding: clamp(34px,5vw,66px) clamp(28px,5vw,62px) clamp(40px,5vw,58px);
      display: flex; flex-direction: column; gap: 22px;
    }
    .hero-eyebrow {
      align-self: flex-start;
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 15px; border-radius: 999px;
      background: rgba(201,162,75,.16); border: 1px solid rgba(201,162,75,.5);
      color: #e7c878; font-weight: 700; font-size: 13px;
      letter-spacing: .12em; text-transform: uppercase;
    }
    .hero-immersive h1 { color: #fff; max-width: 17ch; }
    .hero-immersive .lead { color: rgba(255,255,255,.87); max-width: 560px; }
    .hero-immersive .cta-row { margin-top: 2px; }
    .hero-immersive .btn-secondary {
      background: rgba(255,255,255,.12); color: #fff;
      border-color: rgba(255,255,255,.42); backdrop-filter: blur(4px);
    }
    .hero-strip {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; margin-top: 8px; max-width: 640px;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 16px; overflow: hidden; backdrop-filter: blur(8px);
    }
    .hero-strip .cell {
      background: rgba(14,51,35,.36); padding: 14px 18px;
      display: flex; flex-direction: column; gap: 3px;
    }
    .hero-strip .k {
      font-size: 12px; color: rgba(255,255,255,.66);
      font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    }
    .hero-strip .v { font-size: 15px; color: #fff; font-weight: 700; }
    @media (max-width: 720px) {
      .hero-stage { min-height: 0; align-items: stretch; }
      .hero-immersive h1 { max-width: none; }
      .hero-strip { grid-template-columns: 1fr; max-width: none; }
    }

    /* ---- Bande utilitaire (réemploi hero animé) ---- */
    .vanband-grid {
      display: grid; grid-template-columns: .92fr 1.08fr;
      gap: clamp(24px, 4vw, 48px); align-items: center;
    }
    .vanband-copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
    .vanband-copy .lead { max-width: 460px; }
    .vanband-visual { position: relative; }
    .vanband .hero-visual {
      background: transparent; border-radius: 24px; overflow: hidden; min-height: 0;
    }
    .vanband .hero-visual::before { display: none; }
    .vanband .hero-visual img.van { padding: 0; background: none; }
    @media (max-width: 980px) {
      .vanband-grid { grid-template-columns: 1fr; }
      .vanband-visual { order: -1; }
    }

    /* ---- Accent or sur le titre hero ---- */
    .hero-immersive h1 .hl { color: var(--gold); }

    /* ---- Rythme : section teintée ---- */
    .section.tinted { background: var(--mist); }

    /* ---- Menu mobile (burger) ---- */
    .navtoggle {
      display: none; flex-direction: column; gap: 5px;
      width: 44px; height: 40px; align-items: center; justify-content: center;
      background: var(--green); border: none; border-radius: 12px; cursor: pointer;
    }
    .navtoggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
    @media (max-width: 760px) {
      .topbar { flex-wrap: wrap; align-items: center; }
      .navtoggle { display: inline-flex; margin-left: auto; }
      .nav-cluster {
        display: none; flex-basis: 100%; width: 100%;
        flex-direction: column; align-items: flex-start; gap: 14px;
        padding: 16px 2px 6px;
      }
      .nav-open .nav-cluster { display: flex; }
      .nav-open .navtoggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-open .navtoggle span:nth-child(2) { opacity: 0; }
      .nav-open .navtoggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      .mainnav { flex-direction: column; gap: 12px; }
      .mainnav a { font-size: 20px; }
    }

    /* ============================================================
       OPTIMISATION MOBILE (≤ 560px)
       ============================================================ */
    @media (max-width: 560px) {
      /* Espacements verticaux resserrés */
      .section { padding: 38px 0; }
      .page { width: min(100% - 28px, 1180px); }

      /* Typo recalibrée pour petits écrans */
      .hero-immersive h1 { font-size: 35px; line-height: 1.04; }
      h2 { font-size: 27px; }
      h3 { font-size: 22px; }
      .lead { font-size: 17px; line-height: 1.4; }
      .eyebrow { font-size: 12px; }
      .intro-row { gap: 16px; margin-bottom: 22px; }

      /* Hero : plus compact, CTAs pleine largeur */
      .hero-immersive { padding: 16px 0 44px; }
      .hero-stage { border-radius: 26px; }
      .hero-content { gap: 18px; padding: 26px 22px 30px; }
      .hero-immersive .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
      .hero-immersive .cta-row .btn { width: 100%; }
      .hero-strip { border-radius: 14px; }
      .hero-strip .cell { padding: 12px 16px; }

      /* Cartes : hauteur selon contenu (moins de scroll) */
      .card, .step, .benefit, .metric { min-height: 0; }
      .card { padding: 20px; }
      .step { padding: 22px; }
      .metric { padding: 22px 18px; }

      /* Panneaux verts plus compacts */
      .answer, .legit, .final-card { border-radius: 26px; padding: 26px 22px; }
      .answer-panel { padding: 20px; }
      .org-intro { padding: 26px 22px; }

      /* Boutons : confort tactile */
      .btn { min-height: 50px; padding: 14px 20px; }
      .btn-gold-cta { padding: 13px 20px; }

      /* Bande utilitaire : visuel d'abord, marges réduites */
      .vanband-grid { gap: 18px; }
    }
