/* ═══════════════════════════════════════════════════════════
   VIGILOSAFE — Design System CSS
   Charte : orange #E8790A · slate #1A1C20 · vert #1A7A3C
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── ROOT ─────────────────────────────────────────── */
:root {
  --o:      #E8790A;
  --od:     #B85C06;
  --ol:     #FFF3E0;
  --r:      #C0392B;
  --rl:     #FDECEA;
  --g:      #1A7A3C;
  --gl:     #E8F5E9;
  --b:      #1A5C8F;
  --bl:     #E3F0FB;
  --y:      #F5A623;
  --slate:  #1A1C20;
  --slate2: #22262E;
  --slate3: #2C3440;
  --bg:     #F2F1EC;
  --sur:    #FFFFFF;
  --sur2:   #EAEAE4;
  --bd:     #D2D0C8;
  --ink:    #1A1C20;
  --ink2:   #3A3D45;
  --ink3:   #65697A;
  --ink4:   #9EA3B0;
  --ff-d:   'Barlow Condensed', sans-serif;
  --ff-b:   'Barlow', sans-serif;
  --ff-m:   'JetBrains Mono', monospace;
}

/* Apply dark mode immediately if pending (avoids flash) */
html.light-mode-pending body { background: #0F1114; }

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 19px; }
body { font-family: var(--ff-b); color: var(--ink); background: var(--bg); line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── LAYOUT ───────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
.eyebrow {
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 12px;
  display: block;
}
.h-display {
  font-family: var(--ff-d);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .92;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.h-display span { color: var(--o); }
.h-section {
  font-family: var(--ff-d);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: .94;
  letter-spacing: -1px;
  color: var(--ink);
}
.h-section span { color: var(--o); }
.h-section.on-dark { color: #fff !important; }
.lead { font-size: 20px; color: var(--ink2); line-height: 1.75; }
.lead.on-dark { color: rgba(255,255,255,.65) !important; }

/* ── TEXTE SUR FOND DARK — RÈGLES EXPLICITES ──────── */
.section-dark .eyebrow { color: var(--o) !important; }
.section-dark .h-section { color: #ffffff !important; }
.section-dark .h-section span { color: var(--o) !important; }
.section-dark .lead { color: rgba(255,255,255,.65) !important; }
.page-hero .eyebrow { color: var(--o) !important; }
.page-hero h1 { color: #ffffff !important; }
.page-hero h1 span { color: var(--o) !important; }
.page-hero > .container p,
.page-hero-inner > p { color: rgba(255,255,255,.65) !important; }
.page-hero .breadcrumb { color: rgba(255,255,255,.55) !important; font-size: 14px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7) !important; }
.page-hero .breadcrumb a:hover { color: #fff !important; }
.cta-band .h-section { color: #ffffff !important; }
.cta-band .h-section.on-dark { color: #ffffff !important; }
.cta-band .lead.on-dark { color: rgba(255,255,255,.65) !important; }
.cta-band .eyebrow { color: var(--o) !important; }

/* ── BADGES ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-m);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
}
.badge-o  { background: rgba(232,121,10,.12); color: var(--o);   border: 1px solid rgba(232,121,10,.3); }
.badge-g  { background: rgba(26,122,60,.1);   color: var(--g);   border: 1px solid rgba(26,122,60,.3); }
.badge-b  { background: rgba(26,92,143,.1);   color: var(--b);   border: 1px solid rgba(26,92,143,.3); }
.badge-r  { background: rgba(192,57,43,.1);   color: var(--r);   border: 1px solid rgba(192,57,43,.3); }
.badge-w  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
.badge-dk { background: var(--sur2); color: var(--ink3); border: 1px solid var(--bd); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 5px;
  font-family: var(--ff-b);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--o);
  color: #fff;
  box-shadow: 0 3px 14px rgba(232,121,10,.28);
}
.btn-primary:hover { background: var(--od); box-shadow: 0 5px 20px rgba(232,121,10,.38); transform: translateY(-1px); }

.btn-dark { background: var(--slate); color: #fff; }
.btn-dark:hover { background: var(--slate2); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--bd);
}
.btn-outline-dark:hover { border-color: var(--o); color: var(--o); }

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,.6); border-color: rgba(255,255,255,.5); color: #fff; }

.btn-ghost { background: transparent; color: var(--o); border: 1.5px solid var(--o); }
.btn-ghost:hover { background: var(--ol); }

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── DIVIDER ──────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--bd); margin: 0; }
.divider-dark { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 0; }

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(26,28,32,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .2s;
}
#site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo .shield {
  width: 36px; height: 36px;
  background: var(--o);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo .wordmark {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.5px;
}
.nav-logo .wordmark .vigilo { color: var(--o); }
.nav-logo .wordmark .safe-word { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 14px;
  border-radius: 4px;
  transition: .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,.85); }
.nav-links a.active { background: rgba(255,255,255,.06); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 12px;
  transition: .15s;
}
.nav-login:hover { color: rgba(255,255,255,.8); }
.nav-cta-btn {
  background: var(--o);
  color: #fff;
  font-family: var(--ff-b);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: .15s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta-btn:hover { background: var(--od); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  transition: .2s;
}
/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: rgba(26,28,32,.99);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 16px 24px 24px;
  z-index: 9998;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: .15s;
}
.nav-drawer a:hover { color: #fff; }
.nav-drawer a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
#site-footer {
  background: #0C0E11;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}
.footer-main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo .shield {
  width: 34px; height: 34px;
  background: var(--o);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.footer-brand-logo .wm {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.footer-brand-logo .wm .s1 { color: var(--o); }
.footer-brand-logo .wm .s2 { color: #fff; }
.footer-tagline {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: .15s;
}
.footer-socials a:hover { border-color: var(--o); color: var(--o); }
.footer-col h4 {
  font-family: var(--ff-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul li a {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  transition: .15s;
  display: inline-block;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.8); padding-left: 4px; }
.footer-col ul li a.highlight { color: var(--o) !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left { font-size: 12px; color: rgba(255,255,255,.6); }
.footer-bottom-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-right a {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  transition: .15s;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,.5); }
.footer-certif {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-m);
  font-size: 9px;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 16px;
}
.footer-certif span {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2px 8px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════
   HERO — DARK BACKGROUND FORCÉ
   ═══════════════════════════════════════════════════ */
.hero-dark {
  background-color: #1A1C20;
  background: #1A1C20;
  position: relative;
  overflow: hidden;
}
.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 85% 40%, rgba(232,121,10,.07), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(26,92,143,.05), transparent 50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,.013) 80px, rgba(255,255,255,.013) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,.013) 80px, rgba(255,255,255,.013) 81px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════════════════ */
.section { padding: 48px 0; }
.section-sm { padding: 32px 0; }
.section-dark {
  background-color: #1A1C20;
  background: #1A1C20;
  color: #fff;
}
.section-dark * { color: inherit; }
.section-light { background: var(--sur); }
.section-alt { background: var(--bg); }

.section-header { max-width: 640px; margin-bottom: 40px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header .h-section { margin-top: 8px; margin-bottom: 14px; }
.section-header .lead { max-width: 520px; }
.section-header.centered .lead { margin: 0 auto; }

/* ── FEATURE CARDS ────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bd);
  border: 1px solid var(--bd);
  border-radius: 10px;
  overflow: hidden;
}
.feat-card {
  background: var(--sur);
  padding: 44px;
  transition: background .15s;
}
.feat-card:hover { background: #FFFBF5; }
.feat-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.fi-o { background: rgba(232,121,10,.1); }
.fi-r { background: rgba(192,57,43,.08); }
.fi-g { background: rgba(26,122,60,.08); }
.fi-b { background: rgba(26,92,143,.08); }
.fi-y { background: rgba(245,166,35,.1); }
.fi-s { background: rgba(26,28,32,.06); }
.feat-title {
  font-family: var(--ff-d);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
  color: var(--ink);
}
.feat-desc { font-size: 17px; color: var(--ink2); line-height: 1.75; }
.feat-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }

/* ── STATS ────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 48px;
}
.stat .n {
  font-family: var(--ff-d);
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat .l {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-family: var(--ff-m);
}

/* ── PHONE MOCK ───────────────────────────────────── */
.phone-mock {
  width: 270px;
  background: #0d0f12;
  border-radius: 42px;
  padding: 13px;
  border: 2px solid #2e2e2e;
  box-shadow: 0 32px 72px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.03);
}
.phone-notch {
  width: 76px; height: 20px;
  background: #0d0f12;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 7px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  overflow: hidden;
}
.phone-bar {
  background: var(--slate);
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-m);
  font-size: 9px;
  color: rgba(255,255,255,.6);
}
.phone-home {
  width: 34px; height: 4px;
  background: #2e2e2e;
  border-radius: 2px;
  margin: 7px auto 0;
}
.phone-tabnav {
  background: #fff;
  border-top: 1px solid var(--bd);
  padding: 5px 0 3px;
  display: flex;
  justify-content: space-around;
}
.tab-ni {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 7.5px;
  color: var(--ink3);
}
.tab-ni.a { color: var(--o); }
.tab-ni .ic { font-size: 15px; }

/* ── FLOATING CARDS ───────────────────────────────── */
@keyframes floatA { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(4px)} }
@keyframes floatC { 0%,100%{transform:translateY(4px)} 50%{transform:translateY(-8px)} }
.float-card {
  position: absolute;
  background: rgba(34,38,46,.95);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: 11px 15px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.fc-lbl { font-family: var(--ff-m); font-size: 8px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.fc-val { font-family: var(--ff-d); font-size: 20px; font-weight: 900; color: #fff; line-height: 1; }
.fc-val.g { color: var(--g); }
.fc-val.o { color: var(--o); }
.fc-val.y { color: var(--y); }
.fc-sub { font-size: 9px; color: rgba(255,255,255,.3); margin-top: 2px; }

/* ── VIGISCORE RING ───────────────────────────────── */
.ss-ring {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-ring-inner {
  background: #1A1C20;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ss-ring-n {
  font-family: var(--ff-d);
  font-weight: 900;
  line-height: 1;
  color: var(--g);
}
.ss-ring-l {
  font-family: var(--ff-m);
  font-size: 9px;
  color: rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── COMP BAR ─────────────────────────────────────── */
.comp-row { display: flex; align-items: center; gap: 12px; }
.comp-lbl { font-size: 11.5px; color: rgba(255,255,255,.4); width: 150px; flex-shrink: 0; }
.comp-bar-wrap { flex: 1; background: rgba(255,255,255,.06); border-radius: 3px; height: 5px; overflow: hidden; }
.comp-bar { height: 100%; border-radius: 3px; }
.comp-val { font-family: var(--ff-m); font-size: 11px; color: rgba(255,255,255,.4); width: 36px; text-align: right; }

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--bd);
  border-radius: 10px;
  overflow: hidden;
}
.plan {
  padding: 40px;
  border-right: 1px solid var(--bd);
  background: var(--sur);
}
.plan:last-child { border-right: none; }
.plan.featured { background: #1A1C20; }
.plan-badge {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.pb-gray   { background: var(--sur2); color: var(--ink3); border: 1px solid var(--bd); }
.pb-orange { background: var(--o); color: #fff; }
.pb-blue   { background: var(--b); color: #fff; }
.plan-name {
  font-family: var(--ff-d);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 5px;
}
.plan.featured .plan-name { color: #fff; }
.plan-desc { font-size: 15px; color: var(--ink2); margin-bottom: 26px; }
.plan.featured .plan-desc { color: rgba(255,255,255,.7); }
.plan-price { margin-bottom: 26px; }
.plan-price .amount { font-family: var(--ff-d); font-size: 52px; font-weight: 900; line-height: 1; color: var(--ink); }
.plan.featured .plan-price .amount { color: #fff; }
.plan-price .cur { font-size: 22px; font-weight: 600; vertical-align: super; }
.plan-price .period { font-size: 12px; color: var(--ink3); margin-top: 4px; }
.plan.featured .plan-price .period { color: rgba(255,255,255,.6); }
.plan-price .custom { font-family: var(--ff-d); font-size: 30px; font-weight: 900; color: #fff; }
.plan-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 26px;
  transition: .15s;
  cursor: pointer;
  border: none;
  font-family: var(--ff-b);
}
.pb-ghost-dark  { background: transparent; border: 1.5px solid var(--bd); color: var(--ink2); }
.pb-ghost-dark:hover  { border-color: var(--o); color: var(--o); }
.pb-main        { background: var(--o); color: #fff; box-shadow: 0 4px 14px rgba(232,121,10,.28); }
.pb-main:hover  { background: var(--od); }
.pb-slate       { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.pb-slate:hover { background: rgba(255,255,255,.15); }
.plan-sep { border: none; border-top: 1px solid var(--bd); margin: 18px 0; }
.plan.featured .plan-sep { border-color: rgba(255,255,255,.6); }
.pf { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; margin-bottom: 10px; }
.pf-icon { flex-shrink: 0; margin-top: 2px; font-size: 15px; }
.pf-txt { color: var(--ink2); line-height: 1.45; }
.plan.featured .pf-txt { color: rgba(255,255,255,.55); }
.pf-txt.off { color: var(--ink4); text-decoration: line-through; }
.plan.featured .pf-txt.off { color: rgba(255,255,255,.2); }

/* ── STEPS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--o), var(--g));
  border-radius: 2px;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.sn-o { background: var(--ol); color: var(--o); border: 2px solid var(--bd); }
.sn-b { background: var(--bl); color: var(--b); border: 2px solid var(--bd); }
.sn-g { background: var(--gl); color: var(--g); border: 2px solid var(--bd); }
.sn-s { background: var(--slate); color: #fff; border: 2px solid var(--slate2); }
.step-emoji { font-size: 26px; margin-bottom: 14px; }
.step-title { font-family: var(--ff-d); font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 9px; color: var(--ink); }
.step-desc { font-size: 15px; color: var(--ink2); line-height: 1.7; }

/* ── SECTOR TABS ──────────────────────────────────── */
.sec-tabs { display: flex; gap: 2px; }
.sec-tab {
  padding: 11px 22px;
  font-family: var(--ff-d);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  border-radius: 7px 7px 0 0;
  background: var(--sur2);
  color: var(--ink3);
  border: 1px solid var(--bd);
  border-bottom: none;
  transition: .15s;
  white-space: nowrap;
}
.sec-tab.active { background: var(--slate); color: #fff; border-color: var(--slate); }
.sec-tab:hover:not(.active) { background: var(--bg); color: var(--ink2); }
.sec-panels {
  border: 1px solid var(--bd);
  border-radius: 0 8px 8px 8px;
  overflow: hidden;
}
.sec-panel { display: none; grid-template-columns: 1fr 1fr; }
.sec-panel.active { display: grid; }
.sec-panel-left {
  padding: 44px;
  background: var(--slate);
}
.sec-panel-left .icon { font-size: 44px; margin-bottom: 18px; }
.sec-panel-left h3 {
  font-family: var(--ff-d);
  font-size: 26px; font-weight: 900;
  text-transform: uppercase;
  color: #fff; margin-bottom: 6px;
}
.sec-panel-left .sub { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.sec-panel-left ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sec-panel-left ul li { font-size: 15px; color: rgba(255,255,255,.7); display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.sec-panel-left ul li::before { content: '→'; color: var(--o); font-size: 10px; flex-shrink: 0; margin-top: 3px; }
.sec-panel-right { padding: 44px; background: var(--bg); }
.sec-panel-right h4 {
  font-family: var(--ff-d);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--ink2); margin-bottom: 18px;
}
.sec-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.sec-check-ico {
  width: 20px; height: 20px;
  background: var(--o); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff;
  flex-shrink: 0; margin-top: 2px;
}
.sec-check-txt { font-size: 15px; color: var(--ink2); line-height: 1.6; }
.sec-check-txt strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 9px;
  padding: 30px;
  position: relative;
}
.testi::before {
  content: '"';
  font-family: var(--ff-d);
  font-size: 72px;
  font-weight: 900;
  color: var(--o);
  opacity: .12;
  position: absolute;
  top: 14px; left: 22px;
  line-height: 1;
}
.testi-text {
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.testi-text strong { color: var(--o); font-weight: 600; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.testi-name { font-family: var(--ff-d); font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--ink); }
.testi-role { font-size: 11.5px; color: var(--ink3); }
.testi-stars { font-size: 12px; color: var(--y); margin-top: 4px; letter-spacing: 1px; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background-color: #1A1C20;
  background: linear-gradient(135deg, #1A1C20 0%, #22262E 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,121,10,.06), transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 28px 0 0; }

/* ── PAGE HEADER ──────────────────────────────────── */
.page-hero {
  background-color: #1A1C20;
  background: #1A1C20;
  padding: 100px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero * { color: inherit; }
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 70% 50%, rgba(232,121,10,.06), transparent 50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 {
  font-family: var(--ff-d);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: .92;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--o); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; line-height: 1.75; }

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  font-family: var(--ff-m);
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: .15s; }
.breadcrumb a:hover { color: var(--o); }
.breadcrumb .sep { color: rgba(255,255,255,.6); }

/* ── LEGAL PAGES ──────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 32px;
}
.legal-content h2 {
  font-family: var(--ff-d);
  font-size: 22px; font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal-content h3 {
  font-family: var(--ff-d);
  font-size: 17px; font-weight: 700;
  text-transform: uppercase;
  color: var(--ink2);
  margin: 24px 0 8px;
}
.legal-content p { font-size: 14px; color: var(--ink2); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 14px; color: var(--ink2); margin-bottom: 6px; line-height: 1.6; }
.legal-content .callout {
  background: var(--ol);
  border-left: 3px solid var(--o);
  border-radius: 0 5px 5px 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--ink2);
}
.legal-content a { color: var(--o); }
.legal-content a:hover { text-decoration: underline; }
.legal-date {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--ink3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}

/* ── SITEMAP ──────────────────────────────────────── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-col h3 {
  font-family: var(--ff-d);
  font-size: 16px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--o);
  margin-bottom: 16px;
}
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap-col ul li a {
  font-size: 14px;
  color: var(--ink3);
  display: flex; align-items: center; gap: 6px;
  transition: .15s;
}
.sitemap-col ul li a::before { content: '→'; color: var(--o); font-size: 10px; }
.sitemap-col ul li a:hover { color: var(--o); padding-left: 4px; }

/* ── CONTACT ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap {
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 40px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--ff-d);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--ink2);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--bd);
  border-radius: 5px;
  padding: 10px 13px;
  font-size: 14px;
  font-family: var(--ff-b);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--o); background: #fff; }
.form-textarea { height: 110px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-ico {
  width: 52px; height: 52px;
  background: rgba(232,121,10,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-block h4 { font-family: var(--ff-d); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.contact-block p { font-size: 17px; color: var(--ink2); line-height: 1.75; }

/* ── ANIMATIONS ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── COOKIE BANNER ────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1A1C20;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9990;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 700px; }
#cookie-banner a { color: var(--o); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--o); color: #fff;
  border: none; padding: 8px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--ff-b);
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.15); padding: 8px 18px; border-radius: 4px;
  font-size: 13px; cursor: pointer;
  font-family: var(--ff-b);
}

/* ═══════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════════ */
.theme-toggle {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s;
  line-height: 1;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,.15); }
body.dark-mode .theme-toggle { background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════════════
   MODE CLAIR — Tout devient clair (nav, hero, footer)
   ═══════════════════════════════════════════════════ */

/* Nav en clair */
body.light-mode #site-nav {
  background: rgba(255,255,255,.97) !important;
  border-bottom: 1px solid var(--bd);
}
body.light-mode .nav-links a { color: var(--ink3); }
body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active { color: var(--ink); background: var(--sur2); }
body.light-mode .nav-logo .wordmark .vigilo { color: var(--o); }
body.light-mode .nav-logo .wordmark .safe-word { color: var(--ink); }
body.light-mode .nav-login { color: var(--ink3); }
body.light-mode .nav-login:hover { color: var(--ink); }
body.light-mode .theme-toggle { background: var(--sur2); border-color: var(--bd); }
body.light-mode .theme-toggle:hover { background: var(--bd); }

/* Hero en clair */
body.light-mode .hero-dark,
body.light-mode .page-hero,
body.light-mode .section-dark {
  background: var(--sur) !important;
  background-color: var(--sur) !important;
}
body.light-mode .hero-dark::after,
body.light-mode .page-hero::after { display: none; }
body.light-mode .hero-grid-lines { display: none; }
body.light-mode .hero-dark h1,
body.light-mode .hero-dark .h-display,
body.light-mode .page-hero h1,
body.light-mode .section-dark .h-section { color: var(--ink) !important; }
body.light-mode .hero-dark h1 span,
body.light-mode .hero-dark .h-display span,
body.light-mode .page-hero h1 span,
body.light-mode .section-dark .h-section span { color: var(--o) !important; }
body.light-mode .hero-dark .lead,
body.light-mode .hero-dark p,
body.light-mode .page-hero p,
body.light-mode .page-hero .lead,
body.light-mode .section-dark .lead,
body.light-mode .lead.on-dark { color: var(--ink2) !important; }
body.light-mode .hero-dark .eyebrow,
body.light-mode .page-hero .eyebrow,
body.light-mode .section-dark .eyebrow { color: var(--o) !important; }
body.light-mode .breadcrumb,
body.light-mode .breadcrumb a,
body.light-mode .page-hero .breadcrumb,
body.light-mode .page-hero .breadcrumb a { color: var(--ink3) !important; }
body.light-mode .breadcrumb .sep { color: var(--bd) !important; }

/* Stats sur hero */
body.light-mode .stat .n { color: var(--ink); }
body.light-mode .stat .l { color: var(--ink3); }

/* Sections dark → clair */
body.light-mode .section-dark * { color: inherit; }
body.light-mode .section-dark .h-section.on-dark { color: var(--ink) !important; }
body.light-mode .cta-band { background: var(--o) !important; }
body.light-mode .cta-band .h-section,
body.light-mode .cta-band .h-section.on-dark { color: #fff !important; }
body.light-mode .cta-band .lead.on-dark { color: rgba(255,255,255,.85) !important; }
body.light-mode .cta-band .eyebrow { color: rgba(255,255,255,.8) !important; }

/* Boutons outline-light → outline-dark en clair */
body.light-mode .btn-outline-light { color: var(--ink); border-color: var(--bd); }
body.light-mode .btn-outline-light:hover { border-color: var(--o); color: var(--o); background: var(--ol); }

/* Secteurs bande */
body.light-mode .sect-bar,
body.light-mode [style*="background:#1A1C20"],
body.light-mode [style*="background-color:#1A1C20"] { background: var(--sur2) !important; }
body.light-mode .sect-item { color: var(--ink2); }
body.light-mode .sect-item:hover { color: var(--ink); }
body.light-mode .sect-sep { background: var(--bd); }

/* Footer en clair */
body.light-mode #site-footer { background: var(--sur2) !important; color: var(--ink3); }
body.light-mode .footer-brand-logo .wm .s1 { color: var(--o); }
body.light-mode .footer-brand-logo .wm .s2 { color: var(--ink); }
body.light-mode .footer-tagline { color: var(--ink4); }
body.light-mode .footer-brand-desc { color: var(--ink3); }
body.light-mode .footer-socials a { border-color: var(--bd); color: var(--ink3); }
body.light-mode .footer-socials a:hover { border-color: var(--o); color: var(--o); }
body.light-mode .footer-col h4 { color: var(--ink4); }
body.light-mode .footer-col ul li a { color: var(--ink3); }
body.light-mode .footer-col ul li a:hover { color: var(--ink); }
body.light-mode .footer-bottom { border-top-color: var(--bd); }
body.light-mode .footer-bottom-left { color: var(--ink4); }
body.light-mode .footer-bottom-right a { color: var(--ink4); }
body.light-mode .footer-bottom-right a:hover { color: var(--ink2); }
body.light-mode .footer-certif { color: var(--ink4); }
body.light-mode .footer-certif span { background: var(--bg); border-color: var(--bd); }

/* Phone mock */
body.light-mode .phone-mock { background: #ddd; border-color: #ccc; box-shadow: 0 16px 48px rgba(0,0,0,.1); }
body.light-mode .phone-notch { background: #ddd; }

/* VigiScore dark sections */
body.light-mode .ss-wrap { background: var(--sur) !important; }
body.light-mode .comp-bar-bg { background: var(--sur2); }

/* Mobile drawer */
body.light-mode .nav-drawer { background: rgba(255,255,255,.98); border-bottom: 1px solid var(--bd); }
body.light-mode .nav-drawer a { color: var(--ink2); border-bottom-color: var(--bd); }
body.light-mode .nav-drawer a:hover { color: var(--ink); }

/* Cookie banner */
body.light-mode #cookie-banner { background: var(--ink); }

/* ── BLOG ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card {
  background: var(--sur);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 32px;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.blog-card .cat {
  display: inline-block;
  font-family: var(--ff-m);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: rgba(232,121,10,.1);
  border: 1px solid rgba(232,121,10,.25);
  color: var(--o);
}
.blog-card h3 {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card .excerpt {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card .meta {
  font-family: var(--ff-m);
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 16px;
}
.blog-card .read-more {
  color: var(--o);
  font-weight: 600;
  font-size: 14px;
  transition: gap .15s;
}
.blog-card .read-more:hover { text-decoration: underline; }

/* Blog filter chips */
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog-chip {
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--ff-m);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--bd);
  background: var(--sur);
  color: var(--ink3);
  transition: .15s;
}
.blog-chip:hover,
.blog-chip.active {
  background: var(--o);
  border-color: var(--o);
  color: #fff;
}

/* Article page */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 80px;
}
.article-body h2 {
  font-family: var(--ff-d);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin: 40px 0 16px;
  color: var(--ink);
}
.article-body p {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-body ul {
  margin: 8px 0 24px 22px;
}
.article-body ul li {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body strong { color: var(--ink); }
.article-cta {
  background: linear-gradient(135deg, #1A1C20 0%, #22262E 100%);
  border-radius: 10px;
  padding: 48px;
  text-align: center;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232,121,10,.07), transparent 60%);
}
.article-cta > * { position: relative; z-index: 1; }
.article-cta h3 {
  font-family: var(--ff-d);
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.article-cta p { color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 24px; }

/* Related articles */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Dark mode for blog */
body.dark-mode .blog-card { background: var(--sur); border-color: var(--bd); }
body.dark-mode .blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.3); }
body.dark-mode .blog-chip { background: var(--sur2); border-color: var(--bd); color: var(--ink3); }
body.dark-mode .blog-chip:hover,
body.dark-mode .blog-chip.active { background: var(--o); border-color: var(--o); color: #fff; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--bd); }
  .plan:last-child { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-right .nav-login { display: none; }
  .nav-burger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-right { justify-content: center; gap: 14px; }
  .sec-panel { grid-template-columns: 1fr; }
  .sec-tabs { flex-wrap: wrap; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 28px; flex-wrap: wrap; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-cta { padding: 32px 24px; }
}
