:root {
  --navy-950: #07121f;
  --navy-900: #0b1b2e;
  --navy-800: #102945;
  --navy-700: #173a5e;
  --blue-500: #2f7dd3;
  --blue-400: #5aa0ed;
  --ice: #eef6ff;
  --white: #ffffff;
  --slate-700: #34465a;
  --slate-500: #66788b;
  --slate-200: #dce5ee;
  --sand: #f7f9fc;
  --success: #0d7a53;
  --shadow: 0 18px 50px rgba(7, 18, 31, .10);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy-950);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img, svg { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px 14px; z-index: 999; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,229,238,.8);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand svg { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-weight: 650; color: var(--slate-700); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 20px; text-decoration: none;
  font-weight: 750; border: 1px solid transparent; cursor: pointer;
}
.button-primary { background: var(--blue-500); color: #fff; box-shadow: 0 10px 25px rgba(47,125,211,.25); }
.button-primary:hover { background: #246db9; }
.button-secondary { border-color: var(--slate-200); background: #fff; color: var(--navy-900); }
.button-wide { width: 100%; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(90,160,237,.25), transparent 28%),
    linear-gradient(140deg, var(--navy-950) 0%, var(--navy-900) 58%, #12395d 100%);
  color: #fff;
  padding: 88px 0 76px;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); font-size: .9rem; font-weight: 750; }
h1 { margin: 22px 0 18px; font-size: clamp(2.45rem, 5vw, 4.65rem); line-height: 1.04; letter-spacing: -.055em; }
.hero p { color: rgba(255,255,255,.80); font-size: 1.15rem; max-width: 690px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero .button-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #fff; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; color: rgba(255,255,255,.74); font-size: .94rem; }
.trust-row span::before { content: "✓"; color: #7fd8b4; font-weight: 900; margin-right: 7px; }

.document-card {
  position: relative; background: #fff; color: var(--navy-950); border-radius: 26px; padding: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28); transform: rotate(1.2deg);
}
.document-card::before { content: ""; position: absolute; inset: 12px -12px -12px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; z-index: -1; }
.doc-top { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.doc-label { color: var(--blue-500); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.doc-title { margin: 10px 0 24px; font-size: 1.55rem; line-height: 1.2; }
.doc-line { height: 9px; background: #e6edf5; border-radius: 99px; margin: 11px 0; }
.doc-line.short { width: 60%; }
.doc-line.medium { width: 82%; }
.doc-stamp { margin-top: 28px; display: inline-flex; padding: 9px 13px; border-radius: 10px; background: #e9f7f1; color: var(--success); font-weight: 800; font-size: .88rem; }

.section { padding: 82px 0; }
.section-soft { background: var(--sand); }
.section-dark { background: var(--navy-950); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.kicker { color: var(--blue-500); font-weight: 850; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
h2 { margin: 8px 0 12px; font-size: clamp(2rem, 3.6vw, 3.25rem); line-height: 1.1; letter-spacing: -.04em; }
h3 { margin-top: 0; line-height: 1.25; }
.lead { font-size: 1.08rem; color: var(--slate-500); }
.section-dark .lead { color: rgba(255,255,255,.70); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 26px; box-shadow: 0 8px 25px rgba(7,18,31,.04); }
.card-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--ice); color: var(--blue-500); font-weight: 900; margin-bottom: 18px; }
.card p { color: var(--slate-500); margin-bottom: 0; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--slate-200); }
.step::before { counter-increment: step; content: "0" counter(step); display: inline-flex; color: var(--blue-500); font-weight: 900; margin-bottom: 18px; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; border-radius: 22px; padding: 28px; background: #fff; border: 1px solid var(--slate-200); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--blue-500); transform: translateY(-8px); }
.price-tag { display: inline-flex; align-self: flex-start; border-radius: 99px; padding: 5px 9px; background: var(--ice); color: var(--blue-500); font-weight: 800; font-size: .8rem; }
.price { font-size: 2.55rem; font-weight: 900; letter-spacing: -.04em; margin: 14px 0 4px; }
.price small { font-size: .9rem; color: var(--slate-500); font-weight: 600; }
.price-card ul { padding-left: 20px; color: var(--slate-700); flex: 1; }
.price-card .button { margin-top: 16px; }

.payment-box { margin-top: 26px; display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--slate-200); background: var(--sand); border-radius: 18px; padding: 20px 22px; }
.payment-box p { margin: 3px 0 0; color: var(--slate-500); }
.payment-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--ice); color: var(--blue-500); font-weight: 900; }

.notice { border-left: 4px solid var(--blue-500); background: var(--ice); padding: 18px 20px; border-radius: 0 14px 14px 0; color: var(--slate-700); }
.notice strong { color: var(--navy-950); }

.form-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.form-card { background: #fff; color: var(--navy-950); border-radius: 24px; padding: 30px; box-shadow: 0 25px 60px rgba(0,0,0,.22); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
label { font-weight: 750; font-size: .94rem; }
input, select, textarea {
  width: 100%; border: 1px solid #ccd8e5; border-radius: 12px; padding: 13px 14px;
  font: inherit; color: var(--navy-950); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(47,125,211,.18); border-color: var(--blue-500); }
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0 18px; font-size: .9rem; color: var(--slate-700); }
.checkbox input { width: auto; margin-top: 5px; }
.helper { font-size: .83rem; color: var(--slate-500); }
.hp { position: absolute; left: -10000px; }

.faq { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 16px 18px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--slate-500); }

.footer { padding: 34px 0; border-top: 1px solid var(--slate-200); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 26px; align-items: center; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: var(--slate-700); text-decoration: none; }
.footer small { color: var(--slate-500); }

.legal { padding: 64px 0 90px; }
.legal article { max-width: 820px; }
.legal h1 { color: var(--navy-950); font-size: clamp(2.2rem, 5vw, 3.7rem); }
.legal h2 { font-size: 1.5rem; margin-top: 34px; letter-spacing: -.02em; }
.legal p, .legal li { color: var(--slate-700); }
.status-box { max-width: 720px; margin: 80px auto; text-align: center; padding: 42px; background: #fff; border: 1px solid var(--slate-200); border-radius: 24px; box-shadow: var(--shadow); }

@media (max-width: 900px) {
  .hero-grid, .form-wrap { grid-template-columns: 1fr; }
  .document-card { max-width: 600px; transform: none; }
  .grid-3, .steps, .pricing { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 680px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 62px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 64px 0; }
}

.vp-logo { display: block; flex: 0 0 auto; }
.brand .vp-logo { width: 38px; height: 38px; }
.doc-top .vp-logo { width: 42px; height: 42px; }
.site-footer .vp-logo { width: 34px; height: 34px; }
