/* ============================================================
   MSTOTO — Professional Landing Page Styles
   Layer 1: SEO content (Googlebot + User)
   Layer 2: Black overlay via JS
   ============================================================ */

:root {
  --color-bg: #edf2f8;
  --color-bg-alt: #f7f9fc;
  --color-surface: #ffffff;
  --color-text: #071526;
  --color-text-muted: #3d5470;
  --color-accent: #d4a017;
  --color-accent-dark: #a67c00;
  --color-accent-hover: #f0c14b;
  --color-border: #c8d6e8;
  --color-hero-from: #03101f;
  --color-hero-to: #0a3d8f;
  --color-gold: #ffd700;
  --color-blue: #1a6fd4;
  --color-blue-deep: #061a36;
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --container-max: 1080px;
  --section-pad: 5rem;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(7, 21, 38, 0.05);
  --shadow-md: 0 8px 28px rgba(7, 21, 38, 0.09);
  --shadow-lg: 0 18px 50px rgba(7, 21, 38, 0.14);
  --content-inset: 0.5rem;
  --glow-gold: 0 0 22px rgba(255, 215, 0, 0.4), 0 4px 14px rgba(212, 160, 23, 0.35);
  --glow-gold-strong: 0 0 32px rgba(255, 215, 0, 0.55), 0 8px 28px rgba(212, 160, 23, 0.5);
}

/* Black mode — overlay aktif; jangan ubah warna teks konten SEO */
body.user-mode {
  background-color: var(--color-blue-deep);
}

/* Layer 1: konten putih selalu kontras tinggi */
.white-content {
  color: #1a1a2e;
}

.white-content .content-section,
.white-content .section-alt.content-section,
.white-content .toc {
  background: transparent;
  color: #1a1a2e;
}

.white-content .faq-details,
.white-content .strategy-card {
  background: transparent;
  color: #1a1a2e;
}

.white-content .criteria-card,
.white-content .blog-card,
.white-content .review-card,
.white-content .pros-box,
.white-content .cons-box {
  background: #ffffff;
  color: #1a1a2e;
}

.white-content .stats-strip {
  background: linear-gradient(90deg, #03101f 0%, #0a2f6e 50%, #061a36 100%);
  color: #ffffff;
}

.white-content .stats-strip .stat-value {
  color: #ffd700;
}

.white-content .score-banner__text,
.white-content .score-banner p,
.white-content .metric-rail span {
  color: rgba(255, 255, 255, 0.85);
}

.white-content .metric-rail strong,
.white-content .score-banner__number,
.white-content .score-banner__stars {
  color: #ffd700;
}

.white-content .score-banner__count {
  color: rgba(255, 255, 255, 0.6);
}

.white-content .section-head h2 {
  color: #1a1a2e;
}

.white-content .split-panel,
.white-content .process-steps li,
.white-content .provider-pill {
  background: #ffffff;
  color: #1a1a2e;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content .content-section h2,
.white-content .criteria-card strong,
.white-content .strategy-card h3,
.white-content .faq-details summary {
  color: #1a1a2e;
}

.white-content p,
.white-content .content-prose p,
.white-content .section p,
.white-content .criteria-card p,
.white-content .strategy-card p,
.white-content .feature-list li,
.white-content .faq-details p,
.white-content .blog-card p,
.white-content .review-card__body p {
  color: #4a4a5a;
}

.white-content .content-section > p:first-of-type,
.white-content .content-prose p:first-child {
  color: #2a2a3e;
}

.white-content .section-tag,
.white-content .toc-label {
  color: #1a6fd4;
}

.white-content .highlight-box__label {
  color: rgba(255, 255, 255, 0.6);
}

.white-content .section-head h2,
.white-content .section-head__copy h2,
.white-content .faq-details summary,
.white-content .criteria-list strong,
.white-content .strategy-row h3,
.white-content .split-panel h3,
.white-content .process-steps strong,
.white-content .section-lead,
.white-content .section-note {
  color: #071526;
}

.white-content .faq-details p,
.white-content .criteria-list p,
.white-content .strategy-row p,
.white-content .process-steps p,
.white-content .section-note {
  color: #3d5470;
}

.white-content .score-banner,
.white-content .score-banner p,
.white-content .score-banner .score-banner__text {
  color: rgba(255, 255, 255, 0.92);
}

.white-content .score-banner .score-banner__number,
.white-content .score-banner .score-banner__stars {
  color: #ffd700;
}

.white-content .score-banner .score-banner__count {
  color: rgba(255, 255, 255, 0.7);
}

.white-content .hero-landing .hero-brand {
  background: linear-gradient(115deg, #fff8d0 0%, #ffd700 40%, #f0c14b 70%, #fff3a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 215, 0, 0.35));
}

.white-content .hero-landing h1 {
  color: #ffffff;
}

.white-content .hero-landing .hero-landing__lead,
.white-content .hero-landing p.hero-landing__lead {
  color: rgba(255, 255, 255, 0.88);
}

.white-content .faq-details__q {
  color: #03101f;
  background: #ffd700;
  box-shadow: none;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.table-wrap,
.blog-list,
.content-section,
.hero-landing__grid {
  max-width: 100%;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-hover);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
  --header-cta-h: 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: linear-gradient(180deg, rgba(3, 16, 31, 0.85) 0%, rgba(3, 16, 31, 0.35) 70%, transparent 100%);
  border-bottom: none;
  box-shadow: none;
  padding: 0.5rem 0;
  pointer-events: none;
}

.site-header .header-inner,
.site-header .brand,
.site-header .main-nav,
.site-header .header-actions,
.site-header .theme-toggle,
.site-header .header-cta {
  pointer-events: auto;
}

.site-header .container.header-inner {
  max-width: none;
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  height: var(--header-cta-h);
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
}

.brand-logo {
  display: block;
  /* PNG punya padding hitam besar — scale & crop agar mark = tinggi tombol */
  height: calc(var(--header-cta-h) * 2.75);
  width: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: none;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #041530;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 8px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--header-cta-h);
  padding: 0 1.2rem;
  margin-left: 0.5rem;
  background: linear-gradient(120deg, var(--color-accent), var(--color-gold) 60%, #fff4b0);
  color: #03101f;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--glow-gold);
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  flex-shrink: 0;
}

.header-cta:hover {
  color: #03101f;
  transform: translateY(-1px);
  box-shadow: var(--glow-gold-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 999px;
  background: rgba(3, 16, 31, 0.35);
  color: #ffd700;
  cursor: pointer;
  position: relative;
  z-index: 5001;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.theme-toggle svg {
  pointer-events: none;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 208, 96, 0.45);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.theme-toggle__icon {
  display: none;
  line-height: 0;
}

html[data-theme="light"] .theme-toggle__icon--moon,
html[data-theme="dark"] .theme-toggle__icon--sun {
  display: block;
}

/* --- Dark theme (content) --- */
html[data-theme="dark"] {
  --color-bg: #04101f;
  --color-bg-alt: #071a30;
  --color-surface: #0b2040;
  --color-text: #eaf2ff;
  --color-text-muted: #9bb0cc;
  --color-border: #1e3f6a;
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

html[data-theme="dark"] .white-content {
  color: var(--color-text);
}

/* Content body — fully dark (visible difference from light) */
html[data-theme="dark"] .content-wrap,
html[data-theme="dark"] .white-content .content-wrap {
  color: var(--color-text);
  background:
    radial-gradient(ellipse 55% 35% at 100% 0%, rgba(26, 111, 212, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 30% at 0% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #04101f 0%, #071a30 40%, #041528 100%);
}

html[data-theme="dark"] .white-content .content-section,
html[data-theme="dark"] .white-content .section-alt.content-section {
  background: transparent;
  color: var(--color-text);
  border-bottom-color: rgba(255, 215, 0, 0.12);
}

html[data-theme="dark"] .content-section:nth-child(even) {
  background: linear-gradient(90deg, rgba(11, 32, 64, 0.7) 0%, transparent 100%);
}

html[data-theme="dark"] .white-content .section-head h2,
html[data-theme="dark"] .white-content .section-head__copy h2,
html[data-theme="dark"] .white-content .content-wrap h2,
html[data-theme="dark"] .white-content .content-wrap h3,
html[data-theme="dark"] .white-content .criteria-list strong,
html[data-theme="dark"] .white-content .strategy-row h3,
html[data-theme="dark"] .white-content .split-panel h3,
html[data-theme="dark"] .white-content .process-steps strong,
html[data-theme="dark"] .white-content .section-lead,
html[data-theme="dark"] .white-content .faq-details summary {
  color: #eaf2ff;
}

html[data-theme="dark"] .white-content .section-tag,
html[data-theme="dark"] .white-content .toc-label,
html[data-theme="dark"] .white-content .provider-row__label {
  color: #ffd700;
}

html[data-theme="dark"] .section-head__index {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.35) 0%, rgba(26, 111, 212, 0.45) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="dark"] .white-content .faq-details p,
html[data-theme="dark"] .white-content .criteria-list p,
html[data-theme="dark"] .white-content .strategy-row p,
html[data-theme="dark"] .white-content .process-steps p,
html[data-theme="dark"] .white-content .section-note,
html[data-theme="dark"] .white-content .content-prose p,
html[data-theme="dark"] .white-content .feature-list li,
html[data-theme="dark"] .white-content .section p,
html[data-theme="dark"] .white-content p {
  color: #9bb0cc;
}

html[data-theme="dark"] .white-content .content-prose--lead p,
html[data-theme="dark"] .white-content .section-lead,
html[data-theme="dark"] .white-content .content-prose p:first-child {
  color: #d5e4f7;
}

html[data-theme="dark"] .white-content .faq-wrapper {
  background: #0b2040;
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .white-content .faq-details {
  background: transparent;
  color: #eaf2ff;
  border-bottom-color: rgba(255, 215, 0, 0.12);
}

html[data-theme="dark"] .white-content .faq-details:hover,
html[data-theme="dark"] .white-content .faq-details[open] {
  background: rgba(255, 215, 0, 0.05);
}

html[data-theme="dark"] .white-content .faq-details summary::after {
  border-color: #ffd700;
}

html[data-theme="dark"] .white-content .faq-details__q {
  color: #03101f;
  background: #ffd700;
}

html[data-theme="dark"] .white-content .split-panel,
html[data-theme="dark"] .white-content .process-steps li,
html[data-theme="dark"] .white-content .provider-pill {
  background: #0b2040;
  color: #eaf2ff;
  border-color: rgba(255, 215, 0, 0.18);
}

html[data-theme="dark"] .white-content .provider-pill {
  color: #ffd700;
}

html[data-theme="dark"] .split-panels {
  border-color: rgba(255, 215, 0, 0.15);
}

html[data-theme="dark"] .split-panel--pro {
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.12) 0%, #0b2040 45%);
  border-right-color: rgba(255, 215, 0, 0.12);
}

html[data-theme="dark"] .split-panel--con {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.1) 0%, #0b2040 45%);
}

html[data-theme="dark"] .process-steps li {
  border-color: rgba(255, 215, 0, 0.15);
  border-top-color: #ffd700;
}

html[data-theme="dark"] .criteria-list {
  background: #0b2040;
  border-color: rgba(255, 215, 0, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .criteria-list li {
  border-bottom-color: rgba(255, 215, 0, 0.12);
  border-right-color: rgba(255, 215, 0, 0.12);
}

html[data-theme="dark"] .criteria-list li:hover {
  background: rgba(255, 215, 0, 0.05);
}

html[data-theme="dark"] .strategy-stack {
  background: #0b2040;
  border-color: rgba(255, 215, 0, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .strategy-row {
  border-bottom-color: rgba(255, 215, 0, 0.12);
  border-right-color: rgba(255, 215, 0, 0.12);
}

html[data-theme="dark"] .strategy-row:hover {
  background: rgba(255, 215, 0, 0.05);
}

html[data-theme="dark"] .strategy-row__num {
  color: #ffd700;
  background: linear-gradient(145deg, #0c356e 0%, #061a36 55%, #03101f 100%);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .section-note {
  border-top-color: rgba(255, 215, 0, 0.2);
}

html[data-theme="dark"] .disclaimer-box {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  border-left-color: #ffd700;
  color: #9bb0cc;
}

html[data-theme="dark"] .disclaimer-box strong {
  color: #ffd700;
}

html[data-theme="dark"] .compare-table td {
  background: rgba(11, 32, 64, 0.85);
  border-bottom-color: rgba(255, 215, 0, 0.1);
  color: #9bb0cc;
}

html[data-theme="dark"] .compare-table td:first-child {
  background: rgba(4, 16, 31, 0.9);
  color: #eaf2ff;
}

html[data-theme="dark"] .compare-table tbody tr:hover td {
  background: rgba(255, 215, 0, 0.08);
}

html[data-theme="dark"] .compare-table thead {
  background: linear-gradient(90deg, #03101f, #0a3d8f);
}

html[data-theme="dark"] .compare-table th {
  color: #fff;
}

html[data-theme="dark"] .compare-table th:nth-child(2) {
  background: linear-gradient(135deg, #d4a017, #ffd700);
  color: #03101f;
}

html[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #030d1a 0%, #020a14 100%);
  border-top-color: rgba(255, 215, 0, 0.22);
}

html[data-theme="dark"] .footer-copy {
  color: rgba(255, 255, 255, 0.55);
}

html[data-theme="dark"] .stats-strip,
html[data-theme="dark"] .white-content .stats-strip {
  background: linear-gradient(90deg, #020a14 0%, #0a2f6e 50%, #04101f 100%);
  border-bottom-color: rgba(255, 215, 0, 0.3);
}

html[data-theme="dark"] .site-header {
  background: linear-gradient(180deg, rgba(2, 10, 20, 0.85) 0%, transparent 100%);
}

/* Light theme — explicit bright surfaces */
html[data-theme="light"] .content-wrap,
html[data-theme="light"] .white-content .content-wrap {
  color: #071526;
  background: linear-gradient(180deg, #e8eef6 0%, #f4f7fb 18%, #edf2f8 100%);
}

html[data-theme="light"] .white-content .section-head h2,
html[data-theme="light"] .white-content .faq-details summary,
html[data-theme="light"] .white-content .section-lead {
  color: #071526;
}

html[data-theme="light"] .white-content .section-tag {
  color: #1a6fd4;
}

html[data-theme="light"] .white-content .faq-wrapper {
  background: #ffffff;
}

html[data-theme="light"] .white-content .faq-details {
  background: #ffffff;
  color: #071526;
}

html[data-theme="light"] .white-content .score-banner {
  background: linear-gradient(115deg, #03101f 0%, #0a2f6e 55%, #0d3d82 100%);
  border: 1px solid rgba(10, 47, 110, 0.2);
  box-shadow: 0 12px 36px rgba(3, 16, 31, 0.14);
  color: #ffffff;
}

html[data-theme="light"] .white-content .score-banner .score-banner__text,
html[data-theme="light"] .white-content .score-banner p {
  color: rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .white-content .score-banner .score-banner__number,
html[data-theme="light"] .white-content .score-banner .score-banner__stars {
  color: #ffd700;
}

html[data-theme="light"] .white-content .score-banner .score-banner__count {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .white-content .hero-landing .hero-brand {
  background: linear-gradient(115deg, #fff8d0 0%, #ffd700 40%, #f0c14b 70%, #fff3a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 18px rgba(255, 215, 0, 0.45));
}

html[data-theme="light"] .white-content .hero-landing h1 {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(3, 16, 31, 0.45);
}

html[data-theme="light"] .white-content .hero-landing .hero-landing__lead,
html[data-theme="light"] .white-content .hero-landing p.hero-landing__lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(3, 16, 31, 0.4);
}

html[data-theme="light"] .hero-landing__veil {
  background:
    linear-gradient(105deg, rgba(3, 16, 31, 0.88) 0%, rgba(3, 16, 31, 0.58) 40%, rgba(3, 16, 31, 0.35) 65%, rgba(3, 16, 31, 0.55) 100%),
    radial-gradient(ellipse 60% 50% at 75% 55%, transparent 0%, rgba(3, 16, 31, 0.28) 100%);
}

html[data-theme="light"] body {
  background-color: #edf2f8;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.15rem;
  position: relative;
}

.main-nav a:hover {
  color: var(--color-gold);
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* --- Hero Landing (full-bleed) --- */
.hero-landing {
  --hero-header-clear: 4.25rem; /* ruang aman di bawah header fixed */
  position: relative;
  min-height: min(92vh, 820px);
  min-height: min(92dvh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 7.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-landing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #03101f;
}

.hero-landing__photo {
  position: absolute;
  top: var(--hero-header-clear);
  left: 0;
  width: 100%;
  height: calc(100% - var(--hero-header-clear));
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
  transform-origin: center top;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-0.6%, 0, 0); }
}

.hero-landing__veil {
  position: absolute;
  top: var(--hero-header-clear);
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(105deg, rgba(3, 16, 31, 0.78) 0%, rgba(3, 16, 31, 0.45) 38%, rgba(3, 16, 31, 0.28) 62%, rgba(3, 16, 31, 0.55) 100%),
    radial-gradient(ellipse 60% 50% at 75% 55%, transparent 0%, rgba(3, 16, 31, 0.25) 100%);
  pointer-events: none;
}

/* --- Fireworks --- */
.fireworks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.fw {
  position: absolute;
  width: 0;
  height: 0;
}
.fw--1 { top: 16%; left: 18%; animation: fw-cycle 3.2s ease-out infinite; }
.fw--2 { top: 24%; left: 72%; animation: fw-cycle 3.2s ease-out 1.1s infinite; }
.fw--3 { top: 12%; left: 48%; animation: fw-cycle 3.2s ease-out 2s infinite; }
.fw--4 { top: 38%; left: 28%; animation: fw-cycle 3.6s ease-out 0.55s infinite; }
.fw--5 { top: 20%; left: 86%; animation: fw-cycle 3.4s ease-out 1.6s infinite; }
.fw--6 { top: 42%; left: 62%; animation: fw-cycle 3.5s ease-out 2.4s infinite; }
.fw i {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--spark, #ffd700);
  box-shadow: 0 0 8px 1px var(--spark, #ffd700);
  opacity: 0;
  animation: fw-spark 3.2s ease-out infinite;
  animation-delay: inherit;
}
.fw--4 i,
.fw--5 i,
.fw--6 i {
  animation-duration: 3.5s;
  width: 4px;
  height: 4px;
}
.fw i:nth-child(1)  { --dx: 0px;   --dy: -56px; --spark: #ffd700; }
.fw i:nth-child(2)  { --dx: 40px;  --dy: -40px; --spark: #fff3a0; }
.fw i:nth-child(3)  { --dx: 56px;  --dy: 0px;   --spark: #ffec6a; }
.fw i:nth-child(4)  { --dx: 40px;  --dy: 40px;  --spark: #ff9f1c; }
.fw i:nth-child(5)  { --dx: 0px;   --dy: 56px;  --spark: #ffd700; }
.fw i:nth-child(6)  { --dx: -40px; --dy: 40px;  --spark: #7dd3fc; }
.fw i:nth-child(7)  { --dx: -56px; --dy: 0px;   --spark: #38bdf8; }
.fw i:nth-child(8)  { --dx: -40px; --dy: -40px; --spark: #fff; }
.fw i:nth-child(9)  { --dx: 28px;  --dy: -52px; --spark: #fbbf24; }
.fw i:nth-child(10) { --dx: 52px;  --dy: 28px;  --spark: #f472b6; }
.fw i:nth-child(11) { --dx: -28px; --dy: 52px;  --spark: #a78bfa; }
.fw i:nth-child(12) { --dx: -52px; --dy: -28px; --spark: #34d399; }
@keyframes fw-cycle {
  0%, 100% { opacity: 1; }
}
@keyframes fw-spark {
  0% {
    transform: translate(0, 18px) scale(0.15);
    opacity: 0;
  }
  12% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  18% {
    transform: translate(0, 0) scale(1.15);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}
.fw-trail {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.85);
  opacity: 0;
}
.fw-trail--1 {
  left: 18%;
  bottom: 28%;
  animation: fw-rise 3.2s ease-in infinite;
}
.fw-trail--2 {
  left: 72%;
  bottom: 24%;
  animation: fw-rise 3.2s ease-in 1.1s infinite;
}
.fw-trail--3 {
  left: 48%;
  bottom: 32%;
  animation: fw-rise 3.2s ease-in 2s infinite;
}
@keyframes fw-rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  8% { opacity: 1; }
  35% {
    transform: translateY(-48vh) scale(0.6);
    opacity: 0.9;
  }
  42%, 100% {
    transform: translateY(-52vh) scale(0);
    opacity: 0;
  }
}

.hero-landing__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
  background: linear-gradient(115deg, #fff8d0 0%, #ffd700 40%, #f0c14b 70%, #fff3a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 28px rgba(255, 215, 0, 0.35));
  animation: brandShimmer 4.5s ease-in-out infinite;
  background-size: 180% 100%;
}

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

.hero-landing h1 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 1rem;
  max-width: 34ch;
}

.hero-landing__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.hero-landing__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 215, 0, 0.55);
  color: #ffd700;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: #ffd700;
  color: #fff8d0;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
}

/* --- Stats Strip --- */
.stats-strip {
  background: linear-gradient(90deg, #03101f 0%, #0a2f6e 50%, #061a36 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 32px rgba(3, 16, 31, 0.25);
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  text-align: left;
  border-right: 1px solid rgba(255, 215, 0, 0.15);
  transition: background 0.2s;
}

.stat-card:hover {
  background: rgba(255, 215, 0, 0.06);
}

.stat-card:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Content Wrap --- */
.content-wrap {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(26, 111, 212, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 0% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    var(--color-bg);
}

.content-wrap > .section {
  padding-top: 0;
  padding-bottom: 0;
}

.content-section {
  position: relative;
  background: transparent;
  border: none;
  border-left: none;
  border-radius: 0;
  padding: 2.75rem 0 3rem;
  margin-bottom: 0.5rem;
  box-shadow: none;
  overflow: visible;
  transition: none;
  border-bottom: 1px solid var(--color-border);
}

.content-section:hover {
  box-shadow: none;
}

.content-section > p:first-of-type {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 1.75rem;
  max-width: 62ch;
}

.content-section::before {
  display: none;
}

.section-alt.content-section {
  background: transparent;
  margin-left: 0;
  margin-right: 0;
  padding: 2.75rem 0 3rem;
  border-top: none;
  border-bottom: 1px solid var(--color-border);
  border-left: none;
}

.content-section p,
.content-section .content-prose,
.content-section .highlight-box,
.content-section .provider-pills,
.content-section .criteria-grid,
.content-section .table-wrap,
.content-section .review-card,
.content-section .steps-timeline,
.content-section .strategy-grid,
.content-section .disclaimer-box,
.content-section .faq-wrapper,
.content-section .cta-primary {
  margin-left: 1rem;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  padding-left: 1rem;
  line-height: 1.3;
  border-bottom: none;
}

.content-section h3 {
  font-size: 1.05rem;
  margin: 2rem 0 1rem;
  line-height: 1.4;
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.content-prose p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.85;
  max-width: none;
}

.content-prose p:first-child {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1.75rem;
}

/* ============================================================
   BODY CONTENT V2 — editorial layout
   ============================================================ */

.content-wrap {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background:
    linear-gradient(180deg, #e8eef6 0%, #f4f7fb 18%, #edf2f8 100%);
  transition: background 0.35s ease, color 0.35s ease;
}

.content-section {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 3.25rem 0;
  margin-bottom: 0;
  box-shadow: none;
  overflow: visible;
  border-bottom: 1px solid rgba(26, 61, 110, 0.12);
}

.content-section::before {
  display: none;
}

.content-section:nth-child(even) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head__index {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(26, 111, 212, 0.18) 0%, rgba(255, 215, 0, 0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

.section-head__copy {
  padding-bottom: 0.35rem;
}

.section-head .section-tag {
  display: block;
  padding: 0;
  margin-bottom: 0.45rem;
  color: #1a6fd4;
  letter-spacing: 0.16em;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
  padding: 0;
  line-height: 1.25;
  border: none;
  max-width: 22ch;
}

.section-body {
  padding-left: clamp(0rem, 8vw, 5.5rem);
}

.section-lead,
.section-note {
  max-width: 58ch;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 1.75rem;
}

.section-note {
  margin-top: 1.5rem;
  padding: 1rem 0 0;
  border-top: 1px dashed rgba(26, 61, 110, 0.18);
}

.content-prose--lead p {
  font-size: 1.12rem;
  line-height: 1.85;
  max-width: 60ch;
  color: var(--color-text);
}

/* Metric rail */
.metric-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2rem 0 2.25rem;
  padding: 0;
  background: linear-gradient(120deg, #03101f 0%, #0a3d8f 55%, #1565c0 100%);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(3, 16, 31, 0.18);
}

.metric-rail li {
  padding: 1.5rem 1.35rem;
  border-right: 1px solid rgba(255, 215, 0, 0.18);
}

.metric-rail li:last-child {
  border-right: none;
}

.metric-rail strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #ffd700;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.metric-rail span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.62);
}

.provider-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 0.5rem;
}

.provider-row__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a6fd4;
}

.provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.provider-pill {
  padding: 0.4rem 0.9rem;
  background: #fff;
  color: #0a2f6e;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid rgba(26, 111, 212, 0.25);
  box-shadow: none;
  line-height: 1.4;
}

/* Criteria as list rows */
.criteria-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  border: 1px solid rgba(10, 47, 110, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(3, 16, 31, 0.04);
}

.criteria-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid rgba(10, 47, 110, 0.1);
  border-right: 1px solid rgba(10, 47, 110, 0.1);
  min-width: 0;
  transition: background 0.25s ease;
}

.criteria-list li:nth-child(2n) {
  border-right: none;
}

.criteria-list li:nth-child(n+5) {
  border-bottom: none;
}

.criteria-list li:hover {
  background: rgba(26, 111, 212, 0.035);
}

.criteria-list__num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffd700;
  background: linear-gradient(145deg, #0c356e 0%, #061a36 55%, #03101f 100%);
  width: 1.55rem;
  height: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 2px 6px rgba(6, 26, 54, 0.12);
  flex-shrink: 0;
}

.criteria-list strong {
  display: block;
  font-size: 0.95rem;
  color: #071526;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.criteria-list p {
  margin: 0;
  font-size: 0.84rem;
  color: #3d5470;
  line-height: 1.5;
}

/* Compare table refresh */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: 2px;
}

.compare-table thead {
  background: linear-gradient(90deg, #03101f, #0a3d8f);
}

.compare-table th {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 1rem 1.15rem;
  border: none;
}

.compare-table th:nth-child(2) {
  background: linear-gradient(135deg, #d4a017, #ffd700);
  color: #03101f;
}

.compare-table td {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(26, 61, 110, 0.12);
  border-left: none;
  border-right: none;
  background: rgba(255, 255, 255, 0.7);
}

.compare-table tbody tr:hover td {
  background: rgba(255, 215, 0, 0.08);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
  background: rgba(232, 238, 246, 0.8);
}

/* Score banner + split panels */
.score-banner {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(115deg, #03101f 0%, #0a2f6e 100%);
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(3, 16, 31, 0.2);
  color: #ffffff;
}

.score-banner__mark {
  text-align: center;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 215, 0, 0.25);
}

.score-banner__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.score-banner__stars {
  display: block;
  color: #ffd700;
  letter-spacing: 0.12em;
  margin: 0.35rem 0;
  font-size: 0.95rem;
}

.score-banner__count {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.score-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  font-size: 1rem;
}

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(26, 61, 110, 0.14);
  border-radius: 2px;
  overflow: hidden;
}

.split-panel {
  padding: 1.5rem 1.35rem;
  background: #fff;
}

.split-panel--pro {
  border-right: 1px solid rgba(26, 61, 110, 0.12);
  background: linear-gradient(180deg, rgba(22, 163, 74, 0.06) 0%, #fff 40%);
}

.split-panel--con {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.05) 0%, #fff 40%);
}

.split-panel h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--color-text);
}

/* Process steps horizontal */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  counter-reset: none;
}

.process-steps li {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(26, 61, 110, 0.12);
  border-top: 3px solid #ffd700;
  border-radius: 2px;
}

.process-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: #03101f;
  background: linear-gradient(135deg, #ffd700, #d4a017);
  border-radius: 50%;
}

.process-steps strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.process-steps p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Strategy stack — 2×2 grid */
.strategy-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(10, 47, 110, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(3, 16, 31, 0.04);
}

.strategy-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(10, 47, 110, 0.08);
  border-right: 1px solid rgba(10, 47, 110, 0.08);
  transition: background 0.25s ease;
  min-width: 0;
}

.strategy-row:nth-child(2n) {
  border-right: none;
}

.strategy-row:nth-child(n+3) {
  border-bottom: none;
}

.strategy-row:hover {
  background: linear-gradient(165deg, rgba(26, 111, 212, 0.04) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.strategy-row__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  min-width: 1.55rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #ffd700;
  background:
    linear-gradient(145deg, #0c356e 0%, #061a36 55%, #03101f 100%);
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 2px 6px rgba(6, 26, 54, 0.12);
  margin-top: 0.1rem;
}

.strategy-row h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #071526;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.strategy-row p {
  margin: 0;
  font-size: 0.82rem;
  color: #3d5470;
  line-height: 1.5;
  max-width: none;
}

.disclaimer-box {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(3, 16, 31, 0.04);
  border: 1px solid rgba(26, 61, 110, 0.12);
  border-left: 3px solid #1a6fd4;
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.disclaimer-box strong {
  color: #0a2f6e;
}

/* FAQ — high contrast, blue + gold */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  border: 1px solid rgba(10, 47, 110, 0.12);
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(3, 16, 31, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-details,
.split-panel,
.process-steps li,
.provider-pill {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-details {
  background: #ffffff;
  border: none;
  border-bottom: 1px solid rgba(10, 47, 110, 0.1);
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.faq-details:last-child {
  border-bottom: none;
}

.faq-details:hover {
  background: rgba(26, 111, 212, 0.035);
}

.faq-details[open] {
  background: #f6f9fc;
  box-shadow: none;
  border-color: rgba(10, 47, 110, 0.1);
}

.faq-details summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: #071526;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::before {
  display: none;
}

.faq-details summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.25rem;
  border-right: 2px solid #1a6fd4;
  border-bottom: 2px solid #1a6fd4;
  transform: rotate(45deg) translateY(-15%);
  transition: transform 0.2s ease, border-color 0.2s ease;
  opacity: 0.7;
}

.faq-details[open] summary::after {
  transform: rotate(225deg) translateY(-15%);
  opacity: 1;
}

.faq-details__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 1.4rem;
  height: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #03101f;
  background: #ffd700;
  padding: 0 0.28rem;
  border-radius: 3px;
  box-shadow: none;
}

.faq-details__label {
  min-width: 0;
}

.faq-details p {
  padding: 0 1.25rem 1.25rem calc(1.25rem + 1.65rem + 1rem);
  margin: 0;
  color: #3d5470;
  line-height: 1.7;
  max-width: none;
}

.section-head h2,
.section-head__copy h2 {
  color: #071526;
}

.content-section .cta-primary {
  margin-left: 0;
}

.content-section p,
.content-section .content-prose,
.content-section .highlight-box,
.content-section .provider-pills,
.content-section .criteria-grid,
.content-section .table-wrap,
.content-section .review-card,
.content-section .steps-timeline,
.content-section .strategy-grid,
.content-section .disclaimer-box,
.content-section .faq-wrapper,
.content-section .cta-primary,
.content-section .metric-rail,
.content-section .criteria-list,
.content-section .score-banner,
.content-section .split-panels,
.content-section .process-steps,
.content-section .strategy-stack,
.content-section .provider-row,
.content-section .section-lead,
.content-section .section-note {
  margin-left: 0;
}

@media (max-width: 768px) {
  .content-section:nth-child(even) {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-head {
    grid-template-columns: auto 1fr;
    gap: 0.5rem 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
  }

  .section-head__index {
    font-size: 1.65rem;
    line-height: 1;
  }

  .section-body {
    padding-left: 0;
  }

  .section-lead {
    font-size: 0.92rem;
    margin-bottom: 1.1rem;
    line-height: 1.6;
  }

  .metric-rail {
    grid-template-columns: repeat(3, 1fr);
    margin: 1.25rem 0 1.35rem;
  }

  .metric-rail li {
    padding: 0.85rem 0.65rem;
    border-right: 1px solid rgba(255, 215, 0, 0.18);
    border-bottom: none;
  }

  .metric-rail strong {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }

  .metric-rail span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .criteria-list {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.35rem;
  }

  .criteria-list li {
    gap: 0.5rem;
    padding: 0.7rem 0.65rem;
  }

  .criteria-list__num {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.55rem;
  }

  .criteria-list strong {
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
  }

  .criteria-list p {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .score-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .score-banner__mark {
    border-right: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    padding: 0 0 1rem;
  }

  .split-panels,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps {
    gap: 0.65rem;
    margin-bottom: 1.1rem;
  }

  .process-steps li {
    padding: 0.9rem 0.85rem 0.85rem;
  }

  .process-steps__num {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.6rem;
    margin-bottom: 0.4rem;
  }

  .process-steps strong {
    font-size: 0.85rem;
  }

  .process-steps p {
    font-size: 0.78rem;
  }

  .split-panel--pro {
    border-right: none;
    border-bottom: 1px solid rgba(26, 61, 110, 0.12);
  }

  .strategy-stack {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1rem;
  }

  .strategy-row {
    gap: 0.5rem;
    padding: 0.7rem 0.65rem;
  }

  .strategy-row__num {
    width: 1.35rem;
    height: 1.35rem;
    min-width: 1.35rem;
    font-size: 0.55rem;
    margin-top: 0.05rem;
  }

  .strategy-row h3 {
    font-size: 0.78rem;
    margin-bottom: 0.15rem;
  }

  .strategy-row p {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .faq-details p {
    padding: 0 1.25rem 1.2rem 1.25rem;
  }

  .section-head h2 {
    max-width: none;
  }
}

/* Highlight stats box */
.highlight-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2rem 0 2.25rem;
  padding: 0;
  background: #03101f;
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 2px;
  overflow: hidden;
}

.highlight-box__item {
  text-align: left;
  padding: 1.35rem 1.25rem;
  position: relative;
  border-right: 1px solid rgba(255, 215, 0, 0.15);
}

.highlight-box__item:last-child {
  border-right: none;
}

.highlight-box__item:not(:last-child)::after {
  display: none;
}

.highlight-box__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
}

.highlight-box__label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Provider pills */
.provider-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
}

.provider-pill {
  padding: 0.5rem 1rem;
  background: var(--color-hero-from);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.12);
}

/* Criteria grid */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0 2.25rem;
}

.criteria-card {
  background: linear-gradient(160deg, #ffffff 0%, #f0f5fb 100%);
  border: 1px solid var(--color-border);
  border-top: 3px solid #ffd700;
  border-radius: 2px;
  padding: 1.35rem 1.15rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.criteria-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 111, 212, 0.25);
  border-top-color: #ffd700;
}

.criteria-card__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.criteria-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.criteria-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 1.75rem;
}

.pros-box,
.cons-box {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.pros-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
  border-color: rgba(34, 197, 94, 0.2);
}

.cons-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
  border-color: rgba(239, 68, 68, 0.15);
}

.pros-box h3,
.cons-box h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.review-card__body h3 {
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.review-card__body h3:first-of-type {
  margin-top: 0.5rem;
}

.feature-list--pros li::before {
  content: '✓';
  color: #16a34a;
}

.feature-list--cons li::before {
  content: '−';
  color: #dc2626;
}

/* Steps timeline */
.steps-timeline {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), rgba(255, 215, 0, 0.15));
}

.steps-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  padding: 1.1rem 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #041530;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-top: 0.1rem;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

.steps-timeline li strong {
  color: var(--color-text);
}

/* Strategy grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 1.75rem;
}

.strategy-card {
  background: transparent;
  border: 1px solid var(--color-border);
  border-left: 3px solid #1a6fd4;
  border-radius: 2px;
  padding: 1.5rem 1.35rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.strategy-card:hover {
  transform: translateY(-2px);
  border-left-color: #ffd700;
  box-shadow: var(--shadow-md);
}

.strategy-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.strategy-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.strategy-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Disclaimer */
.disclaimer-box {
  margin-top: 2rem;
  padding: 1.15rem 1.35rem;
  background: rgba(239, 68, 68, 0.06);
  border-left: 4px solid #dc2626;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.disclaimer-box strong {
  color: #b91c1c;
}

/* Image placeholder enhanced */
.img-placeholder--logo {
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(135deg, #041530 0%, #0a3d8f 40%, #1a6fd4 100%);
  position: relative;
  overflow: hidden;
}

.img-placeholder--logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,162,39,0.15) 0%, transparent 50%);
}

.img-placeholder__logo {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  opacity: 0.9;
}

.img-placeholder--logo span {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-blue);
  background: transparent;
  padding: 0 0 0 1rem;
  border-radius: 0;
  margin-bottom: 0.65rem;
  border: none;
  border-left: none;
}

.content-section > .section-tag + h2 {
  margin-top: 0.25rem;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, #041530 0%, #0a3d8f 50%, #1565c0 100%);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.content-figure {
  margin: 2rem 0 0;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.product-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- Review Card --- */
.review-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  margin: 2rem 0 0.5rem;
  box-shadow: var(--shadow-md);
}

.review-card__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(10, 61, 143, 0.08), rgba(255, 215, 0, 0.1));
  border-radius: var(--radius);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.06);
}

.review-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1;
}

.review-card__stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin: 0.25rem 0;
}

.review-card__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.review-card__body p {
  max-width: none;
}

/* --- White Content Layer --- */
.white-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.25;
  margin: 2rem 0 1.5rem;
}

.white-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
}

.white-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.white-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  max-width: 72ch;
}

.white-content figure {
  margin: 1.5rem 0;
}

/* --- Table of Contents --- */
.toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.toc-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.3), transparent);
}

.toc ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem;
  counter-reset: toc-counter;
}

.toc li {
  margin-bottom: 0;
}

.toc a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--color-bg);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.toc a::before {
  content: counter(toc-counter, decimal-leading-zero);
  counter-increment: toc-counter;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.toc a:hover {
  color: var(--color-accent-dark);
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.05);
  transform: translateX(4px);
}

/* --- Comparison Table --- */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0 1.75rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--color-border);
  padding: 1rem 1.15rem;
  text-align: left;
}

.compare-table thead {
  background: var(--color-hero-from);
}

.compare-table th {
  font-weight: 600;
  color: #fff;
}

.compare-table th:nth-child(2) {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
}

.compare-table td:first-child {
  font-weight: 600;
  background: var(--color-bg);
}

.compare-table td:nth-child(2) {
  background: rgba(201, 162, 39, 0.06);
  font-weight: 500;
}

.compare-table tbody tr:hover td {
  background: rgba(201, 162, 39, 0.04);
}

.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(201, 162, 39, 0.1);
}

/* --- CTA Primary (crawlable) --- */
.cta-primary {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.95rem 2.35rem;
  background: linear-gradient(120deg, var(--color-accent), var(--color-gold) 55%, #fff3a0);
  color: #03101f;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--glow-gold);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.cta-primary:hover {
  color: #03101f;
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-strong);
}

/* --- FAQ Details (legacy block — keep markers off) --- */
.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::before {
  display: none !important;
  content: none !important;
}

/* --- Simple Footer --- */
.site-footer {
  background: linear-gradient(180deg, #061a36 0%, #041530 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-simple {
  position: relative;
  text-align: center;
  padding: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer-simple > p:first-of-type,
.footer-simple .footer-copy {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
  padding-top: 0;
  border-top: none;
}

.footer-simple nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer-simple nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-simple nav a:hover {
  color: var(--color-gold);
}

.footer-updated {
  color: rgba(255, 255, 255, 0.4);
}

/* --- Hero --- */
.hero {
  padding: var(--section-pad) 0 2rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-media {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.85rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-accent), var(--color-gold) 55%, #fff3a0);
  color: #03101f;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  color: #03101f;
  transform: translateY(-1px);
  box-shadow: var(--glow-gold-strong);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- Sections --- */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--color-bg);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s;
}

.content-wrap .section h2 {
  margin-bottom: 1.5rem;
}

.content-wrap .section p {
  max-width: none;
  margin-bottom: 1.25rem;
}

/* --- Features --- */
.feature-list {
  list-style: none;
  margin-top: 1.25rem;
}

.feature-list li {
  padding: 0.7rem 0 0.7rem 1.75rem;
  position: relative;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0.25rem;
  top: 0.72rem;
  color: var(--color-accent);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card h3,
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.feature-card p {
  font-size: 0.95rem;
}

/* --- Review Summary --- */
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.review-score {
  text-align: center;
  min-width: 120px;
}

.score-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.score-max {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.score-count {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* --- Steps List --- */
.steps-list {
  margin: 1.5rem 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

.steps-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.steps-list strong {
  color: var(--color-text);
}

/* --- FAQ --- */
.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item dt {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.faq-item dd {
  color: var(--color-text-muted);
  margin-left: 0;
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid transparent;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-accent);
}

.blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-card h3 a {
  color: var(--color-text);
}

.blog-card h3 a:hover {
  color: var(--color-accent);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.blog-card h3 a::after {
  content: ' →';
  color: var(--color-accent);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

.blog-card:hover h3 a::after {
  opacity: 1;
  transform: translateX(3px);
}

.blog-card time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- Blog listing & article pages --- */
.blog-hero {
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 100%);
  padding: 3.5rem 0 3rem;
  color: #fff;
}

.blog-hero .section-tag {
  color: var(--color-gold);
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.35);
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin: 0.75rem 0 1rem;
  line-height: 1.25;
}

.blog-hero__lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 0;
  line-height: 1.7;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
}

.blog-hero .blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.blog-hero .blog-breadcrumb a:hover {
  color: var(--color-gold);
}

.blog-article .blog-breadcrumb {
  color: var(--color-text-muted);
}

.blog-article .blog-breadcrumb a {
  color: var(--color-accent-dark);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.blog-list-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-list-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-list-card__date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.blog-list-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.35;
}

.blog-list-card h2 a {
  color: #1a1a2e;
}

.blog-list-card h2 a:hover {
  color: var(--color-accent-dark);
}

.blog-list-card p {
  color: #4a4a5a;
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.blog-list-card__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent-dark);
}

.blog-list-card__link:hover {
  color: var(--color-accent);
}

.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a2e;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.blog-article__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem !important;
}

.blog-article h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #1a1a2e;
  margin: 2rem 0 0.85rem;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-article__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-weight: 600;
}

.blog-article__nav a {
  color: var(--color-accent-dark);
}

.blog-article__nav a:hover {
  color: var(--color-accent);
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
}

.cta-section p {
  margin: 0 auto 1.5rem;
}

/* --- Footer grid (legacy) --- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.site-footer h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* CTA aggressive — juga dipakai saat transform Layer 1 CTA via JS */
.white-content .cta-primary.cta-aggressive {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(180deg, #fff3a0, #ffd700, #d4a017);
  color: #041530;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: var(--glow-gold);
  animation: ctaPulse 2s ease-in-out infinite;
}

.white-content .cta-primary.cta-aggressive:hover {
  color: #041530;
  transform: scale(1.02);
  box-shadow: var(--glow-gold-strong);
}

/* --- Layer 2: Black Mode Overlay --- */
.black-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(255, 200, 60, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 12% 88%, rgba(26, 111, 212, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 92% 70%, rgba(212, 160, 23, 0.12) 0%, transparent 38%),
    linear-gradient(165deg, #020b18 0%, #062447 42%, #041830 100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.black-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.black-overlay .splash-logo,
.black-overlay .sales-content {
  position: relative;
  z-index: 2;
}

.black-overlay.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}

.black-overlay.active .sales-content {
  animation: overlayRise 0.55s ease both;
}

.black-overlay.active .splash-logo {
  animation: splashIn 0.5s ease both;
}

@keyframes overlayRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splashIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.black-overlay-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  background: rgba(4, 21, 48, 0.65);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #fff;
  font-size: 1.35rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  cursor: pointer;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.black-overlay-close:hover {
  background: rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 0.7);
  transform: scale(1.04);
}

.splash-logo {
  padding: 1.75rem 1rem 0.35rem;
  text-align: center;
}

.splash-tagline {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.85);
}

.splash-logo img {
  margin: 0 auto;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(255, 215, 0, 0.25));
  animation: splashPulse 2.4s ease-in-out infinite;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.sales-content {
  width: 100%;
  max-width: 560px;
  padding: 0.5rem 1.15rem 2.75rem;
  text-align: center;
  color: #eef3fa;
}

.sales-eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ec5ff;
  background: rgba(26, 111, 212, 0.22);
  border: 1px solid rgba(100, 160, 255, 0.35);
  border-radius: 6px;
}

.sales-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.2vw, 1.55rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff 20%, #ffe566 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 243, 160, 0.95), rgba(255, 215, 0, 0.92) 55%, rgba(212, 160, 23, 0.95));
  color: #041530;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
    0 8px 28px rgba(212, 160, 23, 0.35);
}

.countdown__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}

.countdown__time,
.countdown #timer {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(4, 21, 48, 0.12);
}

.live-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.live-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.live-stat span:not(.live-stat__pulse) {
  color: #5eead4;
  font-weight: 700;
}

.live-stat--win span {
  color: #fbbf24;
}

.live-stat__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: livePulse 1.6s ease-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.overlay-product {
  position: relative;
  margin: 0 auto 1.35rem;
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.45);
  aspect-ratio: 1 / 1;
  background: #041530;
}

.overlay-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.overlay-product:hover img {
  transform: scale(1.03);
}

.overlay-product__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.6rem 0.85rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  background: linear-gradient(transparent, rgba(4, 21, 48, 0.92));
}

/* Testimonials */
.testimonials {
  margin-bottom: 1.25rem;
  min-height: 96px;
}

.testimonial-track {
  position: relative;
}

.testimonial-slide {
  display: none;
  margin: 0;
  padding: 1.05rem 1.1rem 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 215, 0, 0.22);
  border-left: 3px solid #ffd700;
  border-radius: 12px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.testimonial-slide cite {
  font-size: 0.75rem;
  color: rgba(255, 215, 0, 0.75);
  font-style: normal;
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.testimonial-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.testimonial-dots .dot.active {
  background: #ffd700;
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.55);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Aggressive */
.cta-aggressive {
  display: block;
  width: 100%;
  padding: 1.05rem 1rem;
  background: linear-gradient(180deg, #fff6b0 0%, #ffd700 45%, #c9920f 100%);
  color: #041530;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(212, 160, 23, 0.35),
    0 10px 32px rgba(212, 160, 23, 0.4);
  animation: ctaPulse 2s ease-in-out infinite;
  transition: transform 0.2s;
}

.cta-aggressive:hover {
  color: #041530;
  transform: translateY(-2px) scale(1.01);
}

.cta-note {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.3), 0 8px 24px rgba(212, 160, 23, 0.35); }
  50% { box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.45), 0 12px 36px rgba(255, 215, 0, 0.5); }
}


@media (min-width: 480px) {
  .sales-content h2 {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-logo img,
  .cta-aggressive,
  .hero-landing__photo,
  .hero-brand,
  .hero-landing__content,
  .live-stat__pulse,
  .black-overlay.active .sales-content,
  .black-overlay.active .splash-logo,
  .fw,
  .fw i,
  .fw-trail {
    animation: none;
  }
  .fw,
  .fw i,
  .fw-trail {
    opacity: 0;
  }
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-landing {
    min-height: min(86vh, 700px);
  }

  .hero-brand {
    font-size: clamp(2.8rem, 7vw, 4rem);
  }

  .hero-landing h1 {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  }

  .compare-table {
    font-size: 0.8rem;
  }
}

/* Mobile & small tablet */
@media (max-width: 768px) {
  :root {
    --section-pad: 2.5rem;
    --content-inset: 0.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  /* Header: logo kiri + CTA, nav scrollable di bawah */
  .site-header {
    --header-cta-h: 38px;
    padding: 0.4rem 0;
  }

  .site-header .container.header-inner {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: center;
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand-logo {
    height: calc(var(--header-cta-h) * 2.75);
    width: auto;
    max-width: none;
  }

  .header-cta {
    margin-left: 0;
    padding: 0 1rem;
    font-size: 0.8rem;
    height: var(--header-cta-h);
    flex-shrink: 0;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    gap: 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem 0 0.35rem;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex-shrink: 0;
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
  }

  .main-nav a::after {
    display: none;
  }

  /* Hero */
  .hero-landing {
    --hero-header-clear: 6.5rem; /* header + nav wrap di mobile */
    min-height: min(88vh, 720px);
    min-height: min(88dvh, 720px);
    padding: 6.5rem 0 3rem;
    align-items: flex-end;
  }

  .hero-landing__content {
    max-width: 100%;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
    margin-bottom: 0.75rem;
  }

  .hero-landing h1 {
    font-size: clamp(1.05rem, 4.2vw, 1.3rem);
    max-width: none;
    margin-bottom: 0.85rem;
  }

  .hero-landing__lead {
    font-size: 0.92rem;
    margin-bottom: 1.35rem;
    max-width: none;
  }

  .hero-landing__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .hero-landing__actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Stats */
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card {
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
    padding: 1.1rem 1rem;
  }

  .stat-card:nth-child(3),
  .stat-card:nth-child(4) {
    border-bottom: none;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* Content cards */
  .content-wrap {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }

  .content-section,
  .section-alt.content-section {
    padding: 1.65rem 0;
    margin-bottom: 0;
    border-radius: 0;
  }

  .section-head h2,
  .content-section h2 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .content-section h3 {
    font-size: 0.95rem;
    margin: 1.1rem 0 0.65rem;
  }

  .section-head .section-tag,
  .section-tag {
    font-size: 0.55rem;
    padding: 0;
    margin-bottom: 0.25rem;
  }

  .highlight-box {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin: 1.25rem 0 1.5rem;
  }

  .highlight-box__item:not(:last-child)::after {
    display: none;
  }

  .highlight-box__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 1rem 1.1rem;
  }

  .highlight-box__item:last-child {
    border-bottom: none;
  }

  .highlight-box__value {
    font-size: 1.45rem;
  }

  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 1.25rem 0 1.5rem;
  }

  .criteria-card {
    padding: 0.9rem;
  }

  .criteria-card strong {
    font-size: 0.82rem;
  }

  .criteria-card p {
    font-size: 0.72rem;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pros-box,
  .cons-box {
    padding: 1.15rem;
  }

  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.35rem;
    gap: 1.25rem;
  }

  .review-card__score {
    min-width: 0;
    padding: 1.15rem;
  }

  .review-card__body {
    text-align: left;
  }

  .review-card__body .cta-primary {
    display: block;
    text-align: center;
    width: 100%;
  }

  /* Tables: scroll horizontal */
  .table-wrap {
    margin: 1.25rem -0.25rem 1.25rem;
    padding: 0 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 420px;
    font-size: 0.75rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.7rem 0.65rem;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .strategy-card {
    padding: 1.25rem;
  }

  .steps-timeline {
    margin: 1.15rem 0;
  }

  .steps-timeline::before {
    left: 16px;
  }

  .step-num {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .steps-timeline li {
    gap: 0.85rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }

  .faq-details {
    padding: 0;
  }

  .faq-details summary {
    font-size: 0.88rem;
    padding: 0.8rem 0.85rem;
    gap: 0.55rem;
  }

  .faq-details__q {
    min-width: 1.3rem;
    height: 1.05rem;
    font-size: 0.52rem;
    padding: 0 0.22rem;
  }

  .faq-details p {
    padding: 0 0.85rem 0.9rem 0.85rem;
    font-size: 0.84rem;
  }

  .faq-details summary::before {
    display: none !important;
  }

  .provider-pills {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .provider-pill {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .review-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Blog */
  .blog-hero {
    padding: 2.25rem 0 1.75rem;
  }

  .blog-hero h1 {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
  }

  .blog-list-card {
    padding: 1.35rem 1.25rem;
  }

  .blog-list-card h2 {
    font-size: 1.15rem;
  }

  .blog-article {
    padding: 1.75rem 1.15rem 1.85rem 1.5rem;
  }

  .blog-article__nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo img {
    height: 58px;
  }

  .footer-simple .footer-copy {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }

  /* Black overlay */
  .black-overlay {
    padding: 0.75rem 0 1.5rem;
  }

  .sales-content {
    padding: 0.35rem 0.75rem 1.75rem;
  }

  .sales-content h2 {
    font-size: 1.12rem;
  }

  .countdown {
    padding: 0.6rem 0.85rem;
  }

  .countdown__time,
  .countdown #timer {
    font-size: 1.15rem;
  }

  .overlay-product {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1.1rem;
    border-radius: 14px;
  }

  .overlay-product img {
    object-fit: contain;
    object-position: center center;
  }


  .cta-aggressive {
    font-size: 0.95rem;
    padding: 0.95rem 0.85rem;
  }

}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .site-header {
    --header-cta-h: 36px;
  }

  .brand-logo {
    height: calc(var(--header-cta-h) * 2.75);
    width: auto;
    max-width: none;
  }

  .header-cta {
    padding: 0 0.85rem;
    font-size: 0.75rem;
    height: var(--header-cta-h);
    flex-shrink: 0;
  }

  .main-nav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  .hero-landing {
    --hero-header-clear: 6.25rem;
    min-height: min(84vh, 640px);
    padding: 6rem 0 2.5rem;
  }

  .hero-brand {
    font-size: clamp(2.2rem, 14vw, 3rem);
  }

  .hero-landing h1 {
    font-size: 1.05rem;
  }

  .hero-landing__lead {
    font-size: 0.88rem;
  }

  .content-section,
  .section-alt.content-section,
  .blog-article {
    padding: 1.35rem 0 1.5rem;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-value {
    font-size: 1.15rem;
  }

  .compare-table {
    min-width: 360px;
    font-size: 0.7rem;
  }

  .cta-primary {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .disclaimer-box {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .hero-landing h1 {
    font-size: 1.2rem;
  }

  .hero-badge {
    font-size: 0.65rem;
  }

  .header-cta {
    padding: 0 0.7rem;
    height: var(--header-cta-h);
  }

  .content-section h2 {
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
