:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f1f5ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe3f0;
  --brand: #1f4ed8;
  --brand-2: #0ea5e9;
  --success: #14532d;
  --danger: #b91c1c;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-tight { padding: 3.6rem 0; }
.surface { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.surface-alt { background: linear-gradient(180deg, #f4f8ff 0%, #eef5ff 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 700;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: .72rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  height: 44px;
  padding: 0 1rem;
  font-weight: 600;
  transition: .2s ease;
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #bfdbfe;
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1d40b0);
  box-shadow: 0 8px 20px rgba(31, 78, 216, .25);
}

.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}

.hero { padding: 5.2rem 0 4.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: start;
}

.kicker {
  margin: 0 0 .7rem;
  font-size: .78rem;
  letter-spacing: .11em;
  color: var(--brand);
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.subhead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.trust-points {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  color: var(--muted);
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.value-card .label { margin: 0; color: var(--muted); font-weight: 600; }
.value-card .value { margin: .4rem 0; font-size: 2.2rem; font-weight: 800; color: var(--brand); }
.value-card .value-text { margin: 0; color: var(--text); }
.value-card hr { border: 0; border-top: 1px solid var(--line); margin: .9rem 0; }
.value-card .micro { margin: 0; color: var(--muted); font-size: .92rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stats article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.stats h3 { font-size: 1.35rem; }
.stats p { margin: .35rem 0 0; color: var(--muted); }

.section-head { margin-bottom: 1.4rem; }
.section-head .muted { margin-top: .5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 26px;
  padding: 0 .6rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e40af;
  font-weight: 700;
  font-size: .82rem;
}

.step h3 { margin-top: .85rem; font-size: 1.1rem; }
.step p { margin: .55rem 0 0; color: var(--muted); line-height: 1.6; }

.compare-table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
}

.compare-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: .95rem;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 600;
  background: #f8fbff;
}

.highlight-row td {
  background: #eff6ff;
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.quote-card p { margin: 0; line-height: 1.65; }
.quote-card span { display: block; margin-top: .7rem; color: var(--muted); font-size: .93rem; }

.pricing { text-align: center; }
.pricing p { margin: .55rem 0 0; }

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  display: grid;
  gap: .35rem;
}

input,
select,
textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: .74rem .78rem;
  font: inherit;
}

textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.muted { color: var(--muted); }

.errors {
  color: var(--danger);
  font-size: .9rem;
  min-height: 1rem;
}

.success {
  color: var(--success);
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: .7rem .75rem;
  margin: 0;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem .95rem;
  margin-bottom: .65rem;
}

.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin: .6rem 0 0; color: var(--muted); line-height: 1.6; }

.final-cta { text-align: center; }
.final-cta p { color: var(--muted); margin: .7rem 0 1rem; }

.sticky-mobile {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 35;
  background: linear-gradient(135deg, var(--brand), #1d40b0);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: .8rem 1.1rem;
  box-shadow: 0 14px 30px rgba(31, 78, 216, .32);
}

@media (max-width: 960px) {
  .hero-grid,
  .steps,
  .stats,
  .two-col,
  .lead-form { grid-template-columns: 1fr; }

  .nav-links { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 3.6rem 0; }
  .site-header .btn { display: none; }
  .sticky-mobile { display: inline-flex; }
}
