:root {
  --text: #0b1220;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --muted: #475569;
  --card: #ffffff;
  --alt: #f1f5f9;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
}
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; }
.logo {
  font-weight: 800;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(2,132,199,.28);
}
.logo-text {
  line-height: 1;
}
.nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: #1e293b; font-weight: 600; font-size: .95rem; }
.hero {
  background: linear-gradient(145deg, #e0f2fe 0%, #f8fafc 45%, #ffffff 100%);
  padding: 68px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.eyebrow { color: var(--primary-dark); font-weight: 700; margin: 0 0 8px; }
h1 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.sub { color: var(--muted); max-width: 62ch; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 10px; }
.btn {
  background: var(--primary);
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  display: inline-block;
}
.btn:hover { background: var(--primary-dark); }
.btn-small { padding: 10px 14px; font-size: .92rem; }
.btn-ghost { background: transparent; color: var(--primary-dark); border: 2px solid #7dd3fc; }
.trust-list {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #0f172a;
  font-weight: 600;
}
.card {
  background: var(--card);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2, 132, 199, .08);
}
.card h3 { margin-top: 0; }
.card ul { margin: 0; padding-left: 18px; }
.note { color: var(--muted); font-size: .9rem; margin-top: 10px; }
.section { padding: 64px 0; }
.section h2 { margin-top: 0; font-size: 1.8rem; }
.alt { background: var(--alt); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service, .review {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.service h3 { margin: 0 0 8px; }
.review p { margin-top: 0; }
.review cite { color: var(--muted); font-style: normal; font-weight: 600; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.steps > div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.chips span { background: #fff; border: 1px solid #cbd5e1; border-radius: 999px; padding: 8px 12px; font-weight: 600; }
.quote-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.quote-form {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}
.quote-form label { display: block; margin-bottom: 10px; font-weight: 600; }
.quote-form input, .quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
}
fieldset { border: 1px solid #e2e8f0; border-radius: 10px; margin: 8px 0 12px; padding: 10px; }
legend { font-weight: 700; padding: 0 6px; }
.check { display: flex !important; align-items: center; gap: 8px; margin: 6px 0; font-weight: 500 !important; }
.check input { width: auto; margin: 0; }
.form-note { color: var(--muted); font-size: .88rem; margin-top: 10px; }
details {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
summary { cursor: pointer; font-weight: 700; }
.site-footer { background: #0b1220; color: #cbd5e1; padding: 24px 0 80px; }
.footer-row { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
@media (max-width: 980px) {
  .hero-grid, .grid-3, .steps, .quote-wrap { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; }
}
