:root {
  color-scheme: light;
  --navy: #00325a;
  --navy-deep: #002642;
  --cyan: #04a7dd;
  --cyan-soft: #d9f4fc;
  --hero: #f1fbfe;
  --text: #122b3a;
  --muted: #526d7a;
  --border: #d5eaf2;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 50, 90, 0.1);
  --radius: 20px;
  --container: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.brand-link {
  display: inline-flex;
  flex: 0 1 230px;
}

.brand-link img {
  width: min(100%, 230px);
  height: auto;
}

.call-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 50, 90, 0.16);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.call-button:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(0, 50, 90, 0.22);
  transform: translateY(-1px);
}

.call-button:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0, 50, 90, 0.18);
}

.call-button--header {
  min-height: 52px;
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 13px;
}

.call-button--header > span {
  display: grid;
  gap: 1px;
}

.call-button--header strong {
  font-size: 15px;
}

.call-button--header small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(4, 167, 221, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(4, 167, 221, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent, black 28%, transparent 92%);
}

.hero-accent {
  position: absolute;
  border: 1px solid rgba(4, 167, 221, 0.22);
  border-radius: 999px;
  pointer-events: none;
}

.hero-accent--one {
  width: 420px;
  height: 420px;
  top: -260px;
  right: -130px;
}

.hero-accent--two {
  width: 300px;
  height: 300px;
  bottom: -220px;
  left: -110px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(42px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(64px, 8vw, 106px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #007aa6;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 850;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.hero-lede {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.program-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.program-note::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--cyan);
  border-radius: 50%;
}

.hero-action-panel {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(213, 234, 242, 0.96);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  min-height: 30px;
  padding-left: 42px;
  color: var(--text);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.call-button--primary {
  width: 100%;
  min-height: 64px;
  font-size: 18px;
}

.cta-note {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.trustpilot-proof {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 5px 7px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.trustpilot-proof:hover {
  background: #edf9f6;
}

.trustpilot-rating {
  white-space: nowrap;
}

.trustpilot-graphic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  line-height: 0;
}

.trustpilot-stars {
  width: auto;
  height: 15px;
  flex: 0 0 auto;
}

.trustpilot-wordmark {
  width: auto;
  height: 17px;
  flex: 0 0 auto;
}

.disclosure {
  margin: 20px 0 0;
  padding-top: 18px;
  color: #5f7782;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  line-height: 1.55;
}

.value-section {
  padding-block: clamp(72px, 10vw, 120px);
}

.narrow-copy {
  max-width: 820px;
  text-align: center;
}

.narrow-copy p:last-child {
  max-width: 740px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.steps-section {
  padding-block: clamp(70px, 9vw, 112px);
  background: #f8fcfe;
  border-block: 1px solid var(--border);
}

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

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps-list p {
  margin: 0;
  color: var(--muted);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--navy);
  background: var(--cyan-soft);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 850;
}

.faq-section {
  padding-block: clamp(72px, 10vw, 120px);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 30px;
  margin-bottom: 0;
}

.faq-heading > p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 780;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--cyan-soft);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: -4px 44px 23px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 90px);
  color: var(--white);
  background: var(--navy);
}

.final-cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -230px;
  bottom: -290px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.final-cta h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
}

.section-kicker--light {
  color: #75d8f3;
}

.call-button--light {
  width: 100%;
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.call-button--light:hover {
  color: var(--navy-deep);
  background: #e8f8fd;
  border-color: #e8f8fd;
}

.final-cta-action > p {
  margin: 10px 0 0;
  color: #c4e5ef;
  font-size: 14px;
  text-align: center;
}

.site-footer {
  padding-block: 50px 34px;
  color: #bfd0d9;
  background: #092638;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 220px;
  height: auto;
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
}

.footer-brand p {
  margin: 14px 0 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  max-width: 500px;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-copy {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-copy p {
  max-width: 980px;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.sticky-call {
  position: fixed;
  z-index: 100;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 28px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-call a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 27, 49, 0.35);
}

@media (max-width: 900px) {
  .hero-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

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

  .hero-action-panel {
    max-width: 680px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
  }

  .steps-list .step-number {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .steps-list h3,
  .steps-list p {
    grid-column: 2;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 76px;
    gap: 10px;
  }

  .brand-link {
    flex-basis: 150px;
    min-width: 0;
  }

  .brand-link img {
    width: 150px;
  }

  .call-button--header {
    min-height: 48px;
    gap: 7px;
    padding: 7px 11px;
  }

  .call-button--header svg {
    display: none;
  }

  .call-button--header strong {
    font-size: 13px;
  }

  .call-button--header small {
    font-size: 10px;
  }

  .hero-grid {
    gap: 30px;
    padding-block: 42px 48px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 11px;
    font-size: 11.5px;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.48;
  }

  .program-note {
    font-size: 13px;
  }

  .hero-action-panel {
    padding: 24px 20px;
    border-radius: 19px;
  }

  .benefit-list {
    gap: 15px;
    margin-bottom: 22px;
  }

  .benefit-list li {
    padding-left: 37px;
    font-size: 15.5px;
  }

  .benefit-list li::before {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }

  .call-button--primary {
    min-height: 60px;
    padding-inline: 13px;
    font-size: 15.5px;
  }

  .trustpilot-proof {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .disclosure {
    font-size: 12px;
  }

  .narrow-copy {
    text-align: left;
  }

  .narrow-copy p:last-child {
    font-size: 17px;
  }

  .steps-list li {
    padding: 22px 20px;
  }

  .step-number {
    width: 38px;
    height: 38px;
  }

  .faq-list summary {
    font-size: 17px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer {
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
  }

  .sticky-call {
    display: block;
  }
}

@media (max-width: 374px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-link,
  .brand-link img {
    width: 132px;
    flex-basis: 132px;
  }

  .call-button--header {
    padding-inline: 9px;
  }

  .call-button--header strong {
    font-size: 12px;
  }

  .call-button--header small {
    font-size: 9px;
  }

  h1 {
    font-size: 38px;
  }

  .call-button--primary,
  .sticky-call a {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
