/* ================================================================
   el2FA — Unified Stylesheet
   All pages: landing, use-cases, security, blog/articles
   WCAG AA contrast fixes applied throughout
   ================================================================ */


/* ────────────────────────────────────────────────────────────────
   1. CUSTOM PROPERTIES
   ──────────────────────────────────────────────────────────────── */

/* ── Dark theme (default) ── */
:root {
  --bg: #09090b;
  --surface: #18181b;
  --surface-hover: #27272a;
  --border: #27272a;
  --border-accent: #3f3f46;
  --text: #fafafa;
  --text-muted: #b4b4bd;
  --accent: #818cf8;              /* text on bg — 6.5:1 */
  --accent-bold: #4f46e5;         /* bg for white text — 7.1:1 */
  --accent-bold-hover: #6366f1;   /* bg hover for white text — 5.2:1 */
  --accent-hover: #a5b4fc;        /* text hover */
  --accent-subtle: rgba(129,140,248,.12);
  --green: #22c55e;
  --green-bold: #16a34a;
  --red: #f87171;
  --nav-bg: rgba(9,9,11,.85);
  --glow: rgba(129,140,248,.25);
  --glow-soft: rgba(129,140,248,.18);
  --glow-faint: rgba(129,140,248,.12);
  --code-float: rgba(129,140,248,.2);
  --shadow: rgba(0,0,0,.4);
  --red-subtle: rgba(248,113,113,.12);
  --green-subtle: rgba(34,197,94,.12);
  --green-subtle-2: rgba(34,197,94,.1);
  --amber-subtle: rgba(251,191,36,.1);
  --amber-subtle-2: rgba(250,204,21,.12);
  --red-faint: rgba(248,113,113,.04);
  --star: #facc15;
  --btn-text: #fff;
  --radius: 12px;
  --max-w: 1200px;
}

/* ── Light theme ── */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #e8e8f0;
    --surface: #f5f5fa;
    --surface-hover: #ededf4;
    --border: #d4d4de;
    --border-accent: #c4c4d0;
    --text: #18181b;
    --text-muted: #52525b;
    --accent: #4f46e5;              /* text on light bg — 7.1:1 */
    --accent-bold: #4338ca;         /* bg for white text — 8.5:1 */
    --accent-bold-hover: #4f46e5;   /* bg hover — 7.1:1 */
    --accent-hover: #3730a3;        /* text hover — darker */
    --accent-subtle: rgba(79,70,229,.08);
    --green: #16a34a;
    --green-bold: #15803d;
    --red: #dc2626;
    --nav-bg: rgba(245,245,250,.92);
    --glow: rgba(79,70,229,.2);
    --glow-soft: rgba(79,70,229,.14);
    --glow-faint: rgba(79,70,229,.08);
    --code-float: rgba(79,70,229,.08);
    --shadow: rgba(0,0,0,.08);
    --red-subtle: rgba(220,38,38,.08);
    --green-subtle: rgba(22,163,74,.08);
    --green-subtle-2: rgba(22,163,74,.06);
    --amber-subtle: rgba(217,119,6,.08);
    --amber-subtle-2: rgba(217,119,6,.06);
    --red-faint: rgba(220,38,38,.04);
    --star: #ca8a04;
    --btn-text: #fff;
  }
}


/* ────────────────────────────────────────────────────────────────
   2. RESET & BASE
   ──────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Prevent browser visited-link purple and default underlines */
a, a:visited {
  color: inherit;
  text-decoration: none;
}
a:hover { color: inherit; }

main, footer {
  position: relative;
  z-index: 1;
}

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


/* ────────────────────────────────────────────────────────────────
   3. ACCESSIBILITY
   ──────────────────────────────────────────────────────────────── */

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent-bold);
  color: var(--btn-text);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus {
  top: 8px;
}

/* Global focus-visible outline */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ────────────────────────────────────────────────────────────────
   4. NAVIGATION
   ──────────────────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo span { color: var(--accent); }
.logo a {
  color: inherit;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn),
.nav-links a:not(.btn):visited {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a.active,
.nav-links a.active:visited {
  color: var(--text);
  font-weight: 600;
}

/* Nav dropdown (use-case pages) */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a,
.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-muted);
  font: inherit;
  font-size: .9rem;
  padding: 0;
  transition: color .2s;
}
.nav-dropdown > a:hover,
.nav-dropdown > button:hover { color: var(--text); }
.nav-dropdown > a::after,
.nav-dropdown > button::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-muted);
  transition: transform .2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after,
.nav-dropdown:hover > button::after,
.nav-dropdown:focus-within > button::after,
.nav-dropdown.open > button::after { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding: 8px 0;
  margin-top: 0;
  padding-top: 20px;               /* invisible hover bridge above visible menu */
  background: transparent;
}
.dropdown-menu-inner {
  background: var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  box-shadow: 0 12px 32px var(--shadow);
  padding: 8px 0;
  overflow: hidden;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a,
.dropdown-menu a:visited {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover {
  color: var(--text);
  background: var(--surface-hover);
}


/* ────────────────────────────────────────────────────────────────
   5. BUTTONS
   ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-primary,
.btn-primary:visited {
  background: var(--accent-bold);
  color: var(--btn-text);
}
.btn-primary:hover {
  background: var(--accent-bold-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
}
.btn-secondary,
.btn-secondary:visited {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-accent);
}
.btn-secondary:hover {
  background: var(--surface-hover);
  color: var(--text);
}
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }


/* ────────────────────────────────────────────────────────────────
   6. HERO
   ──────────────────────────────────────────────────────────────── */

.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: visible;
}
/* Hero glow removed — now in .bg-effects */

/* ── Fixed background effects layer ── */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 700px 550px at 15% 10%, var(--glow) 0%, transparent 65%),
    radial-gradient(ellipse 550px 450px at 85% 45%, var(--glow-soft) 0%, transparent 65%),
    radial-gradient(ellipse 450px 400px at 50% 90%, var(--glow-faint) 0%, transparent 65%);
}

/* Dot grid */
.bg-effects .dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--text-muted) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .12;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 40%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 40%);
}

/* Floating codes */
.bg-codes {
  position: absolute;
  inset: 0;
}
.bg-codes span {
  position: absolute;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-weight: 600;
  color: var(--code-float);
  white-space: nowrap;
  letter-spacing: .2em;
  animation: float-code linear infinite;
}
@keyframes float-code {
  0%   { transform: translateY(0); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

/* Ensure all content sits above effects */
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent-subtle);
  color: var(--accent-hover);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 24px;
}
.hero h1 .highlight { color: var(--accent); }

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  margin-bottom: 32px;
  transition: height .4s ease;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}
.hero-dot:hover {
  background: var(--accent);
}

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

.hero-note {
  margin-top: 0;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Phone Mockup Frame ── */
.phone-frame {
  position: relative;
  width: 260px;
  flex-shrink: 0;
  border-radius: 36px;
  border: 4px solid var(--border-accent);
  background: var(--surface);
  box-shadow: 0 20px 60px var(--shadow), 0 0 0 1px var(--border);
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px;
  background: var(--surface);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

/* ── App Showcase (horizontal scroll) ── */
.app-showcase {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.app-showcase .header {
  text-align: center;
  margin-bottom: 64px;
}
.app-showcase h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.app-showcase .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.phone-scroll {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.phone-scroll::-webkit-scrollbar { display: none; }
.phone-scroll > div {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.scroll-spacer {
  min-width: 48px;
  height: 1px;
  flex-shrink: 0;
}
.phone-caption {
  text-align: center;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── Hero Phone Trio ── */
.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin-top: 72px;
  margin-bottom: 72px;
  perspective: 1000px;
}
.hero-phones .phone-frame {
  transition: transform .3s ease;
}
.hero-phones .phone-frame:nth-child(1) {
  transform: rotateY(8deg) scale(.9);
  opacity: .7;
}
.hero-phones .phone-frame:nth-child(2) {
  transform: scale(1.05);
  z-index: 2;
}
.hero-phones .phone-frame:nth-child(3) {
  transform: rotateY(-8deg) scale(.9);
  opacity: .7;
}
.hero-phones .phone-frame:hover {
  transform: scale(1.02);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-phones {
    gap: 12px;
  }
  .hero-phones .phone-frame {
    width: 160px;
  }
  .hero-phones .phone-frame:nth-child(1),
  .hero-phones .phone-frame:nth-child(3) {
    display: none;
  }
  .hero-phones .phone-frame:nth-child(2) {
    transform: scale(1);
  }
  .phone-frame { width: 220px; }
  .phone-scroll { padding: 0 24px; }
}


/* ────────────────────────────────────────────────────────────────
   7. SECTION SHARED
   ──────────────────────────────────────────────────────────────── */

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
}


/* ────────────────────────────────────────────────────────────────
   8. LOGOS (landing page)
   ──────────────────────────────────────────────────────────────── */

.logos {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos p {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: .4;
}
.logo-row span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.01em;
}


/* ────────────────────────────────────────────────────────────────
   9. PROBLEM (landing + use-case pages)
   ──────────────────────────────────────────────────────────────── */

.problem { padding: 100px 0; }
.problem .container { max-width: 760px; }
.problem h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.problem-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red-subtle);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.problem-list li strong { display: block; margin-bottom: 4px; }
.problem-list li span { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   10. FEATURES (landing page)
   ──────────────────────────────────────────────────────────────── */

.features { padding: 100px 0; }
.features .header { text-align: center; margin-bottom: 64px; }
.features h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.features .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--border-accent); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   11. HOW IT WORKS / STEPS (landing + security pages)
   ──────────────────────────────────────────────────────────────── */

.how-it-works { padding: 100px 0; border-top: 1px solid var(--border); }
.how-it-works .header { text-align: center; margin-bottom: 64px; }
.how-it-works h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.how-it-works .header p { color: var(--text-muted); font-size: 1.05rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.step { text-align: center; padding: 24px; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   12. PRICING (landing page)
   ──────────────────────────────────────────────────────────────── */

.pricing { padding: 100px 0; border-top: 1px solid var(--border); }
.pricing .header { text-align: center; margin-bottom: 64px; }
.pricing h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.pricing .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.pricing-toggle span { font-size: .9rem; color: var(--text-muted); }
.pricing-toggle .active { color: var(--text); font-weight: 600; }

.save-badge {
  background: var(--green-subtle);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.price-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--glow-soft);
}

.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-bold);
  color: var(--btn-text);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 16px;
  border-radius: 999px;
}

.price-card .tier {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.price-card .price span {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-card .price-desc {
  color: var(--text-muted);
  font-size: .85rem;
  margin: 8px 0 24px;
}
.price-card ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card ul li {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card ul li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
}
.price-card .btn { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: .85rem;
}


/* ────────────────────────────────────────────────────────────────
   13. TRUST / SECURITY (landing page)
   ──────────────────────────────────────────────────────────────── */

.trust { padding: 100px 0; border-top: 1px solid var(--border); }
.trust .header { text-align: center; margin-bottom: 64px; }
.trust h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.trust .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.trust-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-subtle-2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.trust-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.trust-card p { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   14. TESTIMONIALS (landing page)
   ──────────────────────────────────────────────────────────────── */

.testimonials { padding: 100px 0; border-top: 1px solid var(--border); }
.testimonials .header { text-align: center; margin-bottom: 64px; }
.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.testimonial-card .stars {
  color: var(--star);              /* accessible on surface — ~8.7:1 */
  margin-bottom: 16px;
  font-size: .9rem;
}
.testimonial-card blockquote {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-style: italic;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}
.testimonial-card .author-info strong { display: block; font-size: .85rem; }
.testimonial-card .author-info span { font-size: .8rem; color: var(--text-muted); }


/* ────────────────────────────────────────────────────────────────
   15. FAQ (landing + security pages)
   ──────────────────────────────────────────────────────────────── */

.faq { padding: 100px 0; border-top: 1px solid var(--border); }
.faq .container { max-width: 720px; }
.faq .header { text-align: center; margin-bottom: 48px; }
.faq h2 { font-size: 2.2rem; font-weight: 700; letter-spacing: -.02em; }
.faq .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--text-muted);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 12px;
  padding-right: 32px;
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────
   16. SCENARIOS (use-case pages)
   ──────────────────────────────────────────────────────────────── */

.scenarios { padding: 100px 0; border-top: 1px solid var(--border); }
.scenarios .header { text-align: center; margin-bottom: 64px; }
.scenarios h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.scenarios .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.scenario-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.scenario-card:hover { border-color: var(--border-accent); }
.scenario-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--amber-subtle);
  color: var(--star);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.scenario-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.scenario-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }


/* ────────────────────────────────────────────────────────────────
   17. BENEFITS (use-case pages)
   ──────────────────────────────────────────────────────────────── */

.benefits { padding: 100px 0; border-top: 1px solid var(--border); }
.benefits .header { text-align: center; margin-bottom: 64px; }
.benefits h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.benefits .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.benefit-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.benefit-card:hover { border-color: var(--border-accent); }
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.benefit-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   18. RISK (use-case: devops)
   ──────────────────────────────────────────────────────────────── */

.risk { padding: 100px 0; border-top: 1px solid var(--border); }
.risk .header { text-align: center; margin-bottom: 64px; }
.risk h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.risk .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.risk-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.risk-card:hover { border-color: var(--border-accent); }
.risk-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red-subtle);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.risk-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--red);
}
.risk-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }


/* ────────────────────────────────────────────────────────────────
   19. SOLUTION (use-case: devops)
   ──────────────────────────────────────────────────────────────── */

.solution { padding: 100px 0; border-top: 1px solid var(--border); }
.solution .header { text-align: center; margin-bottom: 64px; }
.solution h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.solution .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.solution-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.solution-card:hover { border-color: var(--border-accent); }
.solution-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.solution-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.solution-card p { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   20. CORE PRINCIPLES (security page)
   ──────────────────────────────────────────────────────────────── */

.principles { padding: 100px 0; border-top: 1px solid var(--border); }
.principles .header { text-align: center; margin-bottom: 64px; }
.principles h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.principles .header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.principle-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.principle-card:hover { border-color: var(--border-accent); }
.principle-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green-subtle-2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.principle-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.principle-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }


/* ────────────────────────────────────────────────────────────────
   21. SHARING (security page)
   ──────────────────────────────────────────────────────────────── */

.sharing { padding: 100px 0; border-top: 1px solid var(--border); }
.sharing .header { text-align: center; margin-bottom: 64px; }
.sharing h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.sharing .header p { color: var(--text-muted); font-size: 1.05rem; }


/* ────────────────────────────────────────────────────────────────
   22. RECOVERY (security page)
   ──────────────────────────────────────────────────────────────── */

.recovery { padding: 100px 0; border-top: 1px solid var(--border); }
.recovery .inner { max-width: 760px; margin: 0 auto; }
.recovery h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 32px;
}

.recovery-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recovery-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.recovery-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-subtle-2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.recovery-points li strong { display: block; margin-bottom: 4px; }
.recovery-points li span { color: var(--text-muted); font-size: .9rem; }


/* ────────────────────────────────────────────────────────────────
   23. CTA SECTIONS (use-case + final CTA shared)
   ──────────────────────────────────────────────────────────────── */

.cta-section {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--glow-soft) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 36px;
}

.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, var(--glow-soft) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.final-cta .hero-note { margin-top: 16px; }


/* ────────────────────────────────────────────────────────────────
   24. ARTICLE HEADER / HERO (blog pages)
   ──────────────────────────────────────────────────────────────── */

.article-header,
.article-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-header::before,
.article-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, var(--glow-faint) 0%, transparent 70%);
  pointer-events: none;
}

.article-header .breadcrumb,
.article-hero .breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-header .breadcrumb a,
.article-hero .breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.article-header .breadcrumb a:hover,
.article-hero .breadcrumb a:hover {
  color: var(--accent-hover);
}

.article-header h1,
.article-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto 20px;
}

.article-meta {
  font-size: .85rem;
  color: var(--text-muted);
}


/* ────────────────────────────────────────────────────────────────
   25. ARTICLE BODY (blog pages)
   ──────────────────────────────────────────────────────────────── */

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.article-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 56px 0 20px;
  color: var(--text);
}
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}
.article-body p { /* last definition wins — keeping 1.05/1.8 above */ }
.article-body strong {
  color: var(--text);
  font-weight: 600;
}

/* Intro variants */
.article-body .intro {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.article-body .intro-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 40px;
}

/* Lists */
.article-body ul,
.article-body ol {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}
.article-body ul li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.article-body ol li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────
   26. ARTICLE — RISK CARDS (blog variant)
   ──────────────────────────────────────────────────────────────── */

.article-body .risk-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.article-body .risk-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
}
.article-body .risk-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}

.risk-card .risk-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.risk-card .risk-label.high {
  background: var(--red-subtle);
  color: var(--red);
}
.risk-card .risk-label.medium {
  background: var(--amber-subtle-2);
  color: var(--star);
}


/* ────────────────────────────────────────────────────────────────
   27. ARTICLE — SCENARIO CALLOUTS (blog variant)
   ──────────────────────────────────────────────────────────────── */

.scenario {
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  background: var(--red-faint);
  margin-bottom: 16px;
}
.scenario p {
  font-size: .95rem;
  color: var(--text-muted);
  margin: 0;
}
.scenario strong {
  color: var(--text);
}


/* ────────────────────────────────────────────────────────────────
   28. ARTICLE — BENEFIT LIST (blog pages)
   ──────────────────────────────────────────────────────────────── */

.benefit-list {
  list-style: none !important;
  margin-left: 0 !important;
  padding: 0;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.benefit-list li::before {
  content: none !important;
}
.check-icon {
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
}


/* ────────────────────────────────────────────────────────────────
   29. ARTICLE — STEP LIST (blog pages, counter-based)
   ──────────────────────────────────────────────────────────────── */

.step-list {
  list-style: none !important;
  margin-left: 0 !important;
  counter-reset: step-counter;
}
.step-list li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-list li::before {
  content: counter(step-counter) !important;
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  margin-top: 2px;
}


/* ────────────────────────────────────────────────────────────────
   30. ARTICLE — CONCLUSION (blog pages)
   ──────────────────────────────────────────────────────────────── */

.conclusion {
  margin-top: 56px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}
.conclusion p {
  font-size: 1.05rem;
  line-height: 1.8;
}


/* ────────────────────────────────────────────────────────────────
   31. ARTICLE CTA (blog pages)
   ──────────────────────────────────────────────────────────────── */

.article-cta {
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, var(--glow-faint) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  color: var(--text);
}
.article-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 28px;
}
.article-cta .btn {
  margin-bottom: 12px;
}
.article-cta .hero-note {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--text-muted);
}


/* ────────────────────────────────────────────────────────────────
   32. COMPARISON TABLE (blog: TOTP vs OTP)
   ──────────────────────────────────────────────────────────────── */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 36px;
  font-size: .95rem;
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  color: var(--text);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--surface);
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table td {
  color: var(--text-muted);
  line-height: 1.6;
}
.comparison-table td:first-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.comparison-table tr:last-child td { border-bottom: none; }


/* ────────────────────────────────────────────────────────────────
   33. COMPARE CARDS (blog: best-2fa-apps)
   ──────────────────────────────────────────────────────────────── */

.compare-card {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: border-color .2s;
}
.compare-card:hover { border-color: var(--border-accent); }
.compare-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--glow-faint);
}
.compare-card .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-card .card-title .badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-bold);
  color: var(--btn-text);
}
.compare-card .card-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.compare-card .card-desc:last-child { margin-bottom: 0; }
.compare-card .best-for {
  font-size: .85rem;
  color: var(--accent-hover);
  font-weight: 600;
}

.bottom-line-list {
  margin-bottom: 28px;
}
.bottom-line-list li {
  font-size: 1.05rem;
}


/* ────────────────────────────────────────────────────────────────
   34. FOOTER
   ──────────────────────────────────────────────────────────────── */

footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a,
.footer-links a:visited {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: .8rem; color: var(--text-muted); }


/* ────────────────────────────────────────────────────────────────
   35. RESPONSIVE
   ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }

  /* Hero */
  .hero h1 { font-size: 2.2rem; }

  /* Landing page */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .final-cta h2 { font-size: 1.8rem; }

  /* Use-case pages */
  .cta-section h2 { font-size: 1.6rem; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .risk-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }

  /* Security page */
  .principles-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* Blog / article pages */
  .article-header h1,
  .article-hero h1 { font-size: 1.8rem; }
  .article-body h2 { font-size: 1.35rem; }
  .article-cta { padding: 48px 24px; }
  .article-cta h2 { font-size: 1.5rem; }
  .compare-card { padding: 24px 20px; }

  /* Comparison table */
  .comparison-table { font-size: .85rem; }
  .comparison-table th,
  .comparison-table td { padding: 12px 14px; }
  .comparison-table td:first-child { white-space: normal; }
}


/* ────────────────────────────────────────────────────────────────
   SVG ILLUSTRATIONS
   ──────────────────────────────────────────────────────────────── */

.hero-illustration {
  max-width: 500px;
  margin: 40px auto 0;
  display: block;
}

.step-illustration {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.trust-icon svg,
.feature-icon svg {
  display: inline-block;
  vertical-align: middle;
}
