/* ============================================================
   ALPHA NO_CODE — Signal / Noise Design System V5
   "Precision Engineering × Editorial Luxury"
   Bloomberg Terminal meets Swiss editorial design.
   Dark-first. Surgical color. Architectural typography.
   Typo: Montserrat (titres 600-900) · Inter (corps) · IBM Plex Mono (labels)
   Palette officielle: Teal Ocean · Coral · Dark #0B1020 · Accent #00E5A8
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand — Teal Ocean (charte officielle) */
  --brand-deep:        #11707C;
  --brand-teal:        #0BA08F;
  --brand-mid:         #0E8886;
  --brand-soft:        #B0D8D7;

  /* Accents */
  --brand-coral:       #FF8F5C;
  --brand-coral-soft:  #FFB694;
  --brand-violet:      #8B7FE8;

  /* Dark UI (tokens officiels charte) */
  --product-bg:        #0B1020;
  --product-bg2:       #0D1428;
  --product-card:      #101A33;
  --product-card-2:    #0D1428;
  --product-accent:    #00E5A8;
  --product-border:    rgba(0, 229, 168, 0.15);
  --product-glow:      rgba(0, 229, 168, 0.08);
  --product-danger:    #FF5A7A;

  /* Text */
  --text-main:         #17313A;
  --text-soft:         #5E7079;
  --text-xsoft:        #8FA5AE;
  --text-on-dark:      #EAF0FF;
  --text-muted-dark:   rgba(234, 240, 255, 0.68);

  /* Backgrounds */
  --bg-main:           #F7FBFB;
  --bg-soft:           #EEF7F7;
  --bg-white:          #FFFFFF;

  /* Lines */
  --line-soft:         rgba(11, 16, 32, 0.08);
  --line-dark:         rgba(234, 240, 255, 0.09);
  --line-teal:         rgba(0, 229, 168, 0.18);

  /* Shadows */
  --shadow-card:       0 2px 16px rgba(17, 112, 124, 0.08);
  --shadow-hover:      0 10px 40px rgba(17, 112, 124, 0.16);
  --shadow-dark:       0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-glow:       0 0 40px rgba(0, 229, 168, 0.12);

  /* Typography */
  --font-heading:      "Montserrat", sans-serif;
  --font-body:         "Inter", sans-serif;
  --font-mono:         "IBM Plex Mono", monospace;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-pill: 999px;

  /* Layout */
  --container: 1680px;

  /* Transitions */
  --t:      210ms ease;
  --t-slow: 380ms ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-main);
  font-size: 15.5px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; cursor: pointer; font: inherit; }
ul { list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--product-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--product-accent);
  color: var(--product-bg);
  font-weight: 700;
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── Animated gradient border — DA palette ────────────────── */
/* @property permet d'animer --grad-angle avec CSS transitions/animations */
@property --grad-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes grad-spin {
  from { --grad-angle: 0deg; }
  to   { --grad-angle: 360deg; }
}

/*
  Technique : double background-image
  1. linear-gradient(bg, bg) → clipé sur padding-box → remplit l'intérieur de la carte
  2. conic-gradient(...)     → clipé sur border-box  → visible uniquement dans la zone de bordure
  border: transparent rend la bordure visible via le conic-gradient
*/
/* Bordure conic gradient — toutes les cartes fond blanc */
.friction-card,
.offer-card:not(.offer-card-featured),
.vertical-card,
.team-card,
.stepper-wrapper {
  --card-bg: #FFFFFF;
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(var(--card-bg), var(--card-bg)),
    conic-gradient(
      from var(--grad-angle),
      #11707C   0%,
      #0BA08F  22%,
      #00E5A8  30%,
      #0BA08F  38%,
      #11707C  50%,
      #0BA08F  72%,
      #00E5A8  80%,
      #0BA08F  88%,
      #11707C 100%
    );
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

/* Team cards — bordure animée retirée : overlay gradient comme les vertical-cards */

/* Au survol : la bordure tourne, la carte se soulève */
.friction-card:hover,
.offer-card:not(.offer-card-featured):hover {
  animation: grad-spin 3.5s linear infinite;
  box-shadow: 0 16px 56px rgba(0, 229, 168, 0.16), 0 4px 16px rgba(17, 112, 124, 0.10);
  transform: translateY(-6px);
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ── Custom Cursor ────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--product-accent); /* teal par défaut (dark sections) */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, width 0.2s, height 0.2s;
}
.cursor.cursor-light {
  background: var(--brand-deep); /* #11707C sur fonds clairs */
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0, 229, 168, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 8999;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), width 0.25s, height 0.25s, border-color 0.2s;
}
.cursor-ring.cursor-light {
  border-color: rgba(17, 112, 124, 0.4);
}
.cursor-ring.cursor-ring-hover {
  width: 60px; height: 60px;
}
.cursor-ring.cursor-ring-hover:not(.cursor-light) { border-color: rgba(0, 229, 168, 0.75); }
.cursor-ring.cursor-ring-hover.cursor-light { border-color: rgba(17, 112, 124, 0.7); }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* ── Scroll Progress ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-teal) 0%, var(--product-accent) 100%);
  z-index: 300;
  transition: width 0.08s linear;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-teal) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(11, 160, 143, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--product-accent) 100%);
  box-shadow: 0 8px 32px rgba(0, 229, 168, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(234, 240, 255, 0.18);
}
.btn-secondary:hover {
  border-color: rgba(234, 240, 255, 0.45);
  background: rgba(234, 240, 255, 0.04);
}
/* Offer cards (light bg) — CTA identique au bouton primaire */
.offer-card:not(.offer-card-featured) .btn-secondary {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-teal) 100%);
  color: white;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(11, 160, 143, 0.25), inset 0 1px 0 rgba(255,255,255,0.10);
}
.offer-card:not(.offer-card-featured) .btn-secondary:hover {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--product-accent) 100%);
  box-shadow: 0 8px 32px rgba(0, 229, 168, 0.32), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.btn-secondary-light {
  background: transparent;
  color: rgba(234, 240, 255, 0.75);
  border-color: rgba(234, 240, 255, 0.2);
}
.btn-secondary-light:hover {
  color: white;
  border-color: rgba(234, 240, 255, 0.5);
  background: rgba(234, 240, 255, 0.06);
}
.btn-header { font-size: 13px; padding: 11px 22px; }

/* ── Eyebrows ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}
.eyebrow-dark { color: var(--brand-teal); }
.eyebrow-bright { color: var(--product-accent); }

/* ── Section wrappers ─────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
}
.section-light { background: var(--bg-main); }
.section-soft  { background: var(--bg-soft); }
.section-white { background: var(--bg-white); }
.section-dark  {
  background: var(--product-bg);
  color: var(--text-on-dark);
}

/* Diagonal cut — applied to specific sections */
.section-cut {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%);
  padding-bottom: calc(120px + 64px);
  margin-bottom: -64px;
  position: relative;
  z-index: 1;
}

/* ── Section heading — système unifié ────────────────────── */
/*
   Pattern global partagé par tous les wrappers de heading :
   .section-heading / .method-header / .rgpd-header / .do-dont-header
   → H2 : clamp(40px, 5.5vw, 84px) — lettering serré — line-height 1.02
   → lead : 18px, max-width 860px
   → wrapper : max-width 100% — pleine largeur dans tous les cas
*/
.section-heading,
.method-header,
.rgpd-header,
.do-dont-header {
  max-width: 100%;
  width: 100%;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

/* H2 commun */
.section-heading h2,
.method-header h2,
.rgpd-header h2,
.do-dont-header h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: -0.055em;
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 24px;
  margin-top: 12px;
  max-width: 100%;
}

/* Paragraphe intro commun */
.section-heading p,
.method-header p,
.rgpd-header p,
.do-dont-header p {
  font-size: 18px;
  line-height: 1.76;
  max-width: 100%;
}

/* Couleurs spécifiques (surchargent le global) */
.section-heading p { color: var(--text-soft); }
.method-header p   { color: var(--text-soft); }
.rgpd-header h2    { color: var(--text-main); }
.rgpd-header p     { color: var(--text-soft); }
.do-dont-header h2 { color: var(--text-on-dark); }
.do-dont-header p  { color: var(--text-muted-dark); }

/* Sur fond sombre : section-heading générique passe en clair */
.section-dark .section-heading h2 { color: var(--text-on-dark); }
.section-dark .section-heading p  { color: rgba(234,240,255,0.65); }

/* FAQ layout : heading + liste pleine largeur */
.faq-layout .section-heading,
.faq-layout .faq-list {
  grid-column: 1 / -1;
  max-width: 100%;
  width: 100%;
}
.faq-layout .section-heading { margin-bottom: 56px; }

/* Centered variant (conservé si utilisé ponctuellement) */
.section-heading.text-center {
  text-align: center;
}
.section-heading.text-center p { margin: 0 auto; }

/* Eyebrow margin-bottom standardisé */
.section-heading .eyebrow,
.method-header .eyebrow,
.rgpd-header .eyebrow,
.do-dont-header .eyebrow { margin-bottom: 16px; }
.text-accent {
  background: linear-gradient(135deg, var(--product-accent) 0%, var(--brand-teal) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Ghost section numbers ────────────────────────────────── */
.section-num {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 220px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(11, 160, 143, 0.10);
  pointer-events: none;
  user-select: none;
  top: 40px;
  right: -20px;
  letter-spacing: -0.05em;
  z-index: 0;
}
.section-dark .section-num,
.cta-section .section-num {
  -webkit-text-stroke: 1px rgba(0, 229, 168, 0.07);
}

/* ── Reveal animations ────────────────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1), transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0); }

/* ── Text utilities ───────────────────────────────────────── */
.text-link {
  color: var(--brand-teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.text-link:hover { color: var(--brand-deep); }

.link-underline {
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(234, 240, 255, 0.25);
  padding-bottom: 2px;
  transition: border-color var(--t), color var(--t);
}
.link-underline:hover { color: var(--product-accent); border-color: var(--product-accent); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11, 16, 32, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 168, 0);
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
}
.site-header.scrolled {
  background: rgba(11, 16, 32, 0.97);
  box-shadow: 0 1px 0 rgba(0, 229, 168, 0.12), 0 8px 32px rgba(0, 0, 0, 0.28);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.footer-brand .brand-logo-img {
  width: 64px;
  height: 64px;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: rgba(234, 240, 255, 0.65);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  letter-spacing: -0.01em;
  position: relative;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--product-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-link:hover { color: var(--text-on-dark); }
.nav-link:hover::after { transform: scaleX(1); }

/* ROI pill */
.nav-link-roi {
  background: rgba(0, 229, 168, 0.08);
  border: 1px solid rgba(0, 229, 168, 0.18);
  color: var(--product-accent);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 12.5px;
}
.nav-link-roi::after { display: none; }
.nav-link-roi:hover {
  background: rgba(0, 229, 168, 0.16);
  color: var(--product-accent);
  box-shadow: 0 0 20px rgba(0, 229, 168, 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.burger-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(234, 240, 255, 0.06);
  color: var(--text-on-dark);
  border: 1px solid rgba(234, 240, 255, 0.1);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--t);
}
.burger-btn:hover { background: rgba(234, 240, 255, 0.12); }

/* ── Mobile Menu ─────────────────────────────────────────── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 149;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none; /* invisible mais ne bloque pas les clics quand fermé */
  transition: opacity var(--t-slow);
}
.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto; /* réactive les clics uniquement quand le menu est ouvert */
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: var(--product-bg);
  border-left: 1px solid rgba(0, 229, 168, 0.12);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(234, 240, 255, 0.08);
  margin-bottom: 8px;
}
.mobile-close {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(234, 240, 255, 0.06);
  color: var(--text-on-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background var(--t);
}
.mobile-close:hover { background: rgba(234, 240, 255, 0.12); }
.mobile-menu .nav-link {
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  color: rgba(234, 240, 255, 0.7);
  font-size: 15px;
  border-left: 2px solid transparent;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-link:hover {
  color: var(--text-on-dark);
  border-left-color: var(--product-accent);
  background: rgba(0, 229, 168, 0.04);
}
.mobile-cta {
  margin: 16px 20px 0;
  justify-content: center;
  text-align: center;
}

/* ── Show mobile elements only on small screens ──────────── */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .burger-btn { display: flex; }
  .menu-overlay { display: block; }
  .btn-header { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
/* Wrapper qui contraint hero + stat-bar + ticker à exactement 100svh */
.hero-viewport {
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* évite tout débordement vertical */
}

.hero {
  position: relative;
  flex: 1;           /* prend tout l'espace restant après stat-bar et ticker */
  min-height: 0;     /* permet à flex: 1 de réduire sous son contenu naturel */
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 40px;
  overflow: hidden;
  background: var(--product-bg);
}
.hero-vanta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-vanta-bg.vanta-fallback {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(11, 160, 143, 0.14), transparent),
              linear-gradient(180deg, #0B1020 0%, #0D1428 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(11, 16, 32, 0.82) 0%,
    rgba(11, 16, 32, 0.55) 50%,
    rgba(11, 16, 32, 0.75) 100%);
  pointer-events: none;
}
.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 52px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Hero eyebrow ─────────────────────────────────────────── */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--product-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--product-accent);
  opacity: 0.6;
}

/* ── Hero title — architectural extremes ──────────────────── */
.hero-title {
  margin-bottom: 28px;
  line-height: 0.90;
  letter-spacing: -0.05em;
}
.hero-title-main {
  display: block;
  font-size: clamp(40px, 5.8vw, 84px);
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 0.90;
  letter-spacing: -0.05em;
}
.hero-title-accent {
  display: block;
  font-size: clamp(40px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 0.90;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--product-accent) 0%, var(--brand-teal) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 6px;
}
.hero-lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted-dark);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 20px;
  margin-top: 28px;
}
.hero-subline {
  font-size: 17px;
  color: rgba(234, 240, 255, 0.65);
  margin-bottom: 36px;
}
.typewriter-word {
  color: var(--product-accent);
  font-weight: 700;
}
.typewriter-cursor {
  color: var(--product-accent);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tags li {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.45);
  padding: 6px 14px;
  border: 1px solid rgba(234, 240, 255, 0.1);
  border-radius: var(--r-pill);
}

/* ── Hero Panel ──────────────────────────────────────────── */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Entrée en cascade des cartes */
.hero-panel > * {
  opacity: 0;
  transform: translateX(28px);
  animation: panel-slide-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-panel > *:nth-child(1) { animation-delay: 0.35s; }
.hero-panel > *:nth-child(2) { animation-delay: 0.50s; }
.hero-panel > *:nth-child(3) { animation-delay: 0.65s; }
@keyframes panel-slide-in {
  to { opacity: 1; transform: translateX(0); }
}

.panel-card {
  background: rgba(13, 22, 46, 0.90);
  border: 1px solid rgba(234, 240, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
/* Ligne luminescente top */
.panel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--product-accent), transparent);
  opacity: 0.35;
  transition: opacity 0.35s ease, left 0.35s ease, right 0.35s ease;
}
/* Halo de fond subtil */
.panel-card::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  background: radial-gradient(ellipse, rgba(0,229,168,0.07), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.panel-card:hover {
  border-color: rgba(0, 229, 168, 0.22);
  box-shadow: 0 0 0 1px rgba(0,229,168,0.06), 0 20px 50px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.panel-card:hover::before {
  left: 8%; right: 8%;
  opacity: 0.6;
}

.panel-card-primary {
  border-color: rgba(0, 229, 168, 0.16);
  background: rgba(11,26,50,0.95);
}
.panel-card-primary::after {
  opacity: 1;
}
.panel-card-primary h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  margin-top: 10px;
  line-height: 1.22;
}
.panel-card-primary p {
  font-size: 14px;
  color: rgba(234,240,255,0.60);
  line-height: 1.72;
}
.panel-kicker {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--product-accent);
  display: flex; align-items: center; gap: 8px;
}
.panel-kicker::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--product-accent);
  border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.proof-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(234, 240, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.proof-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--product-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.proof-card:hover {
  background: rgba(0,229,168,0.04);
  border-color: rgba(0,229,168,0.18);
  transform: translateY(-2px);
}
.proof-card:hover::before { opacity: 0.5; }

.proof-value {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--product-accent);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(0,229,168,0.35);
}
.proof-card p {
  font-size: 12px;
  color: rgba(234, 240, 255, 0.50);
  line-height: 1.65;
}
.signal-card {
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(234, 240, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: background 0.3s, border-color 0.3s;
}
.signal-card:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(234,240,255,0.13);
}
.signal-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.40);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(234,240,255,0.06);
}
.signal-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: rgba(0,229,168,0.5);
  flex-shrink: 0;
}
.signal-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signal-card li {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.62);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  transition: color 0.2s;
}
.signal-card:hover li { color: rgba(234, 240, 255, 0.75); }
.signal-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--product-accent);
  font-weight: 900;
}

/* ============================================================
   STAT BAR — Instrument panel
   ============================================================ */
.stat-bar {
  background: var(--product-bg);
  border-top: 1px solid rgba(0, 229, 168, 0.15);
  border-bottom: 1px solid rgba(0, 229, 168, 0.15);
  padding: 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0; /* ne se compresse pas dans le flex parent */
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 36px 48px;
  border-right: 1px solid rgba(0, 229, 168, 0.09);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  color: var(--product-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.42);
  line-height: 1.6;
}
/* Hide old dividers */
.stat-divider { display: none; }

/* ============================================================
   TICKER — Horizontal marquee
   ============================================================ */
.ticker {
  background: rgba(11, 16, 32, 0.97);
  border-top: 1px solid rgba(0, 229, 168, 0.09);
  border-bottom: 1px solid rgba(0, 229, 168, 0.09);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  flex-shrink: 0; /* ne se compresse pas dans le flex parent */
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.45);
  padding: 0 32px;
}
.ticker-item.highlight { color: var(--product-accent); }
.ticker-sep {
  color: rgba(0, 229, 168, 0.3);
  font-size: 18px;
  padding: 0 8px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FRICTION SECTION — Terminal / error log
   ============================================================ */
#frictions.section-light { background: var(--bg-main); }
.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.friction-card {
  background-color: var(--bg-white); /* background-color seul pour ne pas écraser background-image */
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.32s ease;
}
.friction-card::before { content: none; }
.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  font-size: 20px;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.28s ease,
              box-shadow 0.28s ease;
}
.icon-danger { background: rgba(255, 90, 122, 0.10); color: var(--product-danger); }

/* ── Hover blog-card style ── */
.friction-card:hover .icon-badge {
  transform: scale(1.15) rotate(-4deg);
  background: rgba(255, 90, 122, 0.20);
  box-shadow: 0 4px 16px rgba(255, 90, 122, 0.18);
}
.friction-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
.friction-card:hover h3 { color: var(--brand-teal); }
.friction-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.72;
}

/* ============================================================
   COMPARISON / AVANT-APRÈS — Cinematic
   ============================================================ */
.comparison-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  height: 280px;
}
.comparison-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,16,32,0.6) 0%, transparent 40%, transparent 60%, rgba(11,16,32,0.6) 100%);
}
.comparison-visual-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.18);
}
.comparison-card {
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.comparison-card::after {
  content: attr(data-bg-symbol);
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 320px;
  line-height: 1;
  font-weight: 900;
  font-family: var(--font-heading);
  pointer-events: none;
  user-select: none;
}
.comparison-card-muted {
  background: #FBF2F2;
  border-right: none;
}
.comparison-card-muted::after { color: rgba(176, 48, 48, 0.06); }
.comparison-card-positive {
  background: linear-gradient(145deg, #0D1A33 0%, #0B1020 100%);
}
.comparison-card-positive::after { color: rgba(0, 229, 168, 0.07); }

.comparison-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  opacity: 0.5;
}
.comparison-card-muted .comparison-label { color: #B03030; }
.comparison-card-positive .comparison-label { color: var(--product-accent); }

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
}
.comparison-card-muted .comparison-list li { color: #3A2020; }
.comparison-card-positive .comparison-list li { color: rgba(234, 240, 255, 0.88); }

.ci-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.comparison-card-muted .ci-icon {
  background: rgba(176, 48, 48, 0.12);
  color: #B03030;
}
.comparison-card-positive .ci-icon {
  background: rgba(0, 229, 168, 0.12);
  color: var(--product-accent);
}

/* Benefit strip */
.benefit-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text-soft);
}
.benefit-strip strong {
  color: var(--text-main);
  font-weight: 700;
  margin-right: 12px;
}

/* ============================================================
   SECTEURS / VERTICALS — Editorial cards
   ============================================================ */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vertical-card {
  background-color: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vertical-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-teal) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.vertical-card:hover::before { opacity: 1; }
.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(11, 112, 124, 0.28);
}
.vertical-card:hover h3,
.vertical-card:hover p { color: rgba(255, 255, 255, 0.95); }
.vertical-card:hover .vertical-link { color: white; border-color: rgba(255, 255, 255, 0.3); }
.vertical-card > * { position: relative; z-index: 1; }

.vertical-icon {
  width: 60px; height: 60px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--brand-teal);
  transition: background 0.3s, color 0.3s,
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vertical-card:hover .vertical-icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: scale(1.12) rotate(-5deg);
}
.vertical-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  transition: color 0.3s;
  line-height: 1.2;
}
.vertical-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.72;
  flex: 1;
  transition: color 0.3s;
}
.vertical-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-teal);
  border-bottom: 1px solid rgba(11, 160, 143, 0.25);
  padding-bottom: 4px;
  width: fit-content;
  transition: gap 0.25s, color 0.3s, border-color 0.3s;
}
.vertical-link:hover { gap: 12px; }

/* ============================================================
   MÉTHODE STEPPER
   ============================================================ */
/* .method-header — règles communes définies dans le système unifié section-heading */

.stepper-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background-color: var(--bg-white);
}
.stepper-nav {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border-right: 1px solid var(--line-soft);
}
.stepper-nav-item {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-left: 2px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all var(--t);
  border-radius: 0;
}
.stepper-nav-item.active {
  border-left-color: var(--product-accent);
  background: rgba(0, 229, 168, 0.04);
}
.stepper-nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(23, 49, 58, 0.30);
  opacity: 1;
  transition: color var(--t);
}
.stepper-nav-item.active .stepper-nav-num,
.stepper-nav-item:hover .stepper-nav-num { color: var(--product-accent); opacity: 1; }
/* Lettre clé méthode ALPHA */
.alpha-key {
  color: var(--product-accent);
  font-weight: 700;
  font-style: normal;
}

.stepper-nav-label {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(23, 49, 58, 0.5);
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.stepper-nav-item.active .stepper-nav-label,
.stepper-nav-item:hover .stepper-nav-label { color: var(--text-main); }

.stepper-content {
  padding: 0;
  background: var(--bg-white);
  overflow: hidden;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10), 0 1px 0 rgba(0,0,0,0.05);
  /* La carte remplit toute la hauteur du wrapper */
}
.stepper-card {
  display: none;
  padding: 40px 44px;
}
.stepper-card.active { display: flex; flex-direction: column; gap: 20px; }
.stepper-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stepper-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-teal);
  background: rgba(11, 160, 143, 0.08);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.stepper-card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.2;
}
.stepper-card-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.72;
}
.stepper-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stepper-card-list li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.stepper-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-teal);
  font-weight: 700;
  font-size: 12px;
}
.stepper-card-result {
  font-size: 14px;
  color: var(--text-soft);
  background: var(--bg-soft);
  padding: 16px 20px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--brand-teal);
  line-height: 1.65;
}
.stepper-card-result strong { color: var(--text-main); }

/* Method footer */
.method-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* Stepper Accordion (Mobile) */
.stepper-accordion { display: none; }
.stepper-accordion-item {
  border-bottom: 1px solid var(--line-soft);
}
.stepper-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  text-align: left;
}
.stepper-accordion-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-teal);
  flex-shrink: 0;
}
.stepper-accordion-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  flex: 1;
  letter-spacing: -0.02em;
}
.stepper-accordion-chevron {
  font-size: 12px;
  color: var(--text-soft);
  transition: transform var(--t);
  flex-shrink: 0;
}
.stepper-accordion-trigger.active .stepper-accordion-chevron { transform: rotate(180deg); }
.stepper-accordion-content {
  display: none;
  padding-bottom: 24px;
}
.stepper-accordion-content.active { display: block; }
.stepper-accordion-content p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 12px;
}
.stepper-accordion-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.stepper-accordion-content li {
  font-size: 13.5px;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.stepper-accordion-content li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--brand-teal);
  font-size: 11px;
}
.stepper-accordion-result {
  font-size: 13px;
  color: var(--text-soft);
  background: var(--bg-soft);
  padding: 12px 16px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--brand-teal);
}
.stepper-accordion-result strong { color: var(--text-main); }

/* ============================================================
   DO / DON'T SECTION
   ============================================================ */
/* .do-dont-header — règles communes définies dans le système unifié section-heading */
.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.do-card, .dont-card {
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.do-card {
  background: rgba(0, 229, 168, 0.04);
  border: 1px solid rgba(0, 229, 168, 0.15);
}
.dont-card {
  background: rgba(255, 90, 122, 0.04);
  border: 1px solid rgba(255, 90, 122, 0.15);
}
.do-title, .dont-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-on-dark);
}
.do-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0, 229, 168, 0.15);
  color: var(--product-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.dont-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 90, 122, 0.15);
  color: var(--product-danger);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.do-list, .dont-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.do-list li, .dont-list li {
  font-size: 14px;
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
  color: var(--text-muted-dark);
}
.do-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--product-accent);
  font-weight: 800;
  font-size: 12px;
}
.dont-list li::before {
  content: '✕';
  position: absolute; left: 0;
  color: var(--product-danger);
  font-weight: 800;
  font-size: 12px;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-visual {
  margin-bottom: 52px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--r-xl);
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ── Founder solo layout ─────────────────────────────────── */
.founder-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
  padding: 40px 44px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
}
.founder-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(11,160,143,0.18), 0 2px 8px rgba(0,0,0,0.08);
  border: 3px solid rgba(11,160,143,0.22);
  flex-shrink: 0;
  margin: 0 auto;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-name {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.founder-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.founder-bio p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.74;
  margin: 0;
}
.team-card {
  background-color: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

/* Overlay gradient identique aux vertical-cards */
.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-teal) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.team-card:hover::before { opacity: 1; }
.team-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(11, 112, 124, 0.28);
}

/* Tous les enfants au-dessus de l'overlay */
.team-card > * { position: relative; z-index: 1; }

/* Changements de couleur au hover */
.team-card:hover h3,
.team-card:hover p { color: rgba(255, 255, 255, 0.95); }
.team-card:hover .team-card-role { color: rgba(255, 255, 255, 0.65); }
.team-card:hover .team-card-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.team-card-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(11, 160, 143, 0.10);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--brand-teal);
  transition: background 0.35s ease, color 0.35s ease;
}
.team-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.2;
  transition: color 0.35s ease;
}
.team-card-role {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-teal);
  transition: color 0.35s ease;
}
.team-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.75;
  flex: 1;
  transition: color 0.35s ease;
}

/* ============================================================
   RGPD SECTION — Light
   ============================================================ */
/* .rgpd-header — règles communes définies dans le système unifié section-heading */
.rgpd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rgpd-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.rgpd-item:hover {
  border-color: rgba(11, 160, 143, 0.20);
  box-shadow: 0 4px 24px rgba(11, 160, 143, 0.07);
}
.rgpd-item-icon {
  width: 48px; height: 48px;
  background: rgba(11, 160, 143, 0.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--brand-teal);
  flex-shrink: 0;
}
.rgpd-item-body h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 10px;
}
.rgpd-item-body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.72;
}

/* ============================================================
   OFFERS — Premium cards
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background-color: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.offer-card-featured {
  background: var(--product-bg);
  border-color: rgba(0, 229, 168, 0.2);
  color: var(--text-on-dark);
}
.offer-card-featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(0, 229, 168, 0.06), transparent);
  pointer-events: none;
}
.offer-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--product-accent);
  background: rgba(0, 229, 168, 0.1);
  border: 1px solid rgba(0, 229, 168, 0.2);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  width: fit-content;
}
.offer-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.offer-card:not(.offer-card-featured) h3 { color: var(--text-main); }
.offer-card-featured h3 { color: var(--text-on-dark); }
.offer-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.offer-card-featured p { color: var(--text-muted-dark); }
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.offer-list li {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.offer-list li::before {
  content: '✓';
  font-weight: 800;
  font-size: 10px;
  color: var(--brand-teal);
  background: rgba(11, 160, 143, 0.1);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.offer-card-featured .offer-list li { color: rgba(234, 240, 255, 0.65); }
.offer-card-featured .offer-list li::before {
  color: var(--product-accent);
  background: rgba(0, 229, 168, 0.1);
}

/* Audit card — déroulé & livrables */
.offer-process,
.offer-deliverables {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(0, 229, 168, 0.06);
  border: 1px solid rgba(0, 229, 168, 0.12);
}
.offer-process-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--product-accent);
  opacity: 0.80;
}
.offer-process-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}
.offer-process-steps li {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(234, 240, 255, 0.72);
  padding-left: 4px;
}
.offer-trust {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--product-accent);
  opacity: 0.90;
  margin: 0;
  text-align: center;
}

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi-section { background: var(--product-bg); }
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.roi-card {
  background: rgba(16, 26, 51, 0.80);
  border: 1px solid rgba(234, 240, 255, 0.10);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.roi-card:hover {
  border-color: rgba(0, 229, 168, 0.25);
  background: rgba(0, 229, 168, 0.06);
  box-shadow: 0 0 40px rgba(0, 229, 168, 0.09);
  transform: translateY(-2px);
}
.roi-card-featured {
  /* Pas de mise en valeur permanente — uniquement au hover */
}
.roi-icon {
  font-size: 24px;
  color: var(--product-accent);
  opacity: 0.7;
}
.roi-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(234, 240, 255, 0.55);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.roi-figure {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--product-accent);
}
.roi-figure span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(234, 240, 255, 0.35);
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.roi-card p {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.55);
  line-height: 1.7;
}
.roi-cta-block {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.roi-cta-block p {
  font-size: 16px;
  color: var(--text-muted-dark);
  max-width: 480px;
  line-height: 1.6;
}
.btn-roi-calc { font-size: 14px; padding: 16px 32px; }

/* ============================================================
   FAQ — Editorial
   ============================================================ */
.faq-layout {
  display: block;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  border-top: 1px solid var(--line-soft);
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  transition: color var(--t);
}
.faq-question:hover { color: var(--brand-teal); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--brand-teal);
  transition: transform var(--t), background var(--t);
}
.faq-icon::after { content: '+'; font-weight: 700; }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-teal);
  color: white;
}
.faq-answer {
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.78;
}

/* ============================================================
   CTA FINAL — Maximum dark impact
   ============================================================ */
.cta-section {
  background: var(--product-bg);
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(11, 160, 143, 0.12), transparent);
  pointer-events: none;
}
.cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background: rgba(16, 26, 51, 0.6);
  border: 1px solid rgba(0, 229, 168, 0.15);
  border-radius: var(--r-xl);
  padding: 64px 72px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cta-panel .eyebrow { margin-bottom: 14px; }
.cta-panel h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  line-height: 1.05;
}
.cta-panel p {
  font-size: 16px;
  color: var(--text-muted-dark);
  line-height: 1.72;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER — Ruixen-inspired, DA Alpha No_Code
   ============================================================ */
.site-footer {
  background: #07090E;
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
}

/* Ligne teal en haut */
.footer-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 229, 168, 0.25) 20%,
    rgba(0, 229, 168, 0.5) 50%,
    rgba(0, 229, 168, 0.25) 80%,
    transparent 100%
  );
}

/* Ghost text décoratif — désactivé */
.footer-ghost { display: none; }

/* Grid principal */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

/* Colonne brand */
.footer-col-brand { display: flex; flex-direction: column; }
.footer-brand { margin-bottom: 0; }

/* Forcer la visibilité des colonnes footer (indépendant du reveal-on-scroll) */
.footer-col-brand,
.footer-col { opacity: 1 !important; transform: none !important; }

.footer-copy {
  font-size: 13.5px;
  color: rgba(234, 240, 255, 0.38);
  line-height: 1.76;
  max-width: 280px;
  margin-top: 20px;
}

/* CTA dans le footer */
.footer-cta {
  margin-top: 28px;
  width: fit-content;
  font-size: 13px;
  padding: 12px 22px;
}

/* Colonnes nav / contact */
.footer-col { display: flex; flex-direction: column; }

/* Titres de colonnes */
.footer-col-title {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.22);
  margin-bottom: 20px;
}
.footer-col-title--spaced { margin-top: 36px; }

/* Liens */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(234, 240, 255, 0.48);
  transition: color var(--t), padding-left var(--t);
  line-height: 1;
}
.footer-links a:hover {
  color: var(--product-accent);
  padding-left: 4px;
}

/* Lien accent (Simulateur ROI) */
.footer-link-accent {
  color: rgba(0, 229, 168, 0.6) !important;
  font-weight: 600;
}
.footer-link-accent:hover { color: var(--product-accent) !important; }

/* Barre de bas de page */
.footer-bottom {
  border-top: 1px solid rgba(234, 240, 255, 0.05);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(234, 240, 255, 0.18);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.footer-bottom-tagline {
  color: rgba(234, 240, 255, 0.12);
  letter-spacing: 0.1em;
}

/* ── Panel card shimmer ────────────────────────────────────── */
@keyframes panel-shimmer {
  0%   { transform: translateX(-100%) skewX(-18deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(250%) skewX(-18deg); opacity: 0; }
}
.panel-card-primary {
  isolation: isolate;
}
.panel-card-primary .panel-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(0, 229, 168, 0.06) 50%,
    rgba(0, 229, 168, 0.09) 55%,
    transparent 65%
  );
  animation: panel-shimmer 6s ease-in-out 1.8s infinite;
  pointer-events: none;
  z-index: 0;
}

/* ── Floating glow orbs on panel (décoratifs) ─────────────── */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33%       { transform: translate(6px, -8px) scale(1.05); opacity: 0.8; }
  66%       { transform: translate(-4px, 5px) scale(0.97); opacity: 0.5; }
}
.proof-value {
  position: relative;
}
.proof-value::after {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,229,168,0.12), transparent 70%);
  border-radius: inherit;
  pointer-events: none;
  animation: float-orb 5s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .hero-shell {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
  .stat-item { padding: 40px 32px; }
  .comparison-card { padding: 44px 36px; }
  .cta-panel { padding: 52px 56px; gap: 48px; }
  .faq-list { column-gap: 48px; }
  .footer-grid { gap: 40px; }
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 40px;
  }
  .hero-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .panel-card-primary { grid-column: 1 / -1; }
  .panel-grid { display: contents; }
  .signal-card { grid-column: 1 / -1; }

  .verticals-grid { grid-template-columns: 1fr; gap: 16px; }
  .vertical-card { padding: 36px 32px; }
  .comparison-layout { grid-template-columns: 1fr; min-height: auto; }
  .comparison-card { min-height: 400px; }
  .comparison-card::after { font-size: 200px; }

  .stepper-wrapper { grid-template-columns: 1fr; }
  .stepper-nav {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    scrollbar-width: none;
  }
  .stepper-nav::-webkit-scrollbar { display: none; }
  .stepper-nav-item { border-left: none; border-bottom: 2px solid transparent; flex-direction: row; min-width: fit-content; }
  .stepper-nav-item.active { border-left-color: transparent; border-bottom-color: var(--product-accent); }

  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .rgpd-grid { grid-template-columns: 1fr; }
  .founder-layout { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; text-align: center; }
  .founder-photo-wrap { width: 160px; height: 160px; }
  .offers-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }

  .do-dont-grid { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 40px;
  }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-copy { max-width: 100%; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:last-child { border-top: 1px solid rgba(0,229,168,0.09); border-right: none; }
  .stat-item:nth-last-child(2) { border-top: 1px solid rgba(0,229,168,0.09); }

  .section-num { font-size: 140px; top: 20px; right: -10px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  /* Système heading unifié — responsive */
  .section-heading,
  .method-header,
  .rgpd-header,
  .do-dont-header { margin-bottom: 48px; }

  .section-heading h2,
  .method-header h2,
  .rgpd-header h2,
  .do-dont-header h2 { font-size: clamp(28px, 6.5vw, 48px); letter-spacing: -0.04em; }

  .section-heading p,
  .method-header p,
  .rgpd-header p,
  .do-dont-header p { font-size: 15.5px; max-width: 100%; }
  .section-cut { clip-path: none; padding-bottom: 80px; margin-bottom: 0; }

  /* Hero mobile — libérer la hauteur fixe */
  .hero-viewport { height: auto; overflow: visible; }
  .hero {
    padding-top: 68px;
    min-height: auto;
    overflow: visible;
    align-items: flex-start;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 48px;
    gap: 32px;
  }
  .hero-title-main, .hero-title-accent { font-size: clamp(34px, 10vw, 56px); }
  .hero-lead { font-size: 15px; margin-top: 20px; margin-bottom: 16px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* Panneau droit — masqué sur mobile (trop lourd, contenu redondant) */
  .hero-panel { display: none; }

  .stat-bar-inner { grid-template-columns: 1fr; }
  .stat-item {
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 229, 168, 0.09);
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-value { font-size: clamp(28px, 8vw, 40px); }
  .stat-label { font-size: 9px; }

  .friction-grid { grid-template-columns: 1fr; }
  .friction-card { padding: 28px 24px; }
  .comparison-card { padding: 36px 28px; }
  .comparison-card::after { font-size: 140px; }

  .stepper-wrapper { display: none; }
  .stepper-accordion { display: block; }

  .team-photo { height: 220px; }
  .offers-grid, .roi-grid { gap: 16px; }
  .offer-card, .roi-card { padding: 36px 28px; }
  .section-heading.text-center h2,
  .section-heading.text-center p { text-align: center; }

  .cta-section { padding: 80px 0; }
  .cta-panel { padding: 40px 32px; }
  .cta-panel h2 { font-size: clamp(24px, 6vw, 40px); }
  .cta-actions { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-ghost { font-size: 100px; bottom: -10px; right: -10px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-tagline { display: none; }
  .footer-cta { width: 100%; text-align: center; justify-content: center; }
  .section-num { display: none; }

  .comparison-layout { border-radius: var(--r-lg); }
  /* method-header responsive already covered by unified system above */
}

@media (max-width: 480px) {
  .stat-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,229,168,0.09); }
  .hero-tags li { font-size: 9px; }
  .friction-card { padding: 24px 20px; }
  .panel-grid { display: flex; flex-direction: column; }
  .do-dont-grid { gap: 14px; }
  .cta-panel { padding: 32px 24px; }
  .btn { font-size: 13px; padding: 13px 24px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .cursor, .cursor-ring, .scroll-progress,
  .ticker, .hero-vanta-bg, .burger-btn, .mobile-menu,
  .menu-overlay { display: none !important; }
  body { background: white; color: black; }
  .hero { background: #eee; min-height: auto; }
}
