:root {
  --blue: #000887;
  --blue-dark: #02044f;
  --blue-mid: #0a12a8;
  --blue-soft: #eef2ff;
  --blue-line: #dde3ff;
  --yellow: #f6c657;
  --yellow-dark: #d4a020;
  --yellow-soft: #fff8e2;
  --white: #ffffff;
  --surface: #f8faff;
  --text: #0d1b4d;
  --text-soft: #4a5578;
  --green: #25d366;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 56px rgba(0, 8, 135, 0.1);
  --shadow-sm: 0 8px 24px rgba(0, 8, 135, 0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
a { color: inherit; text-decoration: none; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--blue-line);
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  height: 70px;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(0,8,135,0.25);
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.nav-tagline {
  display: inline-flex;
  width: fit-content;
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--yellow);
  color: #7a3d00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-pill,
.nav-menu-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.nav-pill {
  padding: 11px 20px;
  background: var(--yellow);
  color: #1a1000;
  box-shadow: 0 8px 24px rgba(246,198,87,0.28);
}
.nav-menu-btn {
  padding: 11px 18px;
  background: var(--blue);
  color: #fff;
}
.nav-pill:hover,
.nav-menu-btn:hover { transform: translateY(-1px); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  background: rgba(2,4,79,0.56);
  backdrop-filter: blur(8px);
}
.menu-overlay.open { display: block; }
.menu-panel {
  position: absolute;
  top: 24px;
  right: 24px;
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #02044f 0%, #000887 100%);
  box-shadow: 0 24px 60px rgba(0,8,135,0.32);
}
.menu-close {
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.menu-label {
  margin-top: 14px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.menu-links {
  display: grid;
  gap: 10px;
}
.menu-link {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.menu-link:hover {
  background: rgba(246,198,87,0.12);
  border-color: rgba(246,198,87,0.24);
  color: var(--yellow);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #02044f 0%, #000887 58%, #1528d1 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,198,87,0.22) 0%, transparent 70%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,107,255,0.24) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 24px 88px;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(246,198,87,0.14);
  border: 1px solid rgba(246,198,87,0.28);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-title .accent { color: var(--yellow); }
.hero-sub {
  max-width: 640px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.hero-btn-primary {
  background: linear-gradient(135deg, #f6c657, #f0a800);
  color: #1a1000;
}
.hero-btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.hero-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  color: #fff;
}
.hero-card-label {
  color: rgba(246,198,87,0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-card-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 10px;
}
.hero-card-copy {
  color: rgba(255,255,255,0.74);
  font-size: 14px;
  line-height: 1.7;
}
.hero-card-list {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}
.hero-card-list div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-head {
  margin-bottom: 30px;
}
.section-kicker {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,8,135,0.06);
  border: 1px solid rgba(0,8,135,0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--blue-dark);
}
.section-copy {
  margin-top: 14px;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.grid-3,
.grid-4,
.stats-grid,
.step-grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4,
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.stat-card,
.step-card,
.table-card {
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.card {
  padding: 26px;
}
.card h3,
.step-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.card p,
.step-card p,
.stat-card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-line);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.stat-card {
  padding: 24px;
}
.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text);
  font-weight: 800;
  margin-bottom: 8px;
}

.step-card {
  padding: 24px;
  position: relative;
}
.step-card ul {
  margin: 0;
}
.step-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #3347ff);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.table-card {
  overflow: hidden;
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
}
.table-card th,
.table-card td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--blue-line);
  text-align: left;
  font-size: 14px;
}
.table-card th {
  background: var(--blue-dark);
  color: #fff;
  font-weight: 800;
}
.table-card tr:nth-child(even) td {
  background: #fbfcff;
}

.matrix-grid,
.combo-grid {
  display: grid;
  gap: 20px;
}

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

.matrix-card,
.combo-card {
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.matrix-card {
  padding: 26px;
}

.matrix-topline,
.combo-premium {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(246,198,87,0.16);
  border: 1px solid rgba(246,198,87,0.3);
  color: #8b5a00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.matrix-card h3,
.combo-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.matrix-card p,
.combo-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

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

.combo-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.mini-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.highlight-band {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px 24px;
}
.highlight-panel {
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f6c657 0%, #f0a800 100%);
  color: #1a1000;
  box-shadow: 0 20px 44px rgba(246,198,87,0.22);
}
.highlight-panel h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 10px;
}
.highlight-panel p {
  line-height: 1.8;
  font-size: 15px;
}

.cta-strip {
  max-width: 1240px;
  margin: 0 auto 76px;
  padding: 0 24px;
}
.cta-box {
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(140deg, #02044f 0%, #000887 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 10px;
}
.cta-box p {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  line-height: 1.8;
}

.footer {
  background: #02044f;
  color: rgba(255,255,255,0.88);
  padding: 34px 24px 24px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 460px;
}
.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p {
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-links a {
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-inner,
  .grid-3,
  .grid-4,
  .stats-grid,
  .step-grid,
  .matrix-grid,
  .combo-grid,
  .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav { padding: 0 16px; }
  .hero-inner { padding: 66px 16px 72px; }
  .section { padding: 56px 16px; }
  .highlight-band,
  .cta-strip { padding-left: 16px; padding-right: 16px; }
  .menu-panel { right: 16px; top: 16px; }
  .hero-title { font-size: clamp(30px, 8vw, 42px); }
  .hero-sub,
  .section-copy { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-btn-primary,
  .hero-btn-secondary,
  .nav-pill,
  .nav-menu-btn { width: 100%; justify-content: center; }
  .nav-actions { flex-direction: column; width: 100%; max-width: 150px; }
  .cta-box { padding: 28px 22px; }
}
