:root {
  --bg: #0b1020;
  --bg-soft: #111833;
  --card: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #e7eaf0;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --accent: #22c55e;
  --cream: #f7f9fc;
  --shadow: 0 24px 70px rgba(15, 23, 42, .14);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.alt { background: var(--cream); }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 234, 240, .8);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; gap: 12px; align-items: center; font-weight: 800; letter-spacing: -.02em; font-size: 1.05rem; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: #fff; border-radius: 14px; background: linear-gradient(135deg, var(--primary), #0f172a);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .25);
}
.nav-menu { display: flex; align-items: center; gap: 26px; color: #344054; font-weight: 600; }
.nav-menu a:hover { color: var(--primary); }
.nav-cta { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.nav-toggle { display: none; border: 0; background: var(--text); color: white; padding: 10px 14px; border-radius: 12px; font-weight: 700; }
.hero {
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, .45), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, .22), transparent 24%),
    linear-gradient(135deg, #0b1020 0%, #111833 52%, #172554 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.hero .eyebrow { color: #93c5fd; }
h1 { margin: 0; font-size: clamp(2.6rem, 6vw, 5rem); line-height: .98; letter-spacing: -.06em; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.06; letter-spacing: -.045em; }
h3 { margin: 0 0 10px; font-size: 1.18rem; letter-spacing: -.02em; }
.hero-text { font-size: 1.16rem; color: #dbeafe; max-width: 660px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 18px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  min-height: 48px; padding: 13px 20px; border-radius: 999px;
  font-weight: 800; border: 1px solid var(--line); background: #fff; color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15, 23, 42, .14); }
.btn.primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn.primary:hover { background: var(--primary-dark); }
.btn.secondary { background: rgba(255,255,255,.1); color: white; border-color: rgba(255,255,255,.25); }
.btn.full { width: 100%; }
.btn.large { min-height: 56px; padding-inline: 26px; }
.notice { color: #bfdbfe; font-size: .95rem; }
.hero-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); backdrop-filter: blur(14px);
}
.hero-card h2 { font-size: 1.8rem; margin: 18px 0; }
.status-pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(34,197,94,.16); color: #bbf7d0; font-weight: 800; font-size: .85rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 10px; color: #eff6ff; }
.check-list li::before { content: "✓"; color: #86efac; font-weight: 900; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .price-card, .step, .contact-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}
.feature-card { padding: 26px; }
.icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: #eff6ff; color: var(--primary); font-size: 1.35rem; font-weight: 900; margin-bottom: 18px; }
.feature-card p, .step p, .price-desc { color: var(--muted); margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; padding: 26px; display: flex; flex-direction: column; min-height: 430px; }
.price-card.featured { border: 2px solid var(--primary); transform: translateY(-10px); box-shadow: 0 28px 60px rgba(37, 99, 235, .16); }
.tag { position: absolute; top: 16px; right: 16px; background: #dbeafe; color: var(--primary-dark); border-radius: 999px; padding: 6px 10px; font-weight: 900; font-size: .75rem; }
.price { margin: 14px 0 6px; font-size: 2.65rem; font-weight: 900; letter-spacing: -.06em; }
.price span { color: var(--muted); font-size: .95rem; letter-spacing: 0; font-weight: 700; }
.price-card ul { padding-left: 18px; color: #344054; margin: 24px 0; flex: 1; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 28px; }
.step span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: white; font-weight: 900; margin-bottom: 18px; }
.contact-section { background: linear-gradient(135deg, #f8fafc, #eff6ff); }
.contact-card { padding: 38px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.contact-card p { color: var(--muted); margin-bottom: 0; }
.contact-actions { text-align: right; }
.contact-actions p { margin-top: 14px; }
.footer { background: #080d1c; color: #cbd5e1; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 30px; align-items: start; }
.footer-brand { color: white; }
.footer p { margin: 10px 0 0; font-size: .94rem; }
@media (max-width: 1050px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu { display: none; position: absolute; left: 20px; right: 20px; top: 76px; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .hero-grid, .contact-card, .footer-grid { grid-template-columns: 1fr; }
  .contact-actions { text-align: left; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1140px); }
  .section { padding: 68px 0; }
  .pricing-grid, .feature-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero-actions .btn { width: 100%; }
}
