:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-dark: #0f172a;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4ee;
  --primary: #ef4444;
  --primary-dark: #dc2626;
  --accent: #f59e0b;
  --container: 1180px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; }
.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(239,68,68,.16), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}
.hero__grid,
.footer__grid,
.stats,
.grid,
.timeline {
  display: grid;
  gap: 20px;
}
.hero__grid {
  grid-template-columns: 1.4fr .9fr;
  align-items: start;
}
.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239,68,68,.10);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}
.eyebrow { margin-bottom: 12px; }
.eyebrow--dark {
  background: rgba(15,23,42,.08);
  color: #0f172a;
}
h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 22px; }
p { margin: 0 0 14px; color: var(--muted); }
.lead {
  font-size: 19px;
  max-width: 760px;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}
.hero__bullets span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 600;
}
.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.hero__note {
  margin-top: 16px;
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  transition: .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.card--dark {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.card--dark p { color: rgba(255,255,255,.8); }
.card--cta {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 18px;
  align-items: center;
}
.steps {
  margin: 0;
  padding-left: 20px;
}
.steps li { margin-bottom: 10px; color: var(--text); }
.section { padding: 72px 0; }
.section--muted { background: #eef3f8; }
.section--dark {
  background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
  color: #fff;
}
.section--accent {
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
}
.section__head {
  max-width: 780px;
  margin-bottom: 28px;
}
.section__head--light p { color: rgba(255,255,255,.78); }
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat {
  text-align: center;
  padding: 22px;
}
.stat strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service h3,
.review footer,
.timeline__item strong { color: var(--text); }
.timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.review p { font-size: 17px; }
.review footer {
  margin-top: 18px;
  font-weight: 700;
}
.faq {
  display: grid;
  gap: 14px;
}
details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
details p { margin-top: 14px; }
.footer {
  padding: 36px 0 48px;
  background: #0b1220;
  color: rgba(255,255,255,.88);
}
.footer p { color: rgba(255,255,255,.68); }
.footer__grid {
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
}

@media (max-width: 980px) {
  .hero__grid,
  .card--cta,
  .timeline,
  .grid--3,
  .grid--2,
  .stats,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 56px 0; }
  .card { padding: 20px; }
  h1 { font-size: 38px; }
}
