/* ════════════════════════════════════════════════════════════════
   N.E SYSTÈME — CLEAN AUTHORITY
   Blanc/crème · Marine · Jaune acide · Syne + DM Sans
   ════════════════════════════════════════════════════════════════ */
:root {
  /* ── Light theme (default) ─────────────────────────────────── */
  --bg:        #FFFFFF;
  --bg-2:      #F5F5F0;
  --bg-3:      #F9F9F5;
  --ink:       #0D0D0D;
  --ink-2:     rgba(13, 13, 13, 0.72);
  --ink-3:     rgba(13, 13, 13, 0.5);
  --ink-4:     rgba(13, 13, 13, 0.32);
  --border:    rgba(13, 13, 13, 0.08);
  --border-2:  rgba(13, 13, 13, 0.16);
  --card:      #FFFFFF;
  --card-2:    #F5F5F0;

  --navy:      #1A1A2E;
  --navy-2:    #2A2A4A;
  --on-navy:   #FFFFFF;    /* text on .navy surfaces */
  --footer-bg: #0D0D0D;
  --acid:      #E8FF3A;
  --acid-soft: #F4FF7C;
  --green:     #1F8A5B;
  --red-soft:  #E03A3A;

  /* Supporting accents — add color and life */
  --coral:     #FF6B5B;
  --coral-tint: rgba(255, 107, 91, 0.12);
  --sky:       #4FA6FF;
  --sky-tint:  rgba(79, 166, 255, 0.12);
  --mint:      #5BD9A4;
  --mint-tint: rgba(91, 217, 164, 0.14);
  --violet:    #8B6FFF;
  --violet-tint: rgba(139, 111, 255, 0.12);

  --shadow-color: 13, 13, 13;
  --shadow-sm:  0 1px 2px rgba(var(--shadow-color), 0.04), 0 1px 3px rgba(var(--shadow-color), 0.06);
  --shadow:     0 4px 12px -4px rgba(var(--shadow-color), 0.08), 0 12px 32px -8px rgba(var(--shadow-color), 0.06);
  --shadow-lg:  0 12px 40px -12px rgba(var(--shadow-color), 0.16), 0 28px 80px -20px rgba(var(--shadow-color), 0.10);

  --ff-disp:   'Syne', serif;
  --ff-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-num:    'DM Sans', -apple-system, sans-serif; /* readable numeric font */

  --container: 1240px;
  --pad:       clamp(20px, 4vw, 56px);

  --r:    8px;
  --r-lg: 14px;
  --r-xl: 22px;

  color-scheme: light;
}

/* ── Dark theme ──────────────────────────────────────── */
[data-theme="dark"] {
  --bg:        #0E0E11;
  --bg-2:      #16161B;
  --bg-3:      #1A1A21;
  --ink:       #F5F5F0;
  --ink-2:     rgba(245, 245, 240, 0.84);
  --ink-3:     rgba(245, 245, 240, 0.68);
  --ink-4:     rgba(245, 245, 240, 0.55);
  --border:    rgba(245, 245, 240, 0.10);
  --border-2:  rgba(245, 245, 240, 0.22);
  --card:      #16161B;
  --card-2:    #1F1F26;

  /* In dark, the brand primary becomes acid yellow.
     All buttons/badges flip; text-on-primary becomes deep ink. */
  --navy:      #E8FF3A;
  --navy-2:    #C8D820;
  --on-navy:   #0E0E11;
  --footer-bg: #050507;

  --shadow-color: 0, 0, 0;
  --shadow-sm:  0 1px 2px rgba(0,0,0, 0.4), 0 1px 3px rgba(0,0,0, 0.3);
  --shadow:     0 8px 24px -8px rgba(0,0,0, 0.5), 0 16px 48px -12px rgba(0,0,0, 0.35);
  --shadow-lg:  0 20px 60px -20px rgba(0,0,0, 0.7), 0 40px 100px -30px rgba(0,0,0, 0.5);

  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-disp); letter-spacing: -0.012em; line-height: 1.05; }
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--acid); color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── reveal-on-scroll ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ─── hi-state highlight (acid yellow) ────────────────────────── */
.hi {
  position: relative;
  display: inline-block;
  font-weight: 800;
  z-index: 1;
}
.hi::before {
  content: "";
  position: absolute;
  inset: 12% -3% 2% -3%;
  background: var(--acid);
  z-index: -1;
  transform: skewX(-3deg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.hi:hover::before {
  transform: skewX(-3deg) scaleX(1.04);
}
/* Force dark ink on .hi in dark mode (acid bg + dark text = readable) */
[data-theme="dark"] .hi { color: #0E0E11; }

/* ─── Theme toggle button ─────────────────────────── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--ink);
  transition: background .25s, transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s;
  overflow: hidden;
  position: relative;
}
.theme-toggle:hover {
  background: var(--card);
  border-color: var(--border-2);
  transform: rotate(20deg);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .25s;
}
.theme-toggle .theme-toggle__sun  { display: none; }
.theme-toggle .theme-toggle__moon { display: block; }
[data-theme="dark"] .theme-toggle .theme-toggle__sun  { display: block; }
[data-theme="dark"] .theme-toggle .theme-toggle__moon { display: none; }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  transition: background .25s, color .25s, transform .12s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--navy);
  color: var(--on-navy);
  box-shadow: 0 8px 22px -8px rgba(var(--shadow-color), 0.35);
}
.btn--primary:hover {
  background: var(--acid);
  color: #0D0D0D;
  box-shadow: 0 14px 32px -10px rgba(232, 255, 58, 0.5);
  transform: translateY(-1px);
}
[data-theme="dark"] .btn--primary:hover {
  background: #FFFFFF;
  color: #0D0D0D;
  box-shadow: 0 14px 32px -10px rgba(255, 255, 255, 0.3);
}
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--xl { padding: 21px 34px; font-size: 17px; gap: 14px; }
.btn--ghost {
  color: var(--ink);
  border-color: var(--border-2);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--bg-2);
  border-color: var(--ink);
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom-color: var(--border-2);
}
.nav__right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.nav__logo em {
  font-style: normal;
  font-weight: 800;
}
.logo-mark {
  width: 22px;
  height: 22px;
  background: var(--ink);
  position: relative;
  border-radius: 4px;
}
.logo-mark::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 6px; height: 6px;
  background: var(--acid);
  border-radius: 50%;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--acid);
  transition: right .3s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__cta {
  padding: 10px 18px;
  background: var(--navy);
  color: var(--on-navy);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .25s, color .25s, transform .2s;
}
@media (max-width: 480px) {
  .nav { padding: 14px var(--pad); }
  .nav__cta { padding: 9px 14px; font-size: 13px; }
  .nav__logo { font-size: 17px; }
}
.nav__cta:hover {
  background: var(--acid);
  color: #0D0D0D;
  transform: translateY(-1px);
}
[data-theme="dark"] .nav__cta:hover { background: #FFFFFF; color: #0D0D0D; }
.nav__cta svg { width: 12px; height: 12px; }
@media (max-width: 820px) {
  .nav__links { display: none; }
}


/* ════════════════════════════════════════════════════════════════
   01. HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(48px, 6vw, 80px) var(--pad) clamp(40px, 5vw, 64px);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

/* Pill badge variant — "100 % paysagistes" emphasis */
.eyebrow--paysagiste {
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mint) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--mint) 42%, transparent);
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.eyebrow--paysagiste::before { display: none; }
.eyebrow--paysagiste strong {
  font-weight: 700;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12.5px;
}
.eyebrow__leaf {
  font-size: 16px;
  line-height: 1;
  filter: saturate(1.1);
}
[data-theme="dark"] .eyebrow--paysagiste {
  background: color-mix(in srgb, var(--mint) 18%, transparent);
  border-color: color-mix(in srgb, var(--mint) 55%, transparent);
}

/* Mint underline emphasis under inline "paysagiste" in H1 */
.strong--mint {
  display: inline-block;
  white-space: nowrap;
  text-decoration: underline solid var(--mint);
  text-decoration-thickness: 6px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
@supports not (text-underline-offset: 2px) {
  .strong--mint { border-bottom: 6px solid var(--mint); padding-bottom: 2px; }
}

/* Stronger hero counter callout — "et que pour eux" */
.hero__counter strong {
  font-weight: 700;
  color: var(--ink);
}

.hero__h1 {
  font-family: var(--ff-disp);
  font-size: clamp(42px, 5.8vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__h1 .thin {
  font-weight: 500;
  color: var(--ink-2);
}
.hero__h1 .strong {
  font-weight: 800;
  color: var(--ink);
}
/* clip-path reveal */
.hero__h1 {
  animation: revealMask 1s cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: 0.2s;
}
@keyframes revealMask {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

.hero__sub {
  color: var(--ink-2);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 36px;
}
@media (min-width: 540px) {
  .hero__cta-row { flex-direction: row; align-items: center; gap: 22px; flex-wrap: wrap; }
}

.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.badge-check__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.badge-check__icon svg { width: 11px; height: 11px; }

.hero__counter {
  font-size: 14.5px;
  color: var(--ink-3);
  padding-top: 22px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.hero__counter em {
  font-family: var(--ff-num);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Phone mockup */
.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 296px;
  height: 590px;
  background: linear-gradient(170deg, #1a1a24, #0a0a10);
  border-radius: 44px;
  padding: 11px;
  box-shadow:
    0 40px 80px -20px rgba(13, 13, 13, 0.22),
    0 8px 24px -8px rgba(13, 13, 13, 0.12),
    0 0 0 1px rgba(13, 13, 13, 0.06);
  transform: rotate(-3deg);
}
@media (max-width: 540px) {
  .phone { width: 260px; height: 520px; transform: rotate(-2deg); }
}
.phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  padding: 50px 13px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.phone__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.phone__gbp {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    conic-gradient(from 90deg, #4285F4 0 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75% 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 800;
}
.phone__app-title {
  font-weight: 600;
  font-size: 13px;
}
.phone__app-sub {
  font-size: 10.5px;
  color: var(--ink-3);
}

.notif {
  padding: 11px 13px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: notifIn .55s ease-out forwards;
  animation-delay: var(--d, 0s);
}
@keyframes notifIn {
  to { opacity: 1; transform: translateY(0); }
}
.notif__head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--ink-3);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.notif__head em {
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
}
.notif__title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
}
.notif__meta {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 2px;
}
.notif__meta strong { color: var(--navy); font-weight: 600; }
.notif--star {
  background: var(--acid-soft);
  border-color: rgba(232, 171, 0, 0.3);
}
[data-theme="dark"] .notif--star {
  background: rgba(232, 255, 58, 0.10);
  border-color: rgba(232, 255, 58, 0.35);
}
.notif__stars {
  color: #E8AB00;
  letter-spacing: 1px;
  font-size: 12px;
}

/* Trades band (scrolling logos of artisan trades) */
.trades-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.trades-band__label {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 18px;
}
.trades-band__track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: trades 30s linear infinite;
}
.trades-band__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  flex-shrink: 0;
}
.trades-band__emoji {
  font-size: 22px;
  line-height: 1;
  filter: saturate(1.05);
}
@keyframes trades {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ════════════════════════════════════════════════════════════════
   02. PROBLÈMES
   ════════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(80px, 10vw, 130px) 0;
}
.problems {
  background: var(--bg-2);
}
.section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--ink-3);
  margin-right: 10px;
  vertical-align: middle;
}
.section-h2 {
  font-family: var(--ff-disp);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  text-wrap: balance;
  color: var(--ink);
}
.section-h2 .thin { font-weight: 500; color: var(--ink-2); }
.section-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 600px;
}
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

.problem-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.problem::after {
  /* color accent stripe on the top, rotates color per card */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--problem-accent, var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1) .1s;
}
.problem:nth-child(1) { --problem-accent: var(--coral); }
.problem:nth-child(2) { --problem-accent: var(--sky); }
.problem:nth-child(3) { --problem-accent: var(--violet); }
.problem:nth-child(4) { --problem-accent: var(--mint); }
.problem.is-in::after { transform: scaleX(1); }
.problem:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}
.problem__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}
.problem__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--problem-accent, var(--navy)) 14%, transparent);
  display: grid;
  place-items: center;
  color: var(--problem-accent, var(--navy));
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.problem:hover .problem__icon {
  transform: scale(1.1) rotate(-6deg);
}
.problem__icon svg { width: 22px; height: 22px; }
.problem h3 {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-top: 4px;
}
.problem p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}


/* ════════════════════════════════════════════════════════════════
   03. CHASSEUR
   ════════════════════════════════════════════════════════════════ */
.chasseur {
  background: var(--bg);
}

.card-offer {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.card-offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--navy), var(--sky), var(--mint));
  background-size: 400% 100%;
  animation: cardGradient 8s ease-in-out infinite;
}
@keyframes cardGradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.card-offer__head {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 880px) {
  .card-offer__head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge--acid {
  background: var(--acid);
  color: var(--ink);
}
.card-offer__title {
  font-family: var(--ff-disp);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 16px 0 14px;
  color: var(--ink);
}
.card-offer__tag {
  color: var(--ink-2);
  font-size: 15.5px;
  max-width: 460px;
  line-height: 1.5;
}

.card-offer__price {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}
.price-block {
  padding: 20px 24px;
  background: var(--bg-2);
  border-radius: var(--r);
  text-align: right;
}
.price-block--alt {
  background: var(--navy);
  color: var(--on-navy);
}
.price-block__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.price-block__num {
  display: block;
  font-family: var(--ff-num);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.price-block__num em { font-style: normal; }
.price-block__num span { font-size: 20px; opacity: 0.7; font-weight: 600; letter-spacing: -0.01em; }
.price-block__foot {
  display: block;
  font-size: 11px;
  opacity: 0.78;
  margin-top: 8px;
  font-weight: 500;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg { width: 11px; height: 11px; }
.feature strong {
  display: block;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
}
.feature span {
  display: block;
  color: var(--ink-3);
  font-size: 13.5px;
  margin-top: 2px;
}
.card-offer__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card-offer__note {
  font-size: 13px;
  color: var(--ink-3);
}


/* ════════════════════════════════════════════════════════════════
   04. OPTIONS
   ════════════════════════════════════════════════════════════════ */
.options {
  background: var(--bg-2);
}
.opt-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 880px) {
  .opt-grid { grid-template-columns: 1fr; }
}
.opt-card {
  position: relative;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.opt-card::before {
  /* hover shine sweep */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, var(--opt-accent-tint, var(--coral-tint)) 50%, transparent 65%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.opt-card:hover::before { opacity: 1; }
.opt-card:nth-child(1) { --opt-accent: var(--coral); --opt-accent-tint: var(--coral-tint); }
.opt-card:nth-child(2) { --opt-accent: var(--sky); --opt-accent-tint: var(--sky-tint); }
.opt-card:nth-child(3) { --opt-accent: var(--mint); --opt-accent-tint: var(--mint-tint); }
.opt-card:nth-child(4) { --opt-accent: var(--violet); --opt-accent-tint: var(--violet-tint); }
.opt-card .opt-card__num {
  color: var(--opt-accent, var(--navy));
}
.opt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--opt-accent, var(--border-2));
}
.opt-card[data-on="true"] {
  background: var(--navy);
  color: var(--on-navy);
  border-color: var(--navy);
  box-shadow: 0 12px 36px -10px rgba(var(--shadow-color), 0.45);
}
.opt-card[data-on="true"] .opt-card__lede,
.opt-card[data-on="true"] .opt-card__pts li,
.opt-card[data-on="true"] .opt-card__price {
  color: color-mix(in srgb, var(--on-navy) 75%, transparent);
}
.opt-card[data-on="true"] .opt-card__num { color: var(--acid); }
[data-theme="dark"] .opt-card[data-on="true"] .opt-card__num { color: var(--coral); }
.opt-card[data-on="true"] .opt-card__price em { color: var(--on-navy); }
.opt-card[data-on="true"] .opt-card__price-sep { color: color-mix(in srgb, var(--on-navy) 40%, transparent); }
.opt-card[data-on="true"] .opt-card__price { border-top-color: color-mix(in srgb, var(--on-navy) 18%, transparent); }

.opt-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
}
.opt-card__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.opt-card__title {
  font-family: var(--ff-disp);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.opt-card__lede {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.opt-card__pts {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.opt-card__pts li {
  position: relative;
  padding-left: 18px;
}
.opt-card__pts li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.opt-card[data-on="true"] .opt-card__pts li::before { color: var(--acid); }

.opt-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.opt-card__price > span { white-space: nowrap; }
.opt-card__price em {
  font-family: var(--ff-num);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.opt-card__price-sep { color: var(--ink-4); }

.opt-card__add {
  margin-top: auto;
  padding: 13px 20px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s;
}
.opt-card__add:hover {
  background: var(--ink);
  color: var(--bg);
}
.opt-card__add-on { display: none; }
.opt-card[data-on="true"] .opt-card__add {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}
.opt-card[data-on="true"] .opt-card__add-default { display: none; }
.opt-card[data-on="true"] .opt-card__add-on { display: inline; }

/* recap */
.recap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (max-width: 920px) {
  .recap { grid-template-columns: 1fr; }
}
.recap__left {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--border);
}
@media (max-width: 920px) {
  .recap__left { border-right: 0; border-bottom: 1px solid var(--border); }
}
.recap__title {
  font-family: var(--ff-disp);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 10px 0 16px;
}
.recap__lede {
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 460px;
  font-size: 15.5px;
  line-height: 1.55;
}
.recap__guarantee {
  padding: 22px;
  background: var(--bg-2);
  border-radius: var(--r);
  border-left: 3px solid var(--navy);
}
.recap__guarantee-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.recap__guarantee p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.recap__guarantee strong { color: var(--ink); }

.recap__right {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--bg-2);
}
.recap__live-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.recap__live-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 40px;
}
.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 13.5px;
  animation: slideIn .3s ease-out;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.recap-row--base {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.recap-row__val {
  color: var(--ink-3);
  font-size: 12px;
}
.recap-row--base .recap-row__val { color: color-mix(in srgb, var(--bg) 70%, transparent); }

.recap__totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px 0 4px;
  border-top: 1px solid var(--border);
}
.recap__total-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 6px;
}
.recap__total-num {
  font-family: var(--ff-num);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.recap__total-num em { font-style: normal; }
.recap__total-num span { font-size: 16px; font-weight: 600; opacity: 0.6; letter-spacing: -0.01em; }
.recap__total--alt .recap__total-num em { color: var(--navy); }


/* ════════════════════════════════════════════════════════════════
   05. GARANTIES
   ════════════════════════════════════════════════════════════════ */
.garanties { background: var(--bg); }
.garanties__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1040px) {
  .garanties__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .garanties__list { grid-template-columns: 1fr; }
}
.garantie {
  padding: 28px 22px;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.garantie::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--g-accent, var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.garantie:hover::before { transform: scaleX(1); }
.garantie:nth-child(1) { --g-accent: var(--coral); }
.garantie:nth-child(2) { --g-accent: var(--sky); }
.garantie:nth-child(3) { --g-accent: var(--mint); }
.garantie:nth-child(4) { --g-accent: var(--violet); }
.garantie:nth-child(5) { --g-accent: var(--acid); }
.garantie:nth-child(1) .garantie__num { color: var(--coral); }
.garantie:nth-child(2) .garantie__num { color: var(--sky); }
.garantie:nth-child(3) .garantie__num { color: var(--mint); }
.garantie:nth-child(4) .garantie__num { color: var(--violet); }
.garantie:nth-child(5) .garantie__num { color: var(--green); }
.garantie:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--card);
}
.garantie__num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
}
.garantie h3 {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.garantie p {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
}


/* ════════════════════════════════════════════════════════════════
   06. TÉMOIGNAGES
   ════════════════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-2); }
.testi-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s, box-shadow .25s;
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testi__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testi__stars { display: flex; gap: 4px; }
.testi__stars span {
  width: 15px; height: 15px;
  background: #E8AB00;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testi__cred {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}
.testi blockquote {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.testi blockquote strong { font-weight: 700; }
.testi__by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testi__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--navy);
  display: grid; place-items: center;
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 700;
}
.testi__by strong { display: block; font-size: 14px; font-weight: 600; }
.testi__by span { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.testi__metric {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi__metric strong {
  display: inline-block;
  font-family: var(--ff-num);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  position: relative;
}
.testi__metric strong::after {
  content: "";
  position: absolute;
  inset: 30% -4px auto -4px;
  height: 30%;
  background: var(--acid);
  z-index: -1;
  opacity: 0.45;
}
.testi__metric > em {
  font-style: normal;
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
}
.testi__metric strong em {
  font-style: normal;
  display: inline;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  margin: 0;
}
.testi__note {
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--ink-4);
  text-align: center;
  font-style: italic;
}


/* ════════════════════════════════════════════════════════════════
   07. CTA FINAL
   ════════════════════════════════════════════════════════════════ */
.cta-final {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110vmin;
  height: 110vmin;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--acid) 16%, transparent), transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: ctaBreath 6s ease-in-out infinite;
}
@keyframes ctaBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
.cta-final::after {
  /* color sparkles */
  content: "";
  position: absolute;
  top: 20%;
  left: 15%;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow:
    280px 60px 0 -1px var(--sky),
    520px -40px 0 0 var(--mint),
    800px 80px 0 -1px var(--violet),
    140px 220px 0 0 var(--acid),
    640px 300px 0 -1px var(--coral),
    400px 380px 0 0 var(--sky),
    -40px 320px 0 -1px var(--mint),
    920px 160px 0 0 var(--violet);
  animation: sparkle 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sparkle {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
.cta-final__container {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.cta-final__h2 {
  font-family: var(--ff-disp);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-bottom: 22px;
}
.cta-final__h2 .thin { font-weight: 500; color: var(--ink-2); }
.cta-final__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto 42px;
}
.cta-final__meta {
  margin-top: 26px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 13.5px;
  color: var(--ink-3);
}


/* ════════════════════════════════════════════════════════════════
   08. FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  color: rgba(245, 245, 240, 0.78);
  padding: 72px 0 28px;
}
.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 245, 240, 0.1);
}
@media (max-width: 880px) {
  .footer__container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer__container { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}
.footer .nav__logo { color: #FFFFFF; }
.footer .logo-mark { background: #FFFFFF; }
.footer__brand p {
  color: rgba(245, 245, 240, 0.6);
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 340px;
  line-height: 1.55;
}
.footer__col h4 {
  font-family: var(--ff-disp);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  font-size: 14.5px;
  padding: 4px 0;
  color: rgba(245, 245, 240, 0.7);
  transition: color .2s, transform .2s;
}
.footer__col a:hover { color: var(--acid); transform: translateX(3px); }
.footer__tva {
  display: block;
  font-size: 11.5px;
  color: rgba(245, 245, 240, 0.35);
  margin-top: 14px;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(245, 245, 240, 0.35);
}


/* ════════════════════════════════════════════════════════════════
   STICKY MOBILE CALL
   ════════════════════════════════════════════════════════════════ */
.sticky-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--navy);
  color: var(--on-navy);
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: 0 14px 32px -8px rgba(var(--shadow-color), 0.5);
}
.sticky-call svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .sticky-call { display: inline-flex; }
  body { padding-bottom: 80px; }
}


/* trades-band reset bg in dark mode */
[data-theme="dark"] .trades-band { background: var(--bg-2); }
[data-theme="dark"] .price-block { background: var(--bg-3); }
[data-theme="dark"] .price-block--alt {
  background: var(--navy);
  color: var(--on-navy);
}
[data-theme="dark"] .recap__right { background: var(--bg-2); }
[data-theme="dark"] .nav.is-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
[data-theme="dark"] .problem__icon {
  background: color-mix(in srgb, var(--problem-accent, var(--navy)) 20%, transparent);
}
[data-theme="dark"] .badge {
  background: var(--card-2);
  color: var(--ink);
  border: 1px solid var(--border);
}

/* Testi metric accent colors per card */
.testi:nth-child(1) .testi__metric strong em { color: var(--coral); }
.testi:nth-child(2) .testi__metric strong em { color: var(--sky); }
.testi:nth-child(3) .testi__metric strong em { color: var(--mint); }
.testi:nth-child(1) .testi__avatar { background: var(--coral-tint); color: var(--coral); }
.testi:nth-child(2) .testi__avatar { background: var(--sky-tint); color: var(--sky); }
.testi:nth-child(3) .testi__avatar { background: var(--mint-tint); color: var(--mint); }

/* ════════════════════════════════════════════════════════════════
   À VENIR — modules en cours de création
   ════════════════════════════════════════════════════════════════ */
.opt-card--coming {
  position: relative;
}
.opt-card--coming::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, color-mix(in srgb, var(--mint) 5%, transparent) 100%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.opt-card--coming > * { position: relative; z-index: 1; }
.opt-card--coming:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in srgb, var(--mint) 28%, var(--border));
}
.opt-card--coming:hover::before { opacity: 0; }

.badge--soon {
  background: color-mix(in srgb, var(--mint) 18%, transparent);
  color: var(--mint);
  border: 1px solid color-mix(in srgb, var(--mint) 40%, transparent);
}
[data-theme="dark"] .badge--soon {
  background: color-mix(in srgb, var(--mint) 22%, transparent);
  color: var(--mint);
  border-color: color-mix(in srgb, var(--mint) 50%, transparent);
}

.opt-card__add--coming {
  background: var(--bg-2);
  border: 1.5px dashed var(--border-2);
  color: var(--ink-2);
  cursor: not-allowed;
  font-weight: 500;
}
.opt-card__add--coming:hover {
  background: var(--bg-2);
  border-color: var(--border-2);
  color: var(--ink-2);
}
[data-theme="dark"] .opt-card__add--coming { background: var(--bg-3); }

.opt-card__price-note {
  flex-basis: 100%;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-style: italic;
  margin-top: 2px;
}

.recap-coming {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  background: var(--card);
  border: 1px dashed var(--border-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.recap-coming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, color-mix(in srgb, var(--mint) 10%, transparent), transparent 60%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .recap-coming { flex-direction: column; align-items: flex-start; gap: 18px; }
}
.recap-coming__icon {
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.recap-coming__body { position: relative; z-index: 1; }
.recap-coming__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 10px;
}
.recap-coming__title {
  font-family: var(--ff-disp);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.recap-coming__lede {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 560px;
}
.recap-coming__early {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px dashed color-mix(in srgb, var(--mint) 38%, var(--border-2));
  border-radius: var(--r);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 560px;
}
.recap-coming__early-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mint);
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 2px;
}
.recap-coming__early strong { color: var(--ink); font-weight: 700; }
@media (max-width: 480px) {
  .recap-coming__early { flex-direction: column; gap: 6px; }
}

/* ════════════════════════════════════════════════════════════════
   DARK MODE — readability boosts
   ════════════════════════════════════════════════════════════════ */
[data-theme="dark"] .phone {
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 8px 24px -8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.10);
}
[data-theme="dark"] .nav {
  border-bottom-color: rgba(245, 245, 240, 0.08);
}
[data-theme="dark"] .opt-card__add {
  border-color: var(--ink-2);
}
[data-theme="dark"] .opt-card__add:hover {
  background: var(--ink);
  color: var(--bg);
}
[data-theme="dark"] .footer {
  color: rgba(245, 245, 240, 0.82);
}
[data-theme="dark"] .footer__brand p { color: rgba(245, 245, 240, 0.68); }
[data-theme="dark"] .footer__col a { color: rgba(245, 245, 240, 0.78); }
[data-theme="dark"] .footer__tva,
[data-theme="dark"] .footer__base { color: rgba(245, 245, 240, 0.55); }

/* Mobile dark mode: ensure sticky-call doesn't overlap content */
@media (max-width: 720px) {
  [data-theme="dark"] .sticky-call {
    box-shadow:
      0 14px 32px -8px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(232, 255, 58, 0.25);
  }
}

/* ════════════════════════════════════════════════════════════════
   CHATBOT — scripté
   ════════════════════════════════════════════════════════════════ */
.chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 110;
  font-family: var(--ff-sans);
}
@media (max-width: 720px) {
  .chatbot { bottom: 88px; right: 16px; }
}

.chatbot__fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-navy);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 12px 32px -8px rgba(var(--shadow-color), 0.45);
  transition: transform .25s, background .25s, box-shadow .25s;
  cursor: pointer;
}
.chatbot__fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(var(--shadow-color), 0.55);
}
.chatbot__fab svg { width: 24px; height: 24px; }
.chatbot__fab-icon-close { display: none; }
.chatbot.is-open .chatbot__fab-icon-open  { display: none; }
.chatbot.is-open .chatbot__fab-icon-close { display: block; }

.chatbot__fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--acid);
  opacity: 0;
  animation: chatPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.chatbot.is-open .chatbot__fab-pulse { animation: none; opacity: 0; }
@keyframes chatPulse {
  0%   { opacity: 0.7; transform: scale(0.86); }
  100% { opacity: 0;   transform: scale(1.20); }
}

.chatbot__panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  max-height: min(560px, calc(100dvh - 140px));
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .35s cubic-bezier(.2,.7,.2,1);
}
.chatbot.is-open .chatbot__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .chatbot__panel {
    position: fixed;
    inset: 78px 16px 88px 16px;
    width: auto;
    max-height: none;
    transform-origin: bottom right;
  }
  .chatbot.is-open .chatbot__fab { display: none; }
}

.chatbot__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--on-navy);
}
.chatbot__head-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
[data-theme="dark"] .chatbot__head-avatar {
  background: rgba(14, 14, 17, 0.20);
}
.chatbot__head-meta { flex: 1; min-width: 0; }
.chatbot__head-name {
  display: block;
  font-family: var(--ff-disp);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.chatbot__head-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  opacity: 0.85;
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.chatbot__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 var(--mint);
  animation: chatDot 1.6s ease-out infinite;
}
@keyframes chatDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(91, 217, 164, 0.55); }
  60%      { box-shadow: 0 0 0 6px rgba(91, 217, 164, 0); }
}
.chatbot__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--on-navy);
  flex-shrink: 0;
  transition: background .2s;
  cursor: pointer;
}
.chatbot__close:hover { background: rgba(255, 255, 255, 0.26); }
.chatbot__close svg { width: 14px; height: 14px; }
[data-theme="dark"] .chatbot__close { background: rgba(14, 14, 17, 0.16); }
[data-theme="dark"] .chatbot__close:hover { background: rgba(14, 14, 17, 0.30); }

.chatbot__body {
  flex: 1;
  padding: 18px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-2);
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.chatbot__body::-webkit-scrollbar { width: 6px; }
.chatbot__body::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }

.chat-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: chatMsgIn .25s ease-out;
  word-wrap: break-word;
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg--user {
  background: var(--navy);
  color: var(--on-navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg strong { font-weight: 700; }
.chat-msg a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.chat-msg ul { margin: 8px 0 0; padding-left: 18px; }
.chat-msg li { margin-bottom: 4px; font-size: 13.5px; }
.chat-msg li:last-child { margin-bottom: 0; }

.chat-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -2px;
  animation: chatMsgIn .3s ease-out .05s both;
}
.chat-reply {
  padding: 8px 12px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--card);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  font-family: var(--ff-sans);
  white-space: nowrap;
}
.chat-reply:hover {
  background: var(--navy);
  color: var(--on-navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}
.chat-reply--cta {
  background: var(--acid);
  border-color: var(--acid);
  color: #0E0E11;
  font-weight: 600;
}
.chat-reply--cta:hover {
  background: var(--acid);
  color: #0E0E11;
  border-color: var(--acid);
  filter: brightness(0.94);
}

.chatbot__input {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.chatbot__input input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  min-width: 0;
}
.chatbot__input input:focus {
  border-color: var(--ink-3);
  background: var(--card);
}
.chatbot__input input::placeholder { color: var(--ink-4); }
.chatbot__input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.chatbot__input button:hover { transform: scale(1.06); }
.chatbot__input button svg { width: 15px; height: 15px; }

.chat-typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation: chatMsgIn .2s ease-out;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
  animation: typingDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0);  opacity: 0.35; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__h1 { animation: none; clip-path: none; }
  .notif { opacity: 1; transform: none; }
}
