:root {
  --bg: #0b1020;
  --bg-soft: #f4f7fb;
  --card: #ffffff;
  --text: #1a2340;
  --muted: #66718f;
  --line: #dce4f3;
  --primary: #5b7cff;
  --primary-dark: #3f5be0;
  --accent: #16c8a8;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(25, 40, 84, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(91,124,255,0.48);
  outline-offset: 4px;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 32, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; letter-spacing: 0.02em; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 14px;
  display: inline-grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; box-shadow: var(--shadow);
}
.menu { display: flex; gap: 24px; color: rgba(255,255,255,0.82); }
.menu a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 16px; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), #7890ff);
  color: white; box-shadow: var(--shadow); border: 0;
}
.btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-ghost {
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.18); box-shadow: none;
}
.btn-sm { min-height: 46px; padding: 0 18px; }
.btn-full { width: 100%; cursor: pointer; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: radial-gradient(circle at top left, #1a2450, #0b1020 62%); color: white; }
.hero { padding: 84px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 42px; align-items: center; }
.eyebrow {
  display: inline-flex; padding: 10px 14px; border-radius: 999px;
  background: rgba(91,124,255,0.12); color: var(--primary); font-size: 14px; font-weight: 700;
  margin-bottom: 18px;
}
.section-dark .eyebrow { background: rgba(255,255,255,0.09); color: #c9d6ff; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 68px); line-height: 1.02; margin-bottom: 22px; max-width: 10ch; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 14px; }
p { color: var(--muted); line-height: 1.72; font-size: 17px; }
.section-dark p { color: rgba(255,255,255,0.78); }
.hero-text { max-width: 640px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 34px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric {
  padding: 18px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
}
.metric strong { display: block; font-size: 18px; margin-bottom: 8px; }
.metric span { color: rgba(255,255,255,0.74); font-size: 14px; }
.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(11,16,32,0.04);
}
.glass { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.hero-visual { padding: 26px; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.trust-grid, .services-grid, .benefits-grid, .steps { display: grid; gap: 22px; }
.trust-grid { grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 28px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service { padding: 28px; }
.service img { width: 84px; height: 84px; margin-bottom: 18px; }
.service ul { padding-left: 18px; margin: 16px 0 0; color: var(--muted); line-height: 1.7; }
.service-link { display: block; transition: transform 180ms ease, box-shadow 180ms ease; }
.service-link:hover { transform: translateY(-4px); box-shadow: 0 24px 68px rgba(25, 40, 84, 0.18); }
.text-link, .inline-link { color: var(--primary-dark); font-weight: 700; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 20px; }
.inline-link:hover, .footer-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
.benefit { padding: 30px; }
.wide { grid-column: span 2; }
.with-image { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center; }
.with-image img { max-height: 250px; justify-self: end; }
.steps { grid-template-columns: repeat(4, 1fr); }
.step { padding: 28px; }
.step span {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-weight: 800; margin-bottom: 18px;
}
.cta-band { padding: 44px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.lead-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: start; }
.lead-copy { padding-top: 14px; }
.contact-mini { display: grid; gap: 14px; margin-top: 22px; }
.lead-form { padding: 28px; display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 10px; font-weight: 600; }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
  font: inherit; color: var(--text); background: #fbfcff;
}
input:focus, textarea:focus { outline: 2px solid rgba(91,124,255,0.24); border-color: var(--primary); }
.form-note {
  display: none; margin: 0; font-size: 14px; color: #0a8c74; background: rgba(22,200,168,0.12);
  padding: 14px; border-radius: 14px;
}
.footer { background: #08101f; color: white; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 28px; }
.footer p { color: rgba(255,255,255,0.72); margin-bottom: 8px; }
.footer-logo { margin-bottom: 18px; }

@media (max-width: 1024px) {
  .hero-grid, .lead-grid, .with-image { grid-template-columns: 1fr; }
  .services-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .benefits-grid, .footer-grid, .hero-metrics { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .cta-band-inner, .nav { flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .section { padding: 74px 0; }
  .menu { display: none; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 54px; }
}
