* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #1f2937;
  background: #f8fafc;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.site-header, .site-footer { background: #0f172a; color: #fff; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.nav nav { display: flex; gap: 20px; }
.brand { font-weight: 700; letter-spacing: 0.02em; }
.hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #e2e8f0 0%, #f8fafc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: 48px; margin-bottom: 16px; }
h2 { font-size: 32px; margin-bottom: 16px; }
.lead { font-size: 18px; max-width: 680px; }
.note { margin-top: 14px; font-size: 14px; color: #475569; }
.section { padding: 56px 0; }
.section.alt { background: #eef2ff; }
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.hero-card { align-self: start; }
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}
.btn-primary {
  background: #0f172a;
  color: #fff;
}
.btn-secondary {
  background: #e2e8f0;
  color: #0f172a;
}
.steps { padding-left: 18px; }
.form-wrap {
  max-width: 760px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
label { display: block; margin-bottom: 6px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #fff;
}
@media (max-width: 860px) {
  .hero-grid, .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  .nav { flex-direction: column; gap: 12px; }
}
