:root {
  --bg: #08111f;
  --bg-soft: #0d1728;
  --panel: rgba(255,255,255,0.06);
  --panel-border: rgba(255,255,255,0.1);
  --text: #eaf2ff;
  --muted: #9cb0cc;
  --accent: #56a3ff;
  --accent-2: #79f0d3;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #13233e 0%, var(--bg) 48%, #060b14 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.muted-bg { background: rgba(255,255,255,0.02); }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(5, 10, 20, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 50px; height: 50px; }
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: 0.82rem; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--muted); font-weight: 600; }
.main-nav a.active, .main-nav a:hover { color: var(--white); }
.menu-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.16);
  color: var(--white); border-radius: 12px; width: 46px; height: 46px; font-size: 1.2rem;
}
.hero-grid, .split-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.hero h1, .page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1.05; margin: 10px 0 18px; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px; background: rgba(121, 240, 211, 0.12);
  border: 1px solid rgba(121, 240, 211, 0.22); color: #bff9eb; font-size: 0.86rem; font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 0 22px; border-radius: 14px; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), #216dff); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary, .btn-light { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.btn-light { color: var(--bg); background: var(--white); }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-item, .stat, .card {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.trust-item { padding: 18px; }
.trust-item strong, .stat strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.trust-item span, .stat span, .card p, .legal-page p { color: var(--muted); }
.card { padding: 28px; }
.premium-glow { position: relative; overflow: hidden; }
.premium-glow::before {
  content: ""; position: absolute; inset: auto -80px -80px auto; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(86,163,255,0.35), transparent 65%);
}
.stat-grid { display: grid; gap: 14px; }
.stat { padding: 20px; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head h2, .card h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 10px 0 10px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.service-card h3, .step-card h3, .card h3 { margin-top: 0; font-size: 1.2rem; }
.check-list { margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li { margin: 0 0 12px; padding-left: 28px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 800; }
.dark-card { background: linear-gradient(180deg, rgba(86,163,255,0.12), rgba(8,17,31,0.9)); }
.info-pairs { display: grid; gap: 14px; }
.info-pairs div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.info-pairs span { color: var(--muted); text-align: right; }
.steps .step-card span {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 50%; background: rgba(121,240,211,0.14); color: #bff9eb; margin-bottom: 14px; font-weight: 800;
}
.cta-band { background: linear-gradient(135deg, #0f2647, #122a58 55%, #0b1830); }
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); background: rgba(2,6,13,0.8); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr; gap: 24px; padding: 40px 0 24px; }
.footer-grid h4 { margin: 0 0 12px; }
.footer-grid a { display: block; color: var(--muted); margin: 0 0 8px; }
.footer-copy { color: var(--muted); max-width: 440px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0 28px; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.08); }
.page-hero { padding-bottom: 28px; }
.large { min-height: 220px; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: var(--white); padding: 14px 16px; outline: none;
}
.form-note { margin-top: 12px; font-size: 0.95rem; color: var(--muted); }
.legal-page h2 { margin-top: 26px; }
@media (max-width: 920px) {
  .hero-grid, .split-grid, .card-grid.three, .card-grid.two, .footer-grid, .trust-row, .cta-wrap { grid-template-columns: 1fr; }
  .cta-wrap { display: grid; }
  .main-nav {
    position: absolute; top: 78px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: flex-start;
    padding: 18px; background: rgba(6,12,23,0.96); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
