:root {
  --navy: #07152b;
  --navy-2: #0d2342;
  --navy-3: #112f55;
  --gold: #d9a441;
  --gold-2: #f1c56c;
  --text: #172033;
  --muted: #657083;
  --line: #e7eaf0;
  --bg: #f6f7fa;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 21, 43, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.topbar {
  background: #050f20;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a { color: var(--gold-2); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  color: #263246;
}

.main-nav a:not(.nav-cta):hover { color: var(--gold); }

.main-nav a.is-active:not(.nav-cta) { color: var(--gold); }

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

.nav-cta:hover { background: var(--navy-3); }

.nav-cta.is-active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

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

.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 920px);
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,21,43,.96) 0%, rgba(7,21,43,.84) 46%, rgba(7,21,43,.30) 100%),
    url('/assets/img/hero.jpg') center/cover no-repeat,
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(7,21,43,.55), transparent);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 12px;
  margin: 0 0 14px;
}

h1, h2, h3 { line-height: 1.12; margin: 0; }

h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -.055em;
}

.hero__content h1 {
  font-size: clamp(34px, 4.8vw, 60px);
}

.hero-highlight {
  color: var(--gold-2);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.04em;
}

h3 {
  font-size: 22px;
  letter-spacing: -.025em;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 32px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
}

.hero__actions, .cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  box-shadow: 0 16px 35px rgba(217,164,65,.24);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(217,164,65,.32); }

.btn-outline {
  color: white;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}

.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-outline-light {
  color: white;
  border-color: rgba(255,255,255,.35);
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero__badges span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  justify-self: end;
  max-width: 430px;
  width: 100%;
  border-radius: 30px;
  padding: 32px;
  background: rgba(255,255,255,.94);
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero-card h2 { font-size: 28px; margin-bottom: 18px; }

.hero-card ul, .highlight-box ul {
  padding-left: 20px;
  margin: 0;
}

.hero-card li, .highlight-box li { margin: 10px 0; }

.section { padding: 96px 0; }

.section-light { background: var(--bg); }

.section-navy {
  background:
    radial-gradient(circle at 80% 10%, rgba(217,164,65,.18), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-heading--light p:not(.eyebrow) { color: rgba(255,255,255,.75); }

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

.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card, .offer-card, .step, .mini-card, .highlight-box {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7,21,43,.08);
  border: 1px solid rgba(7,21,43,.06);
}

.card {
  padding: 28px;
  min-height: 240px;
}

.card p, .offer-card p, .step p { color: var(--muted); }

.icon {
  width: 96px;
  height: 96px;
  border-radius: 0;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: transparent;
  color: inherit;
  font-size: 0;
}

.icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.offer-card {
  padding: 28px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.offer-card .icon {
  background: transparent;
}

.offer-card p { color: rgba(255,255,255,.72); }

.offer-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 30px;
}

.step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 22px;
}

.step-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.step-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.section-split { background: white; }

.split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: start;
}

.split.split-50 {
  grid-template-columns: 1fr 1fr;
}

.split p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.highlight-box {
  padding: 34px;
  background: var(--bg);
}

.highlight-box strong {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
}

.cta-band {
  min-height: clamp(340px, 48vh, 520px);
  padding: clamp(72px, 9vh, 112px) 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,21,43,.95) 0%, rgba(7,21,43,.82) 48%, rgba(7,21,43,.36) 100%),
    url('/assets/img/hero.jpg') center/cover no-repeat;
  color: white;
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.cta-band p:not(.eyebrow) {
  color: rgba(255,255,255,.75);
  font-size: 18px;
}

.two-actions {
  display: grid;
  gap: 18px;
}

.mini-card {
  display: block;
  padding: 24px;
}

.mini-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.mini-card span { color: var(--muted); }

.site-footer {
  padding: 64px 0 24px;
  background: #050f20;
  color: rgba(255,255,255,.74);
}

.logo-footer { color: white; margin-bottom: 18px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 48px;
}

.site-footer h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}

.site-footer a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }

.site-footer a:hover { color: var(--gold-2); }

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

/* Page templates */
.page-hero {
  padding: 118px 0 78px;
  background:
    linear-gradient(90deg, rgba(7,21,43,.94) 0%, rgba(7,21,43,.80) 48%, rgba(7,21,43,.36) 100%),
    url('/assets/img/hero.jpg') center/cover no-repeat,
    var(--navy);
  color: white;
}

.page-hero p {
  max-width: 690px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
}

.page-hero .eyebrow {
  color: var(--gold-2);
}

.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  letter-spacing: -.055em;
  line-height: 1.12;
  color: #fff;
  font-weight: 800;
  max-width: 780px;
}

.content-section {
  padding: 72px 0;
}

.content-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 45px rgba(7,21,43,.06);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 52px;
  padding: 13px 15px;
  font: inherit;
}

textarea { min-height: 140px; resize: vertical; }

label { font-weight: 800; font-size: 14px; }

@media (max-width: 980px) {
  .cards-4, .steps, .hero__grid, .split, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero { min-height: clamp(560px, 78vh, 760px); padding: 90px 0; }

  .hero-card { justify-self: start; }

  .main-nav {
    position: absolute;
    inset: 116px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a { padding: 13px 10px; }

  .nav-toggle { display: block; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band { min-height: clamp(320px, 44vh, 460px); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar__inner { flex-direction: column; padding: 8px 0; gap: 4px; }
  .logo-image { height: 42px; }
  .hero { min-height: clamp(520px, 76vh, 640px); padding: 72px 0; }
  .hero__grid, .cards-4, .steps, .split, .footer-grid, .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
  .section { padding: 68px 0; }
  .hero-card { padding: 24px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; }
  .cta-band {
    min-height: clamp(300px, 42vh, 420px);
    padding: 64px 0;
    background-position: 62% center;
  }
}

.footer-phone {
  white-space: nowrap;
}

.footer-phone a {
  display: inline;
  margin: 0;
}

.legacy-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.legacy-footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.legacy-col h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
}

.legacy-subtitle {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.legacy-col h4 {
  margin: 14px 0 6px;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legacy-col p {
  margin: 0 0 10px;
}

.legacy-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.site-footer .legacy-socials a {
  display: inline;
  margin: 0;
  color: #fff;
  line-height: 1;
}

.site-footer .legacy-socials i {
  font-size: 1.8rem;
}

.faq-section {
  background: var(--bg);
}

.faq-group + .faq-group {
  margin-top: 30px;
}

.faq-group h3 {
  margin-bottom: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  color: var(--text);
  padding: 18px 22px;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
}

.faq-question:hover {
  background: #f9fafc;
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 14px 22px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.consent-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}

.split .consent-box p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.consent-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.consent-checkbox input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

@media (max-width: 980px) {
  .legacy-footer-grid {
    grid-template-columns: 1fr;
  }
}
