
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --dark:       #1a1f36;
  --dark2:      #1e2540;
  --dark3:      #232a48;
  --dark4:      #2a3258;
  --light:      #ffffff;
  --off-white:  #f8f9fc;
  --off-white2: #eef1f8;
  --text-dark:  #0f1526;
  --text-mid:   #3a4060;
  --text-soft:  #6b7299;
  --text-faint: #9ba3c4;
  --blue:       #4a7cf8;
  --blue-dark:  #2f5edc;
  --blue-glow:  rgba(74,124,248,0.10);
  --orange:     #ff6b2b;
  --orange-dark:#e55520;
  --red-badge:  #e53935;
  --green:      #22c55e;
  --green-bg:   rgba(34,197,94,0.12);
  --gold:       #f59e0b;
  --border-dark: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.07);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.urgency-bar .hi { color: var(--orange); font-weight: 700; }
.urgency-bar .stars { color: var(--gold); }

/* ── NAV ── */
.nav {
  background: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-brand span { color: var(--blue); }
.nav-label {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(150deg, #0d1a3a 0%, #1a2d6e 50%, #0d1a3a 100%);
  padding: 64px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74,124,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,124,248,0.15);
  border: 1px solid rgba(74,124,248,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 400;
  line-height: 1.6;
}
.byline-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
  margin-bottom: 48px;
}
.byline-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a7cf8, #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.byline-text { font-size: 13px; color: rgba(255,255,255,0.7); }
.byline-text strong { color: #fff; font-weight: 600; }

/* ── RATING STRIP ── */
.rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
}
.rating-item .val { font-weight: 700; color: var(--text-dark); }
.rating-item .stars { color: var(--gold); font-size: 14px; }
.rating-sep { color: var(--border-light); font-size: 20px; }

/* ── MEDIA LOGOS ── */
.logos-section {
  background: var(--off-white2);
  padding: 28px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.logos-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── ARTICLE SECTIONS ── */
.section-white { background: var(--light); padding: 64px 24px; }
.section-dark  { background: var(--off-white); padding: 64px 24px; }
.section-off   { background: var(--off-white); padding: 64px 24px; }
.section-dark2 { background: #eef2fd; padding: 64px 24px; }

.container { max-width: 720px; margin: 0 auto; }
.container-wide { max-width: 960px; margin: 0 auto; }

/* ── ARTICLE TYPOGRAPHY ── */
.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.article-body p strong { color: var(--text-dark); font-weight: 600; }

.section-dark .article-body p,
.section-dark2 .article-body p {
  color: #000000;
}
.section-dark .article-body p strong,
.section-dark2 .article-body p strong {
  color: #000000;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-dark .section-eyebrow { color: var(--blue); }

h2.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-dark h2.section-title,
.section-dark2 h2.section-title { color: var(--text-dark); }

h3.sub-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 12px;
  letter-spacing: -.01em;
}
.section-dark h3.sub-title { color: var(--text-dark); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  margin: 36px 0;
  background: var(--blue-glow);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-size: 18px !important;
  font-weight: 600 !important;
  font-style: italic;
  color: var(--text-dark) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.section-dark .pull-quote p { color: var(--text-dark) !important; }
.section-dark .pull-quote { background: rgba(74,124,248,0.08); }

/* ── PILL BADGES ── */
.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.pill {
  background: rgba(74,124,248,0.08);
  border: 1px solid rgba(74,124,248,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}
.pill-dark {
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── CHECKLIST ── */
.checklist { list-style: none; padding: 0; margin: 24px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
  line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 12px; color: #fff; font-weight: 700;
}
.section-dark .checklist li { color: var(--text-mid); border-color: var(--border-light); }

/* ── STAT CARDS ── */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.stat-card-light {
  background: var(--off-white2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.stat-card-light .stat-label { color: var(--text-soft); }

/* ── FEATURE ZONES (like product page sections) ── */
.feature-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.fz-side {
  padding: 32px 28px;
}
.fz-bad { background: rgba(229,57,53,0.05); border-right: 1px solid var(--border-light); }
.fz-good { background: rgba(74,124,248,0.05); }
.fz-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fz-bad .fz-label { color: #ef5350; }
.fz-good .fz-label { color: var(--blue); }
.fz-side ul { list-style: none; padding: 0; }
.fz-side ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fz-side ul li::before { font-size: 13px; flex-shrink: 0; }
.fz-bad ul li::before { content: '✗'; color: #ef5350; }
.fz-good ul li::before { content: '✓'; color: var(--green); }

/* ── TESTIMONIALS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.review-card-light {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-style: italic;
}
.review-card-light .review-text { color: var(--text-mid); }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.review-card-light .review-name { color: var(--text-dark); }
.review-detail { font-size: 12px; color: var(--text-faint); }
.verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); font-weight: 600; margin-top: 2px; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(74,124,248,0.08);
  border: 1px solid rgba(74,124,248,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
}
.highlight-box-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-white .highlight-box { background: rgba(74,124,248,0.06); }
.section-white .checklist li { border-color: var(--border-light); }
.section-white .checklist li { color: var(--text-mid); }

/* ── CTA BUTTON ── */
.cta-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  padding: 20px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  letter-spacing: -.01em;
  transition: background .18s, transform .12s, box-shadow .18s;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 32px rgba(255,107,43,0.35);
  margin-bottom: 12px;
}
.cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,43,0.45);
}
.cta-btn:active { transform: translateY(0); }
.cta-btn-blue {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  padding: 20px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: background .18s, transform .12s;
  box-shadow: 0 8px 32px rgba(74,124,248,0.35);
  margin-bottom: 12px;
}
.cta-btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  margin-top: 12px;
}
.cta-trust span { display: flex; align-items: center; gap: 5px; }
.section-dark .cta-trust { color: rgba(255,255,255,0.4); }
.discount-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-badge);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ── INLINE CTA SECTION ── */
.cta-section { text-align: center; max-width: 480px; margin: 0 auto; }
.cta-section-full {
  background: linear-gradient(135deg, #1a2d6e 0%, #0d1a3a 100%);
  padding: 64px 24px;
  text-align: center;
}
.cta-big-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-big-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border-light); }
.section-dark .divider-line { background: var(--border-light); }
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ── PAIN VS SOLUTION SECTION ── */
.pain-solution { margin: 36px 0; }
.ps-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}
.ps-label-bad { background: rgba(229,57,53,0.15); color: #ef5350; }
.ps-label-good { background: rgba(34,197,94,0.12); color: var(--green); }
.ps-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.ps-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.ps-item-text { font-size: 14px; color: var(--text-soft); line-height: 1.55; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-a { font-size: 15px; color: var(--text-soft); line-height: 1.65; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--blue);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-text { font-size: 14px; color: var(--text-soft); line-height: 1.3; }
.sticky-text strong { color: var(--text-dark); display: block; font-size: 15px; }
.sticky-btn {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s;
  box-shadow: 0 4px 20px rgba(255,107,43,0.4);
}
.sticky-btn:hover { background: var(--orange-dark); }

/* ── PROGRESS ── */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--blue);
  z-index: 300; width: 0%;
  transition: width .1s;
}

/* ── FOOTER ── */
.footer {
  background: var(--off-white2);
  padding: 40px 24px;
  border-top: 1px solid var(--border-light);
}
.footer-disclosure {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-links a { color: var(--text-faint); text-decoration: none; }
.footer-links a:hover { color: var(--text-soft); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .stat-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .feature-zone { grid-template-columns: 1fr; }
  .fz-bad { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .sticky-text { display: none; }
  .hero h1 { font-size: 26px; }
}
