:root {
  --bg: #081222;
  --bg-soft: #0e1d36;
  --card: #ffffff;
  --text: #132238;
  --muted: #5c6b80;
  --line: #dfe7f1;
  --primary: #082f8a;
  --accent: #17b8df;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 28, 61, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #f5f9fd;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 44, 95, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.brand-logo {
  height: 58px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  color: #163252;
}
.nav a:hover { color: var(--primary); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 10px 16px; }
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid rgba(8, 47, 138, 0.18);
  box-shadow: none;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(23,184,223,0.24), transparent 28%),
    linear-gradient(135deg, #081222 0%, #0c2042 50%, #0a3270 100%);
  color: white;
  padding: 78px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}
.eyebrow.light { color: #7adcf3; }
.hero h1,
.section-heading h2,
.split-grid h2,
.cta-box h2 {
  margin: 0 0 16px;
  line-height: 1.1;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); max-width: 12ch; }
.hero-text { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 56ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 32px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.stat-card {
  background: rgba(255,255,255,0.92);
  color: var(--text);
  border-radius: 24px;
  padding: 24px;
}
.stat-card .stat-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(23,184,223,0.1);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.stat-card strong { font-size: 1.35rem; display: block; margin-bottom: 10px; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.mini-grid div {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}
.mini-grid strong { display: block; font-size: 1.3rem; margin-bottom: 4px; }

.section { padding: 80px 0; }
.intro-bar {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px 28px;
  margin-top: -36px;
  position: relative;
}
.section-heading { margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); }
.section-heading p { color: var(--muted); margin: 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); }

.accent-section {
  background: linear-gradient(135deg, #0a2a60 0%, #0e4f94 100%);
  color: white;
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.split-grid p { color: rgba(255,255,255,0.84); }
.check-list {
  display: grid;
  gap: 14px;
}
.check-list div {
  padding: 18px 20px;
  background: rgba(255,255,255,0.09);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23,184,223,0.12);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 10px; }
.step p { margin: 0; color: var(--muted); }

.pricing-section { background: #edf5fb; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.price-card.featured {
  border: 2px solid rgba(23,184,223,0.45);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(23,184,223,0.12);
  padding: 7px 10px;
  border-radius: 999px;
}
.price-card h3 { margin-top: 0; }
.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 18px;
  color: var(--primary);
}
.price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}
.price-card li + li { margin-top: 10px; }

.faq-list {
  display: grid;
  gap: 16px;
}
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-list p { margin: 12px 0 0; color: var(--muted); }

.cta-section { padding-top: 20px; }
.cta-box {
  background: linear-gradient(135deg, #061124 0%, #0b2a59 55%, #0d6e9f 100%);
  color: white;
  border-radius: 30px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  box-shadow: 0 30px 70px rgba(8, 18, 34, 0.22);
}
.cta-box p { color: rgba(255,255,255,0.8); }
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 24px;
}
.contact-card a {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-card .btn {
  display: inline-flex;
  margin-top: 10px;
}

.site-footer {
  padding: 28px 0 50px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-wrap p { color: var(--muted); margin: 6px 0 0; }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .cta-box,
  .card-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
}

@media (max-width: 760px) {
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .brand-logo { height: 52px; }
  .section { padding: 64px 0; }
  .cta-box, .hero-card, .card, .step, .price-card { padding: 22px; }
}
