:root {
  --navy: #0b3264;
  --navy-deep: #061f40;
  --red: #d71920;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dfe5ec;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(9, 35, 73, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,50,100,.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.1;
}
.brand small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  margin-top: 4px;
  font-size: .68rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: #30415a;
}
.primary-nav > a:not(.button):hover { color: var(--red); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--red);
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(215,25,32,.18);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(215,25,32,.25);
}
.button-small { padding: 10px 16px; }
.button-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}
.button-light {
  background: white;
  color: var(--navy);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  background:
    radial-gradient(circle at 84% 22%, rgba(215,25,32,.08), transparent 28%),
    radial-gradient(circle at 8% 8%, rgba(11,50,100,.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 60px solid rgba(11,50,100,.025);
  border-radius: 50%;
  right: -170px;
  bottom: -230px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  font-weight: 900;
  font-size: .78rem;
}

h1, h2, h3 {
  color: var(--navy-deep);
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  letter-spacing: -.045em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
h3 { font-size: 1.35rem; }

.hero-lead {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-row span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: #44536a;
  font-size: .86rem;
  font-weight: 800;
}

.hero-logo-card {
  background: white;
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,50,100,.08);
}
.hero-logo-card img {
  width: min(100%, 520px);
  margin: auto;
}

.strip {
  background: var(--navy-deep);
  color: white;
}
.strip-items {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.strip-items span:not(:last-child)::after {
  content: "•";
  color: var(--red);
  margin-left: 34px;
}

.section { padding: 92px 0; }
.section-alt { background: var(--soft); }

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.section-heading.narrow { max-width: 660px; }
.section-heading > p:last-child,
.section p { color: var(--muted); }

.cards {
  display: grid;
  gap: 22px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 30px rgba(9,35,73,.055);
}
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fff1f2;
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card p { margin-bottom: 0; }

.course-note {
  margin-top: 24px;
  border-left: 5px solid var(--red);
  padding: 18px 20px;
  background: #fbfcfe;
  border-radius: 0 14px 14px 0;
  color: #4d5a6c;
}
.course-note strong { color: var(--navy); }

.split,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.feature-panel {
  border-radius: 30px;
  background: var(--navy-deep);
  color: white;
  padding: 38px;
  box-shadow: var(--shadow);
}
.feature-panel h3 {
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}
.feature-kicker {
  color: #ff9da1 !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
}
.feature-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.feature-list strong { color: white; }
.feature-list span { color: #cbd7e7; }

.about-grid { grid-template-columns: .75fr 1.25fr; }
.about-logo {
  border-radius: 30px;
  background: #f8fbff;
  padding: 28px;
  border: 1px solid var(--line);
}
.about-logo img {
  width: min(100%, 390px);
  margin: auto;
}

.cta-band {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.10), transparent 25%),
    var(--red);
  padding: 58px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 {
  color: white;
  margin-bottom: 0;
  max-width: 790px;
}
.eyebrow.light { color: #ffd9da; }

.faq-list {
  max-width: 900px;
}
details {
  border-top: 1px solid var(--line);
  padding: 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy-deep);
  padding: 22px 4px;
  font-size: 1.08rem;
}
details p { padding: 0 4px 22px; margin: 0; }

.contact-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.contact-grid { align-items: start; }

.contact-points {
  margin-top: 30px;
}
.contact-points > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-points strong { color: var(--navy); }
.contact-points span { color: var(--muted); }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 15px;
}
input, textarea, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfd7e3;
  background: white;
  color: var(--ink);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,50,100,.09);
}
textarea { resize: vertical; }
.form-note {
  font-size: .84rem;
  margin: 14px 0 0;
}

.site-footer {
  background: var(--navy-deep);
  color: white;
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 4px;
}
.footer-brand strong,
.footer-brand span { display: block; }
.footer-brand span {
  font-size: .78rem;
  color: #bac8da;
}
.site-footer p {
  margin: 0;
  color: #bac8da;
  font-size: .86rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cards.three { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-logo-card { max-width: 590px; }
  .cta-inner,
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .strip-items span::after { display: none; }

  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(9,35,73,.08);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 12px 0;
  }
  .primary-nav .button {
    margin-top: 8px;
    padding: 12px 16px;
  }
}

@media (max-width: 580px) {
  .container { width: min(100% - 26px, 1160px); }
  .section { padding: 68px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .98rem; }
  .primary-nav { top: 72px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .feature-list > div,
  .contact-points > div { grid-template-columns: 1fr; gap: 2px; }
  .hero-logo-card, .contact-form, .feature-panel { padding: 22px; }
  h1 { font-size: 2.6rem; }
}
