:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #13202b;
  --muted: #596776;
  --line: #dbe3ea;
  --primary: #1f7a3d;
  --primary-dark: #176432;
  --secondary: #eef4ef;
  --shadow: 0 18px 50px rgba(17, 31, 44, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow { width: min(860px, calc(100% - 32px)); }

.topbar {
  background: #0f1720;
  color: #fff;
  padding: 14px 0;
}

.topbar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-item { text-align: center; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: 0.98rem; }
.trust-item span { color: rgba(255,255,255,0.78); font-size: 0.9rem; }

.hero { padding: 46px 0 34px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.hero-copy,
.selection-card,
.adv-card,
.cta-box,
.content-section .narrow,
.footer {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy { padding: 28px; }

.brand-box {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.logo {
  width: 390px;
  max-width: 100%;
  border-radius: 14px;
}

.eyebrow,
.updated,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  max-width: 12ch;
}

h2 { font-size: clamp(1.7rem, 2.6vw, 2.6rem); }
h3 { font-size: 1.2rem; }

.lead,
.card-text,
p {
  color: var(--muted);
  font-size: 1.02rem;
}

.benefit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--secondary);
  border: 1px solid #d7e6d9;
  font-weight: 600;
  color: #21482d;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

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

.btn-secondary { background: #eef2f6; color: var(--text); }

.selection-card { padding: 28px; }

.states-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.states-grid a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfd;
  font-weight: 600;
  color: #203141;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.states-grid a:hover {
  border-color: #a7b6c4;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 31, 44, 0.07);
}

.content-section,
.advantages,
.cta-section { padding: 24px 0 34px; }

.content-section .narrow { padding: 34px; }

.advantages h2 {
  text-align: center;
  margin-bottom: 22px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card { padding: 26px; }

.cta-box {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer {
  margin: 0 16px 16px;
  padding: 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.footer-logo {
  width: 220px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-grid,
  .adv-grid,
  .footer-grid,
  .topbar-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 20px, 1180px);
  }

  .hero-copy,
  .selection-card,
  .adv-card,
  .cta-box,
  .content-section .narrow {
    padding: 22px;
  }

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