/* ============================================================
   YUBA — Refonte page d'accueil
   Palette : jaune signal #f7d43b · ambre #f0a71b · noir #141414 · crème #fdfbf3
   Typo    : Archivo (display, heavy + italic) + Manrope (texte)
   ============================================================ */

:root {
  --yellow: #f7d43b;            /* jaune signal */
  --amber: #f0a71b;             /* ambre / orangé */
  --yellow-soft: #ffe98d;
  --yellow-tint: #fdf4c8;       /* fonds très clairs teintés */
  --ink: #141414;               /* noir marque */
  --ink-900: #0b0b0b;           /* noir profond */
  --ink-800: #1c1c1c;
  --ink-700: #2e2e2e;
  --ink-500: #6a675e;
  --ink-300: #a6a29a;
  --paper: #ffffff;
  --paper-2: #fdfbf3;           /* crème */
  --paper-3: #f5f1e4;
  --line: #ebe6d7;
  --line-dark: rgba(255,255,255,.12);

  --r-xl: 34px;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(26,22,10,.06), 0 4px 14px rgba(26,22,10,.05);
  --shadow-md: 0 10px 30px rgba(26,22,10,.10), 0 2px 8px rgba(26,22,10,.06);
  --shadow-lg: 0 30px 70px rgba(26,22,10,.18);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 56px);

  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background:
    radial-gradient(90% 55% at 100% 0%, rgba(247,212,59,.22) 0%, rgba(247,212,59,0) 60%),
    var(--paper-2);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 17px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; margin: 0; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 130px); }

/* ---------- Boutons / pills ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: none;
  font-family: var(--f-display); font-weight: 500; font-size: 16px;
  letter-spacing: -0.01em; transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-900); box-shadow: var(--shadow-md); }
.btn--yellow { background: linear-gradient(135deg, var(--yellow), var(--amber)); color: var(--ink-900); font-weight: 700; }
.btn--yellow:hover { box-shadow: 0 12px 30px rgba(247,212,59,.45); }
.btn--ghost { background: rgba(20,20,20,.06); color: var(--ink); }
.btn--ghost:hover { background: rgba(20,20,20,.11); }
.btn--light {
  background: rgba(255,255,255,.16); color: #fff;
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3);
}
.btn--light:hover { background: rgba(255,255,255,.28); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
.btn .ar { display:inline-flex; transition: transform .3s; }
.btn:hover .ar { transform: translate(3px,-3px); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(20,20,20,.12);
  font-family: var(--f-display); font-weight: 500; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(247,212,59,.3); }

.eyebrow {
  font-family: var(--f-display); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--yellow); border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; border: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 84px; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--ink);
  display: grid; place-items: center; position: relative; flex: none;
}
.brand__mark::after { content:""; width: 11px; height: 11px; border-radius: 50%; background: var(--yellow); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; color: var(--ink-900); }
.brand__sub { font-family: var(--f-display); font-weight: 500; font-size: 9.5px; letter-spacing: .26em; color: var(--ink-300); margin-top: 3px; }
/* pilule verre dépoli centrée */
.nav__links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 2px; padding: 6px;
  border-radius: 999px; background: rgba(11,11,11,.5);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 10px 30px rgba(11,11,11,.22);
}
.nav__links a {
  padding: 9px 16px; border-radius: 999px; font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,.82); transition: background .25s, color .25s;
}
.nav__links a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav__cta {
  display: flex; align-items: center; gap: 4px; padding: 6px;
  border-radius: 999px; background: rgba(11,11,11,.5);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 10px 30px rgba(11,11,11,.22);
}
.nav__cta .btn { padding: 11px 20px; font-size: 15px; }
.nav__cta .btn--dark {
  background: rgba(255,255,255,.9); color: var(--ink-900); font-weight: 600;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}
.nav__cta .btn--dark:hover { background: var(--yellow); box-shadow: none; }
.nav__burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(20px, 3vw, 40px); }
.hero__card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 140% at 12% 8%, var(--yellow-tint) 0%, #faf8ea 38%, var(--paper) 78%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.05fr .95fr;
  min-height: 560px;
}
.hero__left { padding: clamp(34px, 4vw, 64px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 78px);
  font-weight: 600; color: var(--ink-900);
}
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content:""; position: absolute; left: -2px; right: -2px; bottom: .07em; height: .42em;
  background: var(--yellow); z-index: -1; border-radius: 3px;
}
.hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-700); max-width: 46ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 30px; margin-top: 8px; }
.hero__stat b { font-family: var(--f-display); font-weight: 700; font-size: 30px; color: var(--ink-900); display:block; letter-spacing: -0.03em; }
.hero__stat span { font-size: 13.5px; color: var(--ink-500); font-weight: 600; }

.hero__media { position: relative; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content:""; position:absolute; inset:0; background: linear-gradient(105deg, var(--paper) 0%, rgba(255,255,255,.0) 32%); }
.hero__badge {
  position: absolute; z-index: 4; right: clamp(20px,3vw,38px); bottom: clamp(20px,3vw,38px);
  background: var(--ink); color:#fff; padding: 16px 20px; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); max-width: 230px;
}
.hero__badge b { font-family: var(--f-display); display:block; font-size: 15px; margin-bottom: 2px; }
.hero__badge span { font-size: 13px; color: rgba(255,255,255,.7); }

/* route / GPS motif */
.route { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.route path { fill: none; stroke: var(--yellow); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 2 18; }
.route .road { stroke: rgba(20,20,20,.16); stroke-width: 14; stroke-dasharray: none; opacity:.5; }
.route .pin { fill: var(--ink); }
.route .pin circle.k { fill: var(--yellow); }

@media (prefers-reduced-motion: no-preference) {
  .route .dash { animation: dashmove 6s linear infinite; }
}
@keyframes dashmove { to { stroke-dashoffset: -200; } }

/* ============================================================
   SERVICE TEASER CARDS (3)
   ============================================================ */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.tcard {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: 340px; display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px; color: #fff; background: var(--ink-700); isolation: isolate;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.tcard:hover { transform: translateY(-4px); }
.tcard__bg { position:absolute; inset:0; z-index:-2; }
.tcard__bg img { width:100%; height:100%; object-fit: cover; }
.tcard::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(26,22,10,.12) 0%, rgba(26,22,10,.78) 100%); }
.tcard__top { display: flex; align-items: center; justify-content: space-between; }
.tcard__round {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-items: center; transition: transform .3s, background .3s;
}
.tcard:hover .tcard__round { background: var(--yellow); transform: rotate(-12deg); }
.tcard__label { font-family: var(--f-display); font-size: 26px; font-weight: 600; letter-spacing: -.02em; }
.tcard__label small { display:block; font-family: var(--f-body); font-weight: 500; font-size: 14px; color: rgba(255,255,255,.78); letter-spacing: 0; margin-top: 6px; line-height:1.4; }
.tcard.is-form { background: var(--yellow); color: var(--ink-900); }
.tcard.is-form::after { display:none; }
.tcard__formhead { font-family: var(--f-display); font-size: 26px; font-weight: 600; }
.tcard__form { display:flex; gap: 8px; background:#fff; border-radius: 999px; padding: 6px; }
.tcard__form input { flex:1; border:none; background:transparent; padding: 0 14px; font-family: var(--f-body); font-size: 14px; color: var(--ink); outline:none; }
.tcard__form button { border:none; background: var(--ink); color:#fff; padding: 12px 18px; border-radius: 999px; font-family: var(--f-display); font-weight: 500; font-size: 14px; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.head { max-width: 720px; margin-bottom: 48px; }
.head--center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(30px, 4vw, 52px); color: var(--ink-900); margin-top: 16px; }
.head p { margin-top: 18px; color: var(--ink-500); font-size: 18px; }
.section--dark .head h2 { color:#fff; }
.section--dark .head p { color: rgba(255,255,255,.66); }

/* ============================================================
   BEST-SELLER (Screenbike)
   ============================================================ */
.best { background: var(--paper); }
.best__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.best__media { position: relative; border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; background: var(--ink); }
.best__media video, .best__media img { width:100%; height:100%; object-fit: cover; }
.best__tag { position:absolute; top:18px; left:18px; }
.best ul { list-style:none; padding:0; margin: 26px 0 30px; display:grid; gap: 14px; }
.best li { display:flex; gap: 14px; align-items:flex-start; font-size: 16px; color: var(--ink-700); }
.best li .ck { flex:none; width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); display:grid; place-items:center; margin-top:1px; }
.best li b { font-family: var(--f-display); color: var(--ink-900); font-weight:600; }
.specs { display:flex; gap: 14px; margin-top: 4px; flex-wrap:wrap; }
.spec { background: var(--paper-2); border:1px solid var(--line); border-radius: var(--r-md); padding: 16px 20px; }
.spec b { font-family: var(--f-display); font-size: 26px; color: var(--ink-900); display:block; letter-spacing:-.03em; }
.spec span { font-size: 13px; color: var(--ink-500); font-weight:600; }

/* ============================================================
   SOLUTIONS GRID
   ============================================================ */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sol {
  background: var(--paper); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 0; display:flex; flex-direction:column;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  position: relative; overflow:hidden;
}
.sol:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.sol__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); border-bottom: 1px solid var(--line); }
.sol--feat .sol__media { border-bottom-color: rgba(255,255,255,.14); background: #1c1c1c; }
.sol__body { position: relative; padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sol__body > * { position: relative; z-index: 1; }
.sol__n {
  position: absolute; z-index: 0; right: 22px; bottom: -30px;
  font-family: var(--f-display); font-weight: 700; font-size: clamp(118px,12vw,152px); line-height: .78;
  letter-spacing: -.06em; color: rgba(20,20,20,.1); pointer-events: none;
  transition: color .4s cubic-bezier(.2,.8,.2,1), transform .5s cubic-bezier(.2,.8,.2,1);
}
.sol:hover .sol__n { color: rgba(247,212,59,.6); transform: translateY(-8px); }
.sol--feat .sol__n { color: rgba(255,255,255,.1); }
.sol--feat:hover .sol__n { color: rgba(247,212,59,.4); }
.sol h3 { font-size: 21px; color: var(--ink-900); margin-top: 4px; max-width: 15ch; }
.sol p { font-size: 14.5px; color: var(--ink-500); line-height:1.5; max-width: 30ch; }
.sol__more { margin-top:auto; display:inline-flex; align-items:center; gap:8px; font-family:var(--f-display); font-weight:500; font-size:14px; color: var(--ink); opacity:.0; transform: translateY(6px); transition:.3s; }
.sol:hover .sol__more { opacity:1; transform:none; }
.sol--feat { background: var(--ink); color:#fff; border-color: transparent; }
.sol--feat h3 { color:#fff; }
.sol--feat p { color: rgba(255,255,255,.7); }
.sol--feat .sol__more { color: var(--yellow); opacity:1; transform:none; }

/* ============================================================
   EVENT (dark)
   ============================================================ */
.section--dark { background: var(--ink-900); color:#fff; border-radius: var(--r-xl); }
.dark-shell { margin-inline: var(--pad); }
.event__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.ecard {
  position:relative; overflow:hidden; border-radius: var(--r-lg); min-height: 320px;
  display:flex; flex-direction:column; justify-content:flex-end; padding: 26px; color:#fff;
}
.ecard__bg { position:absolute; inset:0; z-index:-2; }
.ecard__bg img{ width:100%;height:100%;object-fit:cover; }
.ecard::after{ content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(26,22,10,.1), rgba(26,22,10,.85)); }
.ecard h3 { font-size: 28px; }
.ecard .meta { color: var(--yellow); font-family: var(--f-display); font-weight:500; font-size: 13px; letter-spacing:.05em; margin-bottom: 10px; }
.ecard .btn { margin-top: 18px; align-self:flex-start; }
.event__intro { max-width: 360px; }

/* ============================================================
   PARTNERS marquee
   ============================================================ */
.marquee { overflow:hidden; min-width:0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__row { display:flex; gap: 64px; width:max-content; align-items:center; }
@media (prefers-reduced-motion: no-preference){ .marquee__row { animation: scroll 42s linear infinite; } }
.marquee__row img { height: 38px; width:auto; object-fit:contain; filter: grayscale(1); opacity:.55; transition: filter .3s, opacity .3s; }
.marquee__row img:hover { filter:none; opacity:1; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px,4vw,72px); align-items:start; }
.faq__list { display:flex; flex-direction:column; }
.faq__item { border-top:1px solid var(--line); }
.faq__item:last-child { border-bottom:1px solid var(--line); }
.faq__q { width:100%; text-align:left; background:none; border:none; padding: 24px 0; display:flex; align-items:center; justify-content:space-between; gap: 20px; font-family:var(--f-display); font-weight:600; font-size: 19px; color: var(--ink-900); }
.faq__ico { flex:none; width:30px; height:30px; border-radius:50%; border:1.5px solid var(--line); display:grid; place-items:center; transition: background .3s, border-color .3s, transform .3s; color: var(--ink); }
.faq__item.open .faq__ico { background: var(--yellow); border-color: var(--yellow); transform: rotate(180deg); }
.faq__a { max-height:0; overflow:hidden; transition: max-height .4s ease; }
.faq__a p { padding-bottom: 24px; color: var(--ink-500); font-size: 15.5px; max-width: 60ch; }

/* ============================================================
   TESTIMONIALS — on route
   ============================================================ */
.testi { position:relative; background: var(--paper); border-radius: var(--r-xl); overflow:hidden; }
.testi__center { max-width: 560px; margin-inline:auto; text-align:center; position:relative; z-index:3; padding-block: 40px; }
.testi__center h2 { font-size: clamp(34px, 4.5vw, 58px); color: var(--ink-900); margin: 16px 0; }
.testi__center p { color: var(--ink-500); }
.avatars { position:absolute; inset:0; z-index:2; pointer-events:none; }
.avatar { position:absolute; border-radius:50%; overflow:hidden; box-shadow: var(--shadow-md); border:4px solid #fff; }
.avatar img{ width:100%;height:100%;object-fit:cover; }
.quote {
  position:relative; z-index:4; max-width: 420px; margin: 30px auto 0; background: var(--ink-900); color:#fff;
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-lg);
}
.quote p { font-style:italic; color: rgba(255,255,255,.86); font-size: 15px; line-height:1.6; }
.quote .who { display:flex; align-items:center; gap:12px; margin-top:18px; }
.quote .who b { font-family:var(--f-display); }
.quote .who span { color: var(--yellow); font-size: 13px; }
.quote .av { width:42px;height:42px;border-radius:50%; overflow:hidden; flex:none; }

/* ============================================================
   CTA band
   ============================================================ */
.ctaband { position:relative; overflow:hidden; border-radius: var(--r-xl); background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow-soft) 100%); padding: clamp(48px,7vw,90px) var(--pad); text-align:center; }
.ctaband h2 { font-size: clamp(32px,4.6vw,60px); color: var(--ink-900); max-width: 16ch; margin-inline:auto; }
.ctaband p { color: var(--ink-700); margin: 18px auto 30px; max-width: 46ch; }
.ctaband .route path { stroke: rgba(20,20,20,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; background: var(--ink-900); color: rgba(255,255,255,.7); padding-block: clamp(64px,7vw,96px) 36px; }
.footer--tuck { padding-top: clamp(280px,28vw,410px); }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .brand__name { color:#fff; }
.footer__brand .brand__sub { color: rgba(255,255,255,.4); }
.footer__brand p { margin-top: 18px; max-width: 30ch; font-size: 14.5px; }
.footer__soc { display:flex; gap:10px; margin-top: 22px; }
.footer__soc a { width: 40px;height:40px;border-radius:50%; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#fff; transition: background .25s, transform .25s; }
.footer__soc a:hover { background: var(--yellow); color: var(--ink-900); transform: translateY(-2px); }
.footer h4 { font-family:var(--f-display); color:#fff; font-size: 14px; letter-spacing:.06em; text-transform:uppercase; margin-bottom: 18px; }
.footer__col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 11px; }
.footer__col a { font-size: 14.5px; transition: color .2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__contact p { font-size: 14.5px; margin-bottom: 14px; line-height:1.5; }
.footer__bottom { margin-top: 50px; padding-top: 24px; border-top:1px solid var(--line-dark); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display:none; }
  .hero__card { grid-template-columns: 1fr; min-height:0; }
  .hero__media { min-height: 320px; }
  .hero__media::after { background: linear-gradient(0deg, var(--paper) 0%, rgba(255,255,255,0) 30%); }
  .teasers { grid-template-columns: 1fr; }
  .best__grid, .faq-grid, .event__grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sol-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap:wrap; gap:18px; }
}


/* ============================================================
   HERO v2 — full-bleed, dégradé jaune → ardoise, écosystème orbital
   ============================================================ */
.hero2 {
  position: relative; overflow: hidden;
  min-height: 100svh; padding-top: 76px;
  display: grid; grid-template-columns: minmax(0,1fr); grid-template-rows: 1fr auto;
  background:
    radial-gradient(72% 80% at 3% 2%, rgba(255,249,219,.95) 0%, rgba(247,212,59,0) 46%),
    radial-gradient(60% 70% at 100% 95%, #000 0%, rgba(0,0,0,0) 55%),
    linear-gradient(100deg, #fae04d 0%, #f7d43b 15%, #f3bb2b 30%, #e39c1e 43%, #a26c1d 55%, #5d4017 69%, #251b0f 84%, #111111 100%);
}
.hero2__in {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,48px);
  align-items: center; justify-items: center; padding-block: clamp(40px,6vw,80px);
}
.hero2__copy { max-width: 560px; }
.hero2__orb { width: 100%; display: grid; place-items: center; }
.hero2__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 21px; position: relative; z-index: 4; }
.hero2 h1 {
  font-size: clamp(36px, 4.9vw, 70px); font-weight: 800; letter-spacing: -.04em; color: var(--ink-900);
  max-width: 16ch; text-wrap: balance;
}
.hero2 h1 em {
  font-style: italic; letter-spacing: -.045em;
  text-decoration: none;
}
.hero2__lead { font-size: clamp(16px,1.35vw,19px); color: rgba(20,20,20,.82); max-width: 44ch; font-weight: 500; }
.hero2__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero2 .pill { background: rgba(255,255,255,.6); border-color: rgba(26,22,10,.18); }
.hero2__stats { display: flex; gap: clamp(20px,3vw,38px); margin-top: 6px; flex-wrap: wrap; }
.hero2__stat b { font-family: var(--f-display); font-weight: 700; font-size: clamp(24px,2.4vw,32px); color: var(--ink-900); display: block; letter-spacing: -.03em; }
.hero2__stat span { font-size: 13.5px; color: rgba(28,38,42,.72); font-weight: 600; }
.hero2__geo {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px 9px 12px;
  border-radius: 999px; background: rgba(26,22,10,.9); color: #fff;
  font-family: var(--f-display); font-size: 13.5px; font-weight: 500; box-shadow: var(--shadow-md);
}
.hero2__geo .ping { position: relative; width: 9px; height: 9px; flex: none; }
.hero2__geo .ping i { position: absolute; inset: 0; border-radius: 50%; background: var(--yellow); }
.hero2__geo .ping i:first-child { animation: ping 2.4s cubic-bezier(0,.6,.4,1) infinite; }
@keyframes ping { 0%{transform:scale(1);opacity:.8} 70%,100%{transform:scale(3.4);opacity:0} }

/* ---------- orbital ecosystem ---------- */
.orbit { position: relative; width: 100%; max-width: 560px; margin-inline: auto; aspect-ratio: 1; z-index: 3; }
.orbit__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 46%; aspect-ratio: 1; border-radius: 50%; z-index: 3;
  display: grid; place-content: center; justify-items: center; gap: 4px; text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(30,40,44,.62) 0%, rgba(30,40,44,.3) 46%, rgba(30,40,44,0) 68%),
    radial-gradient(circle at 50% 38%, rgba(247,212,59,.16), rgba(43,56,61,0) 66%);
}
.orbit__core .mk {
  width: 58px; height: 58px; border-radius: 17px; background: var(--yellow);
  display: grid; place-items: center; box-shadow: 0 12px 34px rgba(247,212,59,.4);
}
.orbit__core .mk::after { content:""; width: 15px; height: 15px; border-radius: 50%; background: var(--ink-900); }
.orbit__core b { font-family: var(--f-display); font-size: clamp(17px,1.7vw,23px); color: #fff; letter-spacing: -.02em; margin-top: 8px; white-space: nowrap; }
.orbit__core span { font-size: 11.5px; color: rgba(255,255,255,.62); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }

.ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%; z-index: 1;
  border: 1px solid rgba(255,255,255,.15);
}
.ring--1 { width: 50%; height: 50%; margin: -25% 0 0 -25%; }
.ring--2 { width: 72%; height: 72%; margin: -36% 0 0 -36%; }
.ring--3 { width: 92%; height: 92%; margin: -46% 0 0 -46%; border-color: rgba(255,255,255,.1); }
@media (prefers-reduced-motion: no-preference) {
  .ring--1 { animation: spin 30s linear infinite; }
  .ring--2 { animation: spin 46s linear infinite reverse; }
  .ring--3 { animation: spin 68s linear infinite; }
  .ring--1 .node__c { animation: spin 30s linear infinite reverse; }
  .ring--2 .node__c { animation: spin 46s linear infinite; }
  .ring--3 .node__c { animation: spin 68s linear infinite reverse; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.orb { position: absolute; inset: -1px; border-radius: 50%; transform: rotate(var(--a)); }
.node { position: absolute; left: 50%; top: 0; transform: translate(-50%,-50%); }
.node__f { transform: rotate(calc(var(--a) * -1)); }
.face {
  width: var(--s,62px); height: var(--s,62px); border-radius: 50%; overflow: hidden;
  border: 2.5px solid rgba(255,255,255,.9); box-shadow: 0 10px 26px rgba(0,0,0,.45);
  background: var(--ink-700);
}
.face img { width: 100%; height: 100%; object-fit: cover; }
.logob {
  display: grid; place-items: center; width: var(--s,58px); height: var(--s,58px);
  border-radius: 50%; background: #fff; padding: 0;
  border: 2.5px solid rgba(255,255,255,.9); box-shadow: 0 10px 26px rgba(0,0,0,.45);
}
.logob img { max-width: 70%; max-height: 70%; object-fit: contain; }
.spot {
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px); color: #fff;
  font-family: var(--f-display); font-size: 12.5px; font-weight: 500; letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.spot--y { background: var(--yellow); border-color: var(--yellow); color: var(--ink-900); box-shadow: 0 8px 24px rgba(247,212,59,.35); }

/* ---------- hero partner strip ---------- */
.hero2__logos {
  position: relative; z-index: 4; min-width: 0; overflow: hidden;
  background: rgba(255,255,255,.5); backdrop-filter: blur(14px) saturate(130%);
  border-top: 1px solid rgba(255,255,255,.35); padding-block: 20px;
}
.hero2__logos .marquee__row img { height: 30px; filter: grayscale(1); opacity: .62; }

@media (max-width: 980px) {
  .hero2 {
    min-height: 0;
    background:
      radial-gradient(70% 40% at 4% 0%, rgba(255,249,219,.95) 0%, rgba(247,212,59,0) 50%),
      linear-gradient(178deg, #fae04d 0%, #f7d43b 13%, #f3bb2b 26%, #e39c1e 40%, #a26c1d 54%, #5d4017 70%, #111111 90%);
  }
  .hero2__in { grid-template-columns: 1fr; justify-items: start; }
  .orbit { max-width: 420px; margin-top: 8px; }
  .hero2 h1 { max-width: 20ch; }
}


/* ============================================================
   VARIANTES CARTES SERVICES (Tweaks)
   ============================================================ */
/* — bulle : vignette ronde en tête de carte — */
.sol-grid.v-bubble .sol__media {
  width: 136px; height: 136px; aspect-ratio: auto; flex: none;
  margin: 26px 26px 0; border-radius: 34px; border: 3px solid #fff;
  background: var(--paper-3); box-shadow: 0 12px 28px rgba(26,22,10,.14), 0 0 0 1px var(--line);
}
.sol-grid.v-bubble .sol--feat .sol__media { border-color: rgba(255,255,255,.16); box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.sol-grid.v-bubble .sol__body { padding-top: 20px; }
.sol-grid.v-bubble .sol:hover .sol__media { transform: translateY(-3px) rotate(-3deg); }
.sol-grid.v-bubble .sol__media { transition: transform .4s cubic-bezier(.2,.8,.2,1); }

/* — filigrane : photo en transparence sur toute la carte — */
.sol-grid.v-ghost .sol { isolation: isolate; }
.sol-grid.v-ghost .sol__media {
  position: absolute; inset: 0; z-index: 0; aspect-ratio: auto;
  border: none; background: transparent; opacity: .16;
  filter: grayscale(1) contrast(1.05); transition: opacity .4s;
}
.sol-grid.v-ghost .sol:hover .sol__media { opacity: .26; }
.sol-grid.v-ghost .sol--feat .sol__media { opacity: .22; }
.sol-grid.v-ghost .sol--feat:hover .sol__media { opacity: .32; }
.sol-grid.v-ghost .sol__body { min-height: 250px; padding: 28px; }
.sol-grid.v-ghost .sol__n { display: none; }


/* ============================================================
   SECTION CTA · Yuba Event (panneau sombre + mockup téléphone)
   ============================================================ */
.ctax { padding-block: clamp(56px,7vw,96px); padding-inline: var(--pad); }
.ctax__panel {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  max-width: var(--maxw); margin-inline: auto;
  background: linear-gradient(150deg, #262626 0%, #141414 42%, #050505 100%);
  box-shadow: var(--shadow-lg);
}
.ctax__glow {
  position: absolute; z-index: 0; top: -30%; left: -12%; width: 62%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(247,212,59,.3) 0%, rgba(247,212,59,.09) 42%, rgba(247,212,59,0) 70%);
  pointer-events: none;
}
.ctax__route { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.ctax__route path { fill: none; stroke: rgba(247,212,59,.22); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 2 16; }
.ctax__in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(24px,4vw,56px);
  padding: clamp(34px,4.6vw,68px);
}
.ctax__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.ctax__badge {
  display: inline-flex; padding: 7px 15px; border-radius: 999px;
  background: rgba(247,212,59,.14); border: 1px solid rgba(247,212,59,.34); color: var(--yellow);
  font-family: var(--f-display); font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
}
.ctax h2 { color: #fff; font-size: clamp(29px,3.4vw,46px); max-width: 17ch; text-wrap: balance; }
.ctax__copy > p { color: rgba(255,255,255,.7); font-size: clamp(15.5px,1.25vw,18px); max-width: 44ch; }
.ctax__list { list-style: none; padding: 0; margin: 2px 0 4px; display: grid; gap: 11px; }
.ctax__list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.86); font-size: 15px; font-weight: 500; }
.ctax__list .ck {
  flex: none; width: 23px; height: 23px; border-radius: 50%; background: rgba(247,212,59,.16);
  color: var(--yellow); display: grid; place-items: center; font-size: 12px;
}
.ctax__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.btn--outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.btn--outline:hover { background: rgba(255,255,255,.1); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }

/* --- téléphone --- */
.ctax__device { position: relative; display: grid; place-items: center; min-height: 600px; }
.phone {
  position: relative; width: clamp(224px,19vw,268px); aspect-ratio: 268/548;
  border-radius: 46px; padding: 11px; background: linear-gradient(160deg,#3d3d3d,#080808 60%);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1), inset 0 0 0 1px rgba(255,255,255,.06);
  transform: rotate(-3deg);
}
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #0d0d0d; }
.phone__island {
  position: absolute; z-index: 3; top: 22px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 22px; border-radius: 999px; background: #000000;
}
.bub {
  position: absolute; z-index: 3; width: clamp(72px,7vw,94px); aspect-ratio: 1; border-radius: 50%;
  background: #fff; display: grid; place-items: center; padding: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.bub img { max-width: 70%; max-height: 70%; object-fit: contain; }
.bub--1 { top: 2%; right: 0; }
.bub--2 { bottom: 4%; right: 3%; }
.bub--3 { top: 27%; left: 0; }
.bub--4 { bottom: 35%; left: 2%; }
@media (prefers-reduced-motion: no-preference) {
  .bub--1 { animation: float 7s ease-in-out infinite; }
  .bub--2 { animation: float 9s ease-in-out infinite .8s; }
    .bub--3 { animation: float 8s ease-in-out infinite .4s; }
  .bub--4 { animation: float 7.5s ease-in-out infinite 1.2s; }
}
@keyframes float { 50% { transform: translateY(-12px); } }
.chip {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 15px; border-radius: 14px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); color: #fff;
  font-family: var(--f-display); font-size: 13px; font-weight: 500; white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
}
.chip--live { top: 3%; left: 2%; }
.chip--live i { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(247,212,59,.24); }
.chip--kpi { bottom: 15%; left: 0; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.2; }
.chip--kpi b { font-size: 20px; color: var(--yellow); letter-spacing: -.02em; }

@media (max-width: 980px) {
  .ctax__in { grid-template-columns: 1fr; }
  .ctax__device { min-height: 460px; margin-top: 12px; }
}


/* ============================================================
   DASHBOARD DE CAMPAGNE (écran du téléphone)
   ============================================================ */
.phone__screen { container-type: inline-size; background: #111111; }
.pui {
  height: 100%; display: flex; flex-direction: column; gap: 2.6cqw;
  padding: 9cqw 4.4cqw 4.4cqw; color: #fff; font-family: var(--f-body);
  background: radial-gradient(90% 50% at 50% 0%, rgba(247,212,59,.1), rgba(17,17,17,0) 60%), #111111;
}
.pui__bar { display: flex; align-items: center; justify-content: space-between; }
.pui__logo { display: inline-flex; align-items: center; gap: 1.8cqw; font-family: var(--f-display); font-weight: 700; font-size: 4.4cqw; letter-spacing: -.02em; }
.pui__logo i { width: 4.6cqw; height: 4.6cqw; border-radius: 1.5cqw; background: var(--yellow); }
.pui__live { display: inline-flex; align-items: center; gap: 1.4cqw; padding: 1.2cqw 2.4cqw; border-radius: 999px; background: rgba(247,212,59,.14); color: var(--yellow); font-family: var(--f-display); font-weight: 600; font-size: 2.8cqw; letter-spacing: .1em; }
.pui__live i { width: 1.8cqw; height: 1.8cqw; border-radius: 50%; background: var(--yellow); }
@media (prefers-reduced-motion: no-preference) { .pui__live i { animation: ping 2.2s ease-out infinite; } }

.pui__camp { background: #1c1c1c; border: 1px solid rgba(255,255,255,.07); border-radius: 3.4cqw; padding: 3.4cqw; }
.pui__tag { display: inline-block; padding: 1cqw 2.2cqw; border-radius: 999px; background: rgba(247,212,59,.16); color: var(--yellow); font-family: var(--f-display); font-weight: 600; font-size: 2.6cqw; letter-spacing: .06em; text-transform: uppercase; }
.pui__camp b { display: block; font-family: var(--f-display); font-weight: 600; font-size: 4.6cqw; letter-spacing: -.02em; margin: 2cqw 0 2.6cqw; }
.pui__prog { height: 1.4cqw; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.pui__progbar { display: block; width: 80%; height: 100%; border-radius: 999px; background: var(--yellow); }
.pui__meta { display: flex; justify-content: space-between; margin-top: 1.8cqw; font-size: 2.8cqw; color: rgba(255,255,255,.5); font-weight: 600; }

.pui__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4cqw; }
.pui__kpi { background: #1c1c1c; border: 1px solid rgba(255,255,255,.07); border-radius: 3cqw; padding: 2.8cqw; }
.pui__kpi span { display: block; font-size: 2.6cqw; color: rgba(255,255,255,.5); font-weight: 600; line-height: 1.25; }
.pui__kpi b { display: block; font-family: var(--f-display); font-weight: 700; font-size: 6.4cqw; color: var(--yellow); letter-spacing: -.03em; margin: .6cqw 0; }
.pui__kpi i { font-style: normal; font-size: 2.5cqw; font-weight: 700; }
.pui__kpi i.up { color: #7ddba4; }
.pui__kpi i.dn { color: #e98b8b; }

.pui__chart { flex: 1; min-height: 0; display: flex; flex-direction: column; background: #1c1c1c; border: 1px solid rgba(255,255,255,.07); border-radius: 3.4cqw; padding: 3cqw; }
.pui__chead { display: flex; align-items: baseline; gap: 1.8cqw; }
.pui__chead b { font-family: var(--f-display); font-weight: 600; font-size: 3.4cqw; }
.pui__chead span { font-size: 2.5cqw; color: rgba(255,255,255,.42); }
.pui__chart svg { flex: 1; width: 100%; min-height: 0; margin-top: 1.4cqw; }
.pui__chart .line { stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.pui__chart .nowl { stroke: rgba(255,255,255,.28); stroke-width: 1; stroke-dasharray: 3 3; vector-effect: non-scaling-stroke; }
.pui__chart .nowd { fill: var(--yellow); }
.pui__axis { display: flex; justify-content: space-between; font-size: 2.4cqw; color: rgba(255,255,255,.38); font-weight: 600; }

.pui__zones { display: flex; gap: 2cqw; }
.pui__zone { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 1.6cqw; padding: 2.4cqw; border-radius: 2.6cqw; background: #1c1c1c; border: 1px solid rgba(255,255,255,.07); font-family: var(--f-display); font-weight: 500; font-size: 3cqw; }
.pui__zone i { width: 1.8cqw; height: 1.8cqw; border-radius: 50%; background: var(--yellow); }


/* halo clignotant sur le CTA */
.btn--pulse { position: relative; }
.btn--pulse::before {
  content: ""; position: absolute; inset: -3px; border-radius: 999px; z-index: -1;
  background: var(--yellow); opacity: .5; filter: blur(9px);
}
@media (prefers-reduced-motion: no-preference) {
  .btn--pulse::before { animation: haloPulse 2.4s ease-in-out infinite; }
  .btn--pulse::after {
    content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1;
    border: 1.5px solid var(--yellow); animation: haloRing 2.4s cubic-bezier(.2,.7,.4,1) infinite;
  }
}
@keyframes haloPulse { 0%,100% { opacity: .34; filter: blur(8px); } 50% { opacity: .85; filter: blur(15px); } }
@keyframes haloRing { 0% { transform: scale(1); opacity: .6; } 70%,100% { transform: scale(1.28); opacity: 0; } }

/* témoignages pleine largeur */
.testi--full { border-radius: 0; max-width: none; padding-bottom: clamp(330px,32vw,480px); background: linear-gradient(180deg, var(--paper) 0%, #fffdf5 45%, var(--paper-2) 100%); }
.testi--full .route path.road { opacity: .32; }


/* bulles personnes + marques qui se croisent (témoignages) */
.avatar--logo { background: #fff; display: grid; place-items: center; }
.avatar--logo img { width: 68%; height: 68%; object-fit: contain; }
@media (prefers-reduced-motion: no-preference) {
  .avatar.dA { animation: driftA 19s ease-in-out infinite; }
  .avatar.dB { animation: driftB 24s ease-in-out infinite -3s; }
  .avatar.dC { animation: driftC 21s ease-in-out infinite -7s; }
  .avatar.dD { animation: driftD 27s ease-in-out infinite -11s; }
}
@keyframes driftA { 0%,100%{transform:translate(0,0)} 25%{transform:translate(11px,-13px)} 50%{transform:translate(-6px,-5px)} 75%{transform:translate(5px,10px)} }
@keyframes driftB { 0%,100%{transform:translate(0,0)} 30%{transform:translate(-13px,8px)} 60%{transform:translate(7px,14px)} 80%{transform:translate(9px,-6px)} }
@keyframes driftC { 0%,100%{transform:translate(0,0)} 20%{transform:translate(8px,12px)} 55%{transform:translate(-11px,-9px)} 80%{transform:translate(-4px,7px)} }
@keyframes driftD { 0%,100%{transform:translate(0,0)} 35%{transform:translate(-9px,-12px)} 65%{transform:translate(12px,4px)} 85%{transform:translate(-5px,9px)} }

@media (max-width: 1200px) { .avatars .inner { display: none; } }


/* ============================================================
   CTA FINAL — dégradé jaune/orangé + vidéo en fond
   ============================================================ */
.fcta { position: relative; z-index: 5; height: 0; padding: 0; }
.fcta__panel {
  position: absolute; left: var(--pad); right: var(--pad); top: 50%; transform: translateY(-50%);
  isolation: isolate; overflow: hidden;
  max-width: var(--maxw); margin-inline: auto; border-radius: var(--r-xl);
  box-shadow: 0 40px 90px rgba(26,22,10,.22);
}
.fcta__video {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; filter: contrast(1.06) saturate(.6) brightness(.74);
}
.fcta__wash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(118deg, var(--yellow) 0%, #f8ca33 34%, var(--amber) 72%, #e8901a 100%);
  mix-blend-mode: overlay; opacity: .92;
}
.fcta__panel::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(118deg, rgba(240,167,27,.34) 0%, rgba(232,144,26,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.14) 42%, rgba(0,0,0,.5) 100%);
}
.fcta__in {
  position: relative; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: clamp(56px,8vw,112px) clamp(24px,5vw,72px); text-align: center;
}
.fcta__kicker {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px; border-radius: 999px;
  background: rgba(11,11,11,.82); color: var(--yellow); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  font-family: var(--f-display); font-weight: 600; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
}
.fcta h2 { font-size: clamp(38px,6.2vw,88px); color: #fff; max-width: 17ch; letter-spacing: -.045em; text-wrap: balance; text-shadow: 0 4px 40px rgba(0,0,0,.3); }
.fcta h2 em { font-style: italic; font-weight: 800; }
.fcta__in > p { color: rgba(255,255,255,.92); font-size: clamp(16px,1.4vw,19.5px); font-weight: 500; max-width: 50ch; }
.fcta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.btn--xl { padding: 19px 34px; font-size: 17.5px; font-weight: 600; }
.btn--glass {
  background: rgba(255,255,255,.18); color: #fff;
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45), 0 8px 24px rgba(26,22,10,.12);
}
.btn--glass:hover { background: rgba(255,255,255,.34); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6), 0 12px 30px rgba(26,22,10,.16); }
.fcta__note { font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.7); text-transform: uppercase; font-family: var(--f-display); }
@media (max-width: 640px) { .fcta__in { padding-inline: 22px; } .btn--xl { padding: 17px 26px; font-size: 16px; } }


/* ============================================================
   MODALE DEVIS
   ============================================================ */
.qm { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(12px,3vw,40px); }
.qm__scrim { position: absolute; inset: 0; background: rgba(11,11,11,.62); backdrop-filter: blur(6px); opacity: 0; transition: opacity .25s; }
.qm.is-open .qm__scrim { opacity: 1; }
.qm__sheet {
  position: relative; width: min(860px,100%); max-height: min(92vh,900px); overflow-y: auto;
  background: var(--paper); border-radius: var(--r-lg); padding: clamp(26px,3.4vw,44px);
  box-shadow: 0 50px 110px rgba(11,11,11,.4);
  opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .28s cubic-bezier(.2,.8,.2,1), transform .28s cubic-bezier(.2,.8,.2,1);
}
.qm.is-open .qm__sheet { opacity: 1; transform: none; }
.qm__x {
  position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border: none; border-radius: 50%;
  background: var(--paper-3); color: var(--ink-700); font-size: 14px; display: grid; place-items: center; transition: background .2s;
}
.qm__x:hover { background: var(--yellow); color: var(--ink-900); }
.qm__kicker { display: inline-block; font-family: var(--f-display); font-weight: 700; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-500); }
.qm__head h2 { font-size: clamp(24px,2.8vw,34px); color: var(--ink-900); margin-top: 10px; max-width: 26ch; }
.qm__head p { color: var(--ink-500); font-size: 15px; margin-top: 10px; max-width: 52ch; }
.qm__set { border: none; padding: 0; margin: 26px 0 0; }
.qm__set legend {
  font-family: var(--f-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-900); padding: 0 0 12px;
}
.qm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld--full { margin-top: 14px; }
.fld > span { font-size: 12.5px; font-weight: 700; color: var(--ink-700); letter-spacing: .01em; }
.fld input, .fld select, .fld textarea {
  font-family: var(--f-body); font-size: 15px; color: var(--ink-900);
  padding: 13px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--paper-2); transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.fld textarea { resize: vertical; min-height: 84px; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--ink-900); background: #fff; box-shadow: 0 0 0 4px rgba(247,212,59,.35);
}
.fld.is-bad input, .fld.is-bad select { border-color: #d8583f; background: #fdf3f1; }
.qm__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 16px; }
.qm__chips.is-bad { outline: 2px dashed #d8583f; outline-offset: 6px; border-radius: var(--r-sm); }
.chipx input { position: absolute; opacity: 0; pointer-events: none; }
.chipx span {
  display: inline-flex; padding: 10px 17px; border-radius: 999px; cursor: pointer;
  background: var(--paper-2); border: 1.5px solid var(--line);
  font-family: var(--f-display); font-weight: 500; font-size: 14px; color: var(--ink-700);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.chipx:hover span { border-color: var(--ink-300); }
.chipx input:checked + span { background: var(--ink-900); border-color: var(--ink-900); color: var(--yellow); }
.chipx input:focus-visible + span { box-shadow: 0 0 0 4px rgba(247,212,59,.45); }
.qm__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.qm__legal { font-size: 12.5px; color: var(--ink-300); max-width: 34ch; }
.qm__done { text-align: center; padding: clamp(24px,4vw,50px) 0 8px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.qm__check { width: 66px; height: 66px; border-radius: 50%; background: var(--yellow); color: var(--ink-900); display: grid; place-items: center; font-size: 28px; font-weight: 700; }
.qm__done h3 { font-size: clamp(24px,2.6vw,32px); color: var(--ink-900); }
.qm__done p { color: var(--ink-500); max-width: 42ch; }
@media (max-width: 640px) { .qm__grid { grid-template-columns: 1fr; } .qm__foot .btn { width: 100%; justify-content: center; } }
