:root {
  --blue: #003399;
  --blue-2: #194cb7;
  --blue-3: #dbeeff;
  --ink: #101828;
  --muted: #667085;
  --line: #d7e3f8;
  --paper: #ffffff;
  --soft: #f5f9ff;
  --soft-2: #edf6ff;
  --shadow: 0 24px 70px rgba(0, 51, 153, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 51, 153, 0.10), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #eef6ff 100%);
}

body::selection {
  background: rgba(0, 51, 153, 0.18);
}

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

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--blue);
  color: white;
  padding: 12px 14px;
  border-radius: 10px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(215, 227, 248, 0.88);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  font-size: 1.1rem;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 10px 18px rgba(0, 51, 153, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #344054;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
  background: rgba(0, 51, 153, 0.08);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  padding-block: clamp(66px, 10vw, 110px);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 8.8vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 0;
  color: #69758a;
  font-size: clamp(1.16rem, 2.15vw, 1.55rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 51, 153, 0.08);
}

.badges span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 51, 153, 0.10);
  color: var(--blue);
  font-size: 0.8rem;
  line-height: 1;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(0, 51, 153, 0.24);
}

.button.primary:hover {
  background: var(--blue-2);
}

.button.secondary {
  color: var(--blue);
  background: white;
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(0, 51, 153, 0.08);
}

.fine-print {
  margin-top: 14px;
  font-size: 0.94rem;
}

.hero-art {
  justify-self: center;
  width: min(450px, 82vw);
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 3% -4%;
  border-radius: 46px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 51, 153, 0.18), transparent 65%);
  filter: blur(18px);
  z-index: 0;
}

.hero-icon-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3.2vw, 26px);
  border-radius: 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(226, 241, 255, 0.68));
  border: 1px solid rgba(215, 227, 248, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 30px 78px rgba(0, 51, 153, 0.15);
  overflow: visible;
}

.hero-icon-frame img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 51, 153, 0.18));
}

.section {
  padding-block: 82px;
}

.intro {
  text-align: center;
  padding-top: 36px;
}

.intro h2,
.intro p {
  max-width: 830px;
  margin-inline: auto;
}

.steps {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 51, 153, 0.08);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.card,
.faq-card,
.policy-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 51, 153, 0.08);
}

.card h3,
.faq-card h3,
.policy-card h2 {
  color: var(--blue);
}

.card p,
.faq-card p,
.policy-card p {
  margin-bottom: 0;
}

.comparison {
  padding-top: 42px;
}

.compare-table {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row > div {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 760;
  line-height: 1.45;
}

.compare-row > div:first-child {
  border-right: 1px solid var(--line);
}

.compare-row:last-child > div {
  border-bottom: 0;
}

.compare-head > div {
  color: white;
  background: var(--blue);
  font-size: 1.05rem;
}

.price {
  text-align: center;
}

.price-card {
  margin-inline: auto;
  max-width: 690px;
  border-radius: 42px;
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-2) 100%);
  border: 1px solid var(--line);
  padding: 46px 34px;
  box-shadow: var(--shadow);
}

.price-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 22px;
  filter: drop-shadow(0 12px 20px rgba(0, 51, 153, 0.16));
}

.price-card h2 {
  font-size: clamp(4rem, 12vw, 8rem);
  margin-bottom: 10px;
  color: var(--blue);
}

.support-strip,
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--blue);
  color: white;
  border-radius: 36px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 51, 153, 0.24);
}

.support-strip h2,
.contact-card h2,
.support-strip p,
.contact-card p,
.support-strip .eyebrow,
.contact-card .eyebrow {
  color: white;
}

.support-strip p,
.contact-card p {
  margin-bottom: 0;
  opacity: 0.86;
}

.support-strip .button.primary,
.contact-card .button.primary {
  color: var(--blue);
  background: white;
  box-shadow: none;
  flex: 0 0 auto;
}

.legal-note {
  padding-block: 40px 70px;
}

.legal-note p {
  margin: 0;
  color: #475467;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 0.96rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding-block: 28px;
}

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

.footer-inner p {
  margin: 0;
  font-size: 0.94rem;
}

.footer-inner div {
  display: flex;
  gap: 16px;
  color: var(--blue);
  font-weight: 850;
}

.footer-tagline {
  text-align: center;
  margin: 18px 20px 0;
  font-size: 0.95rem;
}

.page-hero {
  padding-block: 96px 52px;
  max-width: 880px;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

.page-hero p:not(.eyebrow) {
  font-size: 1.16rem;
  max-width: 700px;
}

.faq-list,
.policy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.policy {
  padding-bottom: 84px;
}

.policy-card h2 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.policy-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.policy-hero {
  padding-bottom: 28px;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 54px;
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .badges,
  .actions {
    justify-content: center;
  }

  .feature-grid,
  .steps,
  .faq-list,
  .policy {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: center;
    margin-inline: auto;
  }

  .support-strip,
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .nav {
    min-height: auto;
    padding-block: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .nav-links a {
    padding-inline: 10px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 5rem);
    letter-spacing: -0.065em;
  }

  .hero-art {
    width: min(360px, 86vw);
  }

  .hero-icon-frame {
    border-radius: 34px;
  }

  .section {
    padding-block: 58px;
  }

  .card,
  .faq-card,
  .policy-card,
  .price-card {
    padding: 24px;
    border-radius: 24px;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > div:first-child {
    border-right: 0;
  }

  .compare-head > div:first-child {
    border-bottom-color: rgba(255,255,255,0.22);
  }

  .support-strip,
  .contact-card {
    padding: 28px;
    border-radius: 28px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
