/* ============================================================
   Compass Disability — Redesigned Stylesheet
   Modern, clean, consumer-health feel
   ============================================================ */

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

:root {
  --green:        #2E7D32;
  --green-dark:   #1B5E20;
  --green-light:  #4CAF50;
  --green-pale:   #F0F7F0;
  --green-tint:   #E8F5E9;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #717171;
  --border:       #E0E0E0;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --radius:       12px;
  --radius-sm:    8px;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition:   0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-mid); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-tint);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 48px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.nav-mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #388E3C 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 0 48px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: normal;
  color: #A5D6A7;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-trust-item strong { color: white; }
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 36px;
  color: white;
}
@media (max-width: 899px) { .hero-card { display: none; } }
.hero-card h3 { color: white; font-size: 1.25rem; margin-bottom: 20px; }
.hero-card-steps { display: flex; flex-direction: column; gap: 16px; }
.hero-card-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hero-step-num {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.hero-step-text { font-size: 0.9375rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.hero-step-text strong { color: white; display: block; margin-bottom: 2px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
@media (min-width: 768px) { .stats-bar-inner { padding: 0 48px; gap: 64px; } }
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8125rem; color: var(--text-light); font-weight: 500; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-pale { background: var(--green-pale); }
.section-white { background: var(--white); }
.section-dark { background: var(--green-dark); color: white; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.0625rem; color: var(--text-light); max-width: 540px; margin: 0 auto; }
.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c8e6c9;
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-tint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.card p { font-size: 0.9375rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 768px) {
  .steps { flex-direction: row; align-items: flex-start; gap: 0; }
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 44px;
  font-size: 1.5rem;
  color: var(--green-light);
  display: none;
}
@media (min-width: 768px) { .step:not(:last-child)::after { display: block; } }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); max-width: 220px; }

/* ============================================================
   TWO COLUMN SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }
.split-reverse { }
@media (min-width: 768px) { .split-reverse .split-text { order: 2; } .split-reverse .split-visual { order: 1; } }
.split-text h2 { margin-bottom: 16px; }
.split-text p { font-size: 1.0rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.75; }
.split-visual {
  background: var(--green-tint);
  border-radius: 20px;
  padding: 40px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.split-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 0.875rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green);
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testimonial-author { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testimonial-case { font-size: 0.8125rem; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   ARTICLES PAGE
   ============================================================ */
.advice-hero {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
  padding: 64px 24px 48px;
  text-align: center;
}
.advice-hero h1 { color: white; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; }
.advice-hero p { color: rgba(255,255,255,0.82); font-size: 1.0625rem; max-width: 520px; margin: 0 auto; }
.advice-page { max-width: 960px; margin: 0 auto; padding: 0 24px 80px; }
.advice-category { margin-top: 56px; }
.advice-category h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 2px solid var(--green-tint);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.advice-list { display: flex; flex-direction: column; gap: 6px; }
.advice-list li a {
  display: block;
  padding: 11px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-light);
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all var(--transition);
}
.advice-list li a:hover {
  border-left-color: var(--green);
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateX(3px);
}
.advice-cta {
  margin-top: 64px;
  background: var(--green);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  color: white;
}
.advice-cta h2 { color: white; font-size: 1.75rem; margin-bottom: 12px; }
.advice-cta p { color: rgba(255,255,255,0.82); margin-bottom: 24px; }

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.article-hero {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: white;
  padding: 56px 24px 40px;
}
.article-hero-inner { max-width: 800px; margin: 0 auto; }
.article-hero .breadcrumb { font-size: 0.8125rem; opacity: 0.75; margin-bottom: 14px; }
.article-hero .breadcrumb a { color: white; text-decoration: none; }
.article-hero .breadcrumb a:hover { text-decoration: underline; }
.article-hero h1 { color: white; font-size: clamp(1.5rem, 3.5vw, 2.25rem); line-height: 1.25; }
.article-body { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }
.article-body h2 { font-size: 1.375rem; color: var(--green-dark); margin: 40px 0 14px; }
.article-body h3 { font-size: 1.125rem; color: var(--green); margin: 28px 0 10px; }
.article-body p { font-size: 1.0rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 8px; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-cta {
  background: var(--green-pale);
  border: 1px solid #c8e6c9;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 48px 0 0;
}
.article-cta h3 { color: var(--green-dark); font-size: 1.25rem; margin-bottom: 10px; }
.article-cta p { color: var(--text-light); margin-bottom: 22px; }
.article-coming-soon {
  background: var(--green-pale);
  border: 2px dashed #c8e6c9;
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  margin: 40px 0;
}
.article-coming-soon h2 { color: var(--green); margin-bottom: 12px; }
.article-coming-soon p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================================
   QUIZ / START PAGE
   ============================================================ */
.quiz-page {
  min-height: 80vh;
  background: var(--green-pale);
  padding: 64px 24px;
}
.quiz-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
}
.quiz-card h1 { font-size: 1.75rem; margin-bottom: 8px; }
.quiz-card > p { color: var(--text-light); margin-bottom: 32px; }
.quiz-progress { height: 4px; background: var(--border); border-radius: 4px; margin-bottom: 32px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--green); border-radius: 4px; transition: width 0.3s ease; }
.quiz-question h2 { font-size: 1.25rem; margin-bottom: 20px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9375rem;
}
.quiz-option:hover { border-color: var(--green); background: var(--green-pale); }
.quiz-option input { accent-color: var(--green); width: 18px; height: 18px; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .footer-inner { padding: 0 48px; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.6; max-width: 240px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.footer-nav-group h6 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-nav-group a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-disclaimer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 0.8125rem; transition: color var(--transition); }
.footer-legal-links a:hover { color: white; }
.text-center { text-align: center; }
.green { color: var(--green); }
.article-coming-soon a, .advice-cta a, .article-cta a {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  text-decoration: none;
}
.article-coming-soon a:hover, .advice-cta a:hover, .article-cta a:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 599px) {
  .section { padding: 56px 0; }
  .hero { padding: 72px 24px 60px; }
  .cta-band { padding: 56px 24px; }
}

/* ============================================================
   WHITE HERO (Option 1 redesign)
   ============================================================ */
.hero-light {
  background: #FFFFFF;
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero-light-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-light-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.hero-tag {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-light h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-light h1 .accent { color: var(--green); }
.hero-light-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-light-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-pale);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

/* Hero visual card */
.hero-visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hvc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hvc-icon { font-size: 2rem; }
.hvc-label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.hvc-val { font-size: 1rem; font-weight: 700; color: var(--green); }
.hvc-divider { height: 1px; background: var(--border); margin: 14px 0; }
.hvc-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 0.9rem; color: var(--text-mid); }
.hvc-row strong { color: var(--green); font-weight: 600; }
.hvc-result { text-align: center; padding: 12px 0 4px; }
.hvc-result-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.hvc-result-amount { font-size: 1.75rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.hvc-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: 10px;
  margin-top: 16px;
  transition: all var(--transition);
  text-decoration: none;
}
.hvc-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--text-mid);
  justify-content: center;
}
.stars { color: #F59E0B; font-size: 1rem; }

/* Trust bar */
.trust-bar {
  background: var(--green-pale);
  border-bottom: 1px solid #d0e8d0;
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.trust-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-stats { display: flex; flex-wrap: wrap; align-items: center; gap: 0; }
.trust-stat {
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.trust-stat strong { color: var(--green-dark); font-weight: 800; }
.trust-divider { width: 1px; height: 20px; background: #b2d8b2; }

/* Section tag */
.section-tag {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Steps CTA */
.steps-cta { text-align: center; margin-top: 48px; }

/* Why visual */
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.why-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}
.why-stat-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; }

/* ============================================================
   MOBILE FIXES
   ============================================================ */

/* Fix nav on mobile — logo left, hamburger right, hide CTA */
@media (max-width: 899px) {
  .nav-cta { display: none; }
  .nav-inner { padding: 0 16px; gap: 0; }
  .nav-logo { font-size: 0.95rem; }
  .nav-logo-icon { width: 32px; height: 32px; font-size: 0.875rem; }
}

/* Fix hero on mobile */
@media (max-width: 899px) {
  .hero-light { padding: 48px 0 40px; }
  .hero-light-inner { gap: 32px; }
  .hero-light h1 { font-size: 2.25rem; }
  .hero-light-sub { font-size: 0.9375rem; }
  .hero-visual-card { display: none; } /* hide card on mobile */
  .hero-rating { display: none; }
  .hero-light-actions { flex-direction: column; }
  .hero-light-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Fix trust bar on mobile */
@media (max-width: 599px) {
  .trust-label { display: none; }
  .trust-stats { justify-content: center; gap: 0; }
  .trust-stat { padding: 0 12px; font-size: 0.8rem; }
  .trust-divider { height: 16px; }
}

/* Fix steps on mobile */
@media (max-width: 767px) {
  .steps { flex-direction: column; gap: 8px; }
  .step::after { display: none !important; }
  .step { padding: 24px 16px; text-align: left; flex-direction: row; align-items: flex-start; gap: 16px; }
  .step-num { flex-shrink: 0; width: 44px; height: 44px; font-size: 1rem; margin-bottom: 0; }
}

/* Fix cards grid on mobile */
@media (max-width: 599px) {
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px; }
}

/* Fix split on mobile */
@media (max-width: 767px) {
  .split { gap: 32px; }
  .why-visual { margin-top: 8px; }
  .why-stat-card { padding: 16px; gap: 14px; }
  .why-stat-num { font-size: 1.75rem; min-width: 50px; }
}

/* Fix testimonials on mobile */
@media (max-width: 599px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Fix CTA band on mobile */
@media (max-width: 599px) {
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* Fix footer on mobile */
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-disclaimer { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal-links { justify-content: center; }
}

/* Fix general container padding on mobile */
@media (max-width: 599px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
}

/* Fix article pages on mobile */
@media (max-width: 599px) {
  .article-hero { padding: 40px 16px 28px; }
  .article-body { padding: 32px 16px 60px; }
  .article-cta { padding: 24px 16px; }
}