/* ============================================================
   Yuzuleads — design system
   Rewrite of the Claude Design bundle into a clean, deployable
   static site. Brand tokens + components, faithful to source.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Ink / text */
  --ink: #222834;
  --ink-2: #2c3340;
  --ink-3: #3a4150;
  --ink-soft: #5a6372;
  --muted: #6b7280;
  --muted-2: #5f6672; /* darkened for WCAG AA on white/cream (was #8a909c, ~3:1) */
  --navy: #1c2230;

  /* Surfaces */
  --bg: #eaf0f8;
  --cream: #f6f4ed;
  --cream-2: #fbfaf6;
  --cream-3: #fbf6f2;

  /* Blue scale */
  --blue: #5b86c9;          /* feature sections */
  --blue-readable: #6f9bd8;
  --blue-soft: #c3d7f7;
  --blue-200: #9cbde9;
  --blue-100: #eaf1fb;
  --blue-deep: #4a72b0;
  --blue-hero-1: #83a6dd;

  /* Accent */
  --yellow: #f4e2a0;
  --yellow-deep: #ebcf6e;
  --yellow-ink: #3a3413;

  /* Supporting pastels */
  --sage: #c9dccb;
  --sage-ink: #3f6147;
  --coral: #f4c9b8;
  --coral-ink: #c47a5e;

  /* Radii */
  --r-pill: 100px;
  --r-card: 22px;
  --r-btn: 16px;
  --r-sm: 14px;

  /* Shadows */
  --sh-card: 0 14px 36px rgba(40, 60, 100, 0.09);
  --sh-card-hover: 0 24px 52px rgba(40, 60, 100, 0.17);
  --sh-btn: 0 14px 34px rgba(20, 30, 50, 0.3);
  --sh-btn-hover: 0 20px 44px rgba(20, 30, 50, 0.42);

  /* Layout */
  --maxw: 1660px;
  --gutter: 30px;

  --font-sans: "Satoshi", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--1100 { max-width: 1100px; }
.wrap--1000 { max-width: 1000px; }
.wrap--840 { max-width: 840px; }
.wrap--760 { max-width: 760px; }
.wrap--720 { max-width: 720px; }

.section { padding-block: clamp(64px, 9vw, 112px); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 200;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  text-decoration: none; font-weight: 600;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
.serif { font-family: var(--font-serif); font-weight: 500; }

h1, h2, h3 { font-weight: 500; letter-spacing: -0.012em; }

.h-hero {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0;
}
.lead { font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 14px 0 28px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 30, 50, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-btn-hover); }
.btn--lg { height: 58px; font-size: 17px; box-shadow: var(--sh-btn); }
.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 17px;
  flex: none;
}
.btn--lg .btn__arrow { width: 36px; height: 36px; font-size: 18px; }

/* ---------- Eyebrow / pill ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.eyebrow--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.eyebrow--blue { background: var(--blue-100); color: #41689f; } /* darker blue: AA on #eaf1fb */
.eyebrow--yellow { background: var(--yellow); color: var(--yellow-ink); }
.dot { width: 7px; height: 7px; border-radius: 50%; display: block; flex: none; }
.dot--yellow { background: var(--yellow); }
.dot--ping { animation: yz-ping 2.2s ease-out infinite; }

.tag-up {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Cards ---------- */
.card {
  background: rgba(255, 255, 255, 0.82);
  border: 0.5px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: 28px;
}
.card--solid { background: #fff; border-color: rgba(40, 46, 58, 0.1); }
.is-hoverable { transition: transform 0.22s ease, box-shadow 0.22s ease; }
.is-hoverable:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }

.list-clean { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.list-clean li { display: flex; gap: 10px; font-size: 15px; line-height: 1.45; color: var(--ink-3); }
.list-clean .mark { color: var(--blue-readable); flex: none; }

/* ---------- Decorative layers ---------- */
.grain {
  position: absolute;
  inset: 0;
  background-image: url("../img/grain.png");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.14;
  pointer-events: none;
}
.glow-top {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 16%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Topo contour field */
.topo-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.topo { position: absolute; overflow: visible; color: rgba(255, 255, 255, 0.3); }
.topo use { stroke: currentColor; }
.topo--a { top: -8%; right: -8%; width: 44%; height: 94%; animation: yz-orbit-a 42s linear infinite; }
.topo--b { top: 4%; left: 13%; width: 15%; height: 26%; animation: yz-orbit-b 50s linear infinite; }
.topo--c { bottom: -10%; left: -7%; width: 24%; height: 42%; animation: yz-orbit-c 46s linear infinite; }
.topo--d { bottom: -12%; left: 36%; width: 30%; height: 46%; animation: yz-orbit-d 38s linear infinite; }
.topo svg, .topo > use { width: 100%; height: 100%; }

/* GPU-promote scroll-driven parallax so transforms composite instead of repaint */
[data-parallax] { will-change: transform; }
.feature__blob { transform: translateZ(0); }

/* On phones, keep the topo static: continuous SVG animation is the costliest paint there */
@media (max-width: 760px) {
  .topo { animation: none !important; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 20px 0;
}
.nav__bar {
  max-width: 980px;
  margin-inline: auto;
  background: transparent;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 0.5px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--r-pill);
  box-shadow: 0 12px 40px rgba(20, 40, 80, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: border-color 0.25s ease;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 16px 11px 22px;
}
.nav__logo { flex: 1; display: flex; align-items: center; gap: 9px; text-decoration: none; color: #fff; min-width: 0; }
.nav__logo svg { filter: drop-shadow(0 1px 2px rgba(20, 40, 80, 0.3)); flex: none; }
.nav__brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px rgba(20, 40, 80, 0.25);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.nav__links { flex: none; display: flex; align-items: center; gap: 32px; }
.nav__links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 6px rgba(20, 40, 80, 0.45);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a[aria-current="page"] { color: #fff; }
.nav__right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.nav__cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  background: var(--yellow);
  color: var(--yellow-ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(160, 130, 40, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(160, 130, 40, 0.4); }
.nav__burger {
  flex: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.16);
  border: 0.5px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill);
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 17px; height: 2px;
  background: #fff;
  box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav__mobile { display: none; padding: 6px 20px 18px; flex-direction: column; gap: 2px; }
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 13px 8px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 0.5px solid rgba(255, 255, 255, 0.14);
}
.nav__mobile .nav__mobile-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--yellow);
  color: var(--yellow-ink);
  border-radius: var(--r-pill);
  border-top: none;
  text-transform: none;
  letter-spacing: 0;
}

/* Light theme (when over a light section) */
.nav--light .nav__bar { border-color: rgba(20, 40, 80, 0.12); }
.nav--light .nav__brand { color: #10141d; text-shadow: none; }
.nav--light .nav__links a { color: #454b57; text-shadow: none; } /* AA on the yellow contact page */
.nav--light .nav__links a:hover,
.nav--light .nav__links a[aria-current="page"] { color: #10141d; }
.nav--light .nav__burger span { background: #10141d; box-shadow: 0 -5px 0 #10141d, 0 5px 0 #10141d; }

/* Mobile menu open: clean rounded dark panel (not a giant pill), readable on any page */
.nav--open .nav__bar {
  border-radius: 26px;
  background: rgba(18, 24, 36, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.16);
}
.nav--open .nav__brand { color: #fff; text-shadow: none; }
.nav--open .nav__burger { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.28); }
.nav--open .nav__burger span { background: #fff; box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff; }

@media (min-width: 820px) {
  .nav__burger { display: none !important; }
  .nav__mobile { display: none !important; }
}
@media (max-width: 819px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--cream); border-top: 0.5px solid rgba(40, 46, 58, 0.1); color: var(--ink); }
.footer__top {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 56px var(--gutter) 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); margin-bottom: 14px; }
.footer__brand span { font-family: var(--font-serif); font-size: 23px; font-weight: 500; letter-spacing: -0.01em; }
.footer__cols { display: flex; flex-wrap: wrap; gap: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--ink-3); text-decoration: none; font-size: 15px; }
.footer__col a:hover { color: var(--ink); }
.footer__head { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); }
.footer__bottom { border-top: 0.5px solid rgba(40, 46, 58, 0.08); }
.footer__bottom-row {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom-row span,
.footer__bottom-row a { font-size: 13px; color: var(--muted-2); text-decoration: none; }
.footer__legal { display: flex; gap: 22px; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes yz-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes yz-float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes yz-orbit-a { 0%,100%{transform:translate(30px,0)}25%{transform:translate(0,22px)}50%{transform:translate(-30px,0)}75%{transform:translate(0,-22px)} }
@keyframes yz-orbit-b { 0%,100%{transform:translate(0,20px)}25%{transform:translate(-24px,0)}50%{transform:translate(0,-20px)}75%{transform:translate(24px,0)} }
@keyframes yz-orbit-c { 0%,100%{transform:translate(-26px,0)}25%{transform:translate(0,-24px)}50%{transform:translate(26px,0)}75%{transform:translate(0,24px)} }
@keyframes yz-orbit-d { 0%,100%{transform:translate(0,-22px)}25%{transform:translate(28px,0)}50%{transform:translate(0,22px)}75%{transform:translate(-28px,0)} }
@keyframes yz-ping { 0%{box-shadow:0 0 0 0 rgba(244,226,160,0.55)}70%{box-shadow:0 0 0 10px rgba(244,226,160,0)}100%{box-shadow:0 0 0 0 rgba(244,226,160,0)} }
@keyframes yz-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes yz-wobble { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes yz-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ============================================================
   HOME — section-specific
   ============================================================ */
.page-home {
  background: linear-gradient(180deg, #e9eff8 0%, #f2f5fb 45%, #e8eef7 100%);
  position: relative;
}
.page-home__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(38% 30% at 12% 22%, rgba(160, 196, 237, 0.3), transparent 70%),
    radial-gradient(34% 26% at 88% 68%, rgba(244, 226, 160, 0.2), transparent 70%),
    radial-gradient(30% 24% at 70% 12%, rgba(160, 196, 237, 0.18), transparent 70%),
    url("../img/grain-soft.png");
  background-size: auto, auto, auto, 240px 240px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #83a6dd 0%, #5b86c9 58%, #4a72b0 100%);
  color: #fff;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 104px;
}
.hero__grain { position: absolute; inset: 0; background-image: url("../img/grain.png"); background-size: 200px 200px; opacity: 0.08; pointer-events: none; }
.hero__inner { position: relative; max-width: var(--maxw); margin-inline: auto; padding: clamp(76px, 9vw, 124px) var(--gutter) clamp(44px, 5vw, 68px); }
.hero__head { max-width: 840px; margin-inline: auto; text-align: center; }
.hero h1 { text-shadow: 0 2px 30px rgba(30, 55, 100, 0.25); margin: 0 0 22px; }
.hero__sub { margin: 0 auto 34px; max-width: 560px; color: #fff; }

.stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(48px, 6vw, 76px); }
.stat {
  position: relative;
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  padding: 28px 26px 24px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(20, 40, 80, 0.18);
}
.stat__rings { position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; opacity: 0.26; pointer-events: none; }
.stat__num { position: relative; font-family: var(--font-serif); font-size: clamp(38px, 5vw, 52px); font-weight: 500; line-height: 1; letter-spacing: -0.01em; color: #fff; }
.stat__label { position: relative; margin-top: 12px; font-size: 14px; line-height: 1.45; color: rgba(255, 255, 255, 0.82); }

/* Problème */
.problem-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.problem-card { background: rgba(255, 255, 255, 0.82); border: 0.5px solid rgba(255, 255, 255, 0.65); border-radius: var(--r-card); box-shadow: var(--sh-card); padding: 28px; }
.problem-card .n { font-size: 13px; font-weight: 700; color: var(--blue-readable); margin-bottom: 14px; }
.problem-card p { margin: 0; font-size: 18px; line-height: 1.5; color: var(--ink-2); }

/* Feature sections (blue) */
.feature { position: relative; background: var(--blue); color: #fff; overflow: hidden; }
.feature__blob { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 70%); pointer-events: none; }

.compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: stretch; }
.compare__col { border-radius: var(--r-card); padding: 30px; }
.compare__col--ghost { background: rgba(255, 255, 255, 0.08); border: 0.5px solid rgba(255, 255, 255, 0.18); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.compare__col--win { background: #fff; color: var(--ink); box-shadow: 0 24px 60px rgba(20, 40, 80, 0.28); }
.compare__head { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.88); margin-bottom: 20px; }
.chips { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.chip { padding: 9px 16px; background: rgba(255, 255, 255, 0.12); border-radius: var(--r-btn); font-size: 15px; font-weight: 500; }
.chip-sep { color: rgba(255, 255, 255, 0.6); }
.cross-list { margin: 0 0 26px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.cross-list li { display: flex; gap: 10px; font-size: 15px; color: rgba(255, 255, 255, 0.95); }
.cross-list .x { color: var(--coral); font-weight: 700; }
.compare__metric { padding-top: 20px; }
.compare__col--ghost .compare__metric { border-top: 0.5px solid rgba(255, 255, 255, 0.18); }
.compare__col--win .compare__metric { border-top: 0.5px solid rgba(40, 46, 58, 0.1); }
.metric-cap { font-size: 13px; margin-bottom: 4px; }
.compare__col--ghost .metric-cap { color: rgba(255, 255, 255, 0.9); }
.compare__col--win .metric-cap { color: var(--muted); }
.metric-num { font-size: clamp(40px, 5vw, 56px); font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.compare__col--win .metric-num { color: var(--blue); }
.metric-sub { font-size: 13px; margin-top: 4px; }
.compare__col--ghost .metric-sub { color: rgba(255, 255, 255, 0.85); }
.compare__col--win .metric-sub { color: var(--muted-2); }

.pipe { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.pipe-dot { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(150deg, var(--yellow), var(--yellow-deep)); display: block; }
.pipe-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); }
.pipe-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.pipe-step { display: flex; align-items: center; gap: 14px; padding: 11px 0; }
.pipe-step + .pipe-step { border-top: 0.5px solid rgba(40, 46, 58, 0.08); }
.pipe-step .n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-100); color: var(--blue); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; border: 0.5px solid rgba(91, 134, 201, 0.3); }
.pipe-step.is-final .n { background: var(--sage); color: var(--sage-ink); border: none; }
.pipe-step .label { font-size: 16px; font-weight: 500; }

/* Comment ça marche — steps */
.steps { position: relative; }
.steps__track, .steps__fill { position: absolute; left: 44px; top: 46px; bottom: 46px; width: 3px; border-radius: 3px; }
.steps__track { background: rgba(91, 134, 201, 0.28); }
.steps__fill { background: linear-gradient(180deg, var(--blue-readable), var(--blue-200) 55%, var(--yellow)); transform: scaleY(0); transform-origin: top; box-shadow: 0 0 10px rgba(111, 155, 216, 0.4); }
.steps__list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.step {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 0.5px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--r-card); box-shadow: var(--sh-card);
  padding: 24px 26px;
}
.step--final { background: rgba(234, 241, 251, 0.8); border-color: rgba(91, 134, 201, 0.4); box-shadow: 0 14px 36px rgba(40, 60, 100, 0.1); }
.step__badge { flex: none; width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--blue-soft); color: #3a5a8c; font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.step--final .step__badge { background: var(--yellow); color: var(--yellow-ink); }
.step__title { font-size: 19px; font-weight: 600; margin-bottom: 3px; }
.step__desc { font-size: 15px; color: var(--muted); line-height: 1.5; }
.steps__closer { margin: 40px 0 0; text-align: center; font-size: clamp(19px, 2vw, 24px); font-weight: 500; color: var(--ink); }

/* Délivrabilité */
.deliver { background: #fff; border-block: 0.5px solid rgba(40, 46, 58, 0.08); }
.deliver-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.deliver-card { border-radius: 20px; padding: 30px; }
.deliver-card--bad { background: var(--cream-3); border: 0.5px solid rgba(244, 201, 184, 0.6); }
.deliver-card--good { background: var(--blue-100); border: 0.5px solid rgba(91, 134, 201, 0.4); }
.deliver-card h3 { font-size: 18px; font-weight: 600; text-align: center; margin: 0 0 8px; }
.deliver-card p { margin: 0; text-align: center; font-size: 15px; line-height: 1.5; }
.deliver-card--bad p { color: #7a6258; }
.deliver-card--good p { color: #4a5a72; }
.deliver-icons { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; }
.mail-bad { width: 74px; height: 74px; border-radius: 24px; background: var(--coral); display: flex; align-items: center; justify-content: center; font-size: 30px; animation: yz-wobble 2.6s ease-in-out infinite; }
.mail-good { width: 44px; height: 74px; border-radius: 22px; display: flex; align-items: center; justify-content: center; font-size: 20px; animation: yz-bounce 1.8s ease-in-out infinite; }

/* Inclus / Touche / Outils — shared bits */
.section-head--center { text-align: center; margin-bottom: 48px; }
.section-head--center p { margin: 0 auto; max-width: 560px; font-size: 18px; color: var(--ink-soft); line-height: 1.55; }
.cols-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.icon-circle { position: relative; width: 58px; height: 58px; border-radius: 50%; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.feature-title { font-size: 20px; font-weight: 600; margin-bottom: 18px; }

.touche { position: relative; overflow: hidden; background: linear-gradient(180deg, #eff3fa, #e4ecf8); }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 16px; }
.tool { background: var(--cream); border: 0.5px solid rgba(40, 46, 58, 0.1); border-radius: var(--r-card); padding: 26px 22px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.tool__logo { width: 58px; height: 58px; border-radius: 15px; background: #fff; border: 0.5px solid rgba(40, 46, 58, 0.08); box-shadow: 0 1px 3px rgba(40, 46, 58, 0.07); display: flex; align-items: center; justify-content: center; }
.tool__logo img { width: 34px; height: 34px; object-fit: contain; }
.tool span:last-child { font-size: 16px; font-weight: 600; color: var(--ink-3); }

/* Espace client dashboard */
.dash { background: var(--cream-2); color: var(--ink); border-radius: 24px; box-shadow: 0 30px 70px rgba(20, 40, 80, 0.32); overflow: hidden; border: 0.5px solid rgba(40, 46, 58, 0.08); }
.dash__bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 0.5px solid rgba(40, 46, 58, 0.08); background: #fff; }
.dash__dot { width: 11px; height: 11px; border-radius: 50%; }
.dash__body { padding: clamp(20px, 3vw, 32px); }
.dash__metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 22px; }
.dash__metric { background: #fff; border: 0.5px solid rgba(40, 46, 58, 0.1); border-radius: 14px; padding: 18px; }
.dash__metric .cap { font-size: 13px; color: var(--muted-2); margin-bottom: 8px; }
.dash__metric .val { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; }
.dash__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.dash__panel { background: #fff; border: 0.5px solid rgba(40, 46, 58, 0.1); border-radius: 14px; padding: 20px; }
.dash__panel .cap { font-size: 13px; color: var(--muted-2); margin-bottom: 16px; }
.bars { display: flex; flex-direction: column; gap: 13px; }
.bar-row .bar-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
.bar-row .bar-top span:first-child { color: var(--ink-soft); }
.bar-row .bar-top span:last-child { font-weight: 600; }
.bar-track { height: 9px; background: var(--blue-100); border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; width: 0; border-radius: 5px; }
.dash__chip { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; background: var(--blue-100); border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: #3a5a8c; }

/* Preuve */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }
.proof-card { background: #fff; border: 0.5px solid rgba(40, 46, 58, 0.1); border-radius: 20px; box-shadow: 0 1px 2px rgba(40, 46, 58, 0.05); min-height: 230px; display: flex; flex-direction: column; overflow: hidden; }
.proof-card__head { padding: 18px 20px; border-bottom: 0.5px solid rgba(40, 46, 58, 0.08); }
.proof-card__head .k { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); }
.proof-card__head .s { font-size: 14px; color: var(--muted-2); margin-top: 3px; }
.proof-card__img { flex: 1; display: flex; align-items: center; justify-content: center; padding: 18px; background: var(--cream-2); }
.proof-card__img img { width: 100%; max-width: 440px; height: auto; border-radius: 6px; border: 0.5px solid rgba(40, 46, 58, 0.08); }
.proof-cta {
  position: relative;
  background: linear-gradient(160deg, #6090ce 0%, var(--blue) 55%, var(--blue-deep) 100%);
  color: #fff; border-radius: 20px; min-height: 230px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; padding: 30px;
}
.proof-cta__motif { position: absolute; top: -34px; right: -34px; width: 150px; height: 150px; opacity: 0.3; pointer-events: none; }
.proof-cta h3 { position: relative; margin: 0; font-family: var(--font-serif); font-size: clamp(24px, 3vw, 30px); font-weight: 500; line-height: 1.1; }
.proof-cta p { position: relative; margin: 10px 0 0; font-size: 15px; color: rgba(255, 255, 255, 0.82); line-height: 1.5; }
.proof-cta__link { position: relative; margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--yellow); text-decoration: none; }
.proof-cta__link:hover { gap: 14px; }

/* Modèle + appel final (full blue heroes) */
.band { position: relative; overflow: hidden; color: #fff; }
.band--model { background: linear-gradient(165deg, #6090ce 0%, #5b86c9 55%, #4a72b0 100%); }
.band--final { background: linear-gradient(165deg, #5b86c9 0%, #4a72b0 60%, #3f6299 100%); }
.band__inner { position: relative; max-width: 760px; margin-inline: auto; padding: clamp(64px, 9vw, 112px) var(--gutter); text-align: center; }
.band--final .band__inner { padding-block: clamp(76px, 10vw, 132px); }
.band h2 { font-family: var(--font-serif); margin: 0 0 22px; text-shadow: 0 2px 26px rgba(20, 40, 80, 0.25); }
.band--final h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.04; margin-bottom: 30px; }
.band--model h2 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05; }
.band p { margin: 0 auto 36px; max-width: 600px; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; color: #fff; }
.band__seal { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.seal { position: relative; width: 66px; height: 66px; border-radius: 60% 40% 55% 45% / 50% 56% 44% 50%; background: linear-gradient(150deg, var(--yellow), var(--yellow-deep)); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 32px rgba(20, 40, 80, 0.28); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: rgba(255, 255, 255, 0.82);
  border: 0.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px; box-shadow: 0 12px 32px rgba(40, 60, 100, 0.08);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq__sign { flex: none; font-size: 22px; font-weight: 400; color: var(--blue-readable); line-height: 1; transition: transform 0.25s ease; }
.faq[open] .faq__sign { transform: rotate(45deg); }
.faq__a { padding: 0 24px 24px; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

/* ============================================================
   À PROPOS
   ============================================================ */
.page-about {
  font-family: var(--font-sans);
  background: linear-gradient(168deg, #7aa0d8 0%, #5b86c9 42%, #43699f 100%);
  color: #fff;
  min-height: 100vh;
  position: relative;
}
.page-about__topo { position: fixed; inset: 0; z-index: 0; }
.page-about__grain { position: fixed; inset: 0; z-index: 0; background-image: url("../img/grain.png"); background-size: 200px 200px; opacity: 0.07; pointer-events: none; }
.page-about__content { position: relative; z-index: 1; }

.about-hero { position: relative; max-width: 1000px; margin-inline: auto; padding: clamp(128px, 13vw, 168px) var(--gutter) clamp(40px, 5vw, 60px); text-align: center; }
.about-hero h1 { margin-inline: auto; max-width: 860px; font-family: var(--font-serif); font-weight: 500; font-size: clamp(36px, 5.6vw, 68px); line-height: 1.03; letter-spacing: -0.01em; text-shadow: 0 2px 30px rgba(20, 40, 80, 0.3); }

.about-story { position: relative; max-width: 1000px; margin-inline: auto; padding: clamp(32px, 5vw, 64px) var(--gutter) clamp(56px, 8vw, 96px); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(32px, 5vw, 56px); align-items: start; }
.about-portrait { position: sticky; top: 92px; }
.about-portrait__frame { border: 0.5px solid rgba(255, 255, 255, 0.4); border-radius: var(--r-sm); aspect-ratio: 4 / 5; overflow: hidden; box-shadow: 0 22px 50px rgba(20, 40, 80, 0.3); background: #3a5680; }
.about-portrait__frame picture { display: block; width: 100%; height: 100%; }
.about-portrait__frame img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait__name { margin-top: 18px; font-size: 18px; font-weight: 600; color: #fff; }
.about-portrait__role { font-size: 15px; color: rgba(255, 255, 255, 0.9); }
.about-text { font-size: clamp(17px, 1.6vw, 19px); line-height: 1.7; color: rgba(255, 255, 255, 0.92); }
.about-text p { margin: 0 0 22px; }
.about-text p:last-child { margin-bottom: 0; }

.about-convictions { position: relative; }
.about-convictions .wrap { padding-block: clamp(40px, 6vw, 80px) clamp(64px, 9vw, 112px); }
.about-convictions h2 { margin: 0 0 48px; font-family: var(--font-serif); color: #fff; }
.conv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.conv { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 0.5px solid rgba(255, 255, 255, 0.22); border-radius: 20px; box-shadow: 0 16px 40px rgba(20, 40, 80, 0.18); padding: 32px; }
.conv__icon { position: relative; width: 58px; height: 58px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); margin-bottom: 22px; display: flex; align-items: center; justify-content: center; border: 0.5px solid rgba(255, 255, 255, 0.25); }
.conv h3 { font-size: 20px; font-weight: 600; margin: 0 0 10px; color: #fff; }
.conv p { margin: 0; font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.95); }
.about-cta { position: relative; max-width: 720px; margin-inline: auto; padding: clamp(32px, 5vw, 56px) var(--gutter) clamp(80px, 11vw, 140px); text-align: center; }
.about-cta h2 { margin: 0 0 30px; font-family: var(--font-serif); font-size: clamp(30px, 4.2vw, 52px); font-weight: 500; line-height: 1.06; text-shadow: 0 2px 28px rgba(20, 40, 80, 0.3); }

/* ============================================================
   CONTACT
   ============================================================ */
.page-contact {
  font-family: var(--font-sans);
  background: linear-gradient(168deg, #f7e6a4 0%, #efd680 44%, #e4c25c 100%);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.page-contact__topo { position: fixed; inset: 0; z-index: 0; }
.page-contact .topo { color: rgba(58, 52, 19, 0.2); }
.page-contact__grain { position: fixed; inset: 0; z-index: 0; background-image: url("../img/grain.png"); background-size: 200px 200px; opacity: 0.06; pointer-events: none; }
.page-contact__content { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }

.contact-main { position: relative; flex: 1; max-width: var(--maxw); width: 100%; margin-inline: auto; padding: clamp(120px, 12vw, 148px) var(--gutter) clamp(64px, 9vw, 104px); }
.contact-head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); }
.contact-head h1 { margin: 0 0 16px; font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px, 5.2vw, 64px); line-height: 1.03; letter-spacing: -0.01em; color: #241f08; }
.contact-head p { margin: 0; font-size: clamp(16px, 1.6vw, 20px); color: #4a4326; }
.contact-eyebrow { background: rgba(34, 40, 52, 0.08); border: 0.5px solid rgba(34, 40, 52, 0.14); color: var(--yellow-ink); }
.contact-eyebrow .dot { background: var(--navy); }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: start; }
.contact-card { background: rgba(255, 255, 255, 0.9); border: 0.5px solid rgba(255, 255, 255, 0.7); border-radius: var(--r-sm); box-shadow: 0 14px 36px rgba(120, 95, 20, 0.12); padding: clamp(24px, 3vw, 34px); }
.contact-card h2 { margin: 0 0 6px; font-family: var(--font-serif); font-size: 26px; font-weight: 500; letter-spacing: -0.01em; }
.contact-card .sub { margin: 0 0 22px; font-size: 15px; color: #6b6750; line-height: 1.5; }
.contact-cal__tag { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.contact-cal__tag span:last-child { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #8a6a1e; } /* darker gold: AA on white card */
.contact-cal iframe { width: 100%; min-height: 640px; border: 0.5px solid rgba(40, 46, 58, 0.12); border-radius: 12px; background: #fff; }
.contact-side { display: flex; flex-direction: column; gap: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; }
.contact-form label > span { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.contact-form input,
.contact-form textarea { padding: 0 14px; border: 0.5px solid rgba(40, 46, 58, 0.18); border-radius: 10px; font-family: inherit; font-size: 15px; background: #fffdf6; color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.contact-form input { height: 46px; }
.contact-form textarea { padding: 12px 14px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: #c9a53a; box-shadow: 0 0 0 3px rgba(201, 165, 58, 0.22); }
.contact-form .ok { padding: 12px 14px; background: #eef6ef; border: 0.5px solid rgba(91, 160, 120, 0.4); border-radius: 10px; font-size: 14px; color: var(--sage-ink); }
.contact-form .btn { margin-top: 4px; height: 54px; justify-content: center; padding: 0 24px; }
.contact-direct { background: var(--navy); color: #fff; border-radius: var(--r-sm); padding: 26px 28px; box-shadow: 0 14px 36px rgba(20, 30, 50, 0.22); }
.contact-direct .k { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.62); margin-bottom: 8px; }
.contact-direct a { font-size: 20px; font-weight: 600; color: #fff; text-decoration: none; }
.contact-card.is-hoverable:hover { box-shadow: 0 24px 52px rgba(120, 95, 20, 0.2); }
.contact-direct.is-hoverable:hover { box-shadow: 0 24px 52px rgba(20, 30, 50, 0.3); }

/* ============================================================
   Reduced motion
   ============================================================ */
/* Reveal flash guard: hide reveal targets from first paint ONLY when JS runs,
   so GSAP animates them in without a flash-then-hide. No-JS users see them. */
.js [data-reveal],
.js [data-reveal-group] > * { opacity: 0; }

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.calc-card {
  background: #fff;
  border: 0.5px solid rgba(40, 46, 58, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(40, 60, 100, 0.1);
  padding: clamp(24px, 3.2vw, 40px);
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-field {
  background: var(--cream-2);
  border: 0.5px solid rgba(40, 46, 58, 0.08);
  border-radius: 16px;
  padding: 20px 22px;
}
.calc-field__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.calc-field__label { font-size: 15px; font-weight: 600; color: var(--ink-2); }
.calc-field__val {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--blue-deep, #3f6299);
  font-weight: 400;
  white-space: nowrap;
}
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--blue-100);
  outline: none;
  accent-color: var(--blue);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(40, 60, 100, 0.3);
  cursor: pointer;
}
.calc-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(40, 60, 100, 0.3); cursor: pointer;
}
.calc-num {
  width: 100%; height: 44px; padding: 0 14px;
  border: 0.5px solid rgba(40, 46, 58, 0.18); border-radius: 10px;
  font-family: inherit; font-size: 16px; background: #fff; color: var(--ink);
}
.calc-num:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91, 134, 201, 0.18); }
.calc-results { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 16px; }
.calc-res {
  background: var(--cream-2);
  border: 0.5px solid rgba(40, 46, 58, 0.08);
  border-radius: 16px;
  padding: 22px;
}
.calc-res .cap { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.calc-res .num { font-family: var(--font-serif); font-size: clamp(30px, 3.2vw, 44px); line-height: 1; letter-spacing: -0.01em; color: var(--ink); }
.calc-res--hl {
  background: linear-gradient(160deg, #6090ce, var(--blue) 55%, var(--blue-deep));
  border: none;
  box-shadow: 0 16px 40px rgba(20, 40, 80, 0.25);
}
.calc-res--hl .cap { color: rgba(255, 255, 255, 0.8); }
.calc-res--hl .num { color: var(--yellow); text-shadow: 0 0 30px rgba(244, 226, 160, 0.45); }
.calc-note { margin: 18px 0 0; font-size: 13px; color: var(--muted-2); text-align: center; }

@media (max-width: 680px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ============================================================
   STATEMENT CARDS
   ============================================================ */
.statements { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.statement {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: clamp(34px, 4.5vw, 60px) clamp(28px, 3.6vw, 48px);
  min-height: clamp(220px, 24vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.statement h3 { position: relative; font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 52px); line-height: 1.02; letter-spacing: -0.01em; margin: 0; }
.statement p { position: relative; margin: 14px 0 0; font-size: 16px; line-height: 1.5; max-width: 38ch; }
.statement__motif { position: absolute; top: -40px; right: -40px; width: 190px; height: 190px; opacity: 0.18; pointer-events: none; }
.statement--yellow { background: linear-gradient(150deg, #f7ead0, var(--yellow) 70%); color: var(--yellow-ink); }
.statement--yellow p { color: rgba(58, 52, 19, 0.72); }
.statement--navy { background: #1c2230; color: #fff; }
.statement--navy .hl { color: var(--yellow); }
.statement--navy p { color: rgba(255, 255, 255, 0.72); }
@media (max-width: 760px) { .statements { grid-template-columns: 1fr; } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news { background: var(--cream); border-top: 0.5px solid rgba(40, 46, 58, 0.1); }
.news__inner { max-width: 720px; margin-inline: auto; padding: clamp(52px, 7vw, 84px) var(--gutter); text-align: center; }
.news h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; margin: 0 0 10px; }
.news__sub { margin: 0 auto 26px; max-width: 480px; font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
.news__form { display: flex; gap: 10px; max-width: 480px; margin-inline: auto; flex-wrap: wrap; }
.news__form input {
  flex: 1; min-width: 220px; height: 54px; padding: 0 18px;
  border: 0.5px solid rgba(40, 46, 58, 0.18); border-radius: 14px;
  font-family: inherit; font-size: 16px; background: #fff; color: var(--ink);
}
.news__form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91, 134, 201, 0.18); }
.news__form .btn { height: 54px; flex: none; }
.news__ok { margin: 22px auto 0; max-width: 480px; padding: 14px 18px; background: #eef6ef; border: 0.5px solid rgba(91, 160, 120, 0.4); border-radius: 12px; font-size: 15px; color: var(--sage-ink); }
.news__note { margin: 14px 0 0; font-size: 12.5px; color: var(--muted-2); }

/* ============================================================
   CONTACT INFO (contact page)
   ============================================================ */
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 24px; }
.contact-info__card { background: rgba(255, 255, 255, 0.9); border: 0.5px solid rgba(255, 255, 255, 0.7); border-radius: 14px; padding: 24px; box-shadow: 0 14px 36px rgba(120, 95, 20, 0.1); }
.contact-info__k { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #8a6a1e; margin-bottom: 12px; }
.contact-info__v { font-size: 17px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.contact-info__v a { color: inherit; text-decoration: none; }
.contact-info__v a:hover { text-decoration: underline; }
.contact-info__ph { color: var(--muted-2); font-weight: 500; }
.contact-social { display: flex; gap: 10px; }
.contact-social a { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.15s ease; }
.contact-social a:hover { transform: translateY(-2px); }

/* ============================================================
   SPLIT (on génère / vous vendez)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.split-card { background: #fff; border: 0.5px solid rgba(40, 46, 58, 0.1); border-radius: 24px; box-shadow: var(--sh-card); padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; gap: 22px; }
.split-card h3 { margin: 0; font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.split-card > div > p { margin: 8px 0 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.split-mock { margin-top: auto; background: var(--cream-2); border: 0.5px solid rgba(40, 46, 58, 0.08); border-radius: 16px; padding: 16px 18px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-stat .k { font-size: 11px; color: var(--muted-2); margin-bottom: 4px; }
.mock-stat .v { font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: -0.02em; }
.mock-stat .v small { font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.mock-bar { height: 6px; border-radius: 4px; background: var(--blue-100); margin-top: 14px; overflow: hidden; }
.mock-bar i { display: block; height: 100%; width: 83%; background: linear-gradient(90deg, var(--blue-readable), var(--blue)); }
.mock-mail__tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 100px; background: #e6f4ec; color: #2f7a52; font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.mock-mail__sub { font-size: 13px; font-weight: 600; color: var(--ink); }
.mock-mail__from { font-size: 12px; color: var(--muted-2); margin: 2px 0 10px; }
.mock-mail__body { font-size: 13px; line-height: 1.5; color: var(--ink-3); }

/* ============================================================
   TAKEOVER (de notre côté, on prend en charge)
   ============================================================ */
.takeover { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.tk { background: rgba(255, 255, 255, 0.82); border: 0.5px solid rgba(255, 255, 255, 0.65); border-radius: var(--r-card); box-shadow: var(--sh-card); padding: 28px; }
.tk__n { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 12px; background: var(--blue-100); color: var(--blue); font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.tk h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.tk p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.tk__check { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tk__check li { display: flex; gap: 9px; font-size: 14px; color: var(--ink-3); line-height: 1.4; }
.tk__check .c { flex: none; color: #2f7a52; font-weight: 700; }

@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .topo, .dot--ping, .mail-bad, .mail-good { animation: none !important; }
  .js [data-reveal], .js [data-reveal-group] > * { opacity: 1 !important; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
