* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: #f8fafc;
  line-height: 1.5;
}
a { color: inherit; }
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  padding: 22px 0 56px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.call-btn, .btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}
.call-btn {
  padding: 12px 18px;
  background: white;
  color: #0f172a;
}
.hero-content {
  max-width: 760px;
  padding-top: 56px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  opacity: .9;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 12px 0 16px;
}
.subhead {
  font-size: 1.1rem;
  max-width: 760px;
  color: #dbeafe;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.btn {
  padding: 14px 20px;
}
.btn.primary {
  background: #f59e0b;
  color: #111827;
}
.btn.secondary {
  border: 1px solid rgba(255,255,255,.35);
  color: white;
}
.small-note {
  margin-top: 14px;
  color: #dbeafe;
}
.section {
  padding: 56px 0;
}
.trust {
  margin-top: -24px;
}
.trust-grid, .grid, .two-col, .footer-row {
  display: grid;
  gap: 18px;
}
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}
.trust-card, .card, .contact-box, .plan-box {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
.card h3, .trust-card h3, .contact-box h3 {
  margin-top: 0;
}
.accent {
  background: #e0f2fe;
}
.two-col {
  grid-template-columns: 2fr 1fr;
  align-items: start;
}
.lead {
  font-size: 1.1rem;
}
.checklist {
  padding-left: 20px;
}
.plan-box {
  text-align: center;
}
.plan-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  color: #475569;
}
.price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 8px 0 20px;
}
.price span {
  font-size: 1rem;
  font-weight: 600;
}
.full {
  width: 100%;
}
.footer {
  background: #0f172a;
  color: white;
  padding: 24px 0;
}
.footer-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 860px) {
  .trust-grid, .grid, .two-col, .footer-row {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-top: 34px;
  }
}
