* { 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: #0f172a;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 16px;
  background: #0f172a; color: white; display: grid; place-items: center; font-weight: 700;
}
.brand-name { font-size: 20px; font-weight: 700; }
.brand-sub { font-size: 13px; color: #64748b; }
.nav { display: flex; gap: 18px; font-size: 14px; color: #334155; flex-wrap: wrap; }

.hero { padding: 64px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
.badge {
  display: inline-block; margin-bottom: 16px; padding: 8px 12px;
  border-radius: 999px; background: #eef2ff; color: #3730a3; font-size: 13px; font-weight: 600;
}
h1 { font-size: 52px; line-height: 1.08; margin: 0 0 18px; letter-spacing: -0.02em; }
h2 { font-size: 36px; margin: 0 0 10px; letter-spacing: -0.02em; }
h3 { margin: 0 0 10px; font-size: 22px; }
.hero-copy, .section-copy { color: #475569; max-width: 760px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 16px; font-weight: 600; cursor: pointer;
  border: 1px solid #0f172a; transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #0f172a; color: white; }
.btn-secondary { background: white; color: #0f172a; }
.full-width { width: 100%; }

.pill-row { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.pill, .card {
  background: white; border: 1px solid #e2e8f0; border-radius: 24px; box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.pill { padding: 14px 16px; }
.pill strong { display: block; font-size: 14px; margin-bottom: 4px; }
.pill span { color: #64748b; font-size: 13px; }

.card { padding: 24px; }
.step { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid #eef2f7; }
.step:first-of-type { border-top: 0; padding-top: 6px; }
.step-num {
  width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center; background: #0f172a; color: white; font-weight: 700; font-size: 14px;
}
.step span, .muted { color: #64748b; font-size: 14px; }

.section { padding: 72px 0; }
.section-alt { background: white; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.cards-3, .faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 24px; }

.form-grid, .team-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
.form-card { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 600; font-size: 14px; }
input, textarea, select {
  width: 100%; padding: 12px 14px; border-radius: 16px; border: 1px solid #cbd5e1;
  font: inherit; color: inherit; background: white;
}
textarea { resize: vertical; }
.form-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.note {
  margin-top: 8px; padding: 12px 14px; border-radius: 16px;
  border: 1px solid #bbf7d0; background: #f0fdf4; color: #166534; font-size: 14px;
}
.hidden { display: none; }

.side-cards { display: grid; gap: 16px; align-self: start; }

.site-footer {
  background: #020617; color: #e2e8f0; border-top: 1px solid #0f172a;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 36px 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: #94a3b8; }

ul { padding-left: 20px; margin: 10px 0 0; }
li { margin: 6px 0; }

@media (max-width: 900px) {
  .hero-grid, .form-grid, .team-grid, .cards-3, .faq-grid, .pill-row {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
