:root {
  --bg: #f6f8ff;
  --bg-soft: #eef3ff;
  --bg-soft-2: #f3f0ff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --line: #d7def0;
  --line-strong: #c4d0ea;
  --text: #12233f;
  --muted: #5e6f8a;
  --blue: #2f56b7;
  --blue-strong: #24479b;
  --blue-soft: #e8efff;
  --indigo-soft: #eef0ff;
  --violet-soft: #f4efff;
  --mint-soft: #ecfbf4;
  --warning-soft: #fff7ec;
  --success: #17b26a;
  --shadow: 0 20px 54px rgba(34, 51, 84, 0.08);
  --shadow-lg: 0 28px 68px rgba(34, 51, 84, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: min(1280px, calc(100% - 40px));
}
* { 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(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(199, 210, 255, 0.75), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(233, 223, 255, 0.7), transparent 22%),
    radial-gradient(circle at 70% 40%, rgba(223, 237, 255, 0.65), transparent 18%),
    linear-gradient(180deg, #fbfcff 0%, #f5f8ff 46%, #f8fbff 100%);
}
a { color: inherit; text-decoration: none; }
p, li, span, small, label { color: var(--muted); line-height: 1.72; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4, strong { color: var(--text); }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 208, 234, 0.55);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #f7f9ff 0%, #e7efff 100%);
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(47, 86, 183, 0.08);
}
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: .82rem; letter-spacing: .16em; color: #607089; }
.brand-copy small { font-size: 1rem; color: var(--text); font-weight: 700; }
.nav-links, .nav-actions, .hero-tags, .cta-row, .stats-row, .quick-tags, .footer-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.nav-links a {
  font-size: .92rem;
  color: #62728c;
  padding: 10px 14px;
  border-radius: 12px;
}
.nav-links a.active,
.nav-links a:hover {
  background: rgba(47, 86, 183, 0.07);
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .18s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 24px rgba(47, 86, 183, 0.18); }
.btn-primary:hover { background: var(--blue-strong); }
.btn-secondary { background: #fff; border-color: var(--line-strong); color: var(--text); }
.btn-secondary:hover { border-color: #aebce0; }
.btn-disabled {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; border-radius: 16px; background: #96a5d6; color: #fff; font-weight: 700;
}
.btn-outline {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; border-radius: 16px; border: 1px solid var(--line-strong); background: #fff; color: var(--text); font-weight: 700;
}

.page { padding: 44px 0 70px; }
.page-section { padding: 24px 0; }
.hero-strip { padding: 6px 0 24px; }
.hero-stage,
.panel,
.card,
.price-card,
.sidebar,
.wizard-panel,
.check-card,
.contact-card,
.custom-band,
.brochure-band,
.summary-card,
.metric-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-stage,
.panel,
.sidebar,
.wizard-panel,
.custom-band,
.brochure-band,
.summary-card { padding: 28px; }
.card,
.price-card,
.check-card,
.contact-card,
.metric-card { padding: 22px; }
.hero-stage {
  background:
    radial-gradient(circle at top left, rgba(211, 221, 255, 0.65), transparent 26%),
    radial-gradient(circle at top right, rgba(236, 230, 255, 0.8), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(250,252,255,0.96) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.pricing-grid,
.footer-shell,
.wizard-grid,
.contact-grid,
.form-grid,
.split-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}
.hero-grid,
.split-grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4, .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(5, minmax(260px, 1fr)); }
.wizard-grid { grid-template-columns: 320px minmax(0, 1fr); align-items: start; }
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section-head { display: grid; gap: 12px; margin-bottom: 22px; }
.section-head p { max-width: 70ch; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #61749a;
}
.kicker::before { content: ''; width: 24px; height: 1px; background: #9aaad0; }
h1 {
  font-size: clamp(2.45rem, 4.8vw, 4.35rem);
  line-height: .96;
  letter-spacing: -.05em;
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
h3 { font-size: 1.22rem; margin-bottom: 10px; }
.lead { max-width: 72ch; font-size: 1.02rem; }
.hero-tags span,
.quick-tags span,
.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: #58709a;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.quick-tags span:nth-child(1) { background: var(--blue-soft); }
.quick-tags span:nth-child(2) { background: var(--violet-soft); }
.quick-tags span:nth-child(3) { background: var(--mint-soft); }
.quick-tags span:nth-child(4) { background: var(--warning-soft); }
.hero-side {
  display: grid;
  gap: 16px;
}
.metric-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,249,255,0.96) 100%);
}
.metric-card:nth-child(1) { background: linear-gradient(180deg, #eef3ff 0%, #ffffff 100%); }
.metric-card:nth-child(2) { background: linear-gradient(180deg, #f4efff 0%, #ffffff 100%); }
.metric-card:nth-child(3) { background: linear-gradient(180deg, #effaf5 0%, #ffffff 100%); }
.metric-card:nth-child(4) { background: linear-gradient(180deg, #fff8ee 0%, #ffffff 100%); }
.metric-number { font-size: 1.5rem; font-weight: 800; color: #0f2345; margin-bottom: 6px; }
.note-box {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
}
.note-box.soft-blue { background: var(--blue-soft); }
.note-box.soft-violet { background: var(--violet-soft); }
.note-box.soft-mint { background: var(--mint-soft); }
.note-box.soft-warning { background: var(--warning-soft); }
.price-card { position: relative; }
.price-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 5px;
  border-radius: 28px 28px 0 0;
  background: transparent;
}
.price-card.plan-personal::before { background: linear-gradient(90deg, #8fb0ff, #b6c8ff); }
.price-card.plan-plus::before { background: linear-gradient(90deg, #a89cf2, #d2c8ff); }
.price-card.plan-basic::before { background: linear-gradient(90deg, #72b6e8, #b8ddff); }
.price-card.plan-pro::before { background: linear-gradient(90deg, #2f56b7, #7295ea); }
.price-card.plan-elite::before { background: linear-gradient(90deg, #7b84a6, #c5cbe2); }
.price-card.recommended {
  border-color: #9eb5ef;
  box-shadow: 0 22px 58px rgba(47, 86, 183, 0.14);
  transform: translateY(-4px);
}
.recommended-badge {
  display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 0 10px; border-radius: 999px;
  border: 1px solid #b3c4f3; background: #edf2ff; color: var(--blue); font-size: .72rem; font-weight: 700; text-transform: uppercase;
}
.price { font-size: 2.1rem; font-weight: 800; color: #0f2345; margin: 18px 0 4px; }
.meta { margin-bottom: 18px; }
.box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fbfcff;
  border: 1px solid var(--line);
}
.box.soft-blue { background: var(--blue-soft); }
.box.soft-violet { background: var(--violet-soft); }
.box.soft-mint { background: var(--mint-soft); }
.box.soft-warning { background: var(--warning-soft); }
.box h4 { margin-bottom: 10px; }
.box ul, .card-list { margin: 0; padding-left: 18px; }
.card-list li { margin-bottom: 10px; }
.action-stack { display: grid; gap: 12px; margin-top: 18px; }
.hero-strip .hero-head { margin-bottom: 26px; }
.sidebar {
  position: sticky; top: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(243,247,255,0.95) 100%);
}
.side-title { font-size: 1.5rem; margin-bottom: 16px; }
.side-section { margin: 18px 0 10px; color: #6f7f96; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.side-link {
  display: flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 14px; border-radius: 16px; color: #5d6f89;
}
.side-link.active { background: var(--blue); color: #fff; }
.wizard-panel {
  background:
    radial-gradient(circle at top right, rgba(223, 231, 255, 0.78), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,251,255,0.96) 100%);
}
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; margin-bottom: 16px; }
.input, .select {
  width: 100%; min-height: 56px; border-radius: 16px; border: 1px solid var(--line-strong); background: #f8fbff; padding: 0 18px; font: inherit; color: var(--text);
}
.checkbox-row { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
.step {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); background: #fbfcff; margin-bottom: 14px;
}
.step.active { background: var(--mint-soft); border-color: #9ce2bd; }
.step .num {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line-strong); font-weight: 700;
}
.step.active .num { background: var(--success); color: #fff; border-color: var(--success); }
.brochure-band {
  background:
    radial-gradient(circle at top left, rgba(217, 229, 255, 0.82), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,250,255,0.96) 100%);
}
.footer { padding: 22px 0 44px; }
.footer-shell {
  grid-template-columns: minmax(0, 1fr) auto; align-items: center; padding-top: 18px; border-top: 1px solid rgba(197,208,234,.75);
}
@media (max-width: 1180px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wizard-grid, .contact-grid, .form-row, .form-grid, .grid-2, .grid-3, .grid-4, .footer-shell, .hero-grid, .split-grid, .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-shell, .nav-links, .nav-actions, .hero-tags, .cta-row, .footer-shell, .stats-row, .quick-tags { flex-direction: column; align-items: flex-start; }
  .hero-stage, .panel, .wizard-panel, .sidebar, .custom-band, .card, .price-card, .check-card, .contact-card, .brochure-band, .summary-card, .metric-card { padding: 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
