/* ===========================================================
   Hamac — Régie publicitaire : styles de la landing page
   Tokens (couleurs, type, espacements) : voir colors_and_type.css
   =========================================================== */

* { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--noir);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  /* ─────────────────────────────────────────────────────────
     SHARED TOKENS / UTILS
     ───────────────────────────────────────────────────────── */
  .wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .eyebrow {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
    display: inline-block;
  }
  .btn {
    appearance: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -0.01em;
    padding: 16px 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--dur-fast) var(--ease-out),
                background var(--dur-base) var(--ease-out),
                color var(--dur-base) var(--ease-out);
  }
  .btn:active { transform: translateY(1px); }
  .btn .arrow {
    width: 16px; height: 16px;
    display: inline-block;
  }
  .btn-yellow { background: var(--hamac-yellow); color: var(--noir); }
  .btn-yellow:hover { background: var(--hamac-yellow-deep); }
  .btn-noir   { background: var(--noir); color: var(--white); border: 1.5px solid var(--noir); }
  .btn-noir:hover { background: var(--anthracite); border-color: var(--anthracite); }
  .btn-ghost-dark { background: transparent; color: var(--noir); border: 1.5px solid rgba(2,4,7,0.85); }
  .btn-ghost-dark:hover { background: rgba(2,4,7,0.06); }
  .btn-blue   { background: var(--hamac-blue); color: var(--noir); }
  .btn-blue:hover { background: #52BFE7; }

  .hairline { height: 1px; background: rgba(255,255,255,0.08); width: 100%; }

  /* ─────────────────────────────────────────────────────────
     DECORATIVE UTILITIES — halos, dot patterns, curved doodles
     Sprinkled subtly across sections to add rhythm.
     ───────────────────────────────────────────────────────── */
  .halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
  }
  .halo.blue   { background: var(--hamac-blue); }
  .halo.yellow { background: var(--hamac-yellow); }
  .halo.warm   { background: #E94B35; opacity: 0.22; }

  .dot-grid {
    position: absolute;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.4px, transparent 1.4px);
    background-size: 14px 14px;
    z-index: 1;
  }
  .dot-grid.dark {
    background-image: radial-gradient(circle, rgba(2,4,7,0.18) 1.4px, transparent 1.4px);
  }

  .deco-curve {
    position: absolute;
    pointer-events: none;
    z-index: 2;
  }

  /* ─────────────────────────────────────────────────────────
     TOP NAV
     ───────────────────────────────────────────────────────── */
  .topnav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(2,4,7,0.86);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .topnav .row {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--nav-height);
  }
  .topnav .logo img { height: clamp(38px, 4.2vw, 48px); width: auto; }
  .topnav nav {
    display: flex; gap: 32px;
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: rgba(255,255,255,0.7);
  }
  .topnav nav a { transition: color var(--dur-base) var(--ease-out); }
  .topnav nav a:hover { color: var(--white); }
  .topnav .right { display: flex; align-items: center; gap: 18px; }
  .topnav .phone { font-family: var(--font-display); font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
  .topnav .phone svg { width: 14px; height: 14px; }
  .topnav .cta {
    background: var(--hamac-yellow); color: var(--noir);
    font-family: var(--font-display); font-weight: 900; font-size: 13px;
    padding: 10px 18px; border-radius: 999px;
    transition: background var(--dur-base) var(--ease-out);
  }
  .topnav .cta:hover { background: var(--hamac-yellow-deep); }

  /* ─────────────────────────────────────────────────────────
     SECTION 1 — HERO
     ───────────────────────────────────────────────────────── */
  .hero {
    position: relative;
    padding: 72px 0 0;
    overflow: hidden;
  }
  .hero .wrap { position: relative; }
  .hero-logo {
    position: absolute;
    top: 32px;
    left: 40px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
  }
  .hero-logo img {
    width: auto;
    height: 46px;
  }
  .hero .grid {
    display: grid;
    grid-template-columns: 0.9fr 1.35fr;
    gap: 48px;
    align-items: end;
    min-height: 560px;
  }
  .hero .copy { padding-bottom: 72px; position: relative; z-index: 2; }
  .hero .campaign-logo {
    width: clamp(104px, 10vw, 148px);
    height: auto;
    margin: 0 0 22px;
  }
  .hero .eyebrow { color: var(--hamac-yellow); margin-bottom: 28px; }
  .hero .eyebrow .eyebrow-mark {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex: 0 0 auto;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 6.4vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .hero h1 .blue { color: var(--hamac-blue); }
  .hero h1 .keep {
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }
  .hero h1 .underline {
    position: relative; display: inline-block;
  }
  .hero h1 .underline::after {
    content: none;
  }
  .hero h1 .keep::after {
    content: "";
    position: absolute; left: -2px; right: -2px; bottom: 1px; height: 8px;
    background: var(--hamac-yellow); z-index: -1;
    transform: skewX(-6deg);
  }
  .hero .sub {
    font-family: var(--font-body); font-weight: 500;
    font-size: 18px; line-height: 1.55;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 0 36px;
  }
  .hero .actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    align-items: center;
  }
  .hero .secondary-link { display: none; }

  /* Hero — character sits directly on the page (noir) background. No framed scene, no rectangle. */
  .hero .char-stage {
    position: relative;
    align-self: end;
    height: 560px;
    /* deliberately no background, no border, no overflow:hidden — character + doodles float free on the page canvas */
  }
  .hero .char-stage img.char {
    position: absolute;
    left: 38%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 420px;
    max-width: none;
    height: auto;
    z-index: 3;
    pointer-events: none;
  }
  /* Soft brand halos behind the character — atmosphere, not a frame */
  .hero .char-halo-1 {
    width: 460px; height: 460px;
    left: -40px; bottom: 40px;
    opacity: 0.32;
  }
  .hero .char-halo-2 {
    width: 320px; height: 320px;
    right: -20px; top: 40px;
    opacity: 0.20;
  }
  /* Subtle dot-grid texture behind the character */
  .hero .char-dots {
    width: 200px; height: 140px;
    left: 20px; top: 60px;
    opacity: 0.55;
  }
  /* All hero doodles hidden — varsity character carries the energy on its own */
  .hero .doodle,
  .hero .d-arrow,
  .hero .d-spark,
  .hero .d-spark-2,
  .hero .d-bolt,
  .hero .d-swirl { display: none !important; }

  .transition-stats {
    background: var(--noir);
    padding: 24px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .transition-stats .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .transition-stats .stat {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 20px 22px 22px;
    background: rgba(255,255,255,0.03);
    min-height: 132px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
  }
  .transition-stats .stat::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.18;
    background: var(--hamac-blue);
  }
  .transition-stats .stat:nth-child(1) {
    background: var(--hamac-yellow);
    color: var(--noir);
  }
  .transition-stats .stat:nth-child(1)::after { background: var(--noir); }
  .transition-stats .stat:nth-child(1) .v,
  .transition-stats .stat:nth-child(1) .l { color: var(--noir); }
  .transition-stats .stat:nth-child(2) {
    background: var(--hamac-blue);
    color: var(--noir);
  }
  .transition-stats .stat:nth-child(2)::after { background: var(--white); }
  .transition-stats .stat:nth-child(2) .v,
  .transition-stats .stat:nth-child(2) .l { color: var(--noir); }
  .transition-stats .stat .mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255,255,255,0.1);
    color: var(--hamac-blue);
    position: relative;
    z-index: 2;
  }
  .transition-stats .stat:nth-child(1) .mini-icon,
  .transition-stats .stat:nth-child(2) .mini-icon {
    background: rgba(2,4,7,0.12);
    color: var(--noir);
  }
  .transition-stats .stat .mini-icon svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.2;
  }
  .transition-stats .stat .v {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.02;
    color: var(--white);
    max-width: 12ch;
    position: relative;
    z-index: 2;
  }
  .transition-stats .stat .acc { color: var(--hamac-blue); }
  .transition-stats .stat .l {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    margin-top: auto;
    position: relative;
    z-index: 2;
  }

  /* Marquee bar below hero — proximity line + locations */
  .marquee {
    background: var(--hamac-blue);
    color: var(--noir);
    margin-top: 40px;
    overflow: hidden;
    border-top: 1px solid rgba(2,4,7,0.1);
    border-bottom: 1px solid rgba(2,4,7,0.1);
  }
  .marquee .track {
    display: flex; gap: 56px;
    padding: 18px 0;
    animation: scroll 38s linear infinite;
    width: max-content;
    font-family: var(--font-display); font-weight: 900;
    font-size: 18px; letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .marquee .track .dot {
    display: inline-block; width: 8px; height: 8px;
    background: var(--noir); border-radius: 50%;
    align-self: center;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ─────────────────────────────────────────────────────────
     SECTION 2 — FORMATS HAMAC
     ───────────────────────────────────────────────────────── */
  .formats {
    padding: 96px 0 84px;
    background: var(--noir);
    position: relative;
    overflow: hidden;
  }
  /* Hanging character above the intro — looks like he's leaning over a ledge,
     hand extending downward toward the right-column paragraph */
  .formats .hangchar {
    position: absolute;
    right: 7%;
    top: 82px;
    width: 470px;
    height: auto;
    z-index: 4;
    pointer-events: none;
    transform: rotate(7deg);
  }
  .formats .hangchar-halo {
    position: absolute;
    right: -3%;
    top: 90px;
    width: 520px;
    height: 400px;
    z-index: 0;
    opacity: 0.28;
  }
  .formats .head {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1fr);
    gap: 56px;
    align-items: center;
    min-height: 360px;
    margin-bottom: 34px;
  }
  .formats .head .left .eyebrow { color: var(--hamac-blue); margin-bottom: 20px; }
  .formats .head h2 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(40px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.025em;
    margin: 0;
    text-wrap: balance;
  }
  .formats .head h2 .yel { color: var(--hamac-yellow); }
  .formats .head .left p {
    font-family: var(--font-body); font-weight: 500;
    font-size: 17px; line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin: 24px 0 0;
    max-width: 640px;
  }

  .formats .cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .fmt {
    position: relative;
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 28px 28px 32px;
    overflow: hidden;
    display: flex; flex-direction: column;
    min-height: 520px;
  }
  .fmt .index {
    font-family: var(--font-display); font-weight: 900; font-size: 12px;
    letter-spacing: .18em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
  }
  .fmt .index .num { color: var(--hamac-yellow); }
  .fmt h3 {
    font-family: var(--font-display); font-weight: 900;
    font-size: 32px; line-height: 1; letter-spacing: -0.02em;
    margin: 0 0 16px;
  }
  .fmt .lede {
    font-family: var(--font-body); font-weight: 500;
    font-size: 15px; line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin: 0 0 24px;
    max-width: 320px;
    position: relative; z-index: 2;
  }
  .fmt .tag {
    font-family: var(--font-display); font-weight: 900;
    font-size: 10px; letter-spacing: .14em;
    padding: 6px 10px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    align-self: flex-start;
    color: rgba(255,255,255,0.7);
    position: relative; z-index: 2;
  }
  .fmt .char-zone {
    flex: 1;
    position: relative;
    margin: 18px -28px -22px;
    min-height: 204px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .fmt .char-zone img {
    position: static;
    pointer-events: none;
  }
  .fmt .char-zone .format-asset {
    z-index: 1;
    display: block;
    max-width: none;
    max-height: 190px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.22));
  }
  .fmt .footer-row {
    position: relative; z-index: 3;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-display); font-weight: 900;
    font-size: 11px; letter-spacing: .14em;
    color: var(--hamac-blue);
  }
  .fmt .footer-row .meta { color: rgba(255,255,255,0.5); }

  /* Card 1 — MOBILITE */
  .fmt-bus .char-zone {
    margin-top: 22px;
  }
  .fmt-bus {
    background: var(--hamac-yellow);
    color: var(--noir);
  }
  .fmt-bus .index { color: rgba(2,4,7,0.55); }
  .fmt-bus .index .num { color: var(--noir); }
  .fmt-bus h3 { color: var(--noir); }
  .fmt-bus .lede { color: rgba(2,4,7,0.78); }
  .fmt-bus .tag { border-color: rgba(2,4,7,0.3); color: rgba(2,4,7,0.78); }
  .fmt-bus .footer-row { color: var(--noir); border-top-color: rgba(2,4,7,0.15); }
  .fmt-bus .footer-row .meta { color: rgba(2,4,7,0.55); }
  .fmt-bus .char-zone .format-asset {
    width: min(86%, 380px);
    max-height: 172px;
    margin-bottom: 18px;
  }
  /* Card 2 — VISIBILITE FIXE */
  .fmt-abri {
    background: var(--hamac-blue);
    color: var(--noir);
  }
  .fmt-abri .index { color: rgba(2,4,7,0.55); }
  .fmt-abri .index .num { color: var(--noir); }
  .fmt-abri h3 { color: var(--noir); }
  .fmt-abri .lede { color: rgba(2,4,7,0.78); }
  .fmt-abri .tag { border-color: rgba(2,4,7,0.3); color: rgba(2,4,7,0.78); }
  .fmt-abri .footer-row { color: var(--noir); border-top-color: rgba(2,4,7,0.15); }
  .fmt-abri .footer-row .meta { color: rgba(2,4,7,0.55); }
  .fmt-abri .char-zone .format-asset {
    width: min(94%, 430px);
    max-height: 188px;
    margin-bottom: 8px;
  }
  /* Process section */
  .process {
    background: var(--noir);
    color: var(--white);
    padding: 86px 0;
    position: relative;
    overflow: hidden;
  }
  .process .wrap { position: relative; z-index: 2; }
  .process .head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 32px;
  }
  .process .eyebrow { color: var(--hamac-blue); margin-bottom: 20px; }
  .process h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: .98;
    letter-spacing: -0.025em;
    margin: 0;
    text-wrap: balance;
  }
  .process .head p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.68);
    margin: 0;
    max-width: 560px;
  }
  .process .steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .process .step {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    min-height: 220px;
  }
  .process .step .k {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--hamac-yellow);
  }
  .process .step h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    line-height: 1.05;
    margin: 18px 0 12px;
  }
  .process .step p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,.66);
    margin: 0;
  }

  /* ─────────────────────────────────────────────────────────
     SECTION 3 — BÉNÉFICES — composition asymétrique
     ───────────────────────────────────────────────────────── */
  .benefits {
    background: var(--anthracite);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
  }
  .benefits .wrap { position: relative; z-index: 2; }

  /* Asymmetric header band: left copy / right character */
  .benefits .lead {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 64px;
    position: relative;
    min-height: 360px;
  }
  .benefits .lead .copy { padding-bottom: 24px; }
  .benefits .lead .eyebrow { color: var(--hamac-yellow); margin-bottom: 24px; }
  .benefits .lead h2 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(40px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.025em;
    margin: 0 0 20px;
    max-width: 560px;
    text-wrap: balance;
  }
  .benefits .lead h2 .blue { color: var(--hamac-blue); }
  .benefits .lead p {
    font-family: var(--font-body); font-weight: 500;
    font-size: 16px; line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 460px;
    margin: 0;
  }

  /* Character zone — pose-relax-pointing, lying back, pointing down at the benefits grid below */
  .benefits .char-zone {
    position: relative;
    min-height: 340px;
  }
  .benefits .char-zone .halo {
    width: 480px; height: 480px;
    right: -80px; top: -60px;
    opacity: 0.18;
  }
  .benefits .char-zone img.char {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 440px;
    height: auto;
    z-index: 2;
    pointer-events: none;
  }
  /* Curved arrow that bridges character's pointing hand → first benefit card */
  .benefits .lead-arrow {
    position: absolute;
    left: 38%; bottom: -32px;
    width: 140px;
    z-index: 3;
  }
  .benefits .lead-dots {
    width: 160px; height: 90px;
    left: 0; bottom: -10px;
    opacity: 0.5;
  }

  .benefits .grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
  }
  .benefit {
    background: var(--anthracite);
    padding: 36px 28px 40px;
    display: flex; flex-direction: column; gap: 16px;
    min-height: 280px;
    position: relative;
  }
  .benefit:hover { background: #1d2122; transition: background var(--dur-base) var(--ease-out); }
  .benefit .num {
    font-family: var(--font-display); font-weight: 900;
    font-size: 11px; letter-spacing: .18em;
    color: var(--hamac-yellow);
  }
  .benefit h4 {
    font-family: var(--font-display); font-weight: 900;
    font-size: 22px; line-height: 1.1; letter-spacing: -0.015em;
    margin: 0;
    text-wrap: balance;
  }
  .benefit p {
    font-family: var(--font-body); font-weight: 500;
    font-size: 14px; line-height: 1.55;
    color: rgba(255,255,255,0.65);
    margin: 0;
  }
  .benefit .icon-row {
    margin-top: auto;
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 900; font-size: 10px;
    letter-spacing: .14em;
    color: var(--hamac-blue);
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .benefit .icon-row svg { width: 14px; height: 14px; }

  /* Soft background halos for benefits section */
  .benefits .bg-halo-1 { left: -200px; top: 200px; width: 500px; height: 500px; opacity: 0.10; }
  .benefits .bg-halo-2 { right: -150px; bottom: -100px; width: 480px; height: 480px; opacity: 0.10; }

  /* ─────────────────────────────────────────────────────────
     SECTION 4 — PARTENARIATS (preuves sociales)
     ───────────────────────────────────────────────────────── */
  .partners {
    background: var(--noir);
    padding: 112px 0 76px;
    position: relative;
    overflow: hidden;
  }
  .partners .wrap { position: relative; z-index: 2; }
  .partners .head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 365px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }
  /* Flying character — pose-superman-pointing — pointe vers les cases */
  /* Dynamic ambassador — has built-in doodles, so external curve is hidden */
  .partners .flyer {
    position: absolute;
    right: 64px;
    top: -56px;
    width: 320px;
    z-index: 3;
    pointer-events: none;
  }
  .partners .flyer-halo {
    position: absolute;
    right: 16px;
    top: -68px;
    width: 350px;
    height: 350px;
    z-index: 2;
    opacity: 0.32;
  }
  .partners .flyer-curve { display: none; }
  .partners .flyer-curve {
    position: absolute;
    right: 26%;
    top: 24px;
    width: 110px;
    z-index: 2;
  }
  .partners .bg-halo-1 { left: -180px; top: 80px; width: 460px; height: 460px; opacity: 0.16; }
  .partners .bg-halo-2 { right: -200px; bottom: 60px; width: 520px; height: 520px; opacity: 0.10; }
  .partners .head .eyebrow { color: var(--hamac-blue); margin-bottom: 18px; }
  .partners .head h2 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(34px, 3.8vw, 48px); line-height: 1; letter-spacing: -0.025em;
    margin: 0;
    max-width: 580px;
    text-wrap: balance;
  }
  .partners .head .meta {
    font-family: var(--font-display); font-weight: 900;
    font-size: 11px; letter-spacing: .18em;
    color: rgba(255,255,255,0.55);
    text-align: left;
    margin-top: 0;
  }
  .partners .head .meta .v {
    font-size: 24px;
    line-height: 1;
    color: var(--hamac-yellow);
    letter-spacing: -0.02em;
    display: inline-block;
    margin: 0 8px 0 0;
    vertical-align: middle;
  }

  .partners .cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }
  .case {
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    min-height: 272px;
  }
  .case .visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--bitume);
    min-height: 148px;
    aspect-ratio: 16 / 9;
  }
  .case .visual .tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(2,4,7,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-family: var(--font-display); font-weight: 900; font-size: 10px;
    letter-spacing: .14em;
    padding: 5px 10px; border-radius: 999px;
    z-index: 2;
  }
  .case .body {
    padding: 18px 20px 20px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .case h3 {
    font-family: var(--font-display); font-weight: 900;
    font-size: 19px; line-height: 1.08; letter-spacing: -0.015em;
    margin: 0;
  }
  .case .sub {
    font-family: var(--font-body); font-weight: 500;
    font-size: 12px; line-height: 1.42;
    color: rgba(255,255,255,0.6);
    margin: 0;
  }
  .case .scope {
    margin-top: 6px;
    display: flex; gap: 6px; flex-wrap: wrap;
  }
  .case .scope span {
    font-family: var(--font-display); font-weight: 900; font-size: 9px;
    letter-spacing: .12em;
    padding: 4px 8px; border-radius: 999px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  }

  /* Case visuals */
  .case-latabatra .visual {
    background:
      radial-gradient(ellipse at 70% 30%, rgba(215,221,80,0.16), transparent 60%),
      linear-gradient(135deg, #2a2a18, #181C1D 60%);
  }
  .case-photo-gallery {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 1vw, 8px);
    padding: 18px 10px 14px;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.12), transparent 46%),
      rgba(255,255,255,0.04);
  }
  .case-photo-gallery img {
    width: min(49%, 240px);
    height: clamp(104px, 9vw, 132px);
    object-fit: cover;
    display: block;
    background: transparent;
    border: 5px solid rgba(255,255,255,0.92);
    border-radius: 8px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.34);
  }
  .case-photo-gallery img:first-child {
    transform: rotate(-5deg) translateY(8px);
    transform-origin: 55% 60%;
  }
  .case-photo-gallery img:last-child {
    transform: rotate(5deg) translateY(-2px);
    transform-origin: 45% 60%;
  }
  .case-photo-gallery img:only-child {
    width: min(88%, 340px);
    height: clamp(116px, 10vw, 144px);
    transform: rotate(-3deg) translateY(2px);
  }
  .case-photo-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,4,7,0.03), rgba(2,4,7,0.22));
    pointer-events: none;
  }
  .case-samoela .visual {
    background:
      radial-gradient(ellipse at 30% 30%, rgba(58,179,225,0.22), transparent 60%),
      linear-gradient(135deg, #0E2C3D, #181C1D 70%);
  }
  .case-third .visual {
    background:
      radial-gradient(ellipse at 50% 100%, rgba(58,179,225,0.18), transparent 60%),
      linear-gradient(135deg, #2a1818, #181C1D 70%);
  }
  .case-croisee .visual {
    background:
      radial-gradient(ellipse at 35% 20%, rgba(215,221,80,0.16), transparent 58%),
      linear-gradient(135deg, #18354a, #181C1D 70%);
  }

  /* Faux poster / banner inside visual — abstract Hamac signature */
  .case-poster {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .case-poster .frame {
    position: relative;
    width: 78%; aspect-ratio: 4/3;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
    transform: rotate(-2deg);
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .case-poster .frame .strip {
    height: 28%;
    display: flex; align-items: center; justify-content: center;
    color: var(--noir);
    font-family: var(--font-display); font-weight: 900;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 0 12px;
  }
  .case-poster .frame .strip.top {
    background: var(--hamac-yellow);
    font-size: 13px;
  }
  .case-poster .frame .strip.big {
    height: 44%;
    background: var(--noir); color: var(--white);
    font-size: 22px; line-height: 1;
    flex-direction: column; gap: 4px;
  }
  .case-poster .frame .strip.big .small { font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: .12em; color: var(--hamac-yellow); }
  .case-poster .frame .strip.bot {
    background: var(--white);
    font-size: 11px; letter-spacing: .12em;
    color: var(--noir);
    border-top: 1px solid rgba(2,4,7,0.06);
  }
  .case-samoela .case-poster .frame .strip.top { background: var(--hamac-blue); color: var(--white); }
  .case-third .case-poster .frame .strip.top { background: var(--white); border-bottom: 2px solid var(--noir); color: var(--noir); }

  /* Small abribus mockup for samoela case */
  .case-abribus-mock {
    position: absolute; left: 16%; right: 16%; top: 18%; bottom: 22%;
    border-radius: 4px;
    background: var(--hamac-blue);
    border: 4px solid var(--white);
    box-shadow: 0 16px 30px -12px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 12px;
    text-align: center;
    color: var(--noir);
  }
  .case-abribus-mock .t1 { font-family: var(--font-display); font-weight: 900; font-size: 12px; letter-spacing: .14em; color: var(--noir); margin-bottom: 4px; }
  .case-abribus-mock .t2 { font-family: var(--font-display); font-weight: 900; font-size: 22px; line-height: 0.95; letter-spacing: -0.02em; color: var(--noir); }
  .case-abribus-mock .t3 { font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: .1em; color: rgba(2,4,7,0.7); margin-top: 6px; }

  /* Logos strip below cases */
  .partners .logos {
    margin-top: 42px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: minmax(300px, 0.36fr) 1fr;
    align-items: start;
    gap: 24px;
  }
  .partners .logos .lab {
    font-family: var(--font-display); font-weight: 900;
    font-size: 11px; letter-spacing: .16em;
    line-height: 1;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
  }
  .partners .logos .lab::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    transform: translateY(-1px);
  }
  .partners .logos .lab strong {
    display: block;
    margin-top: 18px;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: .98;
    letter-spacing: -0.025em;
    color: var(--white);
    text-transform: none;
  }
  .partners .logos .row {
    display: grid;
    grid-template-columns: repeat(6, minmax(96px, 1fr));
    column-gap: 20px;
    row-gap: 12px;
    width: 100%;
  }
  .partners .logos .logo {
    transition:
      opacity var(--dur-base) var(--ease-out),
      transform var(--dur-fast) var(--ease-out);
    min-height: 48px;
    padding: 5px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners .logos .logo img {
    display: block;
    width: 100%;
    max-width: 108px;
    max-height: 30px;
    object-fit: contain;
    filter: grayscale(1) brightness(0);
    opacity: 0.78;
  }
  .partners .logos .logo:hover {
    opacity: 1;
    transform: translateY(-1px);
  }
  .partners .logos .logo.italic { font-style: italic; }
  .partners .logos .logo.script { font-family: var(--font-script); font-weight: 400; font-size: 26px; letter-spacing: 0; }

  /* ─────────────────────────────────────────────────────────
     PRE-FOOTER — "Human strip" — character + line of voice
     Connects the brand emotionally before the form.
     ───────────────────────────────────────────────────────── */
  .humanstrip {
    background: var(--hamac-blue);
    color: var(--noir);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(2,4,7,0.1);
    border-bottom: 1px solid rgba(2,4,7,0.1);
  }
  .humanstrip .wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  /* —— Humanstrip portrait — hoodie-waving character peeks up from the bottom of the blue band —— */
  .humanstrip .face {
    width: 220px; height: 160px;
    position: relative;
    flex-shrink: 0;
  }
  .humanstrip .face-halo {
    position: absolute;
    width: 320px;
    height: 320px;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.50;
    background: var(--hamac-yellow);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
  }
  .humanstrip .face img {
    position: relative;
    z-index: 1;
  }
  .humanstrip .face img {
    position: absolute;
    width: auto;
    height: 280px;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .humanstrip .copy h3 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.022em;
    margin: 0 0 6px;
    color: var(--noir);
  }
  .humanstrip .copy h3 .script {
    font-family: var(--font-script); font-weight: 400;
    color: var(--noir);
    margin-right: 6px;
  }
  .humanstrip .copy p {
    font-family: var(--font-body); font-weight: 500;
    font-size: 15px; line-height: 1.5;
    color: rgba(2,4,7,0.78);
    margin: 0;
    max-width: 540px;
  }
  .humanstrip .actions {
    display: flex; gap: 10px; align-items: center;
  }
  .humanstrip .actions .btn {
    font-size: 13px;
    padding: 14px 22px;
  }
  .humanstrip .doodle-bolt {
    position: absolute;
    right: 12%;
    top: -10px;
    width: 44px;
    z-index: 1;
    opacity: 0.8;
  }
  .humanstrip .doodle-spark {
    position: absolute;
    left: 30%;
    bottom: 12px;
    width: 28px;
    z-index: 1;
    opacity: 0.65;
  }

  /* ─────────────────────────────────────────────────────────
     SECTION 5 — CTA + FORM
     ───────────────────────────────────────────────────────── */
  .contact {
    background: var(--hamac-yellow);
    color: var(--noir);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
  }
  .contact .grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: stretch;
  }
  .contact .left { position: relative; padding-bottom: 24px; }
  .contact .eyebrow { color: var(--noir); opacity: 0.7; margin-bottom: 28px; }
  .contact h2 {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(48px, 6vw, 84px); line-height: 0.92; letter-spacing: -0.028em;
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .contact .lede-2 {
    font-family: var(--font-body); font-weight: 500;
    font-size: 18px; line-height: 1.55;
    color: rgba(2,4,7,0.78);
    max-width: 480px;
    margin: 0 0 32px;
  }
  .contact .quick {
    display: grid; gap: 16px;
    margin-top: 32px;
  }
  .contact .quick .q {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-display); font-weight: 900; font-size: 16px;
    color: var(--noir);
  }
  .contact .quick .q .ico {
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--noir); color: var(--hamac-yellow);
    display: flex; align-items: center; justify-content: center;
  }
  .contact .quick .q .ico svg { width: 18px; height: 18px; }
  .contact .quick .q .lab { font-family: var(--font-body); font-weight: 500; font-size: 12px; color: rgba(2,4,7,0.6); letter-spacing: .04em; display: block; margin-bottom: 2px; }

  /* Character pointing at form */
  .contact .char-direct {
    position: absolute;
    left: -90px;
    bottom: -60px;
    width: 280px;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,0.18));
  }

  /* Form panel */
  .form-card {
    background: var(--noir);
    color: var(--white);
    border-radius: 28px;
    padding: 40px 40px 36px;
    box-shadow: 0 32px 60px -24px rgba(2,4,7,0.5);
    position: relative;
    z-index: 2;
  }
  .form-card h3 {
    font-family: var(--font-display); font-weight: 900;
    font-size: 24px; line-height: 1.1; letter-spacing: -0.02em;
    margin: 0 0 6px;
  }
  .form-card .formsub {
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
  }
  .form-row { display: grid; gap: 20px; }
  .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-family: var(--font-display); font-weight: 900;
    font-size: 11px; letter-spacing: .14em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
  }
  .field input, .field textarea, .field select {
    appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.18);
    color: var(--white);
    font-family: var(--font-body); font-weight: 500;
    font-size: 16px;
    padding: 8px 0 12px;
    transition: border-color var(--dur-base) var(--ease-out);
    outline: none;
    resize: none;
  }
  .field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
  .field input:focus, .field textarea:focus, .field select:focus {
    border-bottom-color: var(--hamac-yellow);
  }
  .field textarea { min-height: 84px; line-height: 1.5; padding-top: 12px; }
  .field-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 4px;
  }
  .support-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 6px;
  }
  .support-group {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,0.025);
  }
  .support-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hamac-yellow);
    margin-bottom: 9px;
  }
  .chip {
    font-family: var(--font-display); font-weight: 900; font-size: 11px;
    letter-spacing: .06em;
    padding: 8px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    user-select: none;
    transition: all var(--dur-base) var(--ease-out);
  }
  .chip:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
  .chip.active {
    background: var(--hamac-yellow); color: var(--noir);
    border-color: var(--hamac-yellow);
  }
  .form-submit {
    margin-top: 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .form-submit .legal {
    font-family: var(--font-body); font-weight: 500; font-size: 11px;
    color: rgba(255,255,255,0.5);
    max-width: 220px; line-height: 1.4;
  }
  .form-submit button {
    flex-shrink: 0;
    font-size: 14px;
    padding: 18px 26px;
  }

  /* Success state — layout adjusts down since no celebration character is used (uniqueness rule) */
  .form-success {
    display: none;
    position: relative;
    padding: 40px 40px 48px;
    background: var(--noir);
    color: var(--white);
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
  }
  .form-success.active { display: block; }
  .form-success .check {
    width: 56px; height: 56px; border-radius: 999px;
    background: var(--hamac-yellow); color: var(--noir);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .form-success .check svg { width: 28px; height: 28px; }
  .form-success h3 {
    font-family: var(--font-display); font-weight: 900;
    font-size: 36px; line-height: 1; letter-spacing: -0.025em;
    margin: 0 0 14px;
    text-wrap: balance;
  }
  .form-success p {
    font-family: var(--font-body); font-weight: 500;
    font-size: 16px; line-height: 1.55;
    color: rgba(255,255,255,0.7);
    max-width: 360px;
    margin: 0 0 16px;
  }
  .form-success .salama {
    font-family: var(--font-script); color: var(--hamac-yellow);
    font-size: 28px; line-height: 1;
    margin-top: 8px;
  }
  .form-success .celebrate {
    position: absolute;
    right: -30px; bottom: -20px;
    height: 320px;
    width: auto;
    pointer-events: none;
  }
  .form-success .doodle-success {
    position: absolute;
    pointer-events: none;
  }
  .form-success .ds-arrow {
    right: 200px; top: 70px;
    width: 80px; transform: rotate(20deg);
  }

  /* ─────────────────────────────────────────────────────────
     FOOTER
     ───────────────────────────────────────────────────────── */
  footer {
    background: var(--noir);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
  }
  footer .row1 {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
  }
  footer .peek-zone {
    position: relative;
    min-height: 200px;
    overflow: visible;
  }
  footer .peek-halo {
    position: absolute;
    width: 360px;
    height: 360px;
    left: -20px;
    top: -20px;
    z-index: 0;
    opacity: 0.22;
    background: var(--hamac-blue);
    filter: blur(90px);
    border-radius: 50%;
    pointer-events: none;
  }
  /* Small character peek in footer — lives inside its own decorative column (.peek-zone) */
  footer .peek {
    position: absolute;
    left: -30px;
    bottom: -60px;
    width: 380px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
  }
  footer .col h5 {
    font-family: var(--font-display); font-weight: 900;
    font-size: 11px; letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 16px;
  }
  footer .col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  footer .col a {
    font-family: var(--font-body); font-weight: 500; font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: color var(--dur-base) var(--ease-out);
  }
  footer .col a:hover { color: var(--hamac-yellow); }
  footer .brand .logo img { height: 32px; margin-bottom: 16px; }
  footer .brand p {
    font-family: var(--font-body); font-weight: 500; font-size: 13px;
    color: rgba(255,255,255,0.55); line-height: 1.55;
    margin: 0; max-width: 320px;
  }
  footer .row1 { display: none; }
  footer .row2 {
    margin-top: 0;
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-body); font-weight: 500; font-size: 12px;
    color: rgba(255,255,255,0.68);
  }
  footer .row2 .right { display: flex; gap: 20px; }

  /* ─────────────────────────────────────────────────────────
     RESPONSIVE (basic)
     ───────────────────────────────────────────────────────── */
  @media (max-width: 1080px) {
    .hero .grid { grid-template-columns: 0.85fr 1fr; min-height: 520px; }
    .hero h1 { font-size: clamp(40px, 7vw, 64px); }
    .hero .char-stage { height: 480px; }
    .hero .char-stage img.char { width: 360px; }
    .formats .head { grid-template-columns: 1fr; gap: 24px; }
    .formats { padding-top: 112px; }
    .formats .head { min-height: 300px; }
    .formats .hangchar { width: 360px; right: 4%; top: 116px; }
    .partners { padding-top: 200px; }
    .partners .head { min-height: 360px; }
    .partners .flyer { width: 340px; right: 24px; top: 18px; }
    .partners .flyer-halo { width: 360px; height: 360px; right: 0; top: 6px; }
    footer .row1 { grid-template-columns: 1fr 1fr 1fr; }
    .formats .cards { grid-template-columns: 1fr; }
    .process .head { grid-template-columns: 1fr; }
    .process .steps { grid-template-columns: 1fr; }
    .benefits .grid { grid-template-columns: 1fr; }
    .benefits .lead { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
    .benefits .char-zone { min-height: 260px; }
    .benefits .char-zone img.char { width: 360px; right: -20px; }
    .benefits .lead-arrow { display: none; }
    .partners .cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .case-third { grid-column: auto; }
    .partners .flyer-curve { display: none; }
    .humanstrip .wrap { grid-template-columns: auto 1fr; gap: 24px; }
    .humanstrip .actions { grid-column: 1 / -1; justify-content: flex-start; }
    .contact .grid { grid-template-columns: 1fr; }
    .contact .char-direct { display: none; }
    footer .row1 { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 700px) {
    .wrap { padding: 0 20px; }
    [data-animate],
    [data-animate].is-visible {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .topnav nav { display: none; }
    .topnav .phone { display: none; }
    .hero { padding-top: 56px; }
    .hero .grid { grid-template-columns: 1fr; }
    .hero .char-stage { height: 360px; order: 2; }
    .hero .char-stage img.char { width: 300px; left: 50%; }
    .hero .copy { padding-bottom: 0; order: 1; }
    .transition-stats { padding: 18px 0 22px; }
    .transition-stats .stats { grid-template-columns: 1fr; gap: 10px; }
    .transition-stats .stat { min-height: 118px; padding: 18px 20px; }
    .formats { padding: 64px 0 56px; }
    .formats .head {
      min-height: auto;
      margin-bottom: 22px;
      gap: 18px;
    }
    .formats .head h2 {
      font-size: clamp(36px, 10.5vw, 46px);
    }
    .formats .head .left p {
      font-size: 16px;
      line-height: 1.55;
    }
    .formats .hangchar {
      position: relative;
      display: block;
      right: auto;
      top: auto;
      width: min(280px, 76vw);
      margin: -22px auto -34px;
      transform: rotate(5deg);
    }
    .formats .hangchar-halo { display: none; }
    .formats .cards { gap: 16px; }
    .fmt {
      min-height: auto;
      padding: 24px 22px 26px;
    }
    .fmt h3 { font-size: 28px; }
    .fmt .lede {
      font-size: 14px;
      margin-bottom: 18px;
    }
    .fmt .char-zone {
      min-height: 150px;
      margin: 12px -22px -16px;
    }
    .fmt .char-zone .format-asset { max-height: 158px; }
    .fmt-bus .char-zone .format-asset { max-height: 148px; margin-bottom: 12px; }
    .fmt-abri .char-zone .format-asset { max-height: 158px; margin-bottom: 6px; }
    .process { padding: 64px 0 56px; }
    .benefits { padding: 64px 0 56px; }
    .benefits .lead {
      margin-bottom: 28px;
      gap: 14px;
    }
    .benefits .lead h2 {
      font-size: clamp(36px, 10vw, 46px);
    }
    .benefits .lead p {
      font-size: 15px;
      line-height: 1.55;
    }
    .benefits .grid { grid-template-columns: 1fr; }
    .benefits .char-zone { display: none; }
    .benefit {
      min-height: auto;
      padding: 30px 28px 34px;
    }
    .partners { padding: 72px 0 60px; }
    .partners .head {
      min-height: auto;
      margin-bottom: 28px;
      padding-bottom: 22px;
    }
    .partners .head h2 {
      font-size: clamp(34px, 9.8vw, 44px);
    }
    .partners .head .meta .v {
      display: block;
      margin: 0 0 8px;
    }
    .partners .cases { grid-template-columns: 1fr; }
    .case { min-height: auto; }
    .case .visual {
      min-height: 172px;
      aspect-ratio: 16 / 10;
    }
    .case .body { padding: 20px 24px 24px; }
    .support-groups { grid-template-columns: 1fr; }
    .partners .flyer { display: none; }
    .partners .flyer-curve { display: none; }
    .case-third { grid-column: auto; }
    .partners .logos { margin-top: 28px; padding-top: 24px; }
    .partners .logos .lab strong {
      font-size: clamp(34px, 10vw, 44px);
      max-width: 9ch;
    }
    .humanstrip { padding: 40px 0; }
    .humanstrip .wrap { grid-template-columns: 1fr; gap: 16px; text-align: left; }
    .humanstrip { padding: 64px 0 80px; overflow: visible; }
    .humanstrip .face { width: 140px; height: 140px; }
    .humanstrip .face img { height: 200px; bottom: -40px; }
    .contact { padding: 64px 0; }
    .contact h2 { font-size: clamp(44px, 12vw, 58px); }
    .contact .lede-2 {
      font-size: 17px;
      line-height: 1.5;
    }
    .contact .quick { gap: 14px; margin-top: 28px; }
    .form-submit {
      flex-direction: column;
      align-items: stretch;
    }
    .form-submit .legal { max-width: none; }
    .form-submit button { justify-content: center; }
    footer .peek { display: none; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
  }

  /* Variant 3 — poster campaign */
  body.variant-impact { background: var(--hamac-yellow); color: var(--noir); }
  .variant-impact .topnav { background: rgba(215,221,80,0.9); border-bottom-color: rgba(2,4,7,0.14); }
  .variant-impact .topnav nav, .variant-impact .topnav .phone { color: rgba(2,4,7,0.64); }
  .variant-impact .topnav .cta { background: var(--noir); color: var(--white); }
  .variant-impact .hero { background: var(--hamac-yellow); color: var(--noir); padding-top: 0; }
  .variant-impact .hero .wrap { min-height: 660px; display: flex; align-items: center; }
  .variant-impact .hero .grid { display: block; width: 100%; min-height: auto; position: relative; overflow: hidden; }
  .variant-impact .hero .copy { position: relative; z-index: 3; width: min(100%, 1020px); padding: 92px 0 84px; }
  .variant-impact .hero .eyebrow {
    color: var(--noir);
    font-size: 14px;
    gap: 12px;
    margin-bottom: 24px;
  }
  .variant-impact .hero .eyebrow::before { width: 34px; height: 3px; }
  .variant-impact .hero .eyebrow .eyebrow-mark {
    width: 34px;
    height: 34px;
  }
  .variant-impact .hero h1 {
    font-size: clamp(62px, 7.4vw, 118px);
    max-width: 1040px;
    letter-spacing: 0;
    color: var(--noir);
  }
  .variant-impact .hero h1 .blue { color: var(--noir); }
  .variant-impact .hero h1 .underline::after,
  .variant-impact .hero h1 .keep::after { background: var(--white); }
  .variant-impact .hero .sub, .variant-impact .hero .stat .l { color: rgba(2,4,7,0.76); }
  .variant-impact .hero .sub { max-width: 680px; }
  .variant-impact .hero .mobile-char { display: none; }
  .variant-impact .hero .char-stage {
    position: absolute;
    inset: 0;
    height: auto;
    width: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .variant-impact .hero .char-stage img.char {
    left: auto;
    right: 4%;
    top: auto;
    bottom: 22px;
    transform: none;
    width: min(440px, 30vw);
    opacity: 1;
    filter: none;
    image-rendering: auto;
  }
  .variant-impact .hero .char-stage .halo,
  .variant-impact .hero .char-dots {
    display: none;
  }
  .variant-impact .hero .char-halo-1 {
    left: auto;
    right: 2%;
    bottom: 12%;
    width: 560px;
    height: 560px;
    opacity: .22;
  }
  .variant-impact .hero .char-halo-2 {
    right: -80px;
    top: 120px;
    opacity: .16;
  }
  .variant-impact .hero .char-dots {
    left: auto;
    right: 22%;
    top: 34%;
    opacity: .35;
  }
  .variant-impact .btn-yellow { background: var(--noir); color: var(--white); }
  .variant-impact .form-card .btn-yellow { background: var(--hamac-yellow); color: var(--noir); }
  .variant-impact .transition-stats { background: var(--noir); }
  .variant-impact .transition-stats .stat .acc { color: var(--hamac-blue); }
  .variant-impact .marquee { background: var(--noir); color: var(--white); }
  .variant-impact .marquee .track .dot { background: var(--hamac-blue); }
  .variant-impact .formats { background: var(--noir); color: var(--white); }
  .variant-impact .benefits { background: var(--hamac-blue); color: var(--noir); }
  .variant-impact .benefits .lead .eyebrow, .variant-impact .benefit .num, .variant-impact .benefit .icon-row { color: var(--noir); }
  .variant-impact .benefits .lead h2 .blue { color: var(--white); }
  .variant-impact .benefits .lead p, .variant-impact .benefit p { color: rgba(2,4,7,0.72); }
  .variant-impact .benefit { background: rgba(255,255,255,0.72); border-color: rgba(2,4,7,0.12); }
  .variant-impact .partners { background: var(--hamac-yellow); color: var(--noir); }
  .variant-impact .partners .head, .variant-impact .partners .logos { border-color: rgba(2,4,7,0.14); }
  .variant-impact .partners .head .eyebrow, .variant-impact .partners .head .meta .v { color: var(--noir); }
  .variant-impact .partners .head .meta, .variant-impact .partners .logos .lab { color: rgba(2,4,7,0.76); }
  .variant-impact .partners .logos .lab strong, .variant-impact .partners .logos .logo { color: var(--noir); }
  .variant-impact .case { background: var(--noir); color: var(--white); border-color: rgba(2,4,7,0.18); }
  .variant-impact footer { background: var(--noir); }

  .variant-impact .hero .eyebrow,
  .variant-impact .hero h1,
  .variant-impact .hero .sub,
  .variant-impact .hero .actions,
  .variant-impact .hero .char-stage img.char,
  .variant-impact .hero .char-stage img.char:not(.is-visible),
  .variant-impact .hero .char-stage img.char.is-visible {
    opacity: 1;
  }
  .variant-impact .hero .eyebrow,
  .variant-impact .hero h1,
  .variant-impact .hero .sub,
  .variant-impact .hero .actions {
    transform: none;
  }
  .variant-impact .hero .char-stage img.char,
  .variant-impact .hero .char-stage img.char:not(.is-visible),
  .variant-impact .hero .char-stage img.char.is-visible {
    transform: none;
    filter: none;
  }

  @media (max-width: 1080px) {
    .variant-impact .hero .wrap { min-height: 620px; }
    .variant-impact .hero .copy { padding: 96px 0 76px; width: min(100%, 840px); }
    .variant-impact .hero .char-stage { height: auto; }
    .variant-impact .hero .char-stage img.char { right: 0; top: auto; bottom: 18px; width: min(390px, 36vw); opacity: .94; filter: none; }
  }
  @media (max-width: 700px) {
    .wrap { padding: 0 20px; }
    .hero-logo { top: 22px; left: 20px; }
    .hero-logo img { height: 34px; }
    .hero .campaign-logo {
      width: 104px;
      margin-bottom: 18px;
    }
    .variant-impact .hero { padding-top: 0; }
    .variant-impact .hero .wrap { min-height: auto; display: block; }
    .variant-impact .hero .copy {
      padding: 104px 0 58px;
      text-align: center;
      width: 100%;
    }
    .variant-impact .hero .eyebrow {
      justify-content: center;
      font-size: 11px;
      gap: 9px;
      margin-bottom: 22px;
    }
    .variant-impact .hero .eyebrow::before { width: 22px; height: 2px; }
    .variant-impact .hero .eyebrow .eyebrow-mark {
      width: 24px;
      height: 24px;
    }
    .variant-impact .hero h1 { font-size: clamp(42px, 13vw, 64px); line-height: .98; }
    .variant-impact .hero h1 .underline::after,
    .variant-impact .hero h1 .keep::after { bottom: 0; height: 6px; }
    .variant-impact .hero .sub {
      font-size: 16px;
      line-height: 1.5;
      margin-left: auto;
      margin-right: auto;
    }
    .variant-impact .hero .actions { justify-content: center; }
    .variant-impact .hero .char-stage { display: none; }
    .variant-impact .hero .mobile-char {
      display: block;
      width: min(328px, 84vw);
      margin: 8px auto 24px;
      transform: translateX(16px);
      opacity: 1;
      filter: none;
    }
    .transition-stats .stat { padding: 18px 20px; }
    .fmt { min-height: auto; }
    .partners .logos { grid-template-columns: 1fr; gap: 18px; }
    .partners .logos .lab strong { font-size: clamp(38px, 11vw, 52px); max-width: 8ch; }
    .partners .logos .row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 12px; width: 100%; }
    .partners .logos .logo { min-width: 0; min-height: 48px; font-size: 14px; }
    footer .row2 { flex-direction: column; align-items: flex-start; gap: 14px; line-height: 1.5; }
    footer .row2 .right { flex-wrap: wrap; gap: 12px; }
  }

  /* Smooth scroll reveal */
  [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 680ms var(--ease-out),
      transform 680ms var(--ease-out);
    transition-delay: var(--delay, 0ms);
    will-change: opacity, transform;
  }
  [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  [data-animate="fade-left"] { transform: translateX(34px); }
  [data-animate="fade-right"] { transform: translateX(-34px); }
  [data-animate="scale"] { transform: translateY(20px) scale(.96); }
  [data-animate="scale"].is-visible { transform: translateY(0) scale(1); }
  .hero [data-animate] { transition-duration: 780ms; }
  @media (max-width: 700px) {
    [data-animate],
    [data-animate].is-visible,
    [data-animate="fade-left"],
    [data-animate="fade-right"],
    [data-animate="scale"],
    [data-animate="scale"].is-visible {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
  .hero .char-stage img.char {
    transition:
      opacity 900ms var(--ease-out),
      transform 900ms var(--ease-out);
  }
  .hero .char-stage img.char:not(.is-visible) {
    opacity: 0;
    transform: translateX(36px) scaleX(-1);
  }
  .hero .char-stage img.char.is-visible {
    opacity: .92;
    transform: translateX(0) scaleX(-1);
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important;
    }
    [data-animate],
    [data-animate].is-visible,
    .hero .char-stage img.char,
    .hero .char-stage img.char:not(.is-visible),
    .hero .char-stage img.char.is-visible {
      opacity: 1;
      transform: none;
    }
    .hero .char-stage img.char,
    .hero .char-stage img.char.is-visible {
      transform: scaleX(-1);
    }
  }

/* ═══════════════════════════════════════════════════════════
   Bannière de consentement cookies (analytics.js)
   ═══════════════════════════════════════════════════════════ */
.cookie-modal {
  position: fixed; inset: 0; z-index: 9999;
  width: 100%;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(2,4,7,0.66);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  overflow: auto;
  transition: opacity .24s var(--ease-out);
  pointer-events: none;
}
.cookie-modal.cb-show { opacity: 1; pointer-events: auto; }
.cookie-card {
  position: relative;
  width: min(520px, 100%);
  background: var(--anthracite);
  color: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 70px -20px rgba(0,0,0,0.7);
  transform: translateY(14px) scale(.98);
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.cookie-modal.cb-show .cookie-card { transform: translateY(0) scale(1); }
.cb-panel { position: relative; padding: 48px 30px 28px; }
.cb-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display); font-weight: 900;
  color: var(--hamac-blue);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.cb-title {
  margin: 0 0 12px; max-width: 420px;
  font-family: var(--font-display); font-weight: 900;
  color: var(--white);
  font-size: 24px; line-height: 1.2; letter-spacing: -0.01em;
}
.cb-text { margin: 0; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.55; }
.cb-legal { margin: 10px 0 0; font-size: 12.5px; line-height: 1.5; }
.cb-legal a { color: var(--hamac-blue); text-decoration: underline; }
.cb-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cb-btn {
  min-height: 44px; border: 0; border-radius: 999px; padding: 0 22px;
  font-family: var(--font-display); font-size: 14px; font-weight: 900; line-height: 18px;
  cursor: pointer;
  transition: background .15s var(--ease-out), color .15s, transform .15s;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn:focus, .cb-btn:focus-visible, .cb-link:focus, .cb-link:focus-visible { outline: none; }
.cb-accept, .cb-save { background: var(--hamac-yellow); color: var(--noir); }
.cb-accept:hover, .cb-save:hover { background: var(--hamac-yellow-deep); }
.cb-settings, .cb-back { background: rgba(255,255,255,0.08); color: var(--white); }
.cb-settings:hover, .cb-back:hover { background: rgba(255,255,255,0.14); }
.cb-link {
  display: inline-flex; margin-top: 16px; padding: 4px 0;
  border: 0; background: transparent; cursor: pointer;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  text-decoration: underline;
}
.cb-link:hover { color: rgba(255,255,255,0.85); }
.cb-skip-top { position: absolute; top: 16px; right: 24px; margin-top: 0; }
.cb-choice {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 18px; padding: 16px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  background: var(--bitume);
}
.cb-choice strong { display: block; color: var(--white); font-size: 14px; line-height: 1.35; }
.cb-choice span { display: block; margin-top: 4px; color: rgba(255,255,255,0.6); font-size: 12.5px; line-height: 1.45; }
.cb-switch { position: relative; flex: 0 0 auto; width: 48px; height: 28px; }
.cb-switch input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.cb-switch span { display: block; width: 100%; height: 100%; border-radius: 999px; background: rgba(255,255,255,0.22); transition: background .18s; }
.cb-switch span::after {
  content: ''; position: absolute; top: 4px; left: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.3); transition: transform .18s;
}
.cb-switch input:checked + span { background: var(--hamac-yellow); }
.cb-switch input:checked + span::after { transform: translateX(20px); }
@media (max-width: 560px) {
  .cookie-modal { padding: 16px; }
  .cookie-card { width: calc(100vw - 32px); max-height: calc(100svh - 32px); overflow: auto; }
  .cb-panel { padding: 44px 20px 20px; }
  .cb-title { font-size: 20px; }
  .cb-actions { flex-direction: column; }
  .cb-btn { width: 100%; }
  .cb-choice { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────────────────
   Widget Cloudflare Turnstile (anti-robot) dans le formulaire
   ───────────────────────────────────────────────────────── */
.form-card .cf-turnstile {
  margin: 4px 0 18px;
  min-height: 65px;
}

/* ─────────────────────────────────────────────────────────
   Champ téléphone international (intl-tel-input) — thème sombre
   ───────────────────────────────────────────────────────── */
.field-tel .iti { width: 100%; display: block; }
.field-tel .iti > input[type="tel"] { width: 100%; }
.field-tel .iti__flag-container { padding: 0; }
.field-tel .iti__selected-flag { background: transparent; }
.field-tel .iti__selected-flag:hover,
.field-tel .iti__selected-flag:focus { background: rgba(255,255,255,0.06); }
.field-tel .iti__selected-flag:focus,
.field-tel .iti__selected-flag:focus-visible { outline: none; box-shadow: none; }
.field-tel .iti--separate-dial-code .iti__selected-dial-code {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  color: var(--white);
}
.field-tel .iti__arrow { border-top-color: rgba(255,255,255,0.5); }
.field-tel .iti__arrow--up { border-bottom-color: rgba(255,255,255,0.5); }

/* Liste déroulante des pays (rendue dans <body>) — popup clair lisible */
.iti__country-list {
  font-family: var(--font-body); text-align: left;
  max-height: 260px; overflow-y: auto;
  width: auto !important; min-width: 240px; max-width: 320px;
  background: #fff; color: var(--noir);
  border: 1px solid #ececec; border-radius: 14px;
  box-shadow: 0 16px 44px rgba(2,4,7,0.35);
  padding: 6px; margin-top: 6px; list-style: none;
  scrollbar-width: thin; scrollbar-color: #d9d4e8 transparent;
}
.iti__country-list::-webkit-scrollbar { width: 8px; }
.iti__country-list::-webkit-scrollbar-track { background: transparent; margin: 6px 0; }
.iti__country-list::-webkit-scrollbar-thumb { background: #d9d4e8; border-radius: 8px; border: 2px solid #fff; }
.iti__country {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  font-size: 14px; line-height: 1.2; color: var(--noir); white-space: nowrap;
}
.iti__country .iti__dial-code { color: #888; margin-left: auto; padding-left: 14px; }
.iti__country:hover, .iti__country.iti__highlight { background: #f3f0ff; }
.iti__divider { border-bottom: 1px solid #eee; margin: 6px 4px; padding: 0; }
