:root {
  --navy: #1B2D5A;
  --navy-hover: #162444;
  --green: #5E7F60;
  --green-hover: #4E6B50;
  --green-light: #E6EDE3;
  --brick: #C55D4D;
  --brick-hover: #B24D3E;
  --text-primary: #111827;
  --text-secondary: #64748B;
  --text-muted: #9AA3AF;
  --bg-main: #FCFCFA;
  --bg-section: #F5F6F2;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
  --border-strong: #CBD2D9;
  --ghost-hover-bg: #F2F4F7;
  --success: #5E7F60;
  --warning: #D09A45;
  --danger: #C55D4D;
  --info: #5B7DBA;
  --radius-card: 20px;
  --radius-control: 14px;
  --container: 1140px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 252, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--navy); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-control);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-hover); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--ghost-hover-bg); }

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--ghost-hover-bg); color: var(--text-primary); }

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero { padding: 88px 0 96px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-lede {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }

.hero-note { font-size: 0.85rem; color: var(--text-muted); }

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 20px 48px -20px rgba(27, 45, 90, 0.18);
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.hero-card-row--tight { margin-top: 20px; margin-bottom: 0; align-items: center; }

.hero-card-label { font-size: 0.85rem; color: var(--text-secondary); }
.hero-card-value { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.hero-card-sub { font-size: 0.8rem; color: var(--text-muted); }

.hero-card-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 0 4px;
}

.hero-card-chart span {
  flex: 1;
  background: var(--border-strong);
  border-radius: 6px 6px 0 0;
}

.hero-card-chart span.is-accent { background: var(--green); }

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.pill-success { background: var(--green-light); color: var(--green); }

/* Sections */
.section { padding: 84px 0; }
.section--tinted { background: var(--bg-section); }

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-lede {
  text-align: center;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.feature-icon--navy { background: rgba(27, 45, 90, 0.1); color: var(--navy); }
.feature-icon--green { background: var(--green-light); color: var(--green); }
.feature-icon--brick { background: rgba(197, 93, 77, 0.12); color: var(--brick); }

.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-secondary); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 24px;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.price-card--highlight {
  border-color: var(--navy);
  box-shadow: 0 20px 48px -24px rgba(27, 45, 90, 0.28);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.price-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

.price-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.price-value span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.price-value .price-old { text-decoration: line-through; margin-left: 4px; }

.price-features { margin-bottom: 24px; }

.price-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.price-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 32px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-card);
  padding: 26px 28px;
}

.trust-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.trust-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* CTA */
.cta {
  background: var(--navy);
  padding: 72px 0;
}

.cta-inner { text-align: center; }

.cta h2 { color: #fff; font-size: 1.9rem; margin-bottom: 12px; }
.cta p { color: rgba(255, 255, 255, 0.72); margin-bottom: 28px; }

.cta .btn-primary { background: var(--green); }
.cta .btn-primary:hover { background: var(--green-hover); }

/* Footer */
.site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo--footer { color: var(--navy); font-weight: 800; margin-right: auto; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--navy); }

.footer-copy { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-copy { margin-left: 0; width: 100%; }
}
