:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe5f0;
  --panel: #ffffff;
  --wash: #f3f7fc;
  --blue: #155bd6;
  --blue-strong: #0f4fbf;
  --green: #26a95a;
  --orange: #f28a1a;
  --purple: #7c3fe4;
  --red: #ef4444;
  --teal: #21b9bd;
  --navy: #4753a3;
  --shadow: 0 18px 45px rgba(15, 45, 90, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 229, 240, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #07163a;
  white-space: nowrap;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: #24324f;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  padding: 104px clamp(20px, 6vw, 72px) 56px;
  overflow: hidden;
  background: #edf5ff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 248, 255, 0.72);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 0;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.95);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  width: min(560px, 100%);
  margin: 20px 0 0;
  color: #111c38;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-button {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(21, 91, 214, 0.28);
}

.secondary-button {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 91, 214, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 3;
  gap: 12px;
}

.stats div {
  min-height: 104px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: 27px;
  line-height: 1.1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px clamp(18px, 4vw, 32px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.plan-card,
.coverage-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 45, 90, 0.08);
}

.feature-card {
  padding: 24px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.icon.blue { background: var(--blue); }
.icon.green { background: var(--green); }
.icon.purple { background: var(--purple); }
.icon.orange { background: var(--orange); }

.feature-card h3,
.plan-card h3 {
  margin: 0;
  font-size: 22px;
}

.feature-card p,
.body-copy {
  color: var(--muted);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.coverage-list {
  list-style: none;
  margin: 0;
  padding: 14px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 12px;
  border-bottom: 1px solid #edf2f8;
  font-weight: 900;
}

.coverage-list li:last-child {
  border-bottom: 0;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.dot.red { background: var(--red); }
.dot.green { background: var(--green); }
.dot.violet { background: var(--purple); }
.dot.teal { background: var(--teal); }
.dot.blue { background: var(--blue); }
.dot.navy { background: var(--navy); }

.plans {
  padding-bottom: 82px;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
  margin: 0;
}

.plan-card {
  padding: 26px;
  position: relative;
}

.plan-card.highlight {
  border-color: rgba(21, 91, 214, 0.55);
  box-shadow: 0 18px 42px rgba(21, 91, 214, 0.16);
}

.plan-card.final-drill {
  border-color: rgba(124, 63, 228, 0.35);
}

.price {
  margin: 10px 0 18px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.final-drill .price {
  color: var(--purple);
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.plan-card ul {
  margin: 0;
  padding-left: 20px;
  color: #25324d;
  font-weight: 800;
}

.support-section {
  padding-top: 0;
}

.support-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.support-panel p {
  margin: 0;
  color: #26324c;
  font-weight: 700;
}

.support-panel p + p {
  margin-top: 14px;
}

.support-mail a {
  color: var(--blue);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.closing {
  color: #fff;
  background: var(--blue-strong);
  padding: 48px clamp(20px, 6vw, 72px);
}

.closing h2,
.closing p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.closing p {
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 56px);
  background: #07163a;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.policy-page {
  padding: 72px clamp(18px, 5vw, 56px);
}

.policy {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.policy h2 {
  margin-top: 34px;
  font-size: 24px;
}

.policy p {
  color: #334155;
  font-weight: 700;
}

.updated {
  margin-top: 36px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero {
    min-height: 620px;
    align-items: start;
    padding-top: 96px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero::after {
    background: rgba(244, 248, 255, 0.76);
  }

  .stats,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 560px;
    padding-top: 122px;
    padding-bottom: 36px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero::after {
    background: rgba(244, 248, 255, 0.82);
  }

  .stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 12px;
  }

  .hero-actions a {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
