/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg-base:         #FDFAF5;
  --color-bg-section-alt:  #F0EDE6;
  --color-bg-card:         #FFFFFF;
  --color-brand-dark:      #1A3A35;
  --color-brand-mid:       #4A7B6F;
  --color-brand-light:     #E8F0EE;
  --color-text-primary:    #1A3A35;
  --color-text-secondary:  #4A7B6F;
  --color-text-muted:      #8AADA5;
  --color-text-on-dark:    #FFFFFF;
  --color-border-light:    #DDE8E5;
  --color-border-input:    #C8D8D4;

  /* Legacy aliases used in templates */
  --cream:      #FDFAF5;
  --teal:       #4A7B6F;
  --teal-dark:  #1A3A35;
  --teal-mid:   #3D6860;
  --teal-pale:  #E8F0EE;
  --teal-light: #8AADA5;
  --text-dark:  #1A3A35;
  --text-body:  #1A3A35;
  --text-muted: #8AADA5;
  --white:      #FFFFFF;
  --border:     #DDE8E5;

  /* Shadows */
  --shadow-card:    0 4px 20px rgba(26,58,53,.08);
  --shadow-pricing: 0 8px 40px rgba(26,58,53,.09);
  --shadow-auth:    0 8px 48px rgba(26,58,53,.12);

  /* Radii */
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: 0.15s ease;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text-primary);
}

h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--color-text-primary);
}

h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--color-text-primary);
}

a { color: var(--color-brand-mid); text-decoration: none; }
a:hover { color: var(--color-brand-dark); }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.site-nav {
  min-height: 64px;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  padding: 0;
}

.site-nav .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Mobile nav: give the expanded menu breathing room */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    padding: 12px 0 16px;
    width: 100%;
  }
  .site-nav .navbar-collapse .d-flex {
    margin-top: 12px;
    padding-bottom: 4px;
  }
}

.site-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-dark) !important;
  letter-spacing: -0.03em;
  text-decoration: none !important;
}

.nav-logo-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

.site-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary) !important;
  padding: 0.35rem 0.75rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.site-nav .nav-link:hover {
  color: var(--color-brand-mid) !important;
  background: none;
}

/* Log In button */
.btn-outline-teal {
  background: transparent;
  color: var(--color-text-primary) !important;
  border: 1.5px solid var(--color-border-light) !important;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  transition: border-color var(--transition);
  text-decoration: none !important;
  line-height: 1;
}
.btn-outline-teal:hover {
  border-color: var(--color-brand-mid) !important;
  color: var(--color-text-primary) !important;
}

/* Get Started button */
.btn-teal {
  background: var(--color-brand-dark);
  color: #FFFFFF !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  transition: background var(--transition);
  text-decoration: none !important;
  line-height: 1;
}
.btn-teal:hover { background: var(--color-brand-mid); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-brand-dark);
  padding: 64px 0 40px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.site-footer p.small {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
}

.site-footer h6 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { line-height: 2.2; }

.site-footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer a:hover { color: #FFFFFF; }

.footer-divider {
  border-color: rgba(255,255,255,0.10);
  margin: 48px 0 24px;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background-color: var(--color-brand-dark);
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  color: white;
  padding: 80px 0 72px;
}

.hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #FFFFFF;
  max-width: 580px;
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 40px;
}

/* Hero CTA buttons */
.btn-cream {
  background: #FFFFFF;
  color: var(--color-brand-dark) !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  transition: background var(--transition);
  text-decoration: none !important;
  line-height: 1;
}
.btn-cream:hover { background: var(--color-bg-base); }

.btn-outline-cream {
  background: transparent;
  color: rgba(255,255,255,0.90) !important;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 16px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  transition: border-color var(--transition);
  text-decoration: none !important;
  line-height: 1;
}
.btn-outline-cream:hover { border-color: rgba(255,255,255,0.70); }

/* Hero stat cards */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin-left: auto;
}

.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat-card i {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.80);
}

.hero-stat-card .stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-stat-card .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.3;
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section-white { background: var(--color-bg-base);        padding: 96px 0; }
.section-cream { background: var(--color-bg-section-alt); padding: 96px 0; }
.section-pale  { background: var(--color-bg-base);        padding: 96px 0; }
.section-dark  { background: var(--color-brand-dark);     padding: 96px 0; color: white; }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-brand-mid);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 64px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ── How it works ───────────────────────────────────────────────────────── */
.how-step { text-align: center; padding: 1rem; }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand-dark);
  color: white;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--color-brand-mid);
}

.how-step h5 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ── Feature cards ──────────────────────────────────────────────────────── */
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-brand-mid);
  margin-bottom: 18px;
}

.feature-card h5 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── Pricing cards ──────────────────────────────────────────────────────── */
.pricing-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-brand-mid);
  box-shadow: var(--shadow-pricing);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand-mid);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.price-note {
  font-size: 14px;
  color: var(--color-brand-mid);
  font-weight: 500;
}

.pricing-features { list-style: none; padding: 0; margin: 1.5rem 0; }

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 14px;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--color-brand-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234A7B6F' d='M13.485 1.431a1.473 1.473 0 0 0-2.104 0l-6.627 7.062-2.202-2.246a1.473 1.473 0 1 0-2.104 2.064l3.254 3.318a1.473 1.473 0 0 0 2.104 0l7.679-8.186a1.473 1.473 0 0 0 0-2.012z'/%3E%3C/svg%3E") no-repeat center/10px;
  border-radius: 50%;
}

/* Pricing teaser on landing */
.pricing-pill { text-align: center; }

.price-big {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
}

.price-small {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-left: 4px;
}

.badge-save {
  background: var(--color-brand-light);
  color: var(--color-brand-mid);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
  letter-spacing: 0.03em;
  display: inline-block;
}

/* ── CTA banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--color-brand-mid);
  color: white;
  padding: 96px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}

.cta-banner .btn-cream {
  height: 56px;
  padding: 0 40px;
  font-size: 16px;
}

/* ── Auth pages ─────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-base);
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-auth);
  overflow: hidden;
}

.auth-header {
  background: var(--color-brand-dark);
  padding: 32px 36px;
  text-align: center;
}

.auth-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
}

.auth-subtitle {
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  margin-top: 4px;
}

.auth-body {
  background: var(--color-bg-card);
  padding: 32px 36px;
}

.auth-tab {
  display: flex;
  background: var(--color-bg-section-alt);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab a {
  flex: 1;
  text-align: center;
  padding: 0.45rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--color-brand-mid);
  font-size: 14px;
  font-weight: 400;
  transition: all var(--transition);
}

.auth-tab a.active {
  background: white;
  color: var(--color-text-primary);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.form-control {
  height: 48px;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--color-border-input) !important;
  font-size: 15px;
  color: var(--color-text-primary);
  background: white;
  padding: 0 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--color-brand-mid) !important;
  box-shadow: 0 0 0 3px rgba(74,123,111,0.15) !important;
  outline: none;
}

.btn-auth-submit {
  width: 100%;
  height: 48px;
  padding: 0;
  background: var(--color-brand-mid);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-auth-submit:hover { background: var(--color-brand-dark); }
.btn-auth-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* ── Auth OAuth divider ───────────────────────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1rem 0;
  color: var(--color-text-muted);
  font-size: .78rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border-light);
}

#google-btn-wrap > div {
  width: 100% !important;
}

#google-btn-wrap iframe {
  width: 100% !important;
}

/* ── Password show/hide toggle ───────────────────────────────────────────── */
.pw-wrap {
  position: relative;
}
.pw-wrap .form-control {
  padding-right: 44px;
}
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  font-size: 16px;
}
.pw-toggle:hover { color: var(--color-text-primary); }

/* ── Content pages (about, faq, etc.) ──────────────────────────────────── */
.content-page { padding: 80px 0; }

.content-header { margin-bottom: 48px; }

.content-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.content-lead {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.content-body h2 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.content-body p {
  color: var(--color-text-primary);
  line-height: 1.7;
}

/* ── FAQ accordion ──────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  overflow: hidden;
  background: var(--color-bg-card);
}

.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--color-brand-light); }

.faq-question i {
  font-size: 0.8rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 0.5rem;
  color: var(--color-brand-mid);
}

.faq-answer {
  padding: 0 1.25rem;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0.75rem 1.25rem 1rem;
}

/* ── Trial / subscription banner ────────────────────────────────────────── */
.trial-banner {
  background: var(--color-brand-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 14px;
  color: var(--color-brand-dark);
}

.trial-banner a {
  color: var(--color-brand-mid);
  font-weight: 600;
  text-decoration: none;
}
.trial-banner a:hover { text-decoration: underline; }

/* ── Utility ────────────────────────────────────────────────────────────── */
.text-teal       { color: var(--color-brand-mid)  !important; }
.text-dark-teal  { color: var(--color-brand-dark) !important; }
.bg-teal-pale    { background: var(--color-brand-light) !important; }

/* ── Hero browser mockup ─────────────────────────────────────────────────── */

.hero {
  padding-bottom: 0;               /* let the mockup bleed to the bottom edge  */
}

.hero-browser {
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,.40),
    0 8px 24px rgba(0,0,0,.20);
  transform: perspective(1200px) rotateY(-3deg);
  transform-origin: right center;
  width: 100%;
  max-width: 640px;
  margin-top: 32px;
}

@media (max-width: 991.98px) {
  .hero-mockup-col {
    overflow: hidden;
  }
  .hero-browser {
    transform: none;
    transform-origin: top center;
    max-width: 100%;
    margin-top: 0;
    font-size: 11px;
    border-radius: 8px 8px 0 0;
  }
  .hero-browser-body {
    height: 220px;
  }
  .hero-app-sidebar {
    width: 100px;
  }
}

/* Browser chrome (traffic lights + URL bar) */
.hero-browser-chrome {
  height: 38px;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}

.hero-browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.hero-browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.hero-browser-dots span:nth-child(1) { background: #FF5F57; }
.hero-browser-dots span:nth-child(2) { background: #FFBD2E; }
.hero-browser-dots span:nth-child(3) { background: #28CA41; }

.hero-browser-url {
  flex: 1;
  max-width: 260px;
  margin: 0 auto;
  background: #e4e4e4;
  border-radius: 5px;
  padding: 3px 12px;
  font-size: 10.5px;
  color: #888;
  text-align: center;
}

/* App shell inside the browser */
.hero-browser-body {
  display: flex;
  height: 348px;
  overflow: hidden;
}

/* Sidebar */
.hero-app-sidebar {
  width: 138px;
  flex-shrink: 0;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 10px 8px;
}

.hero-app-nav-section {
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9ca3af;
  padding: 8px 7px 3px;
}

.hero-app-nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #6b7280;
  padding: 5px 7px;
  border-radius: 6px;
  margin-bottom: 1px;
}

.hero-app-nav-item.active {
  background: #e8f5ee;
  color: #1a3a35;
  font-weight: 700;
}

.hero-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.hero-app-nav-item.active .hero-nav-dot {
  background: #4a7b6f;
}

/* Main content area */
.hero-app-main {
  flex: 1;
  padding: 14px 16px;
  background: #fdfaf5;
  overflow: hidden;
}

.hero-app-page-title {
  font-size: 14px;
  font-weight: 800;
  color: #1a3a35;
  letter-spacing: -.025em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hero-year-nav {
  font-size: 9.5px;
  font-weight: 600;
  color: #4a7b6f;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 3px 9px;
}

/* Stat cards */
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.hero-mini-stat {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 8px 7px;
}

.hero-mini-label {
  font-size: 6.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9ca3af;
  margin-bottom: 3px;
}

.hero-mini-value {
  font-size: 12.5px;
  font-weight: 800;
  color: #1a3a35;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 2px;
}

.hero-mini-sub {
  font-size: 6px;
  color: #9ca3af;
}

.hero-val-green { color: #059669; }
.hero-val-red   { color: #dc2626; }

/* Month-by-month mini table */
.hero-table-label {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #4a7b6f;
  margin-bottom: 6px;
}

.hero-mini-table {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.hero-table-header,
.hero-table-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  padding: 4px 10px;
}

.hero-table-header {
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.hero-table-header span {
  font-size: 6.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
}

.hero-table-row {
  border-bottom: 1px solid #f9fafb;
}

.hero-table-row:last-child { border-bottom: none; }

.hero-table-row span {
  font-size: 8.5px;
  color: #374151;
}

.hero-table-header span:not(:first-child),
.hero-table-row    span:not(:first-child) {
  text-align: right;
}

.hero-table-total {
  background: #e8f5ee;
}

.hero-table-total span {
  font-weight: 700;
  color: #1a3a35;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero { padding: 60px 0 52px; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 16px; }

  .section-white,
  .section-cream,
  .section-pale,
  .section-dark { padding: 48px 0; }

  .section-lead { margin-bottom: 40px; }

  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: 1.75rem; }

  .section-title { font-size: 1.7rem; }
  .hero-stats { display: none; }

  .btn-cream,
  .btn-outline-cream { width: 100%; justify-content: center; }
}

/* ── Plan selection cards ────────────────────────────────────────────────── */
.plan-card {
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-card:hover {
  border-color: var(--color-brand-mid);
  box-shadow: 0 4px 16px rgba(74,123,111,0.12);
}
.plan-card--featured {
  border-color: var(--color-brand-mid);
  background: var(--color-brand-light);
}
.plan-badge {
  background: var(--color-brand-mid);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .75rem;
  text-transform: uppercase;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: .25rem;
}
.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brand-dark);
  line-height: 1.1;
}
.plan-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}
.plan-note {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: .25rem;
}

/* ── Comparison table ─────────────────────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.comparison-table thead th {
  padding: .75rem 1.1rem;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border-light);
  text-align: center;
}

.comparison-table thead th:first-child { text-align: left; }

.comparison-table tbody td {
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-primary);
  text-align: center;
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comp-label {
  text-align: left !important;
  font-weight: 600;
  color: var(--color-text-secondary) !important;
  font-size: .82rem;
  white-space: nowrap;
}

.col-oodal {
  background: var(--color-brand-light);
  font-weight: 700;
  color: var(--color-brand-dark) !important;
}

.comparison-table thead th.col-oodal {
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  border-radius: 8px 8px 0 0;
}

.comp-winner { color: var(--color-brand-dark) !important; }

.comparison-table .bi-check-lg { font-size: 1.1rem; color: var(--teal); }
