:root {
  /* Palette A — “Trust Blue + Warm Support” */
  --primary: #1f5eff;
  --primary-dark: #1146d6;
  --text: #0f1b2d;
  --muted: #3c4a63;
  --accent: #ffb15c;
  --bg: #f7fafc;
  --card: #ffffff;
  --border: #e6ecf2;
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  z-index: 1000;
}
.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  padding: 14px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand-name {
  font-family: Nunito, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.brand-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  box-shadow: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button:active {
  transform: translateY(0px);
}
.button.primary {
  background: var(--primary);
  color: #fff;
}
.button.primary:hover {
  background: var(--primary-dark);
}
.button.secondary {
  background: #fff;
  border-color: var(--border);
}
.button.ghost {
  background: transparent;
  border-color: var(--border);
}
.button.full {
  width: 100%;
}

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

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

h1 {
  font-family: Nunito, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

h2 {
  font-family: Nunito, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
}

h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
  color: var(--text);
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.card-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.checklist,
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li {
  margin: 6px 0;
}

.micro {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 34px 0;
}

.family-callout {
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--muted);
}
.family-callout strong {
  color: var(--text);
}

.section.alt {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.subhead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.price-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.price-title {
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.price-amount {
  font-family: Nunito, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.price-amount span {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}

.price-note {
  margin: 0;
  color: var(--muted);
}

.price-inline {
  margin: 4px 0 8px;
}

.mt {
  margin-top: 18px;
}

.section-cta {
  margin-top: 18px;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-body {
  color: var(--muted);
  margin-top: 10px;
}

.contact {
  padding-bottom: 44px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
  align-items: start;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #0f1b2d;
  color: #ffffff;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-name {
  font-family: Nunito, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-tagline {
  opacity: 0.85;
  font-size: 14px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .grid.cards,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
  .header-cta {
    width: 100%;
  }
}
