/* Premium grain texture overlay */
body::before {
  /* keep existing motif */
}

:root {
  --white: #ffffff;
  --off-white: #fafafa;
  --surface: #f5f5f7;
  --border: #d2d2d7;
  --border-light: #e8e8ed;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --gold: #c9a227;
  --gold-light: #f0c040;
  --gold-bg: #fbf5e0;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --danger: #dc2626;
  --success: #16a34a;
  --teal: #0b7a75;
  --teal-deep: #075e59;
  --cyan: #2cccd3;
  --royal: #0e4bb5;
  --navy: #0c2f72;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08), 0 24px 64px rgba(0, 0, 0, 0.06);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Inter, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: #f8f9fc;
}

/* Subtle motifs background */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(44, 204, 211, 0.12) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(201, 162, 39, 0.1) 1px, transparent 0);
  background-size: 28px 28px, 44px 44px;
  background-position: 0 0, 14px 14px;
  opacity: 0.45;
}
body::after {
  background-image: linear-gradient(135deg, rgba(14, 75, 181, 0.035) 25%, transparent 25%, transparent 50%, rgba(14, 75, 181, 0.035) 50%, rgba(14, 75, 181, 0.035) 75%, transparent 75%, transparent);
  background-size: 80px 80px;
  opacity: 0.18;
}

#site-header, .site-main, #site-footer, .sticky-mobile-cta { position: relative; z-index: 1; }

h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; margin: 0; }
h3 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; color: var(--text-secondary); }
.caption { font-size: 0.875rem; color: var(--text-secondary); }

.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--gold); z-index: 2000; }

/* WhatsApp FAB — components/whatsapp-button.html (styles were only on index.html before) */
.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28);
}
.whatsapp-float:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 3px;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  body:has(.sticky-mobile-cta) .whatsapp-float {
    bottom: max(86px, env(safe-area-inset-bottom, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    padding: 10px 12px;
  }
  body:not(:has(.sticky-mobile-cta)) .whatsapp-float {
    right: max(12px, env(safe-area-inset-right, 0px));
    padding: 10px 12px;
  }
  .whatsapp-float-label {
    font-size: 0.82rem;
  }
}

.site-main { width: 100%; }
.section-inner, .footer-inner, .header-inner { width: min(1320px, calc(100% - 40px)); margin: 0 auto; }
section { padding: 96px 0; background: var(--white); }
section.surface { background: linear-gradient(180deg, #f5f8ff 0%, #f3f5fb 100%); }
section.dark { background: #1d1d1f; color: #fff; }
main > section:nth-of-type(4n+2):not(.dark) {
  background: linear-gradient(180deg, #f6f9ff 0%, #f4f6fb 100%);
}
main > section:nth-of-type(4n+3):not(.dark):not(.surface) {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}
@media (max-width: 768px) {
  .section-inner, .footer-inner, .header-inner { width: calc(100% - 20px); }
  section { padding: 72px 0; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease-out, transform .5s ease-out; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
html.instant-page-render .fade-up,
html.instant-page-render .fade-up.in-view {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; cursor: pointer; border: 0; }
.btn-primary, .btn-gold, .btn-outline { border-radius: var(--radius-full); padding: 14px 28px; font-size: .9375rem; font-weight: 600; transition: var(--transition); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--royal); transform: scale(1.01); box-shadow: 0 8px 20px rgba(14, 75, 181, 0.28); }
.btn-gold { background: var(--gold); color: #1d1d1f; }
.btn-gold:hover { background: var(--gold-light); transform: scale(1.01); box-shadow: 0 8px 20px rgba(201, 162, 39, 0.28); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text-primary); background: transparent; }
.btn-outline:hover { border-color: var(--text-primary); }
.btn-secondary { border: 1.5px solid rgba(212, 168, 83, 0.55); color: var(--gold); background: rgba(212, 168, 83, 0.08); border-radius: var(--radius-full); padding: 14px 28px; font-size: .9375rem; font-weight: 600; transition: var(--transition); }
.btn-secondary:hover { border-color: var(--gold); background: rgba(212, 168, 83, 0.14); transform: scale(1.01); }

.card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--cyan), var(--gold));
  opacity: .9;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #d8e3f7; }

#site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}
.header-inner { min-height: 64px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text-primary); text-decoration: none; font-weight: 700; }
.brand svg { width: 34px; height: 34px; }
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; justify-content: center; gap: 28px; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #374151;
  text-decoration: none;
  transition: color 0.18s ease;
}
.nav-link:hover,
.nav-link.active { color: #111827; }

.nav-ctas { display: inline-flex; align-items: center; gap: 10px; }
.nav-acces-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.nav-acces-link:hover {
  border-color: rgba(15, 23, 42, 0.3);
  background: #f8fafc;
}
.nav-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.nav-primary-btn:hover {
  background: #000000;
  border-color: #000000;
}

.mobile-toggle { display: none; background: none; border: 0; font-size: 24px; }
.mobile-overlay { display: none; position: fixed; inset: 64px 0 0; background: #fff; padding: 24px; z-index: 1100; }
.mobile-overlay.open { display: block; }
.mobile-overlay a { display: block; padding: 14px 0; text-decoration: none; color: var(--text-primary); border-bottom: 1px solid var(--border-light); }
@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .mobile-toggle { display: inline-block; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .mobile-overlay {
    padding: 20px 24px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .mobile-overlay a {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 16px 0;
    color: var(--text-primary);
  }
  body::before, body::after { display: none; }
}

.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero--single {
  grid-template-columns: minmax(0, 760px);
  min-height: unset;
  height: 100%;
  align-content: center;
}
.hero-bg-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: calc(100vh - 64px);
  min-height: 580px;
  max-height: 900px;
  padding: 0;
}
.hero-bg-section h1 { color: #ffffff; }
.hero-bg-section p { color: rgba(244, 248, 255, 0.9); }
.hero-bg-section a:not(.btn) { color: #cfe3ff; }
.hero-bg-section a:not(.btn):hover { color: #ffffff; }
.zoom-bg-clip {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.zoom-bg-wrap {
  position: absolute;
  inset: -10%;
  will-change: transform;
  transform-origin: 50% 50%;
  transform: scale(1);
}
.hero-parallax-clip {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-parallax-wrap {
  position: absolute;
  inset: -12%;
  will-change: transform;
  transform-origin: 50% 50%;
  transform: scale(1);
}
.hero-photo-layer {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1580582932707-520aed937b7b?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 19, 45, 0.74) 0%, rgba(8, 19, 45, 0.54) 40%, rgba(8, 19, 45, 0.28) 76%, rgba(8, 19, 45, 0.42) 100%),
    linear-gradient(145deg, rgba(14, 75, 181, 0.2) 0%, rgba(11, 122, 117, 0.22) 100%);
}
.problem-bg-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.problem-content { position: relative; z-index: 2; }
.problem-photo-layer {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
}
.problem-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 19, 45, 0.78) 0%, rgba(8, 19, 45, 0.62) 42%, rgba(8, 19, 45, 0.52) 100%),
    linear-gradient(145deg, rgba(12, 47, 114, 0.34) 0%, rgba(11, 122, 117, 0.2) 100%);
}
.problem-bg-section h2,
.problem-bg-section p { color: #f4f8ff; }
.problem-bg-section .problem-card p { color: var(--text-secondary); }
.problem-bg-section .problem-card {
  border-left: 0;
  border: 1px solid rgba(168, 201, 255, 0.24);
  background: linear-gradient(160deg, rgba(10, 35, 82, 0.84) 0%, rgba(9, 31, 73, 0.78) 100%);
  box-shadow: 0 18px 40px rgba(5, 15, 37, 0.35);
  backdrop-filter: blur(6px);
}
.problem-bg-section .problem-card::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(44, 204, 211, 0.9), rgba(127, 180, 255, 0.92), rgba(240, 192, 64, 0.9));
}
.problem-bg-section .problem-card h3 { color: #ffffff; }
.problem-bg-section .problem-card p { color: rgba(222, 234, 255, 0.82); }
.problem-bg-section .problem-card:hover {
  border-color: rgba(201, 224, 255, 0.42);
  box-shadow: 0 24px 56px rgba(5, 15, 37, 0.42);
  transform: translateY(-4px);
}
.problem-bg-section .problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(12, 47, 114, 0.66);
  border: 1px solid rgba(171, 206, 255, 0.35);
  color: #f0c040;
}
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--radius-full); font-size: .8rem; background: linear-gradient(90deg, #e6f3ff, #eef8ff); color: var(--royal); border: 1px solid #cfe3ff; }
.mockup { border-radius: 20px; border: 1px solid var(--border-light); box-shadow: var(--shadow-lg); padding: 24px; background: #fff; }
.hero-image-card {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #0e4bb5 0%, #0b7a75 100%);
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,29,31,.48) 0%, rgba(29,29,31,.08) 45%, rgba(29,29,31,0) 70%);
}
.hero-image-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: .88rem;
  color: var(--text-primary);
}


.sticky-mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1200;
  display: none;
}
@media (max-width: 900px) {
  .sticky-mobile-cta { display: block; }
}
.mockup-controls { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 14px; }
.mockup-btn { border: 1px solid var(--border); background: #fff; color: var(--text-secondary); padding: 7px 10px; border-radius: var(--radius-full); font-size: 0.78rem; cursor: pointer; transition: var(--transition); }
.mockup-btn.is-active, .mockup-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.stats-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 16px 0; }
.tile { background: var(--surface); border-radius: var(--radius-md); padding: 12px; border: 1px solid var(--border-light); }
.tile strong { font-size: 1.5rem; }
.activity li { list-style: none; margin: 8px 0; display: flex; gap: 8px; align-items: center; color: var(--text-secondary); }
.activity li { transition: var(--transition); }
.activity li.live { background: var(--blue-light); border-radius: 8px; padding: 4px 8px; }
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.dot-amber { background: #f59e0b; } .dot-green { background: var(--success); } .dot-blue { background: var(--blue); } .dot-red { background: var(--danger); }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(8, 22, 54, 0.58) 0%, rgba(8, 22, 54, 0.42) 52%, rgba(8, 20, 50, 0.30) 100%),
      linear-gradient(145deg, rgba(14, 75, 181, 0.14) 0%, rgba(201, 162, 39, 0.06) 100%);
  }
  .hero-right { display: none; }
  .hero-bg-section { min-height: 100svh; max-height: none; height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 32px 20px 100px;
    gap: 0;
    align-items: flex-start;
    padding-top: max(32px, env(safe-area-inset-top, 32px));
  }
  .hero-glass-panel {
    padding: 28px 24px;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.2rem); }
  .hero-pain { font-size: 0.94rem; }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
  }
  .stat-cell { border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-last-child(-n+1):nth-child(odd) { grid-column: span 2; }
  .stat-cell:last-child { border-bottom: 0; }
  .sticky-mobile-cta {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    background: linear-gradient(to top, rgba(248,249,252,0.98) 70%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .sticky-mobile-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    min-height: 52px;
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  }
}

/* ── STATS SHOWCASE — merged premium section ────────────── */
.stats-showcase {
  background: #ffffff;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg,
    #2563eb 0%, #0891b2 40%, #059669 70%, #f59e0b 100%) 1;
  padding: 52px 0 56px;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.stats-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(37,99,235,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(8,145,178,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ss-inner {
  position: relative;
  z-index: 1;
}

/* Eyebrow label */
.ss-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ss-eyebrow::before,
.ss-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d0deff);
}
.ss-eyebrow::after {
  background: linear-gradient(90deg, #d0deff, transparent);
}

/* Grid: 5 columns, equal width */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Base card */
.ss-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8eeff;
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
}
.ss-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.12);
}

/* Featured card — the hero stat (48h) */
.ss-card--featured {
  background: linear-gradient(145deg, #1e3a8a 0%, #1d4ed8 50%, #0891b2 100%);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(37,99,235,0.35);
  transform: translateY(-6px);     /* slightly raised */
}
.ss-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 52px rgba(37,99,235,0.45);
}
.ss-card--featured .ss-label  { color: rgba(255,255,255,0.85); }
.ss-card--featured .ss-sublabel { color: rgba(255,255,255,0.55); }
.ss-card--featured .ss-number .n {
  background: none;
  -webkit-background-clip: unset;
  background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

/* Ambient glow inside featured card */
.ss-featured-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Icon wraps */
.ss-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.ss-icon--blue  { background: #eef3ff; }
.ss-icon--teal  { background: #ecfeff; }
.ss-icon--green { background: #f0fdf4; }
.ss-icon--amber { background: #fffbeb; }
.ss-icon--white { background: rgba(255,255,255,0.15); }

/* Animated number */
.ss-number {
  line-height: 1;
  margin: 4px 0 2px;
}
.ss-number .n {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Label & sublabel */
.ss-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0c1c48;
  line-height: 1.3;
}
.ss-sublabel {
  font-size: 0.71rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Mobile — 2 cols + featured full width on top */
@media (max-width: 900px) {
  .ss-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ss-card--featured {
    grid-column: 1 / -1;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
  }
  .ss-card--featured .ss-number .n { font-size: 2rem; }
  .ss-number .n { font-size: 2rem; }
}

.problem-card { border-left: 3px solid var(--danger); }
.problem-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: grid; place-items: center; background: rgba(220, 38, 38, 0.1); color: var(--danger); margin-bottom: 12px; }

.solution-bridge {
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0c2f72 0%, #0e4bb5 40%, #0b7a75 100%);
  padding: 80px 0;
}
.solution-bridge p { color: rgba(255,255,255,.9); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 30px;
}
.pillar-panel {
  position: relative;
  padding: 6px 6px 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.pillar-panel::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--royal), var(--cyan));
  opacity: .5;
}
.pillar-image-wrap {
  position: relative;
  height: 246px;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-image-wrap::after {
  content: none;
}
.pillar-image-wrap img {
  width: auto;
  height: 100%;
  max-width: min(100%, 430px);
  object-fit: contain;
  display: block;
  transform: none;
  transition: transform .55s cubic-bezier(.22,.61,.36,1), filter .55s cubic-bezier(.22,.61,.36,1);
  filter: saturate(1.05) contrast(1.02);
}
.pillar-card-body { padding: 18px 4px 0; }
.pillar-card-body {
  margin-top: 6px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(188, 208, 241, 0.72);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}
.pillar-card-body h3 { color: #102a53; }
.pillar-card-body p { color: #42567a; }
.pillar-card-body .caption { color: #4a5e86; }
.pillar-card-body a { color: var(--royal); font-weight: 600; text-decoration-thickness: 1.5px; }
.pillar-panel:hover {
  transform: scale(1.015);
}
.pillar-panel:hover .pillar-image-wrap img { transform: scale(1.06); filter: saturate(1.1) contrast(1.04); }

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 28px; }
  .pillar-image-wrap { height: 204px; }
  .pillar-image-wrap img { max-width: min(100%, 350px); }
}
.pillars-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(14, 75, 181, 0.11) 0%, rgba(11, 122, 117, 0.09) 50%, rgba(201, 162, 39, 0.08) 100%);
  border: 1px solid rgba(14, 75, 181, 0.22);
  box-shadow: 0 12px 40px rgba(14, 48, 109, 0.1);
}
.pillars-cta .pillars-cta__btn {
  padding: 17px 46px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 36px rgba(201, 162, 39, 0.42), 0 4px 14px rgba(14, 75, 181, 0.12);
}
.pillars-cta .pillars-cta__btn:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 44px rgba(201, 162, 39, 0.52), 0 6px 18px rgba(14, 75, 181, 0.14);
}
.tag { display:inline-flex; padding: 6px 10px; border-radius: var(--radius-full); font-size: .78rem; font-weight: 600; margin-bottom: 10px; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; position: relative; }
.timeline:before { content: ""; position:absolute; left: 12%; right: 12%; top: 42px; border-top: 1px dashed var(--border); }
.step { position: relative; background: #fff; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.step-no { font-size: 3rem; color: var(--royal); font-weight: 700; line-height: 1; }
.day { display: inline-block; margin: 10px 0; background: #e7fbf9; color: var(--teal-deep); border-radius: var(--radius-full); font-size: .8rem; padding: 6px 10px; border: 1px solid #bcebe7; }
.guarantee { margin-top: 28px; background: var(--gold-bg); border: 1px solid rgba(201,162,39,.3); color: var(--gold); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } .timeline:before { display:none; } }

.comparison { display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
table.compare { width: 100%; border-collapse: collapse; background:#fff; border:0; border-radius:0; min-width: 520px; }
table.compare th, table.compare td { padding: 14px 16px; border-bottom:1px solid var(--border-light); }
table.compare tr:nth-child(even) td { background:#fafafa; }
@media (max-width: 900px) {
  .comparison { grid-template-columns:1fr; }
  table.compare th, table.compare td { padding: 11px 13px; font-size: 0.88rem; }
}

.faq-item { border:1px solid var(--border-light); border-radius: var(--radius-md); background:#fff; overflow:hidden; margin-bottom: 12px; }
.faq-trigger { width:100%; background:none; border:0; padding: 16px 18px; text-align:left; display:flex; align-items:center; justify-content:space-between; cursor:pointer; font: inherit; color: var(--text-primary); }
.faq-content { max-height:0; overflow:hidden; transition:max-height .25s ease; padding: 0 18px; }
.faq-item.open { border-color: var(--blue); }
.faq-item.open .faq-content { padding-bottom:16px; }

.quote-rotator { position: relative; min-height: 120px; }
.quote-item { opacity: 0; transform: translateY(8px); transition: var(--transition); position: absolute; inset: 0; pointer-events: none; }
.quote-item.is-active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.quote-nav { display: flex; gap: 8px; margin-top: 10px; }
.quote-dot { width: 10px; height: 10px; border-radius: 999px; border: 0; background: var(--border); cursor: pointer; }
.quote-dot.is-active { background: var(--blue); }

.pricing-toggle { display: inline-flex; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-full); padding: 4px; gap: 4px; }
.pricing-toggle button { border: 0; background: transparent; color: var(--text-secondary); font-weight: 600; border-radius: var(--radius-full); padding: 8px 14px; cursor: pointer; }
.pricing-toggle button.is-active { background: var(--blue); color: #fff; }
.range-wrap { margin-top: 14px; }
.range-wrap input { width: min(500px, 90%); accent-color: var(--blue); }
.range-meta { margin-top: 8px; color: var(--text-secondary); font-size: .92rem; }

.activity-feed { max-height: 270px; overflow: auto; padding-right: 6px; }
.activity-feed li { list-style: none; display: flex; justify-content: space-between; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
.activity-feed li strong { color: var(--text-primary); font-weight: 600; }

.dark p { color: rgba(255,255,255,.7); }
.dark .card { background: #2d2d2d; border-color: #444; color:#fff; }
.dark input, .dark textarea, .dark select { width:100%; padding: 12px 14px; border-radius: 12px; border:1px solid #444; background:#2d2d2d; color:#fff; }

/* Footer — fond clair, lecture premium (aligné palette Talibi bleu ardoise) */
#site-footer {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%);
  color: #334155;
  padding: clamp(28px, 3.5vw, 40px) 0 clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.035);
}
#site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(37, 99, 235, 0.18), transparent 92%);
  pointer-events: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer-logo-img {
  height: clamp(24px, 2.75vw, 28px);
  width: auto;
  margin-bottom: 8px;
  display: block;
  object-fit: contain;
}
.footer-brand-tagline {
  margin: 0;
  max-width: 260px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.footer-brand-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  row-gap: 8px;
}
.footer-brand-meta .footer-copyright {
  margin: 0;
}
.footer-copyright {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-brand-meta .footer-legal-row {
  margin-top: 0;
}
@media (max-width: 520px) {
  .footer-brand-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer-col-heading {
  margin: 0 0 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
}
.footer-link-row {
  margin: 0 0 5px;
}
.footer-link-row:last-child {
  margin-bottom: 0;
}
#site-footer .footer-inner .footer-link-row a {
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
}
#site-footer .footer-inner .footer-link-row a:hover {
  color: #0e3564;
}
.footer-contact-lede {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
  font-weight: 500;
  max-width: 260px;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(165deg, #22c55e 0%, #16a34a 52%, #15803d 100%);
  border: 1px solid rgba(21, 128, 61, 0.35);
  box-shadow:
    0 2px 5px rgba(22, 163, 74, 0.18),
    0 6px 16px rgba(22, 163, 74, 0.14);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}
.footer-wa-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(22, 163, 74, 0.28),
    0 14px 32px rgba(22, 163, 74, 0.22);
}
.footer-phone-note {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}
.footer-legal-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}
#site-footer .footer-legal-row a {
  font-size: 0.78rem !important;
  font-weight: 600;
  color: #64748b !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
  transition: color 0.18s ease;
}
#site-footer .footer-legal-row a:hover {
  color: #0e3564 !important;
}
.footer-legal-sep {
  color: #cbd5e1;
  font-weight: 700;
  user-select: none;
}

.dashboard-layout { display:grid; grid-template-columns:240px 1fr; min-height: calc(100vh - 64px); }
.sidebar { background:#fff; border-right:1px solid var(--border-light); padding: 20px; }
.side-link { display:flex; gap:10px; align-items:center; padding:10px 12px; border-radius:10px; text-decoration:none; color: var(--text-secondary); margin-bottom:4px; }
.side-link.active, .side-link:hover { background: var(--blue-light); color: var(--blue); }
.dash-main { padding:24px; }
.kpis { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width: 1000px) { .dashboard-layout { grid-template-columns:1fr; } .kpis { grid-template-columns:1fr 1fr; } }

/* GLOBAL POLISH */
html { scroll-behavior: smooth; }
:root { --section-fade: 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
section .fade-up { transition: opacity var(--section-fade), transform var(--section-fade); }
a, button, .btn, .faq-trigger, .quote-dot { cursor: pointer; user-select: none; }
.btn, button, a { touch-action: manipulation; }
::selection { background: rgba(44, 204, 211, 0.3); color: #ffffff; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: #0a1628; }
*::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 999px; }
a:focus-visible, button:focus-visible, input:focus-visible, .btn:focus-visible {
  outline: 2px solid #2cccd3;
  outline-offset: 2px;
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* HERO SECTION */
.hero-bg-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.35) 0%, rgba(12, 47, 114, 0) 50%),
    linear-gradient(180deg, #0c2f72 0%, #081834 100%) !important;
}
.hero-parallax-clip, .hero-photo-layer { display: none; }
.hero-photo-overlay {
  background: linear-gradient(120deg, rgba(8, 22, 48, 0.66), rgba(8, 22, 48, 0.42));
}
.hero-bg-section::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 85%;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.3), rgba(44, 204, 211, 0.3), rgba(37, 99, 235, 0.3));
  background-size: 200% 200%;
  opacity: 0.3;
  filter: blur(38px);
  animation: heroAurora 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes heroAurora {
  0%, 100% { background-position: 0% 50%; transform: translateY(0); }
  50% { background-position: 100% 50%; transform: translateY(10px); }
}
.hero-bg-section h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #2cccd3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cta-row .btn-primary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb, #2cccd3);
  box-shadow: 0 0 40px rgba(44, 204, 211, 0.4);
  transition: all 0.25s ease;
}
.hero-cta-row .btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: 1.5px solid #2cccd3;
  color: #ffffff;
  background: transparent;
  transition: all 0.25s ease;
}
.hero-cta-row .btn-primary:hover,
.hero-cta-row .btn-secondary:hover { transform: translateY(-2px); }
.hero-social-proof { margin-top: 14px; }
.hero-social-proof p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.hero-school-badges { display: flex; gap: 8px; margin-top: 10px; }
.hero-school-badges span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid #c9a227;
  background: rgba(201, 162, 39, 0.14);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}
.hero-bottom-glow-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2cccd3, transparent);
  opacity: 0.95;
}

/* PROBLEM SECTION */
.problem-bg-section { background: #0f172a !important; }
.problem-photo-layer, .problem-photo-overlay { display: none; }
.problem-bg-section .problem-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}
.problem-bg-section .problem-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.problem-bg-section .problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
  border: 0;
}
.problem-bg-section .problem-card h3 { color: #ffffff; font-weight: 700; }
.problem-bg-section .problem-card p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* SOLUTION BRIDGE */
.solution-bridge {
  background: linear-gradient(180deg, #0f172a 0%, #0c2f72 50%, #0f172a 100%) !important;
}
.solution-bridge .section-inner {
  max-width: 720px;
  text-align: center;
}
.solution-bridge .section-inner::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.28), rgba(201, 162, 39, 0.06));
  color: #c9a227;
  font-size: 2rem;
  font-weight: 800;
}
.solution-bridge h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; font-weight: 700; }
.solution-bridge p { color: rgba(255, 255, 255, 0.6); }

/* PILLARS SECTION */
#piliers.surface {
  background: #0f172a !important;
  color: #ffffff;
}
#piliers h2, #piliers h3 { color: #ffffff; }
#piliers p, #piliers .caption { color: rgba(255, 255, 255, 0.67); }
.pillar-panel {
  border-radius: 20px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}
.pillar-panel::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
}
.pillar-panel.pillar-1::before { background: #2563eb; }
.pillar-panel.pillar-2::before { background: #c9a227; }
.pillar-panel.pillar-3::before { background: #2cccd3; }
.pillar-panel.pillar-4::before { background: #22c55e; }
.pillar-image-wrap { height: 220px; }
.pillar-image-wrap img { max-width: 100%; }
.pillar-card-body {
  border: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 18px 0 0;
}
.pillar-panel.pillar-1:hover { border-color: rgba(37, 99, 235, 0.4); }
.pillar-panel.pillar-2:hover { border-color: rgba(201, 162, 39, 0.4); }
.pillar-panel.pillar-3:hover { border-color: rgba(44, 204, 211, 0.4); }
.pillar-panel.pillar-4:hover { border-color: rgba(34, 197, 94, 0.4); }
.pillar-panel:hover { transform: scale(1.02); }

/* 48H TIMELINE */
.timeline-section {
  background:
    linear-gradient(#0c2f72, #0c2f72),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
  background-size: auto, 40px 40px, 40px 40px;
  color: #fff;
}
.timeline-section h2 { color: #fff; }
.timeline {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.timeline:before {
  top: 23px;
  left: 16%;
  right: 16%;
  border-top: 2px dashed rgba(201, 162, 39, 0.4);
}
.step {
  background: transparent;
  border: 0;
  text-align: center;
  padding: 0 10px;
}
.step-no {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c9a227;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}
.step h3 { color: #fff; font-size: 1.1rem; }
.step p { color: rgba(255, 255, 255, 0.6); }
.day { background: rgba(201, 162, 39, 0.12); border-color: rgba(201, 162, 39, 0.45); color: #f6dc85; }
.guarantee { background: rgba(201, 162, 39, 0.14); color: #f6dc85; border-color: rgba(201, 162, 39, 0.4); }

/* COMPARISON TABLE */
.comparison-section {
  background: #10172a !important;
}
.comparison-section h2 { color: #fff; }
.comparison-section .compare {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0b1222;
}
.comparison-section .compare th:first-child {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171 !important;
}
.comparison-section .compare th:last-child {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(44, 204, 211, 0.3);
  color: #2cccd3 !important;
  box-shadow: 0 0 30px rgba(44, 204, 211, 0.1);
}
.comparison-section .compare td { color: rgba(255, 255, 255, 0.85); }
.comparison-section .compare tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }
.comparison-section .compare td:first-child::before { content: "✗ "; color: #f87171; font-weight: 700; }
.comparison-section .compare td:last-child::before { content: "✓ "; color: #2cccd3; font-weight: 700; }

/* TESTIMONIALS */
.comparison-section aside.card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: none;
}
.comparison-section aside.card > div:first-child {
  color: #c9a227 !important;
  opacity: 0.3;
  font-size: 5rem !important;
}
.comparison-section .quote-item { color: #fff !important; }
.comparison-section .quote-dot {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
}
.comparison-section .quote-dot.is-active { background: #c9a227; border-color: #c9a227; }
.comparison-section aside.card p[style*="color:#f59e0b"] { color: #c9a227 !important; }

/* LEAD MAGNET */
.lead-magnet {
  background: #f8fafc !important;
}
.lead-magnet .section-inner { text-align: center; }

/* PRICING SECTION */
.pricing-section {
  background: #0f172a !important;
}
.pricing-section h2, .pricing-section h3 { color: #fff; }
.pricing-section p, .pricing-section .caption, .pricing-section a:not(.btn) { color: rgba(255, 255, 255, 0.66); }
.pricing-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.pricing-card--featured {
  transform: scale(1.04);
  border: 2px solid rgba(44, 204, 211, 0.5) !important;
  box-shadow: 0 0 60px rgba(44, 204, 211, 0.15);
}
.card--featured { border: 2px solid var(--gold); position: relative; }
@media (min-width: 481px) { .card--featured { transform: scale(1.02); } }
.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #2cccd3);
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pricing-cta {
  width: 100%;
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(135deg, #2563eb, #2cccd3);
  color: #fff !important;
  border: 0;
  transition: all 0.25s ease;
}
.pricing-cta:hover { transform: translateY(-2px); }
.pricing-reassurance {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-reassurance p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

/* STICKY MOBILE CTA */
.sticky-mobile-cta {
  backdrop-filter: blur(20px);
  background: rgba(12, 47, 114, 0.9);
  border-top: 1px solid rgba(44, 204, 211, 0.2);
  padding: 10px;
  border-radius: 14px;
}
.sticky-mobile-cta .btn {
  border-radius: 12px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #2cccd3);
  animation: mobilePulse 2s infinite;
}
@keyframes mobilePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .hero-bg-section h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-cta-row { flex-direction: column; gap: 12px !important; }
  .hero-cta-row .btn { width: 100%; }
  .grid-3, .pillars-grid { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline:before {
    left: 23px;
    right: auto;
    top: 48px;
    bottom: 24px;
    border-top: 0;
    border-left: 2px dashed rgba(201, 162, 39, 0.4);
  }
  .step {
    text-align: left;
    padding-left: 60px;
    position: relative;
  }
  .step-no {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .pricing-card--featured { transform: none; }
}
@media (max-width: 480px) {
  section { padding: 52px 0; }
  .section-inner, .footer-inner, .header-inner { width: calc(100% - 32px); }
  h2 { font-size: clamp(1.65rem, 7.5vw, 2rem); }
  h3 { font-size: 1.2rem; }
  .hero-proof { gap: 0; padding: 12px; }
  .hps-n { font-size: 1.25rem; }
  .hps-l { font-size: 0.62rem; }
  .hero-proof-div { margin: 0 2px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btn-main { text-align: center; width: 100%; }
  .hero-btn-ghost { text-align: center; }
  .card { padding: 22px 20px; }
  .problem-card { padding: 20px; }
  .pillars-grid { gap: 24px; }
  .pillar-image-wrap { height: 180px; }
  .pillar-card-body { padding: 14px 14px 12px; }
  .step { padding: 16px; }
  .step-no { font-size: 2.2rem; }
  .guarantee { padding: 18px; font-size: 0.92rem; }
  .faq-trigger { padding: 18px 16px; font-size: 0.96rem; min-height: 52px; }
  #lead-form { flex-direction: column; align-items: stretch; }
  .lead-input { max-width: 100%; }
  #lead-form .btn { width: 100%; }
  article.card[style*="scale(1.02)"] { transform: none; }
  .hero-photo-layer { background-position: 60% 32%; }
}

/* CHANGE 1 — Hero overlay warm visibility */
.hero-parallax-clip, .hero-photo-layer { display: block; }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(8, 22, 54, 0.52) 0%,
      rgba(10, 28, 68, 0.38) 45%,
      rgba(8, 20, 50, 0.22) 75%,
      rgba(6, 16, 42, 0.35) 100%
    ),
    linear-gradient(
      145deg,
      rgba(14, 75, 181, 0.12) 0%,
      rgba(201, 162, 39, 0.06) 100%
    );
}
.hero-bg-section .hero-social-proof p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.hero-school-badges span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.25);
  border: 1.5px solid rgba(201, 162, 39, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f0c040;
  margin-left: 4px;
}

/* CHANGE 2 — Problem overlay warm visibility */
.problem-photo-layer, .problem-photo-overlay { display: block; }
.problem-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      175deg,
      rgba(6, 14, 36, 0.42) 0%,
      rgba(8, 18, 48, 0.28) 38%,
      rgba(8, 18, 48, 0.20) 65%,
      rgba(6, 14, 36, 0.38) 100%
    ),
    linear-gradient(
      145deg,
      rgba(12, 47, 114, 0.20) 0%,
      rgba(11, 122, 117, 0.10) 100%
    );
}
.problem-bg-section .problem-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
}
.problem-bg-section .problem-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.problem-bg-section .problem-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f0c040;
}

/* CHANGE 4 — Timeline ambient photo texture */
.timeline-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent !important;
}
.timeline-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.timeline-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.94) 0%, rgba(255, 250, 240, 0.90) 100%);
}
.timeline-section .section-inner {
  position: relative;
  z-index: 2;
}
.timeline-section h2, .timeline-section .step h3 { color: #0c2f72; }
.timeline-section .step p { color: #4c6287; }
.timeline-section .day { color: #8a6e14; }

/* CHANGE 5 — Solution bridge premium dark */
.solution-bridge {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(44, 204, 211, 0.15);
  box-shadow: inset 0 1px 0 rgba(44, 204, 211, 0.08);
}
.solution-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.28) 0%, transparent 70%),
    linear-gradient(135deg, #0a1628 0%, #0c2f72 50%, #071c47 100%);
  z-index: 0;
}
.solution-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}
.solution-bridge .section-inner { position: relative; z-index: 1; }

/* CHANGE 6 — Comparison warmth */
.comparison-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fe 100%) !important;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}
.comparison-section h2 { color: #0c2f72; }
.comparison-section .compare {
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #ffffff;
}
.comparison-section .compare td { color: #324c72; }
.comparison-section .compare tr:nth-child(even) td { background: rgba(37, 99, 235, 0.03); }
.comparison-section .card {
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.08);
}
.comparison-section .quote-item { color: #1c2f50 !important; }

/* CHANGE 7 — Pricing rich dark texture */
.pricing-section.dark,
section#tarifs.dark {
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(37, 99, 235, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
    linear-gradient(160deg, #080f1e 0%, #0d1f45 45%, #08152e 100%) !important;
  position: relative;
  overflow: hidden;
}
.pricing-section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.pricing-section.dark .section-inner,
.pricing-section.dark .pricing-grid {
  position: relative;
  z-index: 1;
}
.pricing-section.dark .pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f4f8ff;
}
.pricing-section.dark .pricing-card h3 { color: #ffffff; }
.pricing-section.dark .pricing-card p { color: rgba(220, 232, 255, 0.7); }
.pricing-section.dark .pricing-card p[style*="font-size:2.5rem"] { color: #ffffff !important; }
.pricing-section.dark .pricing-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(44, 204, 211, 0.25);
  transform: translateY(-4px);
}
.pricing-section.dark .pricing-card--featured {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(44, 204, 211, 0.35);
  box-shadow: 0 0 60px rgba(44, 204, 211, 0.12), 0 24px 64px rgba(0, 0, 0, 0.3);
}
.pricing-section.dark .pricing-card--featured h3 { color: #ffffff; }
.pricing-section.dark .pricing-cta.btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
}
.pricing-section.dark .pricing-cta.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.pricing-reassurance {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.875rem;
}
.pricing-section.dark .pricing-reassurance p { color: rgba(200, 218, 255, 0.6); }
.pricing-section.dark a[href="tarifs.html"] { color: rgba(44, 204, 211, 0.8); }

/* CHANGE 8 — Final CTA bridge to light premium */
.final-cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 100px 0;
}
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #f0f7ff 0%, #e8f2ff 50%, #f0f9ff 100%);
  z-index: 0;
}
.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?auto=format&fit=crop&w=1800&q=75");
  background-size: cover;
  background-position: center 55%;
  opacity: 0.05;
  z-index: 0;
}
.final-cta-section .section-inner {
  position: relative;
  z-index: 1;
}
.final-cta-section h2 {
  color: #0c2f72;
  font-size: clamp(2rem, 4vw, 3rem);
}
.final-cta-section p { color: #38537f; }
.final-cta-section .btn-outline {
  background: linear-gradient(135deg, #2563eb, #0e9b99);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.28), 0 2px 8px rgba(37, 99, 235, 0.18);
  border-radius: 50px;
}
.final-cta-section .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.36), 0 4px 12px rgba(37, 99, 235, 0.22);
}

/* CHANGE 9 — Lead magnet warm */
.lead-magnet {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #fffdf5 0%, #fff9e8 100%) !important;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}
.lead-magnet input[type="email"] {
  border: 1.5px solid rgba(201, 162, 39, 0.3) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}
.lead-magnet input[type="email"]:focus {
  outline: none;
  border-color: #c9a227 !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

/* CHANGE 10 — Pillars ambient light treatment */
#piliers.surface {
  background:
    radial-gradient(ellipse 90% 60% at 20% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(44, 204, 211, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%) !important;
}
#piliers h2, #piliers h3 { color: #0c2f72; }
#piliers p, #piliers .caption { color: #4a6288; }
.pillar-panel {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.06);
  background: #ffffff;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar-panel::before { content: none; }
.pillar-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.18);
}
.pillar-image-wrap {
  margin: 0;
  overflow: hidden;
  height: 180px;
}
.pillar-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pillar-panel:hover .pillar-image-wrap img {
  transform: scale(1.04);
}

/* CHANGE 11 — Global transitions and controls */
.problem-bg-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #f8f9fc);
  z-index: 3;
  pointer-events: none;
}
::selection {
  background: rgba(44, 204, 211, 0.25);
  color: #0c2f72;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #1d4ed8; }

/* CHANGE 12 — Mobile refinements */
@media (max-width: 768px) {
  .timeline-photo-layer { background-position: 60% center; }
  .final-cta-section { padding: 72px 0; }
  .pricing-section.dark::before { background-size: 32px 32px; }
  .problem-bg-section::after { display: none; }
}

/* Dashboard mockup card */
.hero-dashboard-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 4px 0 rgba(255,255,255,0.06) inset;
  position: relative;
  animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.hdc-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hdc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hdc-dot:first-child { background: #ff5f57; }
.hdc-dot:nth-child(2) { background: #ffbd2e; }
.hdc-dot:nth-child(3) { background: #28c840; }
.hdc-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-left: 6px;
  font-weight: 500;
}
.hdc-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.hdc-kpi {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.hdc-kpi--alert {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.25);
}
.hdc-k-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.hdc-kpi--alert .hdc-k-val { color: #fbbf24; }
.hdc-k-lbl {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  line-height: 1.3;
}
.hdc-feed-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.hdc-feed-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hdc-feed-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.hdc-feed-list li em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.hdc-dot-status {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hdc-dot--green { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.6); }
.hdc-dot--amber { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.6); }
.hdc-dot--blue { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,0.6); }
.hdc-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px;
}
.hdc-notif-icon { font-size: 1.2rem; }
.hdc-notif-label { font-size: 0.72rem; font-weight: 700; color: #86efac; margin: 0; }
.hdc-notif-sub { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin: 0; }

/* Floating phone badge */
.hero-phone-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: mockupFloat 6s ease-in-out infinite;
  animation-delay: 1s;
}
.hpb-icon { font-size: 1.3rem; }
.hpb-title { font-size: 0.75rem; font-weight: 700; color: #0c2f72; margin: 0; }
.hpb-sub { font-size: 0.65rem; color: #38537f; margin: 0; }
.hpb-dot-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: pulse 2s infinite;
  margin-left: 4px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-mockup-col { position: relative; padding-bottom: 30px; }

.trust-bar-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #e8f2fd 100%);
  border-bottom: 1px solid rgba(37,99,235,0.08);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar-section .hero-proof-strip.trust-bar-metrics {
  margin-top: 0;
  justify-content: center;
  flex: 1 1 auto;
}
.trust-bar-section .hero-proof-number {
  color: #0c2f72;
}
.trust-bar-section .hero-proof-label {
  color: #475569;
}
.trust-bar-section .hero-proof-sep {
  color: rgba(37, 99, 235, 0.28);
}
.trust-bar-label {
  font-size: 0.8rem;
  color: #64748b;
  white-space: nowrap;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-logo-pill {
  padding: 6px 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 50px;
  font-size: 0.78rem;
  color: #334155;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(37,99,235,0.06);
}

/* FLIP CARDS — fixed height: grid rows stay level; front non-scroll, back scrolls if needed */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
  align-self: start;
  height: min(320px, 54vh);
  max-height: 54vh;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0) rotateY(0deg);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.flip-card.is-flipped .flip-inner {
  transform: translate3d(0, 0, 0) rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: 100%;
  box-sizing: border-box;
  transform: translate3d(0, 0, 1px);
  overflow-x: hidden;
}
.flip-front {
  overflow-y: hidden;
}
.flip-back {
  transform: translate3d(0, 0, 1px) rotateY(180deg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.solution-card {
  border: 1px solid rgba(44,204,211,0.35) !important;
  background: linear-gradient(145deg, rgba(10,35,82,0.92), rgba(9,50,90,0.88)) !important;
}
.solution-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(44,204,211,0.15);
  border: 1px solid rgba(44,204,211,0.3);
  color: #2cccd3;
  margin-bottom: 12px;
}
.solution-card h3 { color: #ffffff; }
.solution-card p { color: rgba(220,234,255,0.82); }
.flip-hint {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(240,192,64,0.8);
  font-weight: 600;
}
.flip-back-hint {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(44,204,211,0.7);
  font-weight: 600;
}
.flip-card:hover .flip-hint { color: #f0c040; }

/* TRANSPORT SECTION */
.transport-section {
  background:
    linear-gradient(155deg, rgba(3, 10, 30, 0.9) 0%, rgba(5, 16, 46, 0.9) 100%),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1800&q=80")
    center center / cover no-repeat !important;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
}

/* Animated route path in background */
.transport-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(44, 204, 211, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 204, 211, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(44, 204, 211, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 204, 211, 0.035) 1px, transparent 1px);
  background-size:
    24px 24px,
    24px 24px,
    96px 96px,
    96px 96px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.transport-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 68%);
  top: -80px;
  left: -60px;
  pointer-events: none;
  filter: blur(4px);
}
.transport-bg-orb {
  display: none;
}
.transport-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .transport-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .transport-mockup { display: flex; justify-content: center; }
}
.transport-content h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.transport-content > p {
  color: rgba(210, 228, 255, 0.82) !important;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}
.transport-subhead {
  margin-top: 14px !important;
  color: rgba(220, 234, 255, 0.92) !important;
  font-size: 1.03rem !important;
  line-height: 1.55 !important;
  max-width: 540px !important;
}
.transport-tag {
  background: rgba(44, 204, 211, 0.10) !important;
  color: #5de8ee !important;
  border: 1px solid rgba(44, 204, 211, 0.28) !important;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.transport-gradient-text {
  color: #93c5fd;
}
.transport-feature-list {
  list-style: none; padding: 0; margin: 24px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.transport-feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.tfl-icon {
  font-size: 1.15rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}
.transport-feature-list li strong {
  color: #ffffff !important;
  font-size: 0.93rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0;
}
.transport-tension-line {
  margin: 2px 0 10px !important;
  color: rgba(203, 213, 225, 0.78) !important;
  font-size: 0.82rem !important;
}
.transport-cta {
  background: #0e4bb5 !important;
  color: #ffffff !important;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(14, 75, 181, 0.28);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(96, 165, 250, 0.35);
  margin-top: 8px;
}
.transport-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(14, 75, 181, 0.36);
}
.transport-cta:active { transform: translateY(-1px); }
.transport-proof {
  margin-top: 10px;
  color: rgba(203, 213, 225, 0.78);
  font-size: 0.78rem;
}

/* Phone mockup */
.transport-phone {
  width: 230px;
  height: 460px;
  background: linear-gradient(160deg, #0d1626 0%, #070d1c 100%);
  border-radius: 36px;
  border: 1.5px solid rgba(255,255,255,0.10);
  box-shadow:
    0 40px 84px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  position: relative;
}
.transport-phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  background: #070d1c;
  border-radius: 0 0 14px 14px;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 1000;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.05); }

/* Hide on mobile homepage only — sticky CTA bar takes priority there */
@media (max-width: 640px) {
  body.page-home .wa-float { display: none; }
}

@media (max-width: 768px) {
  .decouverte-order-mobile-first { order: -1; }
}
.transport-phone-screen { position: absolute; inset: 0; display: flex; flex-direction: column; }
.tps-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(4, 11, 30, 0.97) 0%, rgba(7, 18, 42, 0.97) 100%),
    url("https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?auto=format&fit=crop&w=600&q=70")
    center center / cover no-repeat;
}
.tps-map-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 204, 211, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 204, 211, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 12px 12px, 12px 12px, 48px 48px, 48px 48px;
}
.tps-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.5));
}
.tps-route-svg path {
  stroke: rgba(96, 165, 250, 0.92);
  stroke-width: 2.5;
  stroke-dasharray: 8 5;
  animation: routeTravel 2.2s linear infinite;
}
@keyframes routeTravel {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -60; }
}
.tps-stop {
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; color: rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
}
.tps-stop--done {
  background: rgba(44,204,211,0.2);
  border-color: rgba(44,204,211,0.5);
  color: #2cccd3;
}
.tps-stop--current {
  background: rgba(44,204,211,0.35);
  border-color: #2cccd3;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(44,204,211,0.5);
  animation: stopPulse 2s infinite;
}
.tps-stop--school {
  background: rgba(201,162,39,0.25);
  border-color: #c9a227;
  font-size: 0.65rem;
}
@keyframes stopPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(44,204,211,0.4); }
  50% { box-shadow: 0 0 16px rgba(44,204,211,0.7); }
}
.tps-bus-marker {
  position: absolute;
  font-size: 1.1rem;
  transform: translate(-50%, -50%);
  animation: busMove 8s ease-in-out infinite, busBlink 1.25s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(96,165,250,0.55));
}
@keyframes busMove {
  0% { left: 55%; top: 58%; }
  33% { left: 58%; top: 48%; }
  66% { left: 62%; top: 38%; }
  100% { left: 55%; top: 58%; }
}
@keyframes busBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.tps-info {
  background: rgba(8,14,30,0.95);
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tps-info-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.tps-info-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.tps-info-val { font-size: 0.78rem; color: #ffffff; font-weight: 600; margin: 0; }
.tps-eta-badge {
  background: linear-gradient(135deg, #0e9b99, #2cccd3);
  color: #ffffff;
  font-size: 0.85rem; font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
}
.tps-progress-bar {
  height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 2px; margin-bottom: 8px;
}
.tps-progress-fill {
  height: 100%; width: 58%;
  background: linear-gradient(90deg, #2cccd3, #60a5fa);
  border-radius: 2px;
  animation: progressAnim 8s ease-in-out infinite;
}
@keyframes progressAnim {
  0% { width: 42%; }
  50% { width: 68%; }
  100% { width: 42%; }
}
.tps-status {
  font-size: 0.6rem; color: rgba(255,255,255,0.35); margin: 0;
  display: flex; align-items: center; gap: 5px;
}
.tps-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
.transport-notif-float {
  position: absolute;
  top: 28px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  width: 200px;
  animation: notifBounce 4s ease-in-out infinite;
}
.transport-notif-float p:first-child {
  font-weight: 700;
  color: #0c2f72 !important;
  font-size: 0.72rem;
  margin: 0;
}
.transport-notif-float p:last-child {
  color: #475569 !important;
  font-size: 0.65rem;
  margin: 0;
  line-height: 1.3;
}
.transport-notif-float::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
}
@keyframes notifBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.transport-mockup { position: relative; padding: 20px 40px 20px 40px; }

.roi-section {
  background: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 100%);
  border-top: 1px solid rgba(37,99,235,0.08);
  border-bottom: 1px solid rgba(37,99,235,0.08);
}
.roi-badge { background: linear-gradient(90deg, #eff6ff, #e0f2fe); color: #1d4ed8; border-color: #bfdbfe; }
.roi-card {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 48px rgba(37,99,235,0.08);
  margin-top: 28px;
}
.roi-sliders { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.roi-slider-group { display: flex; flex-direction: column; gap: 8px; }
.roi-label { font-size: 0.9rem; font-weight: 600; color: #334155; display: flex; justify-content: space-between; }
.roi-val {
  background: linear-gradient(135deg, #2563eb, #2cccd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.roi-range {
  width: 100%;
  accent-color: #2563eb;
  height: 6px;
}
.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 640px) { .roi-results { grid-template-columns: 1fr; } }
.roi-result-card {
  background: linear-gradient(145deg, #f0f7ff, #e8f2fe);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.roi-result-card--gold {
  background: linear-gradient(145deg, #fffbeb, #fef3c7);
  border-color: rgba(201,162,39,0.2);
}
.roi-result-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
}
.roi-result-card--gold .roi-result-val { color: #92400e; }
.roi-result-lbl { font-size: 0.75rem; color: #64748b; margin-top: 6px; display: block; }
.roi-cta-row {
  border-top: 1px solid rgba(37,99,235,0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.roi-summary { font-size: 0.9rem; color: #475569; flex: 1; min-width: 200px; margin: 0; }
.roi-summary strong { color: #1d4ed8; }

.step {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.45;
  transform: translateY(6px);
}
.step.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 8px 32px rgba(37,99,235,0.1);
}
.step.is-done {
  opacity: 0.75;
  transform: translateY(0);
  border-color: rgba(44,204,211,0.25);
}
.step.is-done .step-no { color: #22c55e; }
.step.is-active .step-no { color: var(--royal); }

.diagnostic-section {
  background: linear-gradient(180deg, #fffdf5 0%, #fff9e8 100%);
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
}
.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-q {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin: 20px 0 16px;
  line-height: 1.5;
}
.quiz-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.quiz-choice {
  padding: 14px 20px;
  border: 1.5px solid rgba(37,99,235,0.18);
  border-radius: 12px;
  background: #ffffff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.quiz-choice:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
}
.quiz-choice--hot {
  border-color: rgba(220,38,38,0.2);
  background: rgba(254,242,242,0.5);
  color: #991b1b;
}
.quiz-choice--hot:hover {
  border-color: #dc2626;
  background: #fee2e2;
}
.quiz-progress-bar {
  height: 4px;
  background: rgba(37,99,235,0.1);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #2cccd3);
  border-radius: 2px;
  transition: width 0.5s ease;
}
.quiz-result-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 20px 0 16px;
}
.qrs-ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: conic-gradient(#dc2626 0%, #dc2626 74%, #e5e7eb 74%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: #ffffff;
  position: relative;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.15);
}
.qrs-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #1e293b;
}
.qrs-ring span, .qrs-ring small { position: relative; z-index: 1; }
.qrs-ring small { font-size: 0.7rem; color: rgba(255,255,255,0.6); font-weight: 400; }
.qrs-label { font-weight: 700; color: #dc2626; font-size: 0.9rem; margin: 0; }
.quiz-result-text { font-size: 0.95rem; color: #475569; margin: 0 0 20px; }
.quiz-result-text strong { color: #dc2626; }
.quiz-email-form {
  display: flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 0;
}
.quiz-email-form input {
  min-width: 260px; padding: 12px 14px;
  border-radius: 12px; border: 1px solid #d2dce8;
  background: #fff; color: #1d1d1f;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { color: var(--text-primary); font-weight: 700; font-size: 0.9rem; }
.testimonial-role { margin-top: 2px; }

.final-cta-section {
  background: #f8fafc;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 86% 30%, rgba(37,99,235,0.08) 0%, transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(248,250,252,0.95) 100%);
  pointer-events: none;
}
.final-cta-layout {
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.final-cta-copy {
  max-width: 600px;
  text-align: left;
}
.final-cta-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2563eb;
  font-weight: 600;
  text-shadow: none;
}
.final-cta-h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 12px;
  text-shadow: none;
  max-width: 600px;
}
.final-cta-subtext {
  margin-top: 12px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
}
.final-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 10px;
}
.final-cta-primary {
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  color: #fff;
  height: 56px;
  padding: 0 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}
.final-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(37,99,235,0.5);
}
.final-cta-secondary-link {
  color: #64748b;
  opacity: 0.6;
  text-decoration: none;
  font-weight: 500;
  padding-left: 28px;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.final-cta-secondary-link:hover {
  opacity: 0.9;
  color: #334155;
}
.final-cta-guarantee {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(234, 179, 8, 0.15);
  color: #a16207;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}
.final-cta-pills {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 16px;
}
.final-cta-pills span {
  padding: 6px 10px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 12px;
  color: #475569;
}
.final-cta-visual {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
}
.final-cta-device {
  position: relative;
  width: min(100%, 220px);
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(165deg, #111827 0%, #374151 100%);
  border: 1px solid rgba(15, 23, 42, 0.25);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
}
.final-cta-device::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  border-radius: 14px;
  background: #0b1220;
  z-index: 2;
}
.final-cta-device::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
}
.final-cta-device-shot {
  width: 100%;
  display: block;
  border-radius: 26px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  background: #0b1220;
}
@media (max-width: 900px) {
  .final-cta-layout {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .final-cta-copy {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .final-cta-btns { align-items: center; }
  .final-cta-primary { align-self: center; }
  .final-cta-secondary-link { padding-left: 0; }
  .final-cta-pills { justify-content: center; }
  .final-cta-visual {
    order: 2;
    margin-top: 4px;
    max-width: 240px;
  }
}

/* TIMELINE PREMIUM UPGRADE */
.timeline-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 100px 0 80px;
}

.timeline-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(0.7) brightness(1.05);
}

.timeline-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 90% at 8% 50%, rgba(255, 247, 220, 0.92) 0%, transparent 65%),
    radial-gradient(ellipse 100% 70% at 50% 50%, rgba(255, 252, 240, 0.88) 0%, transparent 80%),
    radial-gradient(ellipse 50% 90% at 95% 50%, rgba(180, 140, 60, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, rgba(255, 250, 235, 0.96) 0%, rgba(255, 245, 215, 0.92) 100%);
}

.timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(201, 162, 39, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.timeline-section .section-inner {
  position: relative;
  z-index: 3;
}

#comment-ca-marche h2,
.timeline-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  color: #0c2f72 !important;
  text-align: center;
  margin-bottom: 8px;
}

#comment-ca-marche h2::after,
.timeline-section h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #c9a227, #f0c040);
  border-radius: 2px;
  margin: 16px auto 0;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.4);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: calc(16.666% + 12px);
  right: calc(16.666% + 12px);
  top: 38px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #c9a227 0%,
    #f0c040 30%,
    rgba(44, 204, 211, 0.6) 65%,
    rgba(44, 204, 211, 0.25) 100%
  );
  border-radius: 2px;
  box-shadow:
    0 0 8px rgba(201, 162, 39, 0.5),
    0 0 20px rgba(201, 162, 39, 0.2);
  animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  from {
    box-shadow: 0 0 6px rgba(201, 162, 39, 0.4), 0 0 16px rgba(201, 162, 39, 0.15);
    opacity: 0.85;
  }
  to {
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.7), 0 0 28px rgba(201, 162, 39, 0.3);
    opacity: 1;
  }
}

.timeline::after {
  content: "";
  position: absolute;
  left: calc(16.666% + 8px);
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0c040 30%, #c9a227 100%);
  box-shadow: 0 0 12px rgba(240, 192, 64, 0.8), 0 0 24px rgba(240, 192, 64, 0.4);
  animation: dotTravel 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes dotTravel {
  0%   { transform: translateX(0); opacity: 1; }
  45%  { transform: translateX(calc(66.666vw - 160px)); opacity: 1; }
  55%  { transform: translateX(calc(66.666vw - 160px)); opacity: 0; }
  56%  { transform: translateX(0); opacity: 0; }
  65%  { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}

.step-no {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 auto 16px;
  position: relative;
  background: linear-gradient(135deg, #fff8e1 0%, #fef3c7 100%);
  color: #92400e;
  border: 2.5px solid rgba(201, 162, 39, 0.35);
  box-shadow:
    0 0 0 6px rgba(201, 162, 39, 0.08),
    0 4px 20px rgba(201, 162, 39, 0.25),
    0 1px 4px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-no::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, 0.18);
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

.step.is-active .step-no {
  background: linear-gradient(135deg, #e0fafa 0%, #ccfbf1 100%);
  color: #0b7a75;
  border-color: rgba(44, 204, 211, 0.4);
  box-shadow:
    0 0 0 6px rgba(44, 204, 211, 0.08),
    0 4px 24px rgba(44, 204, 211, 0.3),
    0 1px 4px rgba(0,0,0,0.08);
}

.step.is-active .step-no::before {
  border-color: rgba(44, 204, 211, 0.22);
}

.step.is-done .step-no {
  background: linear-gradient(135deg, #c9a227, #f0c040);
  color: #ffffff;
  border-color: transparent;
  box-shadow:
    0 4px 20px rgba(201, 162, 39, 0.45),
    0 1px 4px rgba(0,0,0,0.12);
}

.step.is-done .step-no::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.step.is-done .step-no {
  font-size: 0;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px 24px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.8) inset,
    0 8px 32px rgba(180, 140, 60, 0.1),
    0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  transform: translateY(4px) scale(0.97);
}

.step.is-active {
  opacity: 1;
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(44, 204, 211, 0.35);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 2px 0 rgba(255,255,255,1) inset,
    0 20px 60px rgba(44, 204, 211, 0.18),
    0 8px 24px rgba(0,0,0,0.08),
    0 0 0 1px rgba(44, 204, 211, 0.2);
}

.step.is-done {
  opacity: 0.82;
  transform: translateY(0) scale(1);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.8) inset,
    0 8px 32px rgba(201, 162, 39, 0.12),
    0 2px 8px rgba(0,0,0,0.06);
}

.step::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, #c9a227, #f0c040);
  opacity: 0.5;
  transition: opacity 0.4s;
}

.step.is-active::before {
  background: linear-gradient(90deg, #0b7a75, #2cccd3);
  opacity: 1;
  box-shadow: 0 0 12px rgba(44, 204, 211, 0.5);
}

.step.is-done::before {
  background: linear-gradient(90deg, #c9a227, #f0c040);
  opacity: 0.9;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0c2f72;
  margin: 10px 0 8px;
  line-height: 1.35;
  transition: color 0.4s;
}

.step.is-active h3 {
  color: #0b7a75;
  font-size: 1.05rem;
}

.step p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.day {
  display: inline-block;
  margin: 6px 0 4px;
  background: linear-gradient(90deg, #e8fbf9, #d4f5f1);
  color: #0b7a75;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid rgba(11, 122, 117, 0.2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.step.is-active .day {
  background: linear-gradient(90deg, #ccfbf1, #a7f3d0);
  border-color: rgba(11, 122, 117, 0.35);
  box-shadow: 0 2px 8px rgba(44, 204, 211, 0.2);
}

.step:not(.is-active) {
  cursor: pointer;
}
.step:not(.is-active):hover {
  opacity: 0.85;
  transform: translateY(2px) scale(0.99);
}

.guarantee {
  margin-top: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 220, 0.95) 0%,
    rgba(254, 243, 199, 0.90) 50%,
    rgba(255, 248, 220, 0.95) 100%
  );
  border: 1.5px solid rgba(201, 162, 39, 0.35);
  border-radius: 20px;
  padding: 22px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(201, 162, 39, 0.15),
    0 1px 0 rgba(255,255,255,0.9) inset;
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  font-size: 0.95rem;
  font-weight: 700;
  color: #78350f;
  letter-spacing: 0.01em;
}

@keyframes shimmer {
  0%   { background-position: -100% 0; }
  50%  { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.guarantee::before {
  content: "⚡";
  font-size: 2.5rem;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.25;
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}

.guarantee::after {
  content: "⚡";
  font-size: 2.5rem;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.25;
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .timeline::before, .timeline::after { display: none; }
  .step { transform: none !important; opacity: 1 !important; }
  .step.is-active { transform: none !important; border-color: rgba(44,204,211,0.4); }
  .step-no { width: 56px; height: 56px; font-size: 1.1rem; }
  .guarantee { padding: 16px 20px; }
  .guarantee::before, .guarantee::after { display: none; }
}

/* COMPARISON SECTION PREMIUM UPGRADE */
.comparison-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 55% 80% at 90% 50%, rgba(224, 242, 254, 0.85) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(241, 232, 232, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #f6f9ff 0%, #f0f5fb 100%);
}

.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(45deg, rgba(37,99,235,0.025) 25%, transparent 25%,
    transparent 75%, rgba(37,99,235,0.025) 75%);
  background-size: 40px 40px;
  pointer-events: none;
}

.comparison-section .section-inner {
  position: relative;
  z-index: 1;
}

.comparison-section h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  color: #0c2f72 !important;
  line-height: 1.15;
  margin-bottom: 28px;
}

.comparison-section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #2cccd3);
  border-radius: 2px;
  margin-top: 14px;
  box-shadow: 0 2px 10px rgba(37,99,235,0.35);
}

table.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.04),
    0 12px 40px rgba(37,99,235,0.08),
    0 2px 8px rgba(0,0,0,0.06);
  border: none;
  background: transparent;
}

table.compare th {
  padding: 18px 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: none;
}

table.compare th:first-child {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #991b1b !important;
  border-right: 1px solid rgba(220,38,38,0.1);
  border-bottom: 2px solid rgba(220,38,38,0.2);
}

table.compare th:last-child {
  background: linear-gradient(135deg, #0b7a75 0%, #2cccd3 100%);
  color: #ffffff !important;
  border-bottom: none;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,0.15);
}

table.compare tbody tr {
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(8px);
  animation: rowReveal 0.45s ease forwards;
}

table.compare tbody tr:nth-child(1) { animation-delay: 0.05s; }
table.compare tbody tr:nth-child(2) { animation-delay: 0.12s; }
table.compare tbody tr:nth-child(3) { animation-delay: 0.19s; }
table.compare tbody tr:nth-child(4) { animation-delay: 0.26s; }
table.compare tbody tr:nth-child(5) { animation-delay: 0.33s; }
table.compare tbody tr:nth-child(6) { animation-delay: 0.40s; }

table.compare tbody tr:hover td {
  background-color: rgba(37,99,235,0.02);
}

table.compare tbody tr:hover td:first-child {
  background-color: rgba(220,38,38,0.03);
}

table.compare tbody tr:hover td:last-child {
  background-color: rgba(44,204,211,0.04);
}

table.compare td {
  padding: 15px 20px;
  font-size: 0.875rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(226,232,240,0.7);
  vertical-align: middle;
  transition: background 0.2s;
}

table.compare tbody tr:last-child td {
  border-bottom: none;
}

table.compare td:first-child {
  background: rgba(255,245,245,0.7);
  color: #6b3030;
  border-right: 1px solid rgba(220,38,38,0.08);
  font-size: 0.85rem;
}

table.compare td:first-child::before {
  content: "✕ ";
  color: #ef4444;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline;
}

table.compare td:first-child {
  text-indent: 0;
  color: #7a3535;
}

table.compare td:last-child {
  background: rgba(240,253,252,0.8);
  color: #0d5c58;
  font-weight: 600;
  font-size: 0.875rem;
}

table.compare td:last-child::before {
  content: "✓ ";
  color: #0b7a75;
  font-weight: 900;
  font-size: 1rem;
  display: inline;
  text-shadow: 0 0 8px rgba(44,204,211,0.4);
}

table.compare tbody tr:nth-child(even) td:first-child {
  background: rgba(254,242,242,0.9);
}

table.compare tbody tr:nth-child(even) td:last-child {
  background: rgba(236,253,245,0.9);
}

table.compare tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}
table.compare tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}

.comparison-section .card {
  background: #ffffff !important;
  border: none !important;
  border-radius: 24px !important;
  padding: 36px 32px !important;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 24px 64px rgba(37,99,235,0.12),
    0 8px 24px rgba(0,0,0,0.06),
    0 0 0 1px rgba(37,99,235,0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-section .card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 32px 80px rgba(37,99,235,0.16),
    0 12px 32px rgba(0,0,0,0.08),
    0 0 0 1px rgba(37,99,235,0.08) !important;
}

.comparison-section .card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #0e4bb5 0%,
    #2cccd3 50%,
    #c9a227 100%
  );
  border-radius: 24px 24px 0 0;
  opacity: 1 !important;
}

.comparison-section .card::after {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 12rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(37,99,235,0.04);
  pointer-events: none;
  z-index: 0;
  font-weight: 700;
}

.comparison-section .card > div:first-child {
  font-size: 5rem !important;
  line-height: 0.8 !important;
  color: #c9a227 !important;
  opacity: 0.5 !important;
  font-family: Georgia, serif;
  margin-bottom: 4px;
}

.comparison-section blockquote p,
.comparison-section .quote-item p {
  font-size: 1.05rem !important;
  font-style: italic;
  color: #1e293b !important;
  line-height: 1.75 !important;
  position: relative;
  z-index: 1;
}

.comparison-section .card p[style*="f59e0b"],
.comparison-section .card p[style*="#f59e0b"] {
  font-size: 1.15rem !important;
  letter-spacing: 3px;
  color: #f59e0b !important;
  filter: drop-shadow(0 1px 4px rgba(245,158,11,0.4));
  margin-top: 16px !important;
  margin-bottom: 4px !important;
}

.testimonial-avatar,
.comparison-section [style*="border-radius:999px"][style*="background:var(--blue)"] {
  background: linear-gradient(135deg, #0e4bb5, #2cccd3) !important;
  width: 46px !important;
  height: 46px !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3) !important;
}

.testimonial-name,
.comparison-section strong[style*="color:var(--text-primary)"] {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0c2f72 !important;
}

.testimonial-role,
.comparison-section .caption {
  font-size: 0.78rem !important;
  color: #64748b !important;
}

.quote-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #e2e8f0 !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.quote-dot.is-active {
  background: linear-gradient(135deg, #2563eb, #2cccd3) !important;
  width: 22px !important;
  box-shadow: 0 0 8px rgba(37,99,235,0.4) !important;
}

.quote-nav {
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
  margin-top: 16px !important;
}

.testimonial-author,
.comparison-section .card > p:last-child {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 18px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(226,232,240,0.8) !important;
}

.comparison {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 36px !important;
  align-items: start;
}

@media (max-width: 960px) {
  .comparison {
    grid-template-columns: 1fr !important;
  }
}

@keyframes rowReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── COMPARE TRUST BANNER ── */
.compare-trust-banner {
  margin-bottom: 24px;
}

.ctb-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
  box-shadow:
    0 8px 32px rgba(37, 99, 235, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.ctb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctb-image-wrap:hover .ctb-image {
  transform: scale(1.03);
}

.ctb-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(8, 20, 60, 0.55) 0%,
      rgba(8, 20, 60, 0.30) 50%,
      rgba(8, 20, 60, 0.15) 100%
    );
}

.ctb-verified-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ctb-badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ctb-badge-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.ctb-badge-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 2px 0 0;
}

.ctb-trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ctb-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.ctb-pill--blue {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.ctb-pill--teal {
  background: rgba(44, 204, 211, 0.08);
  color: #0b7a75;
  border: 1px solid rgba(44, 204, 211, 0.22);
}

.ctb-pill--gold {
  background: rgba(201, 162, 39, 0.08);
  color: #92400e;
  border: 1px solid rgba(201, 162, 39, 0.22);
}

/* ── TABLE KEYWORD HIGHLIGHTS ── */
strong.hl {
  display: inline;
  font-weight: 800;
  border-radius: 5px;
  padding: 1px 6px;
  font-style: normal;
  letter-spacing: -0.01em;
  transition: filter 0.2s;
}

table.compare tr:hover strong.hl {
  filter: brightness(1.08);
}

strong.hl--teal {
  color: #0b7a75;
  background: rgba(44, 204, 211, 0.12);
  box-shadow: inset 0 -2px 0 rgba(44, 204, 211, 0.3);
}

strong.hl--gold {
  color: #78350f;
  background: rgba(201, 162, 39, 0.12);
  box-shadow: inset 0 -2px 0 rgba(201, 162, 39, 0.35);
}

strong.hl--blue {
  color: #1e40af;
  background: rgba(37, 99, 235, 0.09);
  box-shadow: inset 0 -2px 0 rgba(37, 99, 235, 0.25);
}

/* ── AVANT PAIN WORDS ── */
.pain-word {
  font-weight: 700;
  color: #b91c1c;
  position: relative;
  display: inline;
}

.pain-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 53%;
  height: 1.5px;
  background: rgba(185, 28, 28, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

table.compare tr:hover .pain-word::after {
  transform: scaleX(1);
}

/* ── TABLE HEADERS ── */
table.compare thead th {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: none;
}

table.compare th:first-child {
  background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
  color: #991b1b !important;
  border-right: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 2px solid rgba(220, 38, 38, 0.18);
  border-radius: 16px 0 0 0;
}

table.compare th:last-child {
  background: linear-gradient(135deg, #0b7a75, #2cccd3) !important;
  color: #ffffff !important;
  border-radius: 0 16px 0 0;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,0.12);
}

table.compare td {
  padding: 14px 20px;
  font-size: 0.875rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(226, 232, 240, 0.65);
  vertical-align: middle;
  transition: background 0.2s;
}

table.compare td:first-child {
  background: rgba(254, 247, 247, 0.7);
  color: #6b3030;
  border-right: 1px solid rgba(220, 38, 38, 0.07);
  font-size: 0.85rem;
}

table.compare td:last-child {
  background: rgba(240, 253, 252, 0.75);
  color: #134e4a;
  font-size: 0.875rem;
}

table.compare tbody tr:nth-child(even) td:first-child {
  background: rgba(254, 242, 242, 0.85);
}
table.compare tbody tr:nth-child(even) td:last-child {
  background: rgba(236, 253, 245, 0.85);
}

table.compare tbody tr:hover td:first-child {
  background: rgba(254, 226, 226, 0.7);
}
table.compare tbody tr:hover td:last-child {
  background: rgba(204, 251, 241, 0.7);
}

/* ── COMPARISON SECTION BACKGROUND ── */
.comparison-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.comparison-section::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: 0;
  background-image:
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center 42%;
  opacity: 0.14;
  pointer-events: none;
  filter: blur(8px) grayscale(0.25) saturate(0.85);
  transform: scale(1.04);
}

.comparison-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(254,242,242,0.68) 0%, transparent 65%),
    radial-gradient(ellipse 55% 80% at 88% 50%, rgba(224,252,248,0.68) 0%, transparent 65%),
    linear-gradient(180deg, rgba(246,249,255,0.86) 0%, rgba(240,245,251,0.9) 100%);
  pointer-events: none;
}

.comparison-section .section-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .ctb-image-wrap { height: 130px; }
  .ctb-trust-pills { gap: 6px; }
  .ctb-pill { font-size: 0.68rem; padding: 5px 10px; }
  .ctb-verified-badge { padding: 8px 10px; }
  strong.hl { padding: 1px 4px; }
  table.compare td { padding: 10px 12px; font-size: 0.8rem; }
}

/* Force visible blurred background photo for comparison section */
.comparison-section::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0.22 !important;
  filter: blur(7px) saturate(0.9);
  transform: scale(1.06);
  pointer-events: none;
}

.comparison-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(254,242,242,0.42) 0%, transparent 65%),
    radial-gradient(ellipse 55% 80% at 88% 50%, rgba(224,252,248,0.42) 0%, transparent 65%),
    linear-gradient(180deg, rgba(246,249,255,0.52) 0%, rgba(240,245,251,0.58) 100%) !important;
  pointer-events: none;
}

/* ══════════════════════════════════════
   PRICING SECTION — V3 REDESIGN
══════════════════════════════════════ */

/* Section background */
.pricing-section.dark {
  background:
    radial-gradient(ellipse 70% 50% at 25% 20%, rgba(37,99,235,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 80% 80%, rgba(201,162,39,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #070e20 0%, #0a1835 45%, #060c18 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Subtle grid lines on the dark bg */
.pricing-section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.pricing-section.dark .section-inner,
.pricing-section.dark .pricing-grid {
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(44,204,211,0.65);
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-section.dark h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}

.pricing-subhead {
  color: rgba(210,228,255,0.7) !important;
  font-size: 1rem;
  margin-top: 12px !important;
  line-height: 1.6;
}

.pricing-subhead strong {
  color: #ffffff;
  font-weight: 800;
}

.pricing-roi-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.roi-bar-item {
  font-size: 0.78rem;
  color: rgba(180,210,255,0.55);
}

.roi-bar-sep {
  color: rgba(255,255,255,0.15);
}

/* ── DÉFI 30J ATTRACTION BANNER ── */
.defi-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(201,162,39,0.12) 0%,
    rgba(240,192,64,0.08) 100%
  );
  border: 1px solid rgba(201,162,39,0.28);
  border-radius: 16px;
  padding: 18px 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  box-shadow: 0 4px 24px rgba(201,162,39,0.1), inset 0 1px 0 rgba(240,192,64,0.1);
}

.defi-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.defi-banner-content {
  flex: 1;
  min-width: 200px;
}

.defi-banner-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #f0c040;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.defi-banner-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.defi-banner-sub strong { color: #f0c040; font-weight: 800; }

.defi-strikethrough {
  text-decoration: line-through;
  opacity: 0.45;
  font-size: 0.8rem;
}

.defi-banner-cta {
  background: linear-gradient(135deg, #c9a227, #f0c040);
  color: #1a1000;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  transition: all 0.25s;
}

.defi-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.5);
}

/* ── PRICING CARDS ── */
.pricing-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 20px !important;
  padding: 28px 24px !important;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.pricing-card::before { display: none; }

.pricing-card:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
  transform: translateY(-4px) !important;
}

.pc-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(180,210,255,0.5);
  margin-bottom: 8px;
}

.pc-tag--featured { color: rgba(44,204,211,0.8); }
.pc-tag--academie { color: rgba(201,162,39,0.7); }

.pc-name {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 4px !important;
}

.pc-segment {
  font-size: 0.8rem;
  color: rgba(180,210,255,0.5);
  margin: 0 0 20px !important;
}

.pc-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}

.pc-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pc-price-meta {
  display: flex;
  flex-direction: column;
  padding-bottom: 6px;
}

.pc-currency {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.pc-period {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.pc-price-annual {
  font-size: 0.72rem;
  color: rgba(180,210,255,0.4);
  margin: 0 0 20px !important;
}

.pc-roi {
  color: #34d399;
  font-weight: 800;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-features li {
  font-size: 0.82rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feat-yes {
  color: rgba(200,220,255,0.75);
}

.feat-yes::before {
  content: "✓";
  color: #34d399;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-highlight {
  color: rgba(220,235,255,0.95) !important;
  font-weight: 600;
}

.feat-no {
  color: rgba(180,200,255,0.3);
}

.feat-no::before {
  content: "✕";
  color: rgba(239,68,68,0.4);
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-addon {
  color: rgba(201,162,39,0.8) !important;
  font-weight: 600;
}

.feat-addon::before {
  content: none !important;
}

.pricing-cta {
  display: block;
  text-align: center;
  border-radius: 12px !important;
  padding: 13px 20px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: all 0.25s !important;
}

.pricing-cta--outline {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.75) !important;
}

.pricing-cta--outline:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.28) !important;
  color: #ffffff !important;
  transform: none !important;
}

.pricing-cta--primary {
  background: linear-gradient(135deg, #2563eb, #2cccd3) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4) !important;
}

.pricing-cta--primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37,99,235,0.5) !important;
}

.pc-guarantee {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(240,192,64,0.65);
  margin: 10px 0 0 !important;
}

/* ── FEATURED CARD ÉCOLE — ELEVATED ── */
.pricing-card--ecole {
  background: rgba(37,99,235,0.1) !important;
  border-color: rgba(44,204,211,0.28) !important;
  box-shadow:
    0 0 0 1px rgba(44,204,211,0.15),
    0 24px 64px rgba(37,99,235,0.2),
    0 8px 24px rgba(0,0,0,0.3) !important;
  transform: translateY(-8px) scale(1.02);
}

.pricing-card--ecole:hover {
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow:
    0 0 0 1px rgba(44,204,211,0.3),
    0 32px 80px rgba(37,99,235,0.28),
    0 12px 32px rgba(0,0,0,0.3) !important;
}

.pricing-card--ecole .pc-amount {
  background: linear-gradient(135deg, #60a5fa, #2cccd3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-popular-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #2563eb, #2cccd3) !important;
  color: #ffffff !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  padding: 5px 16px !important;
  border-radius: 50px !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4) !important;
}

/* ── ACADÉMIE card ── */
.pricing-card--academie {
  background: rgba(201,162,39,0.06) !important;
  border-color: rgba(201,162,39,0.18) !important;
}

.pricing-card--academie:hover {
  border-color: rgba(201,162,39,0.32) !important;
  box-shadow: 0 20px 60px rgba(201,162,39,0.12), 0 8px 24px rgba(0,0,0,0.2) !important;
}

/* ── BONUS STACK BAR ── */
.bonus-stack-bar {
  margin-top: 36px;
}

.bsb-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bsb-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(240,192,64,0.8);
  white-space: nowrap;
  flex-shrink: 0;
}

.bsb-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.bsb-items span {
  font-size: 0.72rem;
  color: rgba(180,210,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  padding: 3px 10px;
}

.bsb-total {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(240,192,64,0.7);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── REASSURANCE STRIP ── */
.pricing-reassurance {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pricing-reassurance p {
  font-size: 0.78rem;
  color: rgba(180,210,255,0.4) !important;
  margin: 0 !important;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .pricing-card--ecole {
    transform: none;
    order: -1;
  }
  .pricing-card--ecole:hover { transform: translateY(-4px) scale(1) !important; }
  .defi-banner { flex-direction: column; text-align: center; }
  .bsb-inner { flex-direction: column; text-align: center; }
  .bsb-items { justify-content: center; }
  .pricing-roi-bar { flex-direction: column; gap: 6px; }
}

/* HERO SECTION REDESIGN (V4) */
.hero--split {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  min-height: 720px;
  padding: 40px 0 56px;
}

@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 32px 0 40px;
  }
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(240, 248, 255, 0.92);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-top: 18px;
  letter-spacing: -0.02em;
}

.hero-h1-accent {
  background: linear-gradient(90deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-pain-wrap {
  margin-top: 20px;
  max-width: 520px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(6, 14, 36, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.hero-pain {
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(220, 234, 255, 0.92);
  max-width: none;
}

.hero-pain strong {
  color: #fbbf24;
  font-weight: 700;
}

.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-proof-label {
  font-size: 0.68rem;
  color: rgba(190, 214, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hps-l { font-size: 0.68rem; }
.hm-float-badge { left: -16px; }

.hero-proof-sep {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
  align-self: center;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-hero {
  font-size: 1rem;
  padding: 14px 28px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.55);
}

.hero-cta-secondary {
  font-size: 0.9rem;
  color: rgba(200, 220, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 220, 255, 0.3);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.hero-cta-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-scarcity {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(180, 210, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-guarantee {
  color: #4ade80;
  font-weight: 500;
}

.hero-glass-panel {
  overflow: hidden;
  position: relative;
}

/* Shimmer sweep — flashes once every 6 seconds */
@keyframes glass-shimmer {
  0%, 78%  { transform: translateX(-140%) skewX(-12deg); opacity: 0; }
  80%      { opacity: 1; }
  88%      { transform: translateX(260%) skewX(-12deg); opacity: 0; }
  100%     { transform: translateX(260%) skewX(-12deg); opacity: 0; }
}

.hero-glass-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  transform: translateX(-140%) skewX(-12deg);
  animation: glass-shimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 20;
  border-radius: inherit;
}

.hero-glass-panel > * {
  position: relative;
  z-index: 21;
}

/* ── RIGHT: iPhone frame ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 20px 20px;
}

.iphone-wrap {
  position: relative;
  display: inline-block;
}

/* The phone shell */
.iphone-shell {
  position: relative;
  width: 240px;
  height: 490px;
  background: linear-gradient(160deg, #2a2a2e 0%, #1a1a1e 60%, #111114 100%);
  border-radius: 46px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 0 0 3px #111,
    0 0 0 4px rgba(255,255,255,0.05),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Dynamic island cutout */
.iphone-dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Screen area — fills the shell */
.iphone-screen-area {
  position: absolute;
  inset: 3px;
  border-radius: 43px;
  overflow: hidden;
  background: #0f1729;
}

.iphone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Home bar pill at the bottom */
.iphone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 4px;
  z-index: 10;
}

/* Notification bubble — floats bottom-left */
.iphone-notif {
  position: absolute;
  bottom: -14px;
  left: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 28px rgba(8,18,50,0.18);
  border: 1px solid #e8eeff;
  max-width: 220px;
  z-index: 20;
}
.iphone-notif-icon { font-size: 1rem; flex-shrink: 0; }
.iphone-notif-body { display: flex; flex-direction: column; gap: 1px; }
.iphone-notif-body strong {
  font-size: 0.72rem; color: #0c1c48; font-weight: 700; display: block;
}
.iphone-notif-body span {
  font-size: 0.62rem; color: #6b7280; display: block;
}

/* Live badge — floats top-right */
.iphone-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: rgba(9,17,44,0.90);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100,145,255,0.25);
  border-radius: 999px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  z-index: 20;
}
.iphone-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

/* Mobile */
@media (max-width: 900px) {
  .iphone-shell { width: 200px; height: 410px; border-radius: 38px; }
  .iphone-dynamic-island { width: 74px; height: 22px; top: 10px; }
  .iphone-notif { display: none; }
  .iphone-badge { right: -10px; }
}

/* ══════════════════════════════════════
   PILLARS SECTION — V3
══════════════════════════════════════ */

#piliers.surface {
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(37,99,235,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(44,204,211,0.04) 0%, transparent 55%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  padding: 100px 0 80px;
}

.pillars-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2563eb;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.pillars-h2-accent {
  position: relative;
  color: #0c2f72;
}

.pillars-h2-accent::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #2cccd3);
  border-radius: 2px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* overflow visible so Talibi module shots (bottom-right) aren’t clipped */
#piliers .pillar-panel {
  overflow: visible;
}

.pillar-panel {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow:
    0 4px 6px rgba(0,0,0,0.03),
    0 10px 32px rgba(37,99,235,0.06);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.3s ease;
  cursor: pointer;
  padding: 0;
  border-left: none;
}

.pillar-panel::after { display: none; }

.pillar-panel:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 12px rgba(0,0,0,0.04),
    0 24px 64px rgba(37,99,235,0.14);
}

.pillar-image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: visible;
  margin: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: none;
  background: #0c2f72;
  display: block;
}

.pillar-image-wrap::after { display: none !important; }

.pillar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 24px 24px 0 0;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s ease;
  filter: saturate(1.05) brightness(0.92);
  transform: scale(1.0);
}

.pillar-panel:hover .pillar-photo {
  transform: scale(1.10);
  filter: saturate(1.15) brightness(0.88);
}

/* Talibi module screenshot — bottom-left, slight outward offset so edges don’t feel clipped */
.pillar-module-shot {
  position: absolute;
  left: -10px;
  right: auto;
  bottom: -34px;
  width: auto;
  max-width: min(48%, 210px);
  max-height: 280px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  z-index: 2;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
  border-radius: 14px;
  transform: translateY(0) scale(1);
  transform-origin: left bottom;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  pointer-events: none;
}

/* Override generic `.pillar-image-wrap img` width/height so the mockup isn’t stretched */
#piliers .pillar-image-wrap img.pillar-module-shot {
  width: auto;
  height: auto;
  max-width: min(48%, 210px);
  max-height: 280px;
  object-fit: contain;
  object-position: left bottom;
}

/* Beat older `.pillar-panel:hover .pillar-image-wrap img` so only the hero photo zooms */
.pillar-panel:hover .pillar-image-wrap img.pillar-module-shot {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.38));
}

.pillar-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(8, 18, 48, 0.28) 0%,
      rgba(8, 18, 48, 0.12) 45%,
      rgba(8, 18, 48, 0.35) 100%
    );
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.pillar-panel:hover .pillar-img-overlay {
  background:
    linear-gradient(
      160deg,
      rgba(8, 18, 48, 0.38) 0%,
      rgba(8, 18, 48, 0.15) 45%,
      rgba(8, 18, 48, 0.45) 100%
    );
}

.pillar-img-glow {
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.pillar-panel:hover .pillar-img-glow { opacity: 0.55; }

.pillar-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.pillar-panel:hover .pillar-badge {
  transform: translateY(-2px);
}

/* ── PILLAR 1: Administration — Teal ── */
.pillar-1 { border-top: 3px solid #0b7a75; }
.pillar-1:hover { border-color: #0b7a75; box-shadow: 0 24px 64px rgba(11,122,117,0.15) !important; }
.pillar-1 .pillar-badge { background: rgba(11,122,117,0.75); border-color: rgba(44,204,211,0.4); }
.pillar-1 .pillar-img-glow { background: #0b7a75; }
.pillar-1 .pillar-feats li::before { color: #0b7a75; }
.pillar-1 .pillar-link { color: #0b7a75; }
.pillar-1 .pillar-link:hover { color: #2cccd3; }
.pillar-1:hover h3 { color: #0b7a75; }

/* ── PILLAR 2: Suivi — Indigo/Purple ── */
.pillar-2 { border-top: 3px solid #4f46e5; }
.pillar-2:hover { border-color: #4f46e5; box-shadow: 0 24px 64px rgba(79,70,229,0.15) !important; }
.pillar-2 .pillar-badge { background: rgba(79,70,229,0.75); border-color: rgba(129,140,248,0.4); }
.pillar-2 .pillar-img-glow { background: #4f46e5; }
.pillar-2 .pillar-feats li::before { color: #4f46e5; }
.pillar-2 .pillar-link { color: #4f46e5; }
.pillar-2 .pillar-link:hover { color: #818cf8; }
.pillar-2:hover h3 { color: #4f46e5; }

/* ── PILLAR 3: Pédagogie — Blue ── */
.pillar-3 { border-top: 3px solid #2563eb; }
.pillar-3:hover { border-color: #2563eb; box-shadow: 0 24px 64px rgba(37,99,235,0.15) !important; }
.pillar-3 .pillar-badge { background: rgba(37,99,235,0.75); border-color: rgba(96,165,250,0.4); }
.pillar-3 .pillar-img-glow { background: #2563eb; }
.pillar-3 .pillar-feats li::before { color: #2563eb; }
.pillar-3 .pillar-link { color: #2563eb; }
.pillar-3 .pillar-link:hover { color: #60a5fa; }
.pillar-3:hover h3 { color: #2563eb; }

/* ── PILLAR 4: Communication — Emerald ── */
.pillar-4 { border-top: 3px solid #059669; }
.pillar-4:hover { border-color: #059669; box-shadow: 0 24px 64px rgba(5,150,105,0.15) !important; }
.pillar-4 .pillar-badge { background: rgba(5,150,105,0.75); border-color: rgba(52,211,153,0.4); }
.pillar-4 .pillar-img-glow { background: #059669; }
.pillar-4 .pillar-feats li::before { color: #059669; }
.pillar-4 .pillar-link { color: #059669; }
.pillar-4 .pillar-link:hover { color: #34d399; }
.pillar-4:hover h3 { color: #059669; }

.pillar-card-body {
  padding: 24px 28px 28px;
  background: #ffffff;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  margin-top: 0;
}

#piliers .pillar-card-body {
  padding-top: 44px;
  border-radius: 0 0 24px 24px;
}

.pillar-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0c2f72;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.pillar-card-body > p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 16px;
}

.pillar-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(226,232,240,0.7);
  padding-top: 14px;
}

.pillar-feats li {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pillar-feats li::before {
  content: "✓";
  font-weight: 900;
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  opacity: 0.75;
  transition: opacity 0.25s, gap 0.25s;
}

.pillar-link:hover {
  opacity: 1;
  gap: 8px;
}

/* Tune each photo to show the most relevant part */
.pillar-1 .pillar-photo { object-position: center 45%; }
.pillar-2 .pillar-photo { object-position: center 25%; }
.pillar-3 .pillar-photo { object-position: center 30%; }
.pillar-4 .pillar-photo { object-position: center 20%; }

.pillars-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(37,99,235,0.06) 0%,
    rgba(44,204,211,0.05) 50%,
    rgba(201,162,39,0.05) 100%
  );
  border: 1px solid rgba(37,99,235,0.1);
}

.pillars-cta .pillars-cta__btn {
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(201,162,39,0.35);
  transition: all 0.3s ease;
}

.pillars-cta .pillars-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,162,39,0.48);
}

@media (max-width: 900px) {
  .pillar-image-wrap { height: 220px; }
  .pillar-module-shot {
    left: -6px;
    right: auto;
    bottom: -28px;
    max-width: min(52%, 180px);
    max-height: 240px;
  }
  #piliers .pillar-image-wrap img.pillar-module-shot {
    max-width: min(52%, 180px);
    max-height: 240px;
  }
  .pillar-panel:hover .pillar-image-wrap img.pillar-module-shot {
    transform: translateY(-4px) scale(1.05);
  }
  .pillar-card-body { padding: 20px 22px 24px; }
  .pillar-card-body h3 { font-size: 1.1rem; }
  .pillars-cta { padding: 20px 16px; }
}

/* Final polish overrides */
.lead-input {
  width: 100%;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #444;
  background: #2d2d2d;
  color: #fff;
}

table.compare,
.comparison-section .compare {
  border: 0;
  border-radius: 0;
}

.solution-bridge {
  background: linear-gradient(135deg, #0c2f72 0%, #0e4bb5 40%, #0b7a75 100%);
  padding: 80px 0;
}

.pillar-panel:hover { transform: scale(1.015); }

/* Comparison section conversion redesign */
.comparison-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.comparison-v2 {
  max-width: 980px;
  margin: 0 auto;
}

.comparison-v2 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 24px;
}

.comparison-v2-kicker {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  margin-bottom: 8px;
}

.comparison-v2-col-heads {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.comparison-v2-col-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-v2-col-head--before {
  color: #991b1b;
}

.comparison-v2-col-head--after {
  color: #065f46;
}

.comparison-v2-rows {
  display: flex;
  flex-direction: column;
}

.comparison-v2-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.comparison-v2-before,
.comparison-v2-after {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  line-height: 1.3;
}

.comparison-v2-before {
  background: #fef2f2;
  color: #991b1b;
}

.comparison-v2-after {
  background: #ecfdf5;
  color: #065f46;
}

.comparison-v2-after strong {
  font-weight: 700;
}

.comparison-v2-arrow {
  color: #cbd5f5;
  font-size: 18px;
  opacity: 0.6;
  flex-shrink: 0;
  position: relative;
}

.comparison-v2-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  right: -16px;
  height: 1px;
  background: #cbd5f5;
  opacity: 0.6;
  transform: translateY(-50%);
  z-index: -1;
}

.comparison-v2-hl {
  background: #d1fae5;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
}

.comparison-v2-testimonial {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.comparison-v2-testimonial-kicker {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px;
}

.comparison-v2-quote-icon {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 2.2rem;
  color: #cbd5f5;
  line-height: 1;
}

.comparison-v2-testimonial .quote-rotator {
  min-height: 0;
}

.comparison-v2-testimonial .quote-item {
  opacity: 1;
  transform: none;
  position: relative;
  inset: auto;
  pointer-events: auto;
}

.comparison-v2-testimonial .quote-item p {
  margin: 10px 0 16px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #0f172a;
  font-style: italic;
}

.comparison-v2-highlight {
  font-weight: 700;
  color: #2563eb;
}

/* Lightweight ROI preview on landing */
.roi-preview-section {
  background: #f8fafc;
}

.roi-preview-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.roi-preview-container h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  text-align: left;
}

.roi-preview-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 10px;
  text-align: left;
}

.roi-preview-metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.roi-preview-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.roi-preview-number {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
}

.roi-preview-label {
  font-size: 13px;
  color: #64748b;
}

.roi-preview-separator {
  width: 1px;
  height: 16px;
  background: #e2e8f0;
  display: none;
}

.roi-preview-cta {
  margin-top: 12px;
  margin-left: 0;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  border: 1px solid #1d4ed8;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.roi-preview-cta span {
  display: inline-block;
  transition: transform 180ms ease;
}

.roi-preview-cta:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
  transform: translateY(-1px);
}

.roi-preview-cta:hover span {
  transform: translateX(2px);
}

.roi-preview-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.22);
}

.roi-preview-context {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
  text-align: left;
}

.roi-preview-copy {
  text-align: left;
}

.roi-preview-visual {
  background: transparent;
  border-radius: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.roi-visual-origin {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 8px;
}

.roi-time-stage {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  margin: 0 0 4px;
}

.roi-time-row {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.roi-time-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.roi-time-bar {
  height: 14px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.roi-time-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.roi-time-bar--before span {
  background: #fca5a5;
}

.roi-time-bar--after span {
  background: #86efac;
}

.roi-visual-note {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
  width: 100%;
}

@media (max-width: 760px) {
  .roi-preview-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .roi-preview-metrics {
    gap: 10px;
  }
  .roi-preview-separator {
    display: none;
  }
  .roi-preview-cta {
    margin-left: 0;
  }
  .roi-preview-visual {
    order: 2;
  }
}

@media (max-width: 900px) {
  .comparison-v2 h2 {
    font-size: 30px;
  }
  .comparison-v2-row {
    flex-direction: column;
    align-items: stretch;
  }
  .comparison-v2-arrow {
    align-self: center;
  }
}

/* 48h timeline conversion redesign */
.timeline48-section {
  background-color: #f8fafc;
  padding-top: 80px;
  padding-bottom: 80px;
}

.timeline48-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline48-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 40px;
}

.timeline48-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}

.timeline48-line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
}

.timeline48-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: timeline48In 520ms ease forwards;
}

.timeline48-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #cbd5f5;
}

.timeline48-card--2 {
  background: #f8faff;
  animation-delay: 150ms;
}

.timeline48-card--2::before {
  background: #3b82f6;
}

.timeline48-card--3 {
  background: #ecfdf5;
  border: 1px solid #10b981;
  transform: translateY(12px) scale(1.03);
  animation-delay: 300ms;
}

.timeline48-card--3::before {
  background: #10b981;
}

.timeline48-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.93rem;
  margin: 0 auto 14px;
}

.timeline48-node--1 {
  background: #e2e8f0;
  color: #475569;
}

.timeline48-node--2 {
  background: #dbeafe;
  color: #2563eb;
}

.timeline48-node--3 {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}

.timeline48-day {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline48-card h3 {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.timeline48-card p {
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.timeline48-arrow {
  align-self: center;
  color: #cbd5f5;
  opacity: 0.6;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 28px;
}

.timeline48-guarantee {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
}

.timeline48-guarantee-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
}

.timeline48-guarantee p {
  margin: 0;
  font-size: 16px;
  color: #92400e;
}

@keyframes timeline48In {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .timeline48-title {
    font-size: 32px;
  }
  .timeline48-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline48-line,
  .timeline48-arrow {
    display: none;
  }
}

/* Static 4-pillars conversion layout */
#piliers.surface {
  background: #ffffff;
}

#piliers .pillars-header h2 {
  color: #0c2f72;
}

#piliers .pillars-tension-line {
  margin-top: 10px;
  font-size: 0.83rem;
  color: #64748b;
}

#piliers .pillars-grid-static {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

#piliers .pillar-card-static {
  position: relative;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  padding: 18px 20px 16px;
  overflow: hidden;
  min-height: 302px;
}

#piliers .pillar-card-static::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pillar-bg);
  background-size: 78% auto;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.72;
  filter: saturate(1) contrast(1);
  transition: opacity 220ms ease, filter 220ms ease;
  z-index: 0;
}

#piliers .pillar-card-static::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.86) 52%,
    rgba(255, 255, 255, 0.64) 100%
  );
  z-index: 0;
  transition: background 220ms ease;
}

#piliers .pillar-card-static:hover::before {
  opacity: 0;
  filter: saturate(1) contrast(1);
}

#piliers .pillar-card-static:hover::after {
  background: rgba(255, 255, 255, 1);
}

#piliers .pillar-card-art,
#piliers .pillar-card-tag,
#piliers .pillar-card-outcome,
#piliers .pillar-card-bullets,
#piliers .pillar-card-link {
  position: relative;
  z-index: 1;
}

#piliers .pillar-card-art {
  width: 152px;
  max-width: 46%;
  height: auto;
  display: block;
  margin: 0 0 14px;
  object-fit: contain;
  transform-origin: top left;
  transition: transform 220ms ease;
}

#piliers .pillar-card-static:hover .pillar-card-art {
  transform: scale(1.12);
}

#piliers .pillar-placeholder {
  width: 152px;
  max-width: 46%;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  background: #f3f4f6;
  border-radius: 12px;
  color: #6b7280;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

#piliers .pillar-placeholder__icon { font-size: 48px; line-height: 1; }

#piliers .pillar-card-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #0e4bb5;
  margin-bottom: 7px;
}

#piliers .pillar-card--green .pillar-card-tag { color: #059669; }
#piliers .pillar-card--alert .pillar-card-tag { color: #ca8a04; }
#piliers .pillar-card--blue .pillar-card-tag { color: #0e4bb5; }

#piliers .pillar-card-outcome {
  margin: 0 0 10px;
  font-size: 1.34rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #020617;
  max-width: none;
  text-wrap: pretty;
}

#piliers .pillar-card-bullets {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 6px;
}

#piliers .pillar-card-bullets li {
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.32;
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: none;
}

#piliers .pillar-card-bullets li::before {
  content: "•";
  font-size: 1rem;
  line-height: 1;
  color: #0e4bb5;
}

#piliers .pillar-card--green .pillar-card-bullets li::before { color: #059669; }
#piliers .pillar-card--alert .pillar-card-bullets li::before { color: #ca8a04; }

#piliers .pillar-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0e4bb5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#piliers .pillar-card-proof {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

#piliers .pillar-card--green .pillar-card-link { color: #059669; }
#piliers .pillar-card--alert .pillar-card-link { color: #ca8a04; }

#piliers .pillars-final-cta {
  margin-top: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  padding: 24px;
  text-align: center;
}

#piliers .pillars-final-cta-title {
  margin: 0 0 12px;
  font-weight: 800;
  color: #0f172a;
  font-size: 1.16rem;
}

#piliers .pillars-final-cta-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

@media (max-width: 1400px) {
  #piliers .pillars-grid-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  #piliers .pillars-grid-static {
    grid-template-columns: 1fr;
  }
  #piliers .pillar-card-static {
    min-height: 0;
  }
  #piliers .pillar-card-outcome {
    max-width: 100%;
  }
  #piliers .pillar-card-bullets li {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   PILLAR SLIDESHOW — redesign 2026
═══════════════════════════════════════════════ */

/* Wrapper — replaces .pillars-grid */
.pillar-slider {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

/* Individual slide */
.pillar-slide {
  display: none;
  flex-direction: row;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04),
              0 12px 40px rgba(37,99,235,0.09);
  background: #ffffff;
  height: 420px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 400ms cubic-bezier(0.4,0,0.2,1),
              transform 400ms cubic-bezier(0.4,0,0.2,1);
}

.pillar-slide.is-active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.pillar-slide.is-leaving {
  display: flex;
  opacity: 0;
  transform: translateX(-12px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

/* Photo side */
.pillar-slide-photo {
  position: relative;
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  height: 100%;
}

.pillar-slide-photo .pillar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
  transition: transform 6s ease;
  transform: scale(1.03);
}

.pillar-slide.is-active .pillar-slide-photo .pillar-photo {
  transform: scale(1.0);
}

.pillar-slide-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.06) 55%, transparent 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
}

.pillar-phone-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 152px;
  height: 308px;
  border-radius: 24px;
  padding: 9px;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 3;
}

.pillar-phone-frame::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.18);
}

.pillar-phone-shot {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #0b1220;
}

/* Badge */
.pillar-slide-panel .pillar-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  right: auto;
  z-index: 12;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 5px 13px;
  border-radius: 50px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.pillar-slide.pillar-1 .pillar-badge { background: rgba(11,122,117,0.80); }
.pillar-slide.pillar-2 .pillar-badge { background: rgba(79,70,229,0.80); }
.pillar-slide.pillar-3 .pillar-badge { background: rgba(14,75,181,0.80); }
.pillar-slide.pillar-4 .pillar-badge { background: rgba(5,150,105,0.80); }

/* White panel side */
.pillar-slide-panel {
  position: relative;
  width: 48%;
  height: 100%;
  padding: 40px 52px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  overflow: visible;
}

/* Floating module screenshot */
.pillar-module-float {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  width: 148px;
  filter: drop-shadow(0 8px 28px rgba(37,99,235,0.20));
  pointer-events: auto;
  z-index: 5;
  border-radius: 14px;
  transform-origin: center;
  animation: pillarFloat 5.2s ease-in-out infinite;
  transition: transform 320ms cubic-bezier(0.4,0,0.2,1),
              filter 320ms cubic-bezier(0.4,0,0.2,1);
}

.pillar-slide:hover .pillar-module-float {
  transform: translateY(-4px) scale(1.045);
  filter: drop-shadow(0 12px 30px rgba(37,99,235,0.25));
}

.pillar-module-float:hover {
  transform: translateY(-6px) scale(1.12);
  filter: drop-shadow(0 16px 34px rgba(37,99,235,0.3));
}

@keyframes pillarFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* Text content */
.pillar-slide-panel h3 {
  font-size: 1.28rem;
  font-weight: 700;
  color: #0c2f72;
  line-height: 1.28;
  letter-spacing: -0.022em;
  margin: 58px 0 12px;
}

.pillar-slide-panel > p {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.74;
  margin: 0 0 20px;
}

/* Feature list — reuse .pillar-feats, override colors per pillar */
.pillar-slide.pillar-1 .pillar-feats li::before { color: #0b7a75; }
.pillar-slide.pillar-2 .pillar-feats li::before { color: #4f46e5; }
.pillar-slide.pillar-3 .pillar-feats li::before { color: #0e4bb5; }
.pillar-slide.pillar-4 .pillar-feats li::before { color: #059669; }

/* CTA link */
.pillar-slide.pillar-1 .pillar-link { color: #0b7a75; }
.pillar-slide.pillar-2 .pillar-link { color: #4f46e5; }
.pillar-slide.pillar-3 .pillar-link { color: #0e4bb5; }
.pillar-slide.pillar-4 .pillar-link { color: #059669; }

/* ── Navigation arrows ── */
.pillar-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0c2f72;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pillar-nav:hover {
  border-color: #0e4bb5;
  box-shadow: 0 4px 14px rgba(14,75,181,0.18);
  transform: translateY(calc(-50% - 1px));
}

.pillar-nav-prev { left: -19px; }
.pillar-nav-next { right: -19px; }

/* ── Dot indicators ── */
.pillar-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.pillar-dot.is-active {
  background: #0e4bb5;
  transform: scale(1.5);
  box-shadow: 0 0 0 3px rgba(14,75,181,0.18);
}

/* Per-pillar active dot color */
.pillar-slider[data-active="0"] .pillar-dot.is-active { background: #0b7a75; box-shadow: 0 0 0 3px rgba(11,122,117,0.18); }
.pillar-slider[data-active="1"] .pillar-dot.is-active { background: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.18); }
.pillar-slider[data-active="2"] .pillar-dot.is-active { background: #0e4bb5; box-shadow: 0 0 0 3px rgba(14,75,181,0.18); }
.pillar-slider[data-active="3"] .pillar-dot.is-active { background: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,0.18); }

/* ── Mobile ── */
@media (max-width: 700px) {
  .pillar-slide {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
  }
  .pillar-slide-photo {
    width: 100%;
    height: 220px;
  }
  .pillar-slide-panel {
    width: 100%;
    padding: 32px 24px 32px;
  }
  .pillar-module-float {
    top: 12px;
    right: 12px;
    left: auto;
    width: 98px;
  }
  .pillar-slide-panel .pillar-badge {
    top: 16px;
    left: 16px;
    right: auto;
  }
  .pillar-phone-frame {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 112px;
    height: 224px;
    border-radius: 18px;
    padding: 7px;
  }
  .pillar-phone-shot {
    border-radius: 13px;
  }
  .pillar-nav-prev { left: -12px; }
  .pillar-nav-next { right: -12px; }
  .pillar-slide-panel h3 {
    font-size: 1.1rem;
    margin-top: 52px;
  }
}

/* PRICING FUNNEL REFOCUS */
.pricing-section.dark .pricing-header {
  max-width: 760px;
}

.pricing-section.dark {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.pricing-section.dark .pricing-funnel-grid {
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-section.dark .pricing-card--side {
  opacity: 0.7;
}

.pricing-section.dark .pricing-card--side .btn {
  display: none;
}

.pricing-side-link {
  margin-top: auto;
  color: rgba(186, 203, 228, 0.82);
  font-size: 0.85rem;
  text-decoration: none;
}

.pricing-side-link:hover {
  color: #dbeafe;
}

.pricing-section.dark .pricing-card--funnel-main {
  transform: scale(1.05);
  border: 2px solid #2563eb !important;
  box-shadow: 0 24px 46px rgba(37, 99, 235, 0.3);
  opacity: 1;
}

.pricing-section.dark .pricing-card--funnel-main:hover {
  transform: translateY(-4px) scale(1.05) !important;
}

.pricing-section.dark .pricing-card--funnel-main .pc-name {
  font-size: 1.35rem !important;
  line-height: 1.3;
  margin-bottom: 16px !important;
}

.pc-price-day {
  margin: 2px 0 14px;
  font-size: 0.86rem;
  color: #64748b;
}

.pc-roi-block {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.pc-roi-block p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.94);
}

.pc-roi-block p + p {
  margin-top: 6px;
}

.pc-roi-block strong {
  color: #22c55e;
  font-weight: 800;
}

.pc-risk-block {
  margin-top: 14px;
  margin-bottom: 14px;
  background: #fef3c7;
  color: #78350f;
  border-radius: 12px;
  padding: 12px;
}

.pc-risk-block p {
  margin: 0;
  font-size: 0.88rem;
  color: #78350f !important;
}

.pc-risk-title {
  font-weight: 800;
  margin-bottom: 4px !important;
}

.pc-cta-subtext {
  margin: 8px 0 0;
  text-align: center;
  color: rgba(186, 203, 228, 0.75);
  font-size: 0.8rem;
}

.pricing-section.dark .pricing-card--funnel-main .pricing-cta {
  margin-top: 2px;
}

@media (max-width: 980px) {
  .pricing-section.dark .pricing-funnel-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section.dark .pricing-card--funnel-main {
    transform: none;
  }

  .pricing-section.dark .pricing-card--funnel-main:hover {
    transform: translateY(-4px) !important;
  }

  .pricing-section.dark .pricing-card--side {
    opacity: 0.85;
  }
}

.pricing-teaser {
  text-align: center;
}

.pricing-value-snapshot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pvs-left {
  font-size: 22px;
  font-weight: 600;
  color: #e2e8f0;
}

.pvs-arrow {
  font-size: 22px;
  color: #64748b;
}

.pvs-right {
  font-size: 22px;
  font-weight: 700;
  color: #22c55e;
}

.pricing-teaser-bullets {
  margin-top: 16px;
}

.pricing-teaser-bullets p {
  margin: 0;
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

.pricing-teaser-cta {
  margin-top: 24px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(to right, #2563eb, #06b6d4);
  color: #fff !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-teaser-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.pricing-teaser-trust {
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
}

/* FEATURES PAGE — SHOWCASE REBUILD */
.features-page {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-hero {
  padding: 86px 0 52px;
}

.features-hero-inner {
  max-width: 760px;
  text-align: center;
}

.features-hero-inner h1 {
  color: #0f172a;
  font-size: clamp(2.1rem, 4.6vw, 3.25rem);
  letter-spacing: -0.03em;
}

.features-hero-inner p {
  margin: 12px auto 20px;
  max-width: 680px;
  color: #475569;
  line-height: 1.65;
}

.features-showcase-block {
  margin-top: 100px;
}

.features-showcase-block--alt {
  background: #f8fafc;
}

.features-block-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.features-block-grid--reverse .features-shot-wrap {
  order: 2;
}

.features-block-grid--reverse .features-copy {
  order: 1;
}

.features-shot-wrap {
  display: flex;
  justify-content: center;
}

.features-shot {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  display: block;
}

.features-device-wrap {
  justify-content: center;
}

.features-device {
  width: min(100%, 230px);
  border-radius: 36px;
  padding: 9px;
  background: linear-gradient(165deg, #111827 0%, #374151 100%);
  border: 1px solid rgba(15, 23, 42, 0.25);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.2);
  position: relative;
}

.features-device::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 18px;
  border-radius: 14px;
  background: #0b1220;
}

.features-device-shot {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.features-copy h2 {
  margin-top: 10px;
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 18ch;
}

.features-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.features-label--blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.features-label--teal {
  background: #ccfbf1;
  color: #0f766e;
}

.features-label--indigo {
  background: #e0e7ff;
  color: #4338ca;
}

.features-label--green {
  background: #dcfce7;
  color: #15803d;
}

.features-punchline {
  margin-top: 10px;
  color: #1e293b;
  font-weight: 600;
}

.features-bullets {
  margin: 12px 0 0;
  padding-left: 1rem;
  color: #334155;
}

.features-bullets li {
  margin-bottom: 6px;
}

.features-proof {
  margin-top: 12px;
  color: #64748b;
  font-size: 0.88rem;
}

.features-mini-cta {
  margin-top: 12px;
  display: inline-block;
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.features-mini-cta:hover {
  color: #1e40af;
}

@media (max-width: 900px) {
  .features-showcase-block {
    margin-top: 76px;
  }

  .features-block-grid,
  .features-block-grid--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-block-grid--reverse .features-shot-wrap,
  .features-block-grid--reverse .features-copy {
    order: initial;
  }

  .features-copy h2 {
    max-width: 100%;
  }
}

/* FEATURES PILLAR CARDS — PREMIUM INTERACTIVE */
.features-showcase-block .section-inner {
  max-width: 1120px;
}

.features-pillar-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.features-pillar-card--reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.features-pillar-card--reverse .features-media {
  order: 2;
}

.features-pillar-card--reverse .features-copy {
  order: 1;
}

.features-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.features-media {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.features-pillar-card--reverse .features-media {
  justify-content: flex-start;
}

.features-device-frame {
  position: relative;
  width: min(100%, 214px);
  border-radius: 38px;
  padding: 8px;
  background: linear-gradient(170deg, #0f172a 0%, #334155 100%);
  border: 1px solid rgba(15, 23, 42, 0.28);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
  z-index: 2;
  transition: transform 260ms ease;
}

.features-device-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 18px;
  border-radius: 14px;
  background: #020617;
}

.features-device-video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
  background: #0f172a;
}

.features-pillar-art {
  position: absolute;
  width: min(44%, 170px);
  right: 16px;
  bottom: 18px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
  z-index: 3;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.features-pillar-card:hover .features-pillar-art {
  transform: translateY(-2px) scale(1.12);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.2);
}

.features-pillar-card:hover .features-device-frame {
  transform: scale(1.03);
}

.features-copy {
  max-width: 520px;
}

.features-copy .features-bullets li {
  max-width: 28ch;
}

@media (max-width: 900px) {
  .features-pillar-card,
  .features-pillar-card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
  }

  .features-pillar-card--reverse .features-media,
  .features-pillar-card--reverse .features-copy {
    order: initial;
  }

  .features-media {
    min-height: 280px;
    justify-content: center;
  }

  .features-pillar-art {
    width: 132px;
    right: 8px;
    bottom: 8px;
  }
}

/* ═══════════════════════════════════
   TARIFS PAGE — v2 2026
═══════════════════════════════════ */

/* ROI proof bar */
.roi-proof-bar {
  display: flex;
  background: #0c2f72;
  color: white;
}
.roi-proof-bar__cell {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.roi-proof-bar__cell:last-child { border-right: none; }
.roi-proof-bar__num {
  font-size: 2rem;
  font-weight: 800;
  color: #f0c040;
  line-height: 1;
  display: block;
}
.roi-proof-bar__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
  display: block;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 4px;
  background: white;
  gap: 4px;
  margin: 0 auto 8px;
}
.billing-toggle button {
  padding: 8px 22px;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #64748b;
  transition: all 0.2s;
}
.billing-toggle button.is-active {
  background: #0c2f72;
  color: white;
}
.billing-saving-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Pricing card */
.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.pricing-card--featured {
  border-color: #c9a227;
  border-width: 2px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04),
              0 16px 48px rgba(201,162,39,0.12);
  transform: scale(1.02);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.pricing-badge--popular {
  background: #fef3c7;
  color: #92400e;
}
.pricing-badge--starter { background: #f0fdf4; color: #166534; }
.pricing-badge--enterprise { background: #ede9fe; color: #5b21b6; }

.pricing-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0c2f72;
  margin: 0 0 4px;
}
.pricing-limit {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0 0 20px;
}
.pricing-price {
  margin: 0 0 6px;
}
.pricing-price__amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0c2f72;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price__currency {
  font-size: 1rem;
  font-weight: 600;
  color: #0c2f72;
  vertical-align: super;
  font-size: 0.9rem;
  margin-left: 2px;
}
.pricing-price__period {
  font-size: 0.8rem;
  color: #64748b;
}
.pricing-annual-note {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 20px;
  display: none;
}
.pricing-annual-note.is-visible { display: block; }

/* ROI callout inside card */
.pricing-roi-box {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 16px 0;
  font-size: 0.8rem;
  color: #78350f;
  line-height: 1.5;
}
.pricing-roi-box strong { color: #92400e; }

/* Feature list */
.pricing-feats {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}
.pricing-feats li {
  font-size: 0.82rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.pricing-feats li .feat-check { color: #0b7a75; font-weight: 900; flex-shrink: 0; }
.pricing-feats li .feat-check--royal { color: #0e4bb5; }
.pricing-feats li .feat-check--indigo { color: #4f46e5; }
.pricing-feats li .feat-no { color: #94a3b8; flex-shrink: 0; }
.pricing-feats li.feat-missing { color: #94a3b8; }

.pricing-bonus-note {
  font-size: 0.78rem;
  color: #c9a227;
  font-weight: 600;
  padding: 10px 0 0;
  border-top: 1px dashed #fde68a;
  margin-top: 12px;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.compare-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: #0c2f72;
  border-bottom: 2px solid #e2e8f0;
  background: #f8fafc;
}
.compare-table th:first-child { width: 38%; }
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  vertical-align: middle;
}
.compare-table tr.talibi-row td {
  background: rgba(14,75,181,0.04);
  font-weight: 600;
  color: #0c2f72;
  border-left: 3px solid #0e4bb5;
}
.compare-table tr.talibi-row td:first-child {
  border-left: 3px solid #0e4bb5;
}
.compare-footnote {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 10px;
}

/* Bonus stack grid */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 22px;
  position: relative;
}
.bonus-card__num {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0e4bb5;
  margin-bottom: 6px;
}
.bonus-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0c2f72;
  margin: 0 0 4px;
}
.bonus-card__value {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f0fdf4;
  color: #166534;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}
.bonus-card__desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 8px;
}
.bonus-card__why {
  font-size: 0.75rem;
  color: #64748b;
  font-style: italic;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
  margin: 0;
}
.bonus-total-bar {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-left: 4px solid #c9a227;
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  color: #92400e;
  font-size: 1rem;
}

/* Triple guarantee */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .guarantee-grid { grid-template-columns: 1fr; } }

.guarantee-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #0e4bb5;
  border-radius: 16px;
  padding: 24px;
}
.guarantee-card:nth-child(2) { border-top-color: #0b7a75; }
.guarantee-card:nth-child(3) { border-top-color: #059669; }
.guarantee-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.guarantee-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0c2f72;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.guarantee-card__text {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.guarantee-risk-bar {
  background: #0c2f72;
  color: white;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Attraction offer (Défi) */
.defi-banner {
  background: linear-gradient(135deg, #0c2f72 0%, #0e4bb5 60%, #0b7a75 100%);
  border-radius: 24px;
  padding: 40px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.defi-banner h2 {
  color: #f0c040;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.defi-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin: 0 0 24px;
}
.defi-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.defi-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.defi-steps li::before {
  content: "□";
  font-size: 1.1rem;
  color: #f0c040;
  flex-shrink: 0;
}

/* Scarcity strip */
.scarcity-strip {
  background: white;
  border-left: 4px solid #c9a227;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(201,162,39,0.1);
}
.scarcity-strip p {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}
.scarcity-strip strong { color: #0c2f72; }
.scarcity-strip a {
  color: #0e4bb5;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .scarcity-strip { flex-direction: column; align-items: flex-start; }
}

.pricing-popular-note {
  margin: -8px 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #92400e;
}
.pricing-addon-note {
  font-size: 0.78rem;
  color: #475569;
  margin: 8px 0 0;
}
.pricing-under-cta {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 10px;
}
.pricing-card.is-recommended-by-range {
  box-shadow: 0 0 0 2px rgba(14, 75, 181, 0.22), 0 20px 40px rgba(14, 75, 181, 0.12);
}

@media (max-width: 720px) {
  .roi-proof-bar { flex-wrap: wrap; }
  .roi-proof-bar__cell {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .roi-proof-bar__cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .roi-proof-bar__cell:nth-last-child(-n+2) { border-bottom: none; }
  .defi-banner { padding: 26px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — COMPREHENSIVE OVERHAUL
   Target: 900px → 768px → 640px → 480px → 375px + landscape
   ═══════════════════════════════════════════════════════════════ */

/* ─── BASELINE GLOBALS ────────────────────────────────────────── */

/* Responsive images: safety net for any img without explicit sizing */
img { max-width: 100%; height: auto; }

/* Prevent horizontal overflow site-wide */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* iOS: font-size ≥16px on all inputs prevents auto-zoom on focus */
@media (max-width: 900px) {
  input,
  textarea,
  select {
    font-size: max(1rem, 16px) !important;
  }
}

/* ─── TOUCH TARGETS (WCAG 2.5.5 — 44×44px minimum) ─────────── */
@media (max-width: 900px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  select,
  textarea {
    min-height: 48px;
    padding: 12px 14px;
  }

  /* Buttons: all interactive buttons get 44px minimum */
  .btn,
  .pricing-cta,
  .transport-cta,
  .features-mini-cta,
  .quiz-choice,
  .billing-toggle button,
  .pricing-toggle button {
    min-height: 44px;
  }

  /* Quote dots: bigger hit area */
  .quote-dot {
    width: 16px;
    height: 16px;
  }

  /* Pillar dots */
  .pillar-dot {
    width: 14px;
    height: 14px;
  }
}

/* ─── COMPARISON TABLES ─────────────────────────────────────── */

/* Smooth iOS scroll on any overflow:auto container */
[style*="overflow:auto"],
[style*="overflow: auto"] {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

@media (max-width: 640px) {
  /* Reduce the main compare table min-width so it's not too wide */
  table.compare { min-width: 400px; font-size: 0.78rem; }
  table.compare th, table.compare td { padding: 10px 10px; }

  /* Comparison table in tarifs.html: keep the overflow wrapper readable */
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
}

/* ─── STATS SHOWCASE ────────────────────────────────────────── */
@media (max-width: 480px) {
  .ss-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ss-card { padding: 16px 10px 12px; }
  .ss-card--featured { grid-column: 1 / -1; padding: 16px; gap: 12px; }
  .ss-card--featured .ss-number .n { font-size: 1.8rem; }
  .ss-number .n { font-size: 1.8rem; }
}

/* ─── HERO SECTION ──────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Extra bottom padding to clear the sticky CTA bar (~70px) */
  .hero-grid { padding-bottom: 120px !important; }

  /* Glass panel: tighter on small screens */
  .hero-glass-panel { padding: 22px 16px 20px; border-radius: 18px; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.1rem); }
  .hero-pain { font-size: 0.9rem; line-height: 1.6; }
  .hero-badge { font-size: 0.72rem; padding: 5px 10px; }

  /* Proof strip: tighter */
  .hero-proof { padding: 10px 8px; gap: 0; border-radius: 12px; }
  .hps-n { font-size: 1.15rem; }
  .hps-l { font-size: 0.58rem; }
  .hero-proof-div { margin: 0 1px; }

  /* CTA row: full width stacked */
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-btn-main,
  .hero-btn-ghost { width: 100%; text-align: center; }

  /* Guarantee line: smaller */
  .hero-guarantee { font-size: 0.76rem; }
}

/* ─── 375px — iPhone SE & small Android ────────────────────── */
@media (max-width: 375px) {
  section { padding: 40px 0; }
  .section-inner, .footer-inner, .header-inner { width: calc(100% - 20px); }

  h2 { font-size: clamp(1.45rem, 8.5vw, 1.85rem); }
  h3 { font-size: 1.05rem; }

  .card { padding: 18px 14px; }
  .pillar-card-body { padding: 12px; }
  .pillar-image-wrap { height: 150px; }

  .hero-glass-panel { padding: 18px 14px 16px; }
  .hero-title { font-size: clamp(1.6rem, 9vw, 1.9rem); }
  .hero-pain { font-size: 0.85rem; }

  /* FAQ */
  .faq-trigger { padding: 14px 12px; font-size: 0.88rem; min-height: 48px; }
  .faq-content { padding: 0 12px; }
  .faq-item.open .faq-content { padding-bottom: 12px; }

  /* Guarantee strip */
  .guarantee-risk-bar { font-size: 0.72rem; padding: 10px 12px; }
  .guarantee-card { padding: 16px 14px; }

  /* Defi banner */
  .defi-banner { padding: 18px 14px; border-radius: 14px; }
  .defi-banner h2 { font-size: 1.1rem; }
  .defi-steps li { font-size: 0.78rem; }

  /* Bonus */
  .bonus-card { padding: 14px 12px; }
  .bonus-card__title { font-size: 0.92rem; }
  .bonus-card__desc { font-size: 0.78rem; }

  /* Timeline */
  .step { padding: 14px 12px; }
  .step-no { width: 48px; height: 48px; font-size: 1rem; }

  /* Stats row */
  .stat-cell { padding: 14px 10px; }
  .stat-cell .n { font-size: 1.5rem; }
  .stat-cell .l { font-size: 0.68rem; }

  /* Pillar CTA */
  .pillars-cta { padding: 20px 14px; }
  .pillars-cta__btn { padding: 14px 28px; font-size: 0.95rem; }

  /* Solution bridge icon */
  .solution-bridge .section-inner::before { width: 52px; height: 52px; font-size: 1.5rem; }

  /* Scarcity strip */
  .scarcity-strip { padding: 14px 16px; }
}

/* ─── TRANSPORT SECTION ──────────────────────────────────────── */
@media (max-width: 640px) {
  .transport-section { padding: 72px 0; }
  .transport-inner { gap: 32px; }
  .transport-phone { width: 200px; height: 410px; border-radius: 30px; }
  .transport-cta { padding: 13px 24px; font-size: 0.9rem; }
  .tfl-icon { width: 32px; height: 32px; font-size: 0.95rem; flex-shrink: 0; }
  .transport-feature-list li { gap: 10px; }
}
@media (max-width: 375px) {
  .transport-phone { width: 170px; height: 350px; border-radius: 26px; }
  .transport-cta { width: 100%; justify-content: center; }
}

/* ─── FEATURES PAGE — img sizing override ────────────────────── */
/* Override hardcoded width/height HTML attributes on feature images */
.features-pillar-art { max-width: 100%; height: auto; }
.features-media img { max-width: 100%; height: auto; }

/* ─── FEATURES PAGE ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .features-pillar-card { gap: 20px; padding: 18px 14px; }
  .features-media { min-height: 240px; }
  .features-device-frame { border-radius: 28px; }
  .features-device-video { border-radius: 22px; }
  .features-pillar-art { width: min(38%, 120px); }
  .features-copy h2 { font-size: 1.4rem; }
  .features-copy .features-bullets li { max-width: 100%; font-size: 0.88rem; }
  .features-hero-inner h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}

/* ─── PRICING / TARIFS PAGE ─────────────────────────────────── */
@media (max-width: 640px) {
  /* Billing toggle: full width */
  .billing-toggle { width: 100%; max-width: none; }
  .billing-toggle button { flex: 1; text-align: center; justify-content: center; }

  /* Range slider: full width */
  .range-wrap input[type="range"] { width: 100%; }

  /* Pricing toggle in tarifs.html header */
  .pricing-toggle { width: 100%; max-width: 280px; }
  .pricing-toggle button { flex: 1; }

  /* ROI proof bar cells */
  .roi-proof-bar__num { font-size: 1.6rem; }
  .roi-proof-bar__label { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  /* Featured pricing card: no scale transform */
  .pricing-card--featured { transform: none; }

  /* Pricing card padding */
  .pricing-card { padding: 22px 16px 18px; border-radius: 16px; }
  .pricing-price__amount { font-size: 2.2rem; }

  /* Compare-table wrapper: hint that it scrolls */
  [style*="overflow:auto"] .compare-table {
    min-width: 500px;
  }
}

/* ─── ROI CALCULATOR ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .roi-slider-group { gap: 6px; }
  .roi-label { font-size: 0.88rem; }
  .roi-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .roi-summary { min-width: unset; }
  .quiz-choices { max-width: 100%; }
  .quiz-email-form { flex-direction: column; }
  .quiz-email-form input { min-width: 100%; }
}

/* ─── TIMELINE ANIMATION ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hide the travelling dot on mobile — it misbehaves */
  .timeline::after { display: none; }
  /* Simplify the glowing line */
  .timeline::before { animation: none; opacity: 0.6; }
}

/* ─── FLIP CARDS (index.html problem section) ──────────────────── */
@media (max-width: 768px) {
  /* Fixed height that accommodates content on phone screens */
  .flip-card { height: min(300px, 52vh); }
}
@media (max-width: 480px) {
  /* On small phones: auto height with fixed min, 3D flip still works */
  .flip-card { height: 260px; }
  .flip-hint { font-size: 0.78rem; }
  .flip-back-hint { font-size: 0.78rem; }
}
@media (max-width: 375px) {
  .flip-card { height: 240px; }
}

/* ─── FINAL CTA SECTION ─────────────────────────────────────── */
@media (max-width: 480px) {
  .final-cta-section { padding: 52px 0; }
  .final-cta-primary { width: 100%; height: 52px; }
  .final-cta-layout { gap: 20px; }
  .final-cta-visual { display: none; } /* Hide phone mockup on very small screens */
}

/* ─── LEAD MAGNET FORM ────────────────────────────────────────── */
@media (max-width: 480px) {
  #lead-form { flex-direction: column; align-items: stretch; gap: 10px; }
  #lead-form input[type="email"] { width: 100%; min-width: unset; min-height: 48px; padding: 12px 16px; }
  #lead-form .btn { width: 100%; min-height: 48px; }
}

/* ─── CONTACT FORM ────────────────────────────────────────────── */
@media (max-width: 640px) {
  #contact-form .grid-2 { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  #site-footer {
    padding: 26px 0 22px;
  }
  .footer-inner {
    gap: 18px;
  }
}

/* ─── SCROLLBAR: hide on touch devices ─────────────────────────── */
@media (max-width: 900px) {
  *::-webkit-scrollbar { display: none; }
  * { scrollbar-width: none; }
}

/* ─── LANDSCAPE ORIENTATION — short viewport ──────────────────── */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 600px) {
  .hero-bg-section { min-height: auto; height: auto; }
  .hero-grid { padding: 20px 20px 80px; gap: 0; }
  .hero-title { font-size: 1.7rem; }
  .hero-pain-wrap, .hero-proof { display: none; }
  .hero-glass-panel { padding: 16px 18px; }
  .hero-actions { margin-top: 12px; }
  .hero-guarantee { display: none; }
}

/* ─── STICKY MOBILE CTA: safe-area aware ─────────────────────── */
@media (max-width: 900px) {
  .sticky-mobile-cta {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 10px 16px env(safe-area-inset-bottom, 10px);
    background: linear-gradient(to top, rgba(8, 14, 30, 0.97) 70%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* ─── MOBILE OVERLAY NAV: overflow scroll ─────────────────────── */
@media (max-width: 900px) {
  .mobile-overlay {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 64px);
  }
}

/* ─── DASHBOARD: sidebar collapse ──────────────────────────────── */
@media (max-width: 768px) {
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
}

/* ─── ANIMATIONS: reduce on mobile for perf/battery ─────────────── */
@media (max-width: 900px) {
  @keyframes mockupFloat { 0%, 100% { transform: none; } }
  .hero-glass-panel::after { display: none; } /* no shimmer on mobile */
}

/* ─── ACCES PAGE ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .acces-card { padding: 28px 16px 22px; border-radius: 20px; }
  .acces-card input, .acces-card button { min-height: 48px; }
}

/* ─── SUPERADMIN PAGE ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .auth-box { padding: 24px 16px !important; border-radius: 18px !important; }
  .auth-box input, .auth-box button { min-height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   FONCTIONNALITÉS PAGE — Value Equation + Quick Strip
═══════════════════════════════════════════════════════════════ */

/* ── Hero quick-proof strip ── */
.feat-quick-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.feat-quick-strip__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(37, 99, 235, 0.12);
  gap: 3px;
}

.feat-quick-strip__item:last-child {
  border-right: none;
}

.feat-quick-strip__item strong {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
}

.feat-quick-strip__item span {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  line-height: 1.3;
}

/* ── Value equation grid (4 cards per pillar) ── */
.feat-value-eq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 16px;
}

.feat-val-card {
  border-radius: 14px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feat-val-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

/* Outcome — blue */
.feat-val-card--outcome {
  background: #eff6ff;
  border-color: #bfdbfe;
}

/* Proof — green */
.feat-val-card--proof {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

/* Time — amber */
.feat-val-card--time {
  background: #fffbeb;
  border-color: #fde68a;
}

/* Effort — indigo */
.feat-val-card--effort {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.feat-val-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

.feat-val-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1;
}

.feat-val-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
  margin: 0;
}

/* ── Responsive: mobile ── */
@media (max-width: 900px) {
  .feat-quick-strip {
    flex-wrap: wrap;
    border-radius: 14px;
  }

  .feat-quick-strip__item {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  }

  .feat-quick-strip__item:nth-child(2n) {
    border-right: none;
  }

  .feat-quick-strip__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .feat-value-eq {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .feat-val-card {
    padding: 11px 10px 10px;
  }

  .feat-val-text {
    font-size: 0.78rem;
  }
}

/* ============================================================
   SECTION 0 — LEAD MAGNET TILE (APPLE-LIKE HERO TILE)
   ============================================================ */

.leadmagnet-tile {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #020617;
}

.leadmagnet-media,
.leadmagnet-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.leadmagnet-bg {
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.02);
  opacity: 0.42;
}

.leadmagnet-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 65% at 50% 22%, rgba(37, 99, 235, 0.26), transparent 70%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.30) 0%, rgba(2, 6, 23, 0.82) 70%, rgba(2, 6, 23, 0.96) 100%);
}

.leadmagnet-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 48px 24px;
}

.leadmagnet-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.leadmagnet-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 700;
}

.leadmagnet-sub {
  margin: 18px auto 0;
  max-width: 700px;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.leadmagnet-ctas {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.leadmagnet-btn-primary,
.leadmagnet-btn-secondary {
  position: relative;
  z-index: 4;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.leadmagnet-btn-primary {
  background: #0071e3;
  color: #fff;
}

.leadmagnet-btn-primary:hover {
  background: #0062c3;
}

.leadmagnet-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}

.leadmagnet-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
}

/* Full-tile clickable layer inspired by apple.com tile-link */
.leadmagnet-tile .tile-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 768px) {
  .leadmagnet-tile {
    min-height: 540px;
  }

  .leadmagnet-content {
    padding: 40px 18px;
  }

  .leadmagnet-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .leadmagnet-btn-primary,
  .leadmagnet-btn-secondary {
    text-align: center;
    width: 100%;
  }
}

/* If lead magnet is present, keep section 2 in dark-on-light contrast */
.leadmagnet-tile + .hero-main {
  background: var(--surface);
  min-height: auto;
  padding: 36px 24px 64px;
}

.leadmagnet-tile + .hero-main .hero-badge-pill {
  display: none;
}

.leadmagnet-tile + .hero-main .hero-h1 {
  color: #111;
  font-size: clamp(30px, 4.6vw, 46px);
  margin-bottom: 18px;
}

.leadmagnet-tile + .hero-main .hero-sub,
.leadmagnet-tile + .hero-main .hero-reassurance {
  color: rgba(17, 17, 17, 0.72);
}

.leadmagnet-tile + .hero-main .hero-sub {
  margin-bottom: 24px;
  font-size: clamp(16px, 2vw, 20px);
}

.leadmagnet-tile + .hero-main .hero-ctas {
  gap: 10px;
  margin-bottom: 16px;
}

.leadmagnet-tile + .hero-main .hero-btn-primary,
.leadmagnet-tile + .hero-main .hero-btn-secondary {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.leadmagnet-tile + .hero-main .hero-btn-secondary {
  color: #111;
  border-color: rgba(17, 17, 17, 0.28);
}

.leadmagnet-tile + .hero-main .hero-btn-secondary:hover {
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.44);
}

.leadmagnet-tile + .hero-main .rentree-strip {
  background: rgba(17, 17, 17, 0.06);
  border-top-color: rgba(17, 17, 17, 0.14);
  color: rgba(17, 17, 17, 0.78);
}

@media (max-width: 768px) {
  .leadmagnet-tile + .hero-main {
    padding: 28px 18px 56px;
  }

  .leadmagnet-tile + .hero-main .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */

.hero-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 56px 24px 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind text — depth without noise */
.hero-main::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge-pill {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  display: inline-block;
  position: relative;
}

.hero-h1 {
  font-size: clamp(30px, 5.2vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 28px;
  max-width: 820px;
  letter-spacing: -0.025em;
  position: relative;
}

.hero-h1-highlight {
  color: #c9a227;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255,255,255,0.7);
  margin: 0 0 44px;
  font-weight: 400;
  position: relative;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}

.hero-btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.hero-btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11,122,117,0.35);
}

.hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
  transition: var(--transition);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.hero-reassurance {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 0;
}

/* Rentrée strip — anchored to bottom of hero section */
.rentree-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(201, 162, 39, 0.13);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
  padding: 10px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.rentree-strip[hidden] { display: none; }

.rentree-strip-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}
.rentree-strip-link:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 768px) {
  .hero-main { padding: 40px 20px 80px; }
  .hero-h1 { font-size: clamp(24px, 7vw, 38px); }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
}

/* ============================================================
   SECTION 2 — PREMIUM SHOWCASE
   ============================================================ */

.premium-showcase {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 90px 24px 0;
  background: var(--surface);
  text-align: center;
  overflow: hidden;
}

/* Shared eyebrow style — reused across showcase sections */
.showcase-eyebrow {
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.premium-showcase-title {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 700px;
}

.premium-showcase-sub {
  font-size: clamp(16px, 2vw, 21px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 520px;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CTA group — shared across showcase sections */
.showcase-ctas {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 56px;
}

.premium-showcase .showcase-ctas {
  margin-bottom: 38px;
}

.showcase-link {
  font-size: 17px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.showcase-link:hover { text-decoration: underline; }

.showcase-cta-btn {
  font-size: 17px;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.showcase-cta-btn:hover {
  background: var(--teal);
  color: var(--white);
}

/* Visual area — fills bottom of section, image bleeds down */
.premium-visual {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.showcase-img-premium {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.showcase-placeholder {
  aspect-ratio: 16/9;
  background: #1a1a2e;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 960px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .premium-showcase { padding: 70px 20px 0; }
  .showcase-ctas { flex-direction: column; gap: 16px; }
  .premium-showcase-title { font-size: clamp(26px, 7vw, 40px); }
}

/* ============================================================
   SECTION 3 — DASHBOARD SHOWCASE
   ============================================================ */

.dashboard-showcase {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 90px 24px 0;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.dashboard-showcase-title {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 680px;
}

.dashboard-showcase-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 520px;
}

.dashboard-visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-img-dashboard {
  width: 76%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

/* Mobile */
@media (max-width: 768px) {
  .dashboard-showcase { padding: 70px 16px 0; min-height: auto; }
  .dashboard-showcase-title { font-size: clamp(20px, 5.8vw, 32px); }
  .showcase-img-dashboard { width: 88%; border-radius: 0; }
}

/* ============================================================
   SECTION 4 — MODULES GRID
   ============================================================ */

.modules-section {
  background: var(--surface);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.modules-header {
  padding: 0 24px;
  margin-bottom: 56px;
}

.modules-title {
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.modules-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--text-secondary);
}

/* 3-column grid with 2px joints — Apple joined tiles effect */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto 48px;
}

/* Individual module card */
.module-card {
  padding: 64px 40px 0;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

/* Card accent colors */
.transport-card  { background: #0a2540; }
.cantine-card    { background: #2d1a00; }
.paiements-card  { background: #0d3320; }

.module-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.module-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.module-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.55;
}

.module-price {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 28px;
}

/* Module CTAs — adapted for dark backgrounds */
.module-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

/* Homepage variant: modules cards with title + one link only */
body.page-home .modules-grid .module-card {
  min-height: 430px;
  padding: 36px 32px 0;
}

body.page-home .modules-grid .module-title {
  margin-bottom: 10px;
}

body.page-home .modules-grid .module-ctas {
  margin-bottom: 10px;
}

body.page-home .modules-grid .module-visual {
  margin-top: 10px;
}

body.page-home .modules-grid {
  margin-bottom: 20px;
}

body.page-home .modules-section {
  padding-bottom: 28px;
}

.module-link {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
}
.module-link:hover { text-decoration: underline; }

.module-cta-btn {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 9px 22px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.module-cta-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
}

/* Visual area — image bleeds off bottom */
.module-visual {
  margin-top: auto;
  width: 100%;
}
.module-visual img {
  width: 80%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Offer reminder pill */
.modules-offer-reminder {
  padding: 0 24px;
  text-align: center;
}

.modules-offer-pill {
  display: inline-block;
  background: rgba(11,122,117,0.10);
  border: 1px solid rgba(11,122,117,0.25);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 26px;
  border-radius: var(--radius-full);
}

/* Mobile: stack to single column */
@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .module-card {
    min-height: 440px;
    padding: 50px 32px 0;
  }
  .modules-section { padding: 80px 0 60px; }
}

/* ============================================================
   SECTION 5 — WIN BACK + TRIAL DUO
   ============================================================ */

.offers-duo-section {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 580px;
  overflow: hidden;
}

/* LEFT CARD — white, elegant, spacious */
.win-back-card {
  background: var(--white);
  padding: 28px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* RIGHT CARD — dark slate, structured */
.trial-card {
  background: #1d2b3a;
  padding: 28px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Divider */
.offer-duo-divider {
  background: var(--border);
  width: 1px;
}

/* Shared eyebrow */
.offer-duo-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.trial-eyebrow {
  color: rgba(255,255,255,0.45);
}

/* Left title — dark text */
.offer-duo-title {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.trial-title {
  color: var(--white);
}

/* Left subtitle — secondary text */
.offer-duo-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.trial-sub {
  color: rgba(255,255,255,0.6);
}

/* Scarcity note (left card only) */
.offer-duo-detail {
  font-size: 13px;
  color: rgba(0,0,0,0.35);
  margin-bottom: 32px;
}

/* Win Back CTA button — uses teal */
.win-back-cta-btn {
  font-size: 15px;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.win-back-cta-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.win-back-visual {
  margin-top: 48px;
}
.win-back-visual img {
  width: 100%;
  max-width: 480px;
  display: block;
}

/* Trial actions list — 4 weekly rows */
.trial-actions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trial-actions-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  line-height: 1.4;
}

.trial-week {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--teal);
  background: rgba(11,122,117,0.18);
  border-radius: 4px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Trial CTAs — adapted for dark background */
.trial-link {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 500;
}
.trial-link:hover { text-decoration: underline; }

.trial-cta-btn {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.trial-cta-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

/* Mobile: stack cards vertically */
@media (max-width: 900px) {
  .offers-duo-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .offer-duo-divider {
    width: 100%;
    height: 1px;
  }
  .win-back-card,
  .trial-card {
    padding: 24px 32px 42px;
    min-height: unset;
  }
  .offer-duo-title { font-size: clamp(22px, 6vw, 34px); }
}

/* ============================================================
   SECTION 6 — ULTRA TEASER
   ============================================================ */

.ultra-teaser-section {
  background: #000000;
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle purple halo — the only visual element */
.ultra-teaser-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(92,45,139,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.ultra-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ultra-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}

.ultra-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.ultra-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* Teaser chips */
.ultra-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.ultra-chip {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  background: rgba(255,255,255,0.03);
}

.ultra-price-hint {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
}

.ultra-ambition {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

/* Waitlist form */
.ultra-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}

.ultra-email-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.ultra-email-input::placeholder { color: rgba(255,255,255,0.28); }
.ultra-email-input:focus { border-color: rgba(255,255,255,0.38); }

.ultra-submit-btn {
  padding: 14px 28px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.ultra-submit-btn:hover { opacity: 0.86; }
.ultra-submit-btn:active { opacity: 0.75; }

.ultra-form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  margin-bottom: 28px;
}

.ultra-learn-link {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.ultra-learn-link:hover { color: rgba(255,255,255,0.65); }

/* Confirmation state — shown via JS after successful submit */
.ultra-confirm {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0 auto;
}
.ultra-confirm span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 600px) {
  .ultra-teaser-section { padding: 90px 20px; }
  .ultra-title { font-size: clamp(30px, 8vw, 44px); }
  .ultra-form { flex-direction: column; align-items: stretch; }
  .ultra-email-input { width: 100%; }
  .ultra-submit-btn { width: 100%; }
}

/* ============================================================
   SECTION 7 — TRUST SIGNAL
   ============================================================ */

.trust-final-section {
  background: var(--surface);
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.trust-final-text {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.trust-whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.trust-whatsapp-link:hover { text-decoration: underline; }

/* Mobile: stack items */
@media (max-width: 480px) {
  .trust-final-text { flex-direction: column; gap: 10px; }
}

/* ============================================================
   GLOBAL RESPONSIVE — homepage sections
   ============================================================ */

@media (max-width: 768px) {
  .premium-showcase,
  .dashboard-showcase {
    padding-bottom: 0;
  }

  .site-main {
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .win-back-card,
  .trial-card {
    padding: 60px 40px;
  }
}

@media (max-width: 380px) {
  .ultra-teaser-section::before {
    width: 320px;
    height: 320px;
  }
}

/* ============================================================
   ULTRA READABILITY TUNING (Prompt 07)
   ============================================================ */

.ultra-teaser-section::before {
  background: radial-gradient(circle, rgba(92,45,139,0.10) 0%, transparent 65%);
}

.ultra-title {
  text-shadow: 0 2px 22px rgba(0,0,0,0.55);
}

.ultra-sub {
  color: rgba(255,255,255,0.68);
}

.ultra-chip {
  color: rgba(255,255,255,0.62);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
}

.ultra-price-hint {
  color: rgba(255,255,255,0.52);
}

.ultra-form-note,
.ultra-learn-link {
  color: rgba(255,255,255,0.44);
}

/* Hard override in case another rule/theme flips it */
.ultra-teaser-section {
  background: #000000 !important;
}

/* ============================================================
   PAGE CONFIGURATEUR — Full CSS
   All rules scoped to .page-configurateur or .config-* 
   to avoid bleeding into other pages.
   ============================================================ */

/* ── Body reset for this page ─────────────────────────────── */
.page-configurateur {
  background: #ffffff;
  /* Disable the body::before and body::after dot grid motifs
     so this page is a clean white canvas */
}
.page-configurateur::before,
.page-configurateur::after {
  display: none;
}

/* ── Config header ────────────────────────────────────────── */
.config-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.config-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}
.config-logo-img {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
}

.config-help-link {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}
.config-help-link strong { color: #25D366; }
.config-help-link:hover strong { text-decoration: underline; }

/* ── Main layout ──────────────────────────────────────────── */
.config-main {
  padding-top: 52px;
  min-height: 100vh;
  background: #ffffff;
}

/* ── Step indicator ───────────────────────────────────────── */
.config-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 0;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: #e5e5e7;
  color: var(--text-secondary);
  transition: background 0.25s, color 0.25s;
  font-family: inherit;
}

.step-dot.active .step-num {
  background: var(--teal);
  color: #ffffff;
}

.step-dot.done .step-num {
  background: var(--teal);
  color: #ffffff;
  font-size: 0; /* hide number, show check via ::before */
}
.step-dot.done .step-num::before {
  content: '✓';
  font-size: 13px;
}

.step-label {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.step-dot.active .step-label,
.step-dot.done .step-label {
  color: var(--teal);
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 1px;
  background: #e5e5e7;
  margin-bottom: 18px;
  max-width: 56px;
}

/* ── Two-column body ──────────────────────────────────────── */
.config-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  align-items: start;
}

.config-decisions {
  padding-right: 48px;
}

/* ── Step sections ────────────────────────────────────────── */
.config-step {
  margin-bottom: 56px;
}

/* Locked state — not yet revealed */
.config-step.locked {
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

/* Revealed animation */
.config-step.revealed {
  animation: stepReveal 0.35s ease forwards;
}

@keyframes stepReveal {
  from { opacity: 0.35; transform: translateY(10px); pointer-events: none; }
  to   { opacity: 1;    transform: translateY(0);    pointer-events: auto; }
}

.step-header { margin-bottom: 28px; }

.step-number-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.step-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.step-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.step-compare-link {
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
}
.step-compare-link a {
  color: var(--text-secondary);
  text-decoration: none;
}
.step-compare-link a:hover { text-decoration: underline; }

/* ── PLAN CARDS (Étape 1) ─────────────────────────────────── */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.plan-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  background: #ffffff;
  outline: none;
}

.plan-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(11,122,117,0.10);
}

.plan-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(11,122,117,0.25);
}

.plan-card.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,122,117,0.14);
}

/* Premium card — pre-highlighted */
.plan-card--featured {
  border-color: var(--teal);
  background: #f0f9f6;
}

.plan-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Ultra card — dark mysterious */
.plan-card--ultra {
  background: #0D1B2A;
  border-color: #0D1B2A;
  color: white;
}
.plan-card--ultra .plan-name,
.plan-card--ultra .plan-tagline,
.plan-card--ultra .plan-price-from,
.plan-card--ultra .plan-price-amount,
.plan-card--ultra .plan-price-unit { color: rgba(255,255,255,0.85); }
.plan-card--ultra .plan-includes li { color: rgba(255,255,255,0.6); }
.plan-card--ultra .plan-includes li::before { color: #2E9E7E; }
.plan-card--ultra .plan-card-footer { border-color: rgba(255,255,255,0.1); }
.plan-card--ultra:hover { border-color: var(--teal); }

/* Plan card internals */
.plan-card-top { margin-bottom: 18px; }

.plan-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.plan-tagline { font-size: 13px; color: var(--text-secondary); }

.plan-price-display { margin-bottom: 20px; }

.plan-price-from {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 2px;
}

.plan-price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.plan-price-unit {
  font-size: 13px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.plan-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-includes li {
  font-size: 13px;
  color: #3d3d3f;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.plan-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
}

.plan-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.plan-note { font-size: 12px; color: #9e9e9e; }
.plan-badge-unavailable { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── MODULE TOGGLES (Étape 2) ─────────────────────────────── */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.module-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #ffffff;
  transition: background 0.15s;
  gap: 16px;
}

.module-row:not(:last-child) { border-bottom: 1px solid #f0f0f2; }
.module-row.active { background: #f0f9f6; }

.module-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.module-row-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.module-row-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.module-row-desc { font-size: 13px; color: var(--text-secondary); }

.module-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 160px;
}

/* iOS-style toggle switch */
.module-toggle {
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: #e5e5e7;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
  outline: none;
  padding: 0;
}

.module-toggle[aria-checked="true"] { background: var(--teal); }
.module-toggle:disabled { cursor: not-allowed; opacity: 0.35; }

.module-toggle:focus-visible {
  box-shadow: 0 0 0 3px rgba(11,122,117,0.3);
}

.module-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.module-toggle[aria-checked="true"] .module-toggle-thumb {
  transform: translateX(18px);
}

/* Module price display */
.module-price-display { text-align: right; }
.module-price-value { font-size: 13px; color: var(--text-secondary); }

.module-price-calculated {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.module-free-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Student count select */
.module-students-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.module-students-label { font-size: 11px; color: var(--text-secondary); }

.module-students-select {
  font-size: 13px;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: white;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}

/* 2-pour-3 banner */
.deux-pour-trois-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0f9f6;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-top: 12px;
  animation: bannerPop 0.3s ease;
}

@keyframes bannerPop {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.dpt-icon {
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.dpt-text { font-size: 14px; color: var(--text-primary); line-height: 1.4; }

/* Premium modules included notice */
.modules-included-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.modules-included-check {
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.modules-included-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.modules-included-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Continue button */
.step-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  background: transparent;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
  font-family: inherit;
}

.step-continue-btn:hover {
  background: var(--teal);
  color: white;
}

/* ── EXTRAS (Étape 3) ─────────────────────────────────────── */
.extras-list {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  gap: 16px;
  transition: background 0.15s;
}

.extra-row:not(:last-child) { border-bottom: 1px solid #f0f0f2; }
.extra-row.active { background: #f0f9f6; }

/* Locked extras (premium-only when standard plan) */
.extra-row--premium-only .extra-row-name { color: #9e9e9e; }
.extra-row--premium-only .extra-row-desc { color: #b0b0b0; }

/* When premium plan: un-grey premium-only extras */
.plan-premium .extra-row--premium-only .extra-row-name { color: var(--text-primary); }
.plan-premium .extra-row--premium-only .extra-row-desc { color: var(--text-secondary); }

.extra-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.extra-row-info { display: flex; flex-direction: column; gap: 3px; }
.extra-row-name { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.extra-row-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

.extra-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 140px;
  text-align: right;
}

.extra-price { font-size: 14px; font-weight: 600; color: var(--text-primary); }

.extra-included-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: rgba(11,122,117,0.1);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.extra-upgrade-cta {
  font-size: 12px;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
}
.extra-upgrade-cta:hover { text-decoration: underline; }

.extras-upgrade-note {
  background: #fffbf0;
  border: 1px solid #e8d5a3;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 20px;
}

.extras-upgrade-text { font-size: 13px; color: var(--text-secondary); margin: 0; }
.extras-upgrade-text a { color: var(--teal); font-weight: 600; text-decoration: none; }
.extras-upgrade-text a:hover { text-decoration: underline; }

/* ── ENGAGEMENT CARDS (Étape 4) ───────────────────────────── */
.engagement-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.engagement-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  background: white;
  outline: none;
}

.engagement-card:hover { border-color: var(--teal); }
.engagement-card:focus-visible { box-shadow: 0 0 0 3px rgba(11,122,117,0.25); }
.engagement-card.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,122,117,0.12);
}

.engagement-card--featured {
  border-color: var(--teal);
  background: #f0f9f6;
}

.engagement-card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.engagement-card-header {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.engagement-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.engagement-tag { font-size: 13px; color: var(--text-secondary); }

.engagement-price { margin-bottom: 8px; }

.engagement-price-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.engagement-price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.engagement-annual-total {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.engagement-saving-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(11,122,117,0.12);
  border-radius: var(--radius-full);
  padding: 2px 10px;
}

.engagement-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.engagement-includes li {
  font-size: 13px;
  color: #3d3d3f;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.engagement-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
}

.engagement-options {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d2e8e3;
}

.annual-option-label {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 8px;
}

.annual-module-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  background: white;
  font-family: inherit;
}

/* Payment split options */
.annual-payment-options {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.annual-payment-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 14px;
}

.annual-payment-choices { display: flex; flex-direction: column; gap: 12px; }

.annual-payment-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.annual-payment-choice input[type="radio"] {
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.choice-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--text-primary);
}
.choice-text span { font-size: 13px; color: var(--text-secondary); }

/* Payment method note */
.payment-method-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.payment-note-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.payment-note-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.payment-note-text strong { color: var(--text-primary); }

/* (Remaining receipt + modal + responsive CSS continues below in Prompt 12) */

/* ============================================================
   PAGE VALEUR — valeur.html
   Coller à la fin de style.css — NE PAS MODIFIER l'existant
   ============================================================ */


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.valeur-hero {
  padding: 100px 24px 60px;
  background: #ffffff;
  text-align: center;
}

.valeur-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.valeur-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  margin-bottom: 20px;
  display: block;
}

.valeur-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.valeur-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
}


/* ----------------------------------------------------------
   STICKY NAV
   ---------------------------------------------------------- */

.valeur-sticky-nav {
  position: sticky;
  top: 52px; /* hauteur du header global */
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e5e7;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

.valeur-sticky-nav.visible {
  transform: translateY(0);
}

.valeur-sticky-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.valeur-sticky-nav-inner::-webkit-scrollbar { display: none; }

.vnav-link {
  flex-shrink: 0;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #6e6e73;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.vnav-link:hover { color: #1d1d1f; }

.vnav-link.active {
  color: #1A6B5A;
  border-bottom-color: #1A6B5A;
}


/* ----------------------------------------------------------
   SECTIONS — SYSTÈME ALTERNÉES
   ---------------------------------------------------------- */

.valeur-section {
  padding: 100px 24px;
  scroll-margin-top: 100px;
}

/* Alternance de fond sur les sections STANDARD
   Les sections modules et process surclassent via leur ID */
.valeur-section:nth-child(odd)  { background: #ffffff; }
.valeur-section:nth-child(even) { background: #f5f5f7; }

.valeur-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}

/* COPY */
.valeur-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.valeur-section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.valeur-section-body {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #3d3d3f;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* FEATURE LIST */
.valeur-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.valeur-feature-list li {
  font-size: 15px;
  color: #3d3d3f;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.valeur-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A6B5A;
  font-weight: 700;
  font-size: 14px;
}

/* CTA LINK */
.valeur-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1A6B5A;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}
.valeur-cta-link:hover { border-bottom-color: #1A6B5A; }

/* VISUAL */
.valeur-section-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.valeur-section-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: block;
}

/* MOBILE — sections 2 colonnes → 1 colonne */
@media (max-width: 860px) {
  .valeur-section { padding: 70px 24px; }
  .valeur-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Sur mobile: texte toujours avant le visuel */
  .valeur-section--right .valeur-section-visual { order: 2; }
  .valeur-section--right .valeur-section-copy   { order: 1; }
  .valeur-section-img {
    max-width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
}


/* ----------------------------------------------------------
   BADGE PRIX MODULES
   ---------------------------------------------------------- */

.module-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.price-badge-sep {
  opacity: 0.4;
}


/* ----------------------------------------------------------
   SECTION TRANSPORT — fond navy sombre
   ---------------------------------------------------------- */

#transport.valeur-section { background: #0D1B2A; }

#transport .valeur-section-eyebrow { color: #2E9E7E; }
#transport .valeur-section-title   { color: #ffffff; }
#transport .valeur-section-body    { color: rgba(255,255,255,0.72); }
#transport .valeur-feature-list li { color: rgba(255,255,255,0.72); }
#transport .valeur-feature-list li::before { color: #2E9E7E; }
#transport .valeur-cta-link        { color: #2E9E7E; }
#transport .valeur-cta-link:hover  { border-bottom-color: #2E9E7E; }
#transport .valeur-section-img     { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }


/* ----------------------------------------------------------
   SECTION CANTINE — fond brun sombre
   ---------------------------------------------------------- */

#cantine.valeur-section { background: #2d1a00; }

#cantine .valeur-section-eyebrow { color: #C9922A; }
#cantine .valeur-section-title   { color: #ffffff; }
#cantine .valeur-section-body    { color: rgba(255,255,255,0.72); }
#cantine .valeur-feature-list li { color: rgba(255,255,255,0.72); }
#cantine .valeur-feature-list li::before { color: #C9922A; }
#cantine .valeur-cta-link        { color: #C9922A; }
#cantine .valeur-cta-link:hover  { border-bottom-color: #C9922A; }
#cantine .valeur-section-img     { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
#cantine .module-price-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}


/* ----------------------------------------------------------
   SECTION PAIEMENTS — fond vert profond sombre
   ---------------------------------------------------------- */

#paiements.valeur-section { background: #0d3320; }

#paiements .valeur-section-eyebrow { color: #2E9E7E; }
#paiements .valeur-section-title   { color: #ffffff; }
#paiements .valeur-section-body    { color: rgba(255,255,255,0.72); }
#paiements .valeur-feature-list li { color: rgba(255,255,255,0.72); }
#paiements .valeur-feature-list li::before { color: #2E9E7E; }
#paiements .valeur-cta-link        { color: #2E9E7E; }
#paiements .valeur-cta-link:hover  { border-bottom-color: #2E9E7E; }
#paiements .valeur-section-img     { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
#paiements .module-price-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}


/* ----------------------------------------------------------
   SECTION SÉCURITÉ — tableau HTML
   ---------------------------------------------------------- */

.security-table {
  width: 100%;
  /* hérite de .valeur-section-visual (display:flex, align:center, justify:center) */
}

.sec-table-inner {
  border: 1.5px solid #e5e5e7;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 520px;
}

.sec-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f2;
  transition: background 0.15s;
}
.sec-row:last-child { border-bottom: none; }
.sec-row:hover      { background: #f9f9fb; }

.sec-row--sla { background: #f0f9f6; }

.sec-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.sec-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sec-name {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
}

.sec-desc {
  font-size: 12px;
  color: #6e6e73;
}

.sec-status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.sec-status.active {
  background: rgba(26,107,90,0.1);
  color: #1A6B5A;
}

.sec-status.available {
  background: rgba(201,146,42,0.1);
  color: #C9922A;
}


/* ----------------------------------------------------------
   SECTION PROCESS — timeline onboarding 48h
   ---------------------------------------------------------- */

.valeur-section--process {
  background: #0D1B2A;
  padding: 100px 24px;
  scroll-margin-top: 100px;
  /* Override l'alternance nth-child */
}

/* Forcer le fond navy même si nth-child dirait blanc */
#process.valeur-section { background: #0D1B2A !important; }

.process-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.process-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* TIMELINE */
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}

.process-step {
  flex: 1;
  padding: 0 24px;
  text-align: center;
}

.process-step-num {
  font-size: 13px;
  font-weight: 700;
  color: #1A6B5A;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  display: block;
}

.process-step-timing {
  display: inline-block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.process-step-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* Connecteurs flèches entre étapes */
.process-connector {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin-top: 52px; /* aligne avec le centre des numéros */
  position: relative;
}

.process-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -9px;
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}

/* Citation */
.process-note {
  text-align: center;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Garanties */
.process-guarantees {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.process-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.process-guarantee-icon { font-size: 16px; }

/* MOBILE — timeline verticale */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .process-step {
    padding: 28px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    align-items: start;
  }

  .process-step-num {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    padding-top: 4px;
    text-align: center;
  }

  .process-step-timing {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    margin-bottom: 10px;
  }

  .process-step-title {
    grid-column: 2;
    grid-row: 2;
  }

  .process-step-desc {
    grid-column: 2;
    grid-row: 3;
  }

  .process-connector { display: none; }

  .process-guarantees {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}


/* ----------------------------------------------------------
   SECTION CTA FINALE
   ---------------------------------------------------------- */

.valeur-cta-section {
  background: #ffffff;
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid #e5e5e7;
}

.valeur-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.valeur-cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.valeur-cta-sub {
  font-size: 18px;
  color: #6e6e73;
  margin: 0;
  line-height: 1.5;
}

.valeur-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #1A6B5A;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.valeur-cta-btn:hover { background: #145a4a; }

.valeur-cta-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-pill {
  font-size: 13px;
  color: #6e6e73;
}

.cta-pill-sep {
  color: #d2d2d7;
  font-size: 13px;
}

.valeur-whatsapp-link {
  font-size: 14px;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
}
.valeur-whatsapp-link:hover { text-decoration: underline; }

/* ============================================================
   FIN — PAGE VALEUR
   ============================================================ */

/* ============================================================
   PAGE OFFRES — offres.html
   Coller à la fin de style.css — NE PAS MODIFIER l'existant
   ============================================================ */


/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.offres-hero {
  padding: 100px 24px 48px;
  background: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offres-hero-inner {
  max-width: 560px;
  margin: 0 auto;
}

.offres-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  margin-bottom: 18px;
  display: block;
}

.offres-hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.offres-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #6e6e73;
  margin: 0;
}

/* Bandeau Rentrée — même style que la homepage */
.rentree-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(201, 146, 42, 0.1);
  border-top: 1px solid rgba(201, 146, 42, 0.25);
  padding: 10px 24px;
  font-size: 13px;
  color: rgba(29,29,31,0.7);
  text-align: center;
}

.rentree-link {
  color: #C9922A;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
}
.rentree-link:hover { text-decoration: underline; }


/* ----------------------------------------------------------
   SECTION PLANS (Standard / Premium / Ultra)
   ---------------------------------------------------------- */

.plans-section {
  background: #f5f5f7;
  padding: 80px 24px;
}

.plans-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.plans-header {
  text-align: center;
  margin-bottom: 48px;
}

.plans-header-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  margin-bottom: 12px;
  display: block;
}

.plans-header-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0;
}

/* CARTE PLAN — Base */
.plan-full-card {
  background: #ffffff;
  border: 1.5px solid #e5e5e7;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  transition: box-shadow 0.2s;
}

.plan-full-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* Badge "Le plus complet" */
.plan-full-badge {
  position: absolute;
  top: -14px;
  left: 40px;
  background: #1A6B5A;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 100px;
}

/* Premium — fond teinté + bordure teal */
.plan-full-card--premium {
  background: #f0f9f6;
  border-color: #1A6B5A;
}

/* Ultra — fond navy */
.plan-full-card--ultra {
  background: #0D1B2A;
  border-color: #0D1B2A;
  margin-bottom: 0;
}

/* COLONNE GAUCHE */
.plan-full-identity { margin-bottom: 24px; }

.plan-full-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  margin-bottom: 10px;
  display: block;
}

.plan-full-eyebrow--ultra { color: rgba(255,255,255,0.4); }

.plan-full-name {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.plan-full-name--ultra { color: #ffffff; }

.plan-full-tagline {
  font-size: 15px;
  color: #6e6e73;
  line-height: 1.6;
  margin: 0;
}

.plan-full-tagline--ultra { color: rgba(255,255,255,0.55); }

.plan-full-price { margin-bottom: 8px; }

.plan-full-from {
  display: block;
  font-size: 12px;
  color: #9e9e9e;
  margin-bottom: 2px;
}

.plan-full-amount {
  font-size: 36px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.plan-full-amount--ultra { color: #ffffff; }

.plan-full-unit {
  font-size: 14px;
  color: #6e6e73;
  margin-left: 4px;
}

.plan-full-unit--ultra { color: rgba(255,255,255,0.5); }

.plan-full-note {
  font-size: 12px;
  color: #9e9e9e;
  margin-bottom: 28px;
  line-height: 1.5;
}

.plan-full-note--ultra { color: rgba(255,255,255,0.35); }

.plan-full-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan-full-link {
  font-size: 15px;
  color: #1A6B5A;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.plan-full-link:hover { border-bottom-color: #1A6B5A; }

.plan-full-link--ultra { color: rgba(255,255,255,0.6); }
.plan-full-link--ultra:hover { border-bottom-color: rgba(255,255,255,0.4); }

.plan-full-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: #1A6B5A;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.plan-full-btn:hover { background: #145a4a; }

.plan-full-btn--premium { background: #1A6B5A; }
.plan-full-btn--premium:hover { background: #145a4a; }

.plan-full-btn--ultra {
  background: white;
  color: #0D1B2A;
}
.plan-full-btn--ultra:hover { background: rgba(255,255,255,0.88); }

/* COLONNE DROITE */
.plan-full-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-full-includes li {
  font-size: 14px;
  color: #3d3d3f;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.plan-full-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A6B5A;
  font-weight: 700;
  font-size: 12px;
  top: 2px;
}

.plan-full-includes--premium li { color: #1d1d1f; }
.plan-full-includes--premium li::before { color: #1A6B5A; }

.plan-full-includes--ultra li { color: rgba(255,255,255,0.7); }
.plan-full-includes--ultra li::before { color: #2E9E7E; }

.plan-premium-includes-note {
  font-size: 12px;
  font-weight: 600;
  color: #1A6B5A;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: block;
}

/* ADD-ON PILLS */
.plan-full-addons-note {
  border-top: 1px solid #e5e5e7;
  padding-top: 16px;
}

.plan-full-addons-note > span {
  font-size: 12px;
  color: #9e9e9e;
  display: block;
  margin-bottom: 10px;
}

.plan-full-addon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-pill {
  font-size: 12px;
  color: #1A6B5A;
  background: rgba(26,107,90,0.08);
  border: 1px solid rgba(26,107,90,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.15s;
}
.addon-pill:hover { background: rgba(26,107,90,0.15); }

/* Ultra waitlist teaser */
.ultra-waitlist-teaser {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  line-height: 1.6;
}

/* MOBILE cartes plans */
@media (max-width: 768px) {
  .plan-full-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .plan-full-badge { left: 24px; }
}


/* ----------------------------------------------------------
   SECTION ATTRACTIONS (grille 2×2)
   ---------------------------------------------------------- */

.attractions-section {
  background: #ffffff;
  padding: 80px 24px;
}

.attractions-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.attractions-header {
  text-align: center;
  margin-bottom: 48px;
}

.attractions-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  margin-bottom: 12px;
  display: block;
}

.attractions-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.attractions-sub {
  font-size: 17px;
  color: #6e6e73;
  margin: 0;
}

/* GRILLE 2×2 */
.attractions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* BASE CARTE ATTRACTION */
.attraction-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.attraction-card-inner {
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

/* COULEURS PAR CARTE */
.attraction-card--defi    { background: #0D1B2A; }
.attraction-card--rentree { background: #1a2a1a; }
.attraction-card--modules { background: #1a1a2e; }
.attraction-card--essai   { background: #2a1a00; }

/* TEXTES sur fond sombre */
.attraction-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  display: block;
}

.attraction-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.attraction-body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* Badge countdown Rentrée */
.rentree-countdown-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.4);
  color: #C9922A;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* Steps du Défi */
.attraction-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.attraction-step {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Benefits lists */
.attraction-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.attraction-benefits li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.attraction-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E9E7E;
  font-weight: 700;
  font-size: 12px;
}

/* Modules visual trio (exemple 2 pour 3) */
.modules-visual-trio {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.mvt-module {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}

.mvt-module--free {
  background: rgba(46,158,126,0.15);
  border-color: rgba(46,158,126,0.4);
}

.mvt-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.mvt-price {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.mvt-module--free .mvt-price {
  color: #2E9E7E;
  font-weight: 700;
}

.mvt-plus,
.mvt-equals {
  font-size: 18px;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}

.mvt-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin: 0;
}

/* Meta */
.attraction-meta { margin-top: auto; }

.attraction-scarcity {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.attraction-deadline {
  font-size: 12px;
  color: rgba(201,146,42,0.7);
}

.attraction-compare-link {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.attraction-compare-link:hover { color: rgba(255,255,255,0.6); }

/* CTAs dans les cartes d'attraction */
.attraction-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.attraction-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.attraction-link:hover {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.3);
}

.attraction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.attraction-btn:hover { background: rgba(255,255,255,0.2); }

/* Rentrée — gold */
.attraction-btn--rentree {
  background: rgba(201,146,42,0.25);
  border-color: rgba(201,146,42,0.5);
  color: #C9922A;
}
.attraction-btn--rentree:hover { background: rgba(201,146,42,0.35); }

/* Modules — teal */
.attraction-btn--modules {
  background: rgba(46,158,126,0.2);
  border-color: rgba(46,158,126,0.4);
  color: #2E9E7E;
}
.attraction-btn--modules:hover { background: rgba(46,158,126,0.3); }

/* MOBILE grille attractions */
@media (max-width: 768px) {
  .attractions-grid { grid-template-columns: 1fr; }
  .attraction-card-inner { padding: 28px 24px; }
}


/* ----------------------------------------------------------
   SECTION ANNUEL (carte pleine largeur navy)
   ---------------------------------------------------------- */

.annual-section {
  background: #f5f5f7;
  padding: 80px 24px;
}

.annual-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.annual-card {
  background: #0D1B2A;
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.annual-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: block;
}

.annual-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.annual-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* CTAs — overrides pour fond sombre */
.annual-card .plan-full-link { color: rgba(255,255,255,0.5); }
.annual-card .plan-full-link:hover { border-bottom-color: rgba(255,255,255,0.3); }
.annual-card .plan-full-btn { background: white; color: #0D1B2A; }
.annual-card .plan-full-btn:hover { background: rgba(255,255,255,0.88); }

/* Value stack */
.annual-stack-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  display: block;
}

.annual-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}

.annual-stack-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  gap: 12px;
}

.annual-stack-item {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  flex: 1;
}

.annual-stack-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  white-space: nowrap;
  flex-shrink: 0;
}

.annual-stack-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 14px;
  background: rgba(46,158,126,0.12);
  border: 1px solid rgba(46,158,126,0.25);
  border-radius: 10px;
  margin-top: 4px;
  gap: 12px;
}

.annual-stack-total span:first-child {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.annual-stack-total span:last-child {
  font-size: 17px;
  font-weight: 700;
  color: #2E9E7E;
}

.annual-payment-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

@media (max-width: 768px) {
  .annual-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 36px; }
}


/* ----------------------------------------------------------
   TABLEAU COMPARATIF Standard vs Premium
   ---------------------------------------------------------- */

.comparison-section {
  background: #ffffff;
  padding: 80px 24px;
}

.comparison-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1A6B5A;
  margin-bottom: 12px;
  display: block;
}

.comparison-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1.5px solid #e5e5e7;
  border-radius: 16px;
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* En-tête */
.comparison-table thead th {
  padding: 20px;
  text-align: center;
  border-bottom: 1.5px solid #e5e5e7;
  background: #f5f5f7;
  vertical-align: top;
}

.comp-feature-col {
  text-align: left !important;
  width: 45%;
}

.comp-standard-col,
.comp-premium-col {
  width: 27.5%;
}

.comp-premium-col {
  background: #f0f9f6 !important;
}

.comp-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1A6B5A;
  background: rgba(26,107,90,0.1);
  border-radius: 100px;
  padding: 3px 10px;
  margin: 0 auto 8px;
  width: fit-content;
}

.comp-plan-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.comp-plan-price {
  display: block;
  font-size: 12px;
  color: #6e6e73;
}

/* Lignes */
.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f2;
  transition: background 0.1s;
}

.comparison-table tbody tr:hover { background: #fafafa; }
.comparison-table tbody tr:last-child { border-bottom: none; }

.comparison-table tbody td {
  padding: 13px 20px;
  color: #3d3d3f;
  text-align: center;
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: #1d1d1f;
}

/* Catégorie */
.comp-category-row td {
  background: #f5f5f7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #9e9e9e;
  text-transform: uppercase;
  padding: 10px 20px !important;
  text-align: left !important;
  border-bottom: 1px solid #e5e5e7;
}

/* Cellules */
.comp-check {
  color: #1A6B5A;
  font-weight: 600;
  font-size: 13px;
}

.comp-cross {
  color: #d2d2d7;
  font-size: 16px;
}

.comp-addon {
  font-size: 12px;
  color: #9e9e9e;
}

/* Surbrillance colonne Premium */
.comp-premium-cell {
  background: rgba(26,107,90,0.04);
}

/* Ligne Prix */
.comp-price-row {
  background: #f5f5f7 !important;
  border-top: 1.5px solid #e5e5e7 !important;
}

.comp-price-row td { padding: 18px 20px !important; }

.comp-price-row strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 3px;
}

.comp-price-row small {
  font-size: 11px;
  color: #9e9e9e;
}

/* Footer CTAs */
.comparison-table tfoot td {
  padding: 20px;
  text-align: center;
  background: #f5f5f7;
  border-top: 1.5px solid #e5e5e7;
}

.comparison-table tfoot td.comp-premium-cell {
  background: #f0f9f6;
}

.comp-cta-btn {
  display: inline-flex;
  padding: 10px 22px;
  border: 1.5px solid #1A6B5A;
  color: #1A6B5A;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.comp-cta-btn:hover { background: #1A6B5A; color: white; }

.comp-cta-btn--premium { background: #1A6B5A; color: white; }
.comp-cta-btn--premium:hover { background: #145a4a; }

/* Note Pronote */
.comparison-pronote-note {
  font-size: 13px;
  color: #6e6e73;
  text-align: center;
  line-height: 1.6;
}
.comparison-pronote-note strong { color: #1d1d1f; }
.comparison-pronote-note a { color: #1A6B5A; text-decoration: none; }
.comparison-pronote-note a:hover { text-decoration: underline; }


/* ----------------------------------------------------------
   SECTION GARANTIES
   ---------------------------------------------------------- */

.offres-guarantees-section {
  background: #f5f5f7;
  padding: 80px 24px;
}

.offres-guarantees-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.offres-guarantees-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
}

.offres-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offres-guarantee-card {
  background: #ffffff;
  border: 1.5px solid #e5e5e7;
  border-radius: 16px;
  padding: 32px 28px;
}

.offres-guarantee-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.offres-guarantee-name {
  font-size: 17px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 12px;
  line-height: 1.3;
}

.offres-guarantee-desc {
  font-size: 14px;
  color: #6e6e73;
  line-height: 1.7;
  margin: 0;
}

.offres-guarantee-desc a {
  color: #1A6B5A;
  text-decoration: none;
  font-weight: 500;
}
.offres-guarantee-desc a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .offres-guarantees-grid { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------
   CTA FINAL
   ---------------------------------------------------------- */

.offres-cta-section {
  background: #0D1B2A;
  padding: 100px 24px;
  text-align: center;
}

.offres-cta-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.offres-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.offres-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.offres-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: white;
  color: #0D1B2A;
  font-size: 17px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.offres-cta-btn:hover { opacity: 0.88; }

.offres-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ============================================================
   FIN — PAGE OFFRES
   ============================================================ */

/* ============================================================
   HOMEPAGE TUNING — Dashboard section background image layer
   ============================================================ */

.dashboard-showcase {
  position: relative;
  isolation: isolate;
}

.dashboard-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/dashboard.jpeg");
  background-size: cover;
  background-position: center top;
  filter: blur(1px);
  transform: scale(1.02);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.dashboard-showcase::after {
  content: none;
}

.dashboard-showcase > * {
  position: relative;
  z-index: 1;
}

/* ── EXIT INTENT MODAL ─────────────────────────────── */
.exit-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 24px;
}
.exit-modal-inner {
  background: #ffffff; border-radius: 20px;
  padding: 40px; max-width: 480px; width: 100%;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.exit-modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 22px; color: #9e9e9e;
  background: none; border: none; cursor: pointer; line-height: 1;
}
.exit-modal-close:hover { color: #1d1d1f; }
.exit-modal-title { font-size: 20px; font-weight: 700; color: #1d1d1f; margin-bottom: 8px; }
.exit-modal-sub { font-size: 14px; color: #6e6e73; margin-bottom: 24px; }
.exit-modal-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.exit-option-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border: 1.5px solid #e5e5e7; border-radius: 12px;
  background: #ffffff; cursor: pointer; font-size: 14px; color: #1d1d1f; text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.exit-option-btn:hover { border-color: #1A6B5A; background: #f0f9f6; }
.exit-option-btn.selected { border-color: #1A6B5A; background: #f0f9f6; font-weight: 600; }
.exit-option-icon { font-size: 18px; flex-shrink: 0; }
.exit-response { border-top: 1px solid #e5e5e7; padding-top: 20px; margin-top: 4px; }
.exit-response p { font-size: 14px; color: #1d1d1f; margin-bottom: 14px; }
.exit-price-options { display: flex; flex-direction: column; gap: 10px; }
.exit-action-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; background: #1A6B5A; color: white; border: none;
  border-radius: 100px; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.exit-action-btn:hover { background: #145a4a; }
.exit-action-btn--secondary {
  background: transparent; color: #1A6B5A; border: 1.5px solid #1A6B5A;
}
.exit-action-btn--secondary:hover { background: #f0f9f6; }
.exit-team-share { display: flex; flex-direction: column; gap: 10px; }
.exit-email-input {
  padding: 11px 16px; border: 1.5px solid #e5e5e7; border-radius: 100px;
  font-size: 14px; color: #1d1d1f; outline: none;
}
.exit-email-input:focus { border-color: #1A6B5A; }
.exit-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e7; border-radius: 12px;
  font-size: 14px; color: #1d1d1f; resize: vertical; min-height: 80px; outline: none;
  box-sizing: border-box; margin-bottom: 10px; font-family: inherit;
}
.exit-textarea:focus { border-color: #1A6B5A; }

/* ── CONFIRMATION PAGE ─────────────────────────────── */
.page-confirmation { background: #f5f5f7; }

.confirmation-main {
  padding-top: 52px;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 80px;
}

.confirm-hero { text-align: center; padding: 80px 0 48px; }

.confirm-checkmark {
  width: 72px; height: 72px; background: #1A6B5A; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; margin: 0 auto 28px;
}

.confirm-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #1d1d1f;
  letter-spacing: -0.02em; margin-bottom: 10px;
}

.confirm-subtitle { font-size: 17px; color: #6e6e73; margin-bottom: 20px; }

.confirm-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}

.confirm-summary-item {
  font-size: 14px; color: #3d3d3f; background: #ffffff;
  border: 1px solid #e5e5e7; border-radius: 100px; padding: 5px 14px;
}

.confirm-summary-price {
  color: #1A6B5A; font-weight: 700; border-color: #1A6B5A; background: #f0f9f6;
}

.confirm-summary-sep { color: #d2d2d7; }

.confirm-next { margin-bottom: 40px; }

.confirm-next-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #1d1d1f;
  letter-spacing: -0.01em; margin-bottom: 8px;
}

.confirm-next-sub { font-size: 16px; color: #6e6e73; margin-bottom: 28px; }

.confirm-next-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}

.confirm-next-card {
  background: #ffffff; border: 1.5px solid #e5e5e7; border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.confirm-next-card:hover {
  border-color: #1A6B5A; box-shadow: 0 4px 20px rgba(26,107,90,0.1);
}

.confirm-next-icon { font-size: 28px; }
.confirm-next-card h3 { font-size: 16px; font-weight: 700; color: #1d1d1f; margin: 0; }
.confirm-next-card p { font-size: 13px; color: #6e6e73; line-height: 1.5; margin: 0; }
.confirm-next-number, .confirm-next-email-display {
  font-size: 14px; font-weight: 600; color: #1d1d1f;
}

.confirm-next-btn {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; background: #1A6B5A; color: white; border: none;
  border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.confirm-next-btn:hover { background: #145a4a; }
.confirm-next-btn:disabled { background: #d2d2d7; cursor: not-allowed; }

.confirm-payment {
  background: #ffffff; border: 1.5px solid #e5e5e7; border-radius: 20px;
  padding: 36px; margin-bottom: 24px;
}

.confirm-payment-title {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; color: #1d1d1f;
  letter-spacing: -0.01em; margin-bottom: 24px;
}

.confirm-payment-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }

.confirm-payment-step { display: flex; gap: 16px; align-items: flex-start; }

.confirm-payment-num {
  width: 28px; height: 28px; background: #1A6B5A; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}

.confirm-payment-step strong { display: block; font-size: 15px; color: #1d1d1f; margin-bottom: 4px; }
.confirm-payment-step p { font-size: 13px; color: #6e6e73; line-height: 1.5; margin: 0; }

.confirm-payment-note {
  background: #f5f5f7; border-radius: 10px;
  padding: 12px 16px; font-size: 13px; color: #6e6e73;
}

.confirm-while-waiting { margin-bottom: 24px; }

.confirm-waiting-title {
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; color: #1d1d1f; margin-bottom: 8px;
}

.confirm-waiting-sub { font-size: 15px; color: #6e6e73; margin-bottom: 20px; }

.confirm-waiting-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.confirm-waiting-card {
  background: #ffffff; border: 1.5px solid #e5e5e7; border-radius: 16px; padding: 28px 24px;
}

.confirm-waiting-card h3 { font-size: 16px; font-weight: 700; color: #1d1d1f; margin-bottom: 14px; }

.confirm-waiting-card ul {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 8px;
}

.confirm-waiting-card ul li {
  font-size: 13px; color: #3d3d3f;
  padding-left: 18px; position: relative; line-height: 1.4;
}
.confirm-waiting-card ul li::before {
  content: '→'; position: absolute; left: 0; color: #1A6B5A; font-size: 12px;
}

.confirm-waiting-card p { font-size: 14px; color: #6e6e73; margin-bottom: 14px; }

.confirm-waiting-note { font-size: 12px; color: #9e9e9e; font-style: italic; margin: 0; }

.confirm-whatsapp-btn {
  display: inline-flex; align-items: center; padding: 10px 20px;
  background: #25D366; color: white; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none; margin-bottom: 10px;
}
.confirm-whatsapp-btn:hover { background: #1da851; }

.confirm-waiting-phone { font-size: 13px; color: #9e9e9e; margin: 0; }

.confirmation-footer {
  border-top: 1px solid #e5e5e7; padding: 20px 24px; text-align: center;
}
.confirmation-footer p { font-size: 12px; color: #9e9e9e; }
.confirmation-footer a { color: #9e9e9e; text-decoration: none; margin: 0 8px; }
.confirmation-footer a:hover { color: #1d1d1f; }

@media (max-width: 768px) {
  .confirm-next-cards { grid-template-columns: 1fr; }
  .confirm-waiting-cards { grid-template-columns: 1fr; }
  .confirm-payment { padding: 24px; }
  .confirm-waiting-card { padding: 24px; }
}

/* ── CONFIRMATION PAGE (APPLE-STYLE REDESIGN) ─────────────── */
.page-confirmation {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    #f5f5f7;
}
.page-confirmation .confirmation-main {
  max-width: 960px;
  padding-top: 76px;
  padding-bottom: 88px;
}
.page-confirmation .confirm-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid #e5e5ea;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  padding: 54px 28px 42px;
  margin-bottom: 18px;
}
.page-confirmation .confirm-checkmark {
  background: linear-gradient(180deg, #1b7a66 0%, #155f50 100%);
  box-shadow: 0 8px 22px rgba(21, 95, 80, 0.3);
}
.page-confirmation .confirm-title {
  font-size: clamp(30px, 4.4vw, 50px);
  letter-spacing: -0.03em;
}
.page-confirmation .confirm-subtitle {
  font-size: 18px;
  color: #636366;
}

.page-confirmation .confirm-next,
.page-confirmation .confirm-payment,
.page-confirmation .confirm-while-waiting {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  padding: 30px;
  margin-bottom: 18px;
}
.page-confirmation .confirm-next-cards {
  gap: 12px;
}
.page-confirmation .confirm-next-card {
  border: 1px solid #e5e7ee;
  border-radius: 16px;
  box-shadow: none;
  padding: 22px 18px;
}
.page-confirmation .confirm-next-card:hover {
  border-color: #ccd3df;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.page-confirmation .confirm-next-btn {
  background: linear-gradient(180deg, #2b6fff 0%, #1f57d9 100%);
  border: 1px solid #1b4ec5;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(31, 87, 217, 0.32);
}
.page-confirmation .confirm-next-btn:hover {
  background: linear-gradient(180deg, #3277ff 0%, #2462df 100%);
}

.page-confirmation .confirm-payment {
  background: linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
}
.page-confirmation .confirm-payment-step {
  background: #f8f9fc;
  border: 1px solid #e8eaf1;
  border-radius: 14px;
  padding: 12px;
}
.page-confirmation .confirm-payment-note {
  background: #eef4ff;
  border: 1px solid #d9e6ff;
  color: #44546b;
}

.page-confirmation .confirm-waiting-cards {
  gap: 12px;
}
.page-confirmation .confirm-waiting-card {
  border: 1px solid #e5e7ee;
  border-radius: 16px;
  padding: 22px 18px;
}

.page-confirmation .confirmation-footer {
  background: transparent;
  border-top: none;
  padding-top: 8px;
}

@media (max-width: 768px) {
  .page-confirmation .confirmation-main {
    padding-top: 70px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-confirmation .confirm-next,
  .page-confirmation .confirm-payment,
  .page-confirmation .confirm-while-waiting {
    border-radius: 18px;
    padding: 20px;
  }
}

/* ── NAVBAR LOCK + SCROLL GLASS EFFECT ───────────────── */
body.has-fixed-header {
  padding-top: 0;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 2000;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

#mobile-overlay {
  inset: var(--site-header-height, 64px) 0 0;
}

/* Premium minimalist header/menu (icon-triggered) */
#site-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none;
}

/* Clics traversent la zone vide ; logo + deux pilules restent interactifs */
#site-header .brand,
#site-header .header-actions {
  pointer-events: auto;
}

#site-header.scrolled {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#site-header .header-inner {
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 14px clamp(12px, 2.8vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

/*
 * Fond verre (glass) : UNIQUEMENT l’état .scrolled, forme CERCLE (border-radius: 50 %),
 * centré sur le pictogramme rogné. Aucune pilule / grand cadre : en haut de page
 * le lien .brand est visuellement « nu » (pas d’arrière-plan), et on ne l’anime pas
 * en largeur / hauteur (fin de l’effet « grosse boîte » au retour du scroll).
 */
#site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition: none;
}

#site-header.scrolled .brand {
  padding: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.1);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  transform: translate3d(-6px, 0, 0);
}

#site-header .brand-logo-frame {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  vertical-align: middle;
  transition: none;
}

/* Pleine marque : cadre neutre (pas de pilule visible), pas de morph animé */
#site-header:not(.scrolled) .brand-logo-frame {
  height: clamp(42px, 4.1vw, 56px);
  aspect-ratio: 3200 / 1563;
  border-radius: 0;
  overflow: visible;
}

@media (max-width: 767px) {
  #site-header:not(.scrolled) .brand-logo-frame {
    height: clamp(34px, 9vw, 42px);
  }
}

/* Pictogramme seul : cercle de clip + rendu net */
#site-header.scrolled .brand-logo-frame {
  height: clamp(38px, 7.25vw, 46px);
  width: clamp(38px, 7.25vw, 46px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  isolation: isolate;
}

#site-header .brand-logo--full,
#site-header .brand-logo--mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  pointer-events: none;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

#site-header:not(.scrolled) .brand-logo--full {
  object-position: left center;
  opacity: 1;
  filter: drop-shadow(0 6px 18px rgba(2, 6, 23, 0.14));
}

#site-header:not(.scrolled) .brand-logo--mark {
  opacity: 0;
  filter: none;
}

#site-header.scrolled .brand-logo--full {
  opacity: 0;
  filter: none;
}

#site-header.scrolled .brand-logo--mark {
  opacity: 1;
  object-position: center center;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  #site-header .brand-logo--full,
  #site-header .brand-logo--mark {
    transition-duration: 0.01ms !important;
  }
}

#site-header .nav-links,
#site-header .nav-ctas {
  display: none !important;
}

#site-header .premium-menu-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.98);
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

#site-header .premium-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

#site-header .premium-menu-panel {
  position: fixed;
  top: 72px;
  right: clamp(12px, 3vw, 28px);
  left: auto;
  inset-inline-start: auto;
  width: min(340px, calc(100vw - 24px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 22px 45px rgba(2, 6, 23, 0.15);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  z-index: 2100;
}

#site-header .premium-menu-panel:not(.open) {
  display: none;
}

#site-header .premium-menu-panel.open {
  display: block;
}

#site-header .premium-menu-panel .nav-mobile-link,
#site-header .premium-menu-panel .nav-mobile-cta {
  display: block;
  border: 0;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

#site-header .premium-menu-panel .nav-mobile-link:hover,
#site-header .premium-menu-panel .nav-mobile-cta:hover {
  background: #f8fafc;
  color: #0e4bb5;
  transform: translateX(2px);
}

#site-header .premium-menu-panel .nav-mobile-cta {
  margin-top: 4px;
  background: #0f172a;
  color: #ffffff;
}

#site-header .premium-menu-panel .nav-mobile-cta:hover {
  background: #1e293b;
  color: #ffffff;
}

/* ── Header : deux pilules seules (pas de cadre englobant) — toujours dans la barre fixe #site-header ─ */
#site-header .header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(10px, 2vw, 18px);
}

#site-header .header-desktop-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(8px, 1.2vw, 14px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile : léger vide au-dessus du contenu du header (safe area + respi) — offsetHeight inclut ce padding (nav.js). */
@media (max-width: 767px) {
  #site-header {
    padding-top: max(10px, calc(env(safe-area-inset-top, 0px) + 6px));
    box-sizing: border-box;
  }
}

/* Secondaire — plus compact que « Prendre contact » */
#site-header .header-nav-acces {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 37, 69, 0.32);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#site-header .header-nav-acces:hover {
  color: #020617;
  border-color: rgba(11, 37, 69, 0.55);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 14px rgba(11, 37, 69, 0.1);
  transform: translateY(-1px);
}

#site-header .header-nav-acces:active {
  transform: translateY(0);
}

/* Primaire — même bleu « Nous aussi », plein + texte blanc */
#site-header .header-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(165deg, #0e3564 0%, #0b2545 48%, #081d37 100%);
  box-shadow:
    0 2px 4px rgba(2, 6, 23, 0.15),
    0 12px 28px rgba(11, 37, 69, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

#site-header .header-nav-contact:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(165deg, #134a8a 0%, #0c2d52 50%, #071a33 100%);
  box-shadow:
    0 4px 8px rgba(2, 6, 23, 0.2),
    0 16px 36px rgba(11, 37, 69, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

#site-header .header-nav-contact:active {
  transform: translateY(0);
  box-shadow:
    0 2px 6px rgba(2, 6, 23, 0.18),
    0 8px 20px rgba(11, 37, 69, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Page contact : pas de CTA « Prendre contact » redondant */
body.page-contact #site-header .header-nav-contact,
#site-header .header-nav-contact.active {
  display: none !important;
}

#site-header .premium-menu-panel {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 520px) {
  #site-header .header-inner {
    gap: 10px;
    padding: 14px clamp(8px, 2vw, 16px);
  }
  #site-header .header-actions {
    gap: 6px;
  }
  #site-header .header-nav-acces {
    min-height: 34px;
    padding: 5px 10px;
    font-size: 0.72rem;
  }
  #site-header .header-nav-contact {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

#site-header .premium-menu-panel .nav-mobile-link--contact-pill {
  margin-top: 10px;
  text-align: center;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 18px !important;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22) !important;
  background: linear-gradient(165deg, #0e3564 0%, #0b2545 48%, #081d37 100%) !important;
  box-shadow:
    0 4px 12px rgba(11, 37, 69, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#site-header .premium-menu-panel .nav-mobile-link--contact-pill:hover {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
  background: linear-gradient(165deg, #134a8a 0%, #0c2d52 55%, #071a33 100%) !important;
  transform: translateY(-1px);
}

#site-header .premium-menu-panel .nav-mobile-link:first-of-type {
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 16px !important;
  border-radius: 14px;
  border: 2px solid rgba(11, 37, 69, 0.22) !important;
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a !important;
}

/* ── PAGES OFFRE DÉTAIL ──────────────────────────────── */
.offre-detail-main {
  max-width: 760px; margin: 0 auto; padding: 80px 24px;
}

.offre-detail-hero {
  text-align: center; padding-bottom: 56px;
  border-bottom: 1px solid #e5e5e7; margin-bottom: 56px;
}

.offre-detail-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: #1A6B5A; margin-bottom: 16px; text-transform: uppercase;
}

.offre-detail-title {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 700; color: #1d1d1f;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px;
}

.offre-detail-sub {
  font-size: clamp(16px, 2vw, 20px); color: #6e6e73; line-height: 1.6;
}

.offre-detail-main h2 {
  font-size: clamp(20px, 3vw, 30px); font-weight: 700; color: #1d1d1f;
  letter-spacing: -0.01em; margin-bottom: 20px;
}

.offre-detail-main section {
  margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid #e5e5e7;
}
.offre-detail-main section:last-child { border-bottom: none; }

.offre-detail-cta {
  text-align: center; background: #0D1B2A;
  border-radius: 20px; padding: 56px 40px; border: none;
}

.offre-detail-cta h2 { color: white; margin-bottom: 24px; }

.offre-detail-cta-btn {
  display: inline-flex; align-items: center; padding: 15px 36px;
  background: white; color: #0D1B2A; border-radius: 100px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  margin-bottom: 14px; transition: opacity 0.2s;
}
.offre-detail-cta-btn:hover { opacity: 0.88; }

.offre-detail-cta-note {
  font-size: 13px; color: rgba(255,255,255,0.35); margin: 0;
}

/* Garanties communes */
.offre-guarantees-list {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px;
}
.offre-guarantees-list li {
  font-size: 15px; color: #3d3d3f; display: flex; align-items: flex-start; gap: 10px;
}

/* Ultra waitlist */
.ultra-waitlist-block {
  background: #f5f5f7; border-radius: 20px; padding: 40px;
}
.ultra-waitlist-block h2 { margin-bottom: 10px; }
.ultra-waitlist-block p { font-size: 15px; color: #6e6e73; margin-bottom: 24px; }

#ultra-waitlist-form-page {
  display: flex; flex-direction: column; gap: 12px;
}
#ultra-waitlist-form-page input,
#ultra-waitlist-form-page select {
  padding: 12px 18px; border: 1.5px solid #e5e5e7; border-radius: 100px;
  font-size: 15px; color: #1d1d1f; outline: none; font-family: inherit;
  background: white;
}
#ultra-waitlist-form-page input:focus,
#ultra-waitlist-form-page select:focus { border-color: #1A6B5A; }

#ultra-waitlist-form-page button[type="submit"] {
  padding: 14px 28px; background: #1A6B5A; color: white;
  border: none; border-radius: 100px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
#ultra-waitlist-form-page button[type="submit"]:hover { background: #145a4a; }

/* Tableau comparatif Défi vs Essai */
.offre-compare-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.offre-compare-table th {
  padding: 12px 16px; background: #f5f5f7; text-align: left;
  font-weight: 700; color: #1d1d1f; border-bottom: 2px solid #e5e5e7;
}
.offre-compare-table td {
  padding: 12px 16px; border-bottom: 1px solid #e5e5e7; color: #3d3d3f; vertical-align: top;
}
.offre-compare-table tr:last-child td { border-bottom: none; }
.offre-compare-table .col-defi { background: #f0f9f6; }

/* Calculateur 2-pour-3 */
.calc-2pour3 {
  background: #f5f5f7; border-radius: 16px; padding: 28px; margin-top: 20px;
}
.calc-2pour3 label { font-size: 14px; color: #6e6e73; display: block; margin-bottom: 6px; }
.calc-2pour3 input[type="number"] {
  width: 100%; padding: 10px 16px; border: 1.5px solid #e5e5e7; border-radius: 100px;
  font-size: 15px; color: #1d1d1f; outline: none; margin-bottom: 12px; box-sizing: border-box;
}
.calc-2pour3 input:focus { border-color: #1A6B5A; }
.calc-result {
  font-size: 20px; font-weight: 700; color: #1A6B5A; margin-top: 16px;
}

/* Prix indicatif Ultra */
.ultra-price-badge {
  display: inline-block; background: #1A6B5A; color: white;
  border-radius: 12px; padding: 16px 28px; font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.ultra-price-note { font-size: 14px; color: #6e6e73; }

/* ── DÉFI PAGE REFINEMENT (ROI-LIKE) ─────────────────── */
.page-offre-defi .offre-detail-main {
  max-width: 880px;
}
.page-offre-defi {
  background: #f5f5f7;
}
.page-offre-defi::before,
.page-offre-defi::after {
  display: none !important;
}
.page-offre-defi .offre-detail-hero {
  border-bottom: none;
  margin-bottom: 38px;
  padding: 28px 0 12px;
}
.page-offre-defi .offre-detail-eyebrow {
  letter-spacing: 0.16em;
}
.page-offre-defi .offre-detail-title {
  font-size: clamp(34px, 5vw, 58px);
  color: #1d1d1f;
}
.page-offre-defi .offre-detail-sub {
  max-width: 760px;
  margin: 0 auto;
  color: #6e6e73;
}
.page-offre-defi .offre-detail-main section {
  border-bottom: none;
  margin-bottom: 22px;
  padding-bottom: 0;
}
.page-offre-defi .offre-detail-mechanic,
.page-offre-defi .offre-detail-math,
.page-offre-defi .offre-detail-guarantees,
.page-offre-defi .offre-detail-main > section:not(.offre-detail-hero):not(.offre-detail-cta) {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.page-offre-defi .offre-detail-mechanic::before,
.page-offre-defi .offre-detail-math::before,
.page-offre-defi .offre-detail-compare::before,
.page-offre-defi .offre-detail-guarantees::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.page-offre-defi .offre-detail-mechanic::before {
  background: linear-gradient(180deg, #0e4bb5 0%, #2cccd3 100%);
}
.page-offre-defi .offre-detail-math::before {
  background: linear-gradient(180deg, #1a6b5a 0%, #2cccd3 100%);
}
.page-offre-defi .offre-detail-compare::before {
  background: linear-gradient(180deg, #c9a227 0%, #e7c85a 100%);
}
.page-offre-defi .offre-detail-guarantees::before {
  background: linear-gradient(180deg, #2563eb 0%, #0e4bb5 100%);
}
.page-offre-defi .offre-detail-main h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
}
.defi-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.defi-steps-list li {
  background: #ffffff;
  border: 1px solid #ececf1;
  border-left: 3px solid #dbe8ff;
  border-radius: 14px;
  padding: 14px 14px 14px 16px;
  color: #3d3d3f;
  line-height: 1.55;
}
.defi-math-card {
  background: #f5f5f7;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  padding: 24px;
}
.defi-math-intro {
  font-size: 15px;
  color: #6e6e73;
  margin-bottom: 16px;
}
.defi-math-list {
  display: grid;
  gap: 12px;
  color: #3d3d3f;
}
.defi-math-divider {
  border-top: 1px solid #e5e5ea;
  padding-top: 12px;
}
.defi-math-option {
  padding-left: 12px;
}
.defi-math-note {
  font-size: 13px;
  color: #6e6e73;
}
.page-offre-defi .offre-compare-table {
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.page-offre-defi .offre-detail-cta {
  background: linear-gradient(160deg, #0d1b2a 0%, #172f47 100%) !important;
  border: 1px solid #10263b;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(12, 22, 35, 0.28);
  padding: 34px 28px;
  margin-top: 8px;
  text-align: center;
}
.page-offre-defi .offre-detail-cta h2 {
  color: #ffffff !important;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-offre-defi .offre-detail-cta .offre-detail-cta-btn {
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2b6fff 0%, #1e56d8 100%);
  border: 1px solid #1747ba;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(30, 86, 216, 0.36);
}
.page-offre-defi .offre-detail-cta .offre-detail-cta-btn:hover {
  transform: translateY(-1px);
  opacity: 1;
  background: linear-gradient(180deg, #3277ff 0%, #215fdc 100%);
  border-color: #1b52cd;
  box-shadow: 0 12px 28px rgba(30, 86, 216, 0.44);
}
.page-offre-defi .offre-detail-cta .offre-detail-cta-note {
  margin-top: 14px;
  color: rgba(233, 239, 248, 0.72);
  font-size: 12.5px;
}
@media (max-width: 768px) {
  .page-offre-defi .offre-detail-main > section:not(.offre-detail-hero),
  .page-offre-defi .offre-detail-mechanic,
  .page-offre-defi .offre-detail-math,
  .page-offre-defi .offre-detail-compare,
  .page-offre-defi .offre-detail-guarantees,
  .page-offre-defi .offre-detail-cta {
    border-radius: 18px;
    padding: 22px;
  }
}

