:root {
  --bg: #07162c;
  --bg-2: #0b1f3b;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --text: #10233f;
  --muted: #617086;
  --line: #d9e1ea;
  --accent: #2f6bff;
  --accent-2: #0f3f8a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(8, 24, 48, 0.12);
  --radius: 22px;
  --max: 1180px;
}
* { 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: var(--surface-2);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(16,35,63,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 24px;
}
.brand img { height: 46px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-weight: 600; color: var(--muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  transition: .2s ease; border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #4d82ff);
  color: var(--white); box-shadow: 0 12px 30px rgba(47,107,255,.28);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: var(--white); border-color: rgba(16,35,63,.1); color: var(--text);
}
.btn-secondary:hover { background: #f8fbff; }
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47,107,255,.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(47,107,255,.12), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--white);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(125deg, transparent 60%, rgba(255,255,255,.05) 60%, transparent 74%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 38px;
  padding: 84px 0 72px;
}
.eyebrow {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--accent); display: inline-block; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.04; margin: 0 0 18px; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 720px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-row {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px; margin-top: 20px;
}
.trust-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 18px;
}
.trust-card strong { display: block; font-size: 1.2rem; margin-bottom: 6px; }
.hero-panel {
  align-self: stretch; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px; padding: 28px; box-shadow: var(--shadow);
}
.hero-panel h3 { margin: 0 0 10px; font-size: 1.35rem; }
.hero-panel ul { list-style: none; padding: 0; margin: 18px 0 0; }
.hero-panel li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.82); }
.hero-panel li:last-child { border-bottom: 0; }
.section { padding: 72px 0; }
.section-white { background: var(--surface); }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 12px; }
.section-intro { max-width: 780px; color: var(--muted); margin-bottom: 36px; }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: var(--surface); border: 1px solid rgba(16,35,63,.08); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }
.icon-badge {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(47,107,255,.18), rgba(47,107,255,.06));
  color: var(--accent); font-size: 1.2rem; font-weight: 800; margin-bottom: 18px;
}
.band {
  background: linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--white); border-radius: 32px; padding: 36px; box-shadow: var(--shadow);
}
.band p { color: rgba(255,255,255,.82); }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 10px 0; border-bottom: 1px solid rgba(16,35,63,.08); }
.list-clean li:last-child { border-bottom: none; }
.process-steps {
  counter-reset: step; display: grid; gap: 18px;
}
.process-step {
  display: grid; grid-template-columns: 66px 1fr; gap: 18px; align-items: start;
  background: var(--surface); padding: 22px; border-radius: 20px; border: 1px solid rgba(16,35,63,.08);
}
.process-step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 18px; background: linear-gradient(135deg, var(--accent), #4d82ff);
  color: var(--white); font-weight: 800; font-size: 1.1rem;
}
.metric-row {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px;
}
.metric {
  background: var(--surface); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); border: 1px solid rgba(16,35,63,.08);
}
.metric strong { display: block; font-size: 2rem; margin-bottom: 6px; }
.cta {
  background: linear-gradient(135deg, var(--bg), var(--bg-2)); color: var(--white);
  border-radius: 32px; padding: 44px; box-shadow: var(--shadow);
}
.cta p { color: rgba(255,255,255,.82); }
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.contact-card { background: var(--surface); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); border: 1px solid rgba(16,35,63,.08); }
.contact-label { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.form {
  background: var(--surface); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(16,35,63,.08);
}
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label { font-weight: 600; }
.field input, .field textarea {
  width: 100%; border: 1px solid rgba(16,35,63,.16); border-radius: 16px; padding: 14px 16px;
  font: inherit; color: var(--text); background: #fff;
}
.field textarea { min-height: 150px; resize: vertical; }
.footer {
  background: #061221; color: rgba(255,255,255,.7); padding: 24px 0 34px; margin-top: 56px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer img { height: 38px; }
.small { font-size: .94rem; }
.kicker { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .84rem; }
@media (max-width: 980px) {
  .hero-inner, .grid-3, .grid-2, .metric-row, .contact-cards { grid-template-columns: 1fr; }
  .nav { min-height: 70px; }
  .nav-links { display: none; }
  .hero-inner { padding: 62px 0 56px; }
  .section { padding: 56px 0; }
}
