:root {
  --navy-950: #04152c;
  --navy-900: #071d3b;
  --navy-800: #0b2d59;
  --blue-700: #174ea6;
  --blue-600: #2469d8;
  --blue-100: #eaf3ff;
  --gold-500: #f4b63f;
  --gold-100: #fff4d9;
  --ink: #152033;
  --muted: #607086;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --success: #16794b;
  --shadow: 0 20px 55px rgba(7, 29, 59, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(36, 105, 216, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 229, 239, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 950;
  letter-spacing: -0.035em;
  font-size: 20px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--navy-900);
  color: #fff;
  font-size: 21px;
}

.brand strong {
  color: var(--blue-600);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #3c4c62;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--blue-700);
}

.btn,
.site-nav .nav-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 9px 15px;
  background: var(--navy-900);
  color: #fff;
}

.btn-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 10px 25px rgba(36, 105, 216, 0.24);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-dark {
  background: var(--navy-900);
  color: #fff;
}

.btn-light {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}

.btn-gold {
  background: var(--gold-500);
  color: #172033;
}

.btn-block {
  width: 100%;
}

.hero {
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.hero-grid {
  min-height: min(690px, 82svh);
  display: grid;
  grid-template-columns: minmax(440px, 0.85fr) minmax(620px, 1.25fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
  padding: 72px clamp(34px, 5vw, 82px);
}

.hero-copy::after {
  position: absolute;
  top: -35%;
  right: -210px;
  width: 270px;
  height: 170%;
  content: "";
  background: linear-gradient(90deg, var(--navy-950), transparent);
  pointer-events: none;
}

.hero-visual {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(4, 21, 44, 0.14), transparent 30%),
    url("/assets/hero-background.jpg") center center / cover no-repeat;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #bcd8ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold-500);
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 53ch;
  margin: 24px 0 0;
  color: #dce9f8;
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.hero-paths .btn {
  min-height: 58px;
  padding-inline: 11px;
  font-size: 14px;
}

.hero-note {
  margin-top: 18px;
  color: #a9bdd5;
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.proof-item {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  color: var(--navy-900);
  font-size: 15px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--navy-950);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #9cc6ff;
}

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

h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-dark h2 {
  color: #fff;
}

h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-head p,
.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head p {
  color: #b7c8dc;
}

.role-grid,
.price-grid,
.trust-grid,
.steps-grid,
.support-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 29, 59, 0.06);
}

.role-card,
.price-card,
.trust-card,
.step-card,
.support-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: clamp(24px, 3vw, 34px);
}

.role-card {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--blue-600);
}

.role-card:nth-child(2) {
  border-top-color: var(--gold-500);
}

.role-card:nth-child(3) {
  border-top-color: var(--success);
}

.role-label,
.pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
}

.role-card p,
.price-card p,
.trust-card p,
.step-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.role-card ul,
.price-card ul,
.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-card li,
.price-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: #405168;
  font-size: 14px;
  font-weight: 750;
}

.role-card li::before,
.price-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 950;
}

.role-card .btn,
.price-card .btn {
  margin-top: auto;
}

.step-card {
  counter-increment: steps;
}

.step-card::before {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy-900);
  color: #fff;
  content: counter(steps);
  font-weight: 950;
}

.trust-card {
  box-shadow: none;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--gold-100);
  font-size: 22px;
}

.price-card.featured {
  border: 2px solid var(--blue-600);
  box-shadow: var(--shadow);
}

.price {
  color: var(--navy-900);
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: #0a2447;
}

.proof-panel h2 {
  color: #fff;
}

.proof-panel p {
  color: #bfd0e3;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list article {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 4px;
  color: #b8c9dc;
  font-size: 13px;
}

.faq-list {
  max-width: 860px;
  display: grid;
  gap: 12px;
  margin-inline: auto;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy-900);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(4, 21, 44, 0.96), rgba(11, 45, 89, 0.88)),
    url("/assets/hero-background.jpg") center 58% / cover;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 650px;
  margin: 16px auto 26px;
  color: #d4e1ef;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(36, 105, 216, 0.34), transparent 38%),
    var(--navy-950);
  color: #fff;
}

.page-hero .container {
  max-width: 920px;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: #c9d9e9;
  font-size: 19px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #b7cae1;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: #fff;
}

.content-narrow {
  max-width: 850px;
}

.prose {
  display: grid;
  gap: 22px;
}

.prose article {
  padding: clamp(24px, 4vw, 38px);
}

.prose h2 {
  font-size: clamp(27px, 3vw, 36px);
}

.prose h3 {
  margin-top: 18px;
}

.prose p,
.prose li {
  color: #4c5d73;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 9px;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--gold-500);
  border-radius: 10px;
  background: var(--gold-100);
  color: #594318;
}

.form-shell {
  max-width: 760px;
  margin-inline: auto;
}

.form-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 5vw, 44px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: #42546b;
  font-size: 13px;
  font-weight: 900;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #cfdbe8;
  border-radius: 12px;
  background: #fbfdff;
  color: var(--ink);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(36, 105, 216, 0.14);
}

.check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 700 !important;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.status {
  padding: 13px 15px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
}

.status.error {
  background: #fff0f0;
  color: #a82b2b;
}

.status.success {
  background: #e9f7ef;
  color: #12623e;
}

.status[hidden] {
  display: none;
}

.plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #cfe0f3;
  border-radius: 14px;
  background: var(--blue-100);
}

.plan-summary strong,
.plan-summary span {
  display: block;
}

.plan-summary span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--navy-950);
  color: #c3d1e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 1fr));
  gap: 38px;
}

.footer-brand p {
  max-width: 38ch;
  color: #99adc4;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col strong {
  color: #fff;
}

.footer-col a {
  color: #b9c9d9;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa4ba;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
    padding-block: 64px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-visual {
    min-height: min(68vw, 650px);
    background-size: cover;
  }

  .proof-strip .container,
  .proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    width: min(88vw, 360px);
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: #fff;
    box-shadow: -20px 30px 50px rgba(7, 29, 59, 0.18);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav .nav-cta {
    margin-top: 14px;
  }

  .hero-copy {
    padding: 54px 24px;
  }

  .hero-paths,
  .role-grid,
  .price-grid,
  .trust-grid,
  .steps-grid,
  .support-grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .hero-paths {
    max-width: 430px;
  }

  .proof-strip .container {
    width: 100%;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .hero-visual {
    min-height: 72vw;
    background-position: 54% center;
  }

  .section {
    padding: 64px 0;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .plan-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

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