/* ---------- Hero ---------- */
.hero{
  padding: clamp(56px, 8vw, 10px) 0;
}
.hero-grid{
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.1fr .9fr;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.kicker{ margin-bottom: 12px; }
.pill{
  display:inline-flex;
  padding:.4rem .75rem;
  border-radius:999px;
  background: rgba(10,92,255,.12);
  font-weight:700;
  border:1px solid rgba(90,169,255,.3);
}
h1{
  margin:.25rem 0 .65rem;
  font-size: clamp(30px, 5vw, 52px);
  line-height:1.1;
}
.lead{
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 60ch;
}
.cta-row{ display:flex; gap:.85rem; flex-wrap:wrap; margin-top:18px; }
.note{ color:var(--muted); font-size:.96rem; }

/* Hero card */
.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14,19,32,.72), rgba(14,19,32,.36));
  border:1px solid rgba(148,163,184,.18);
  padding:20px;
  display:grid;
  gap:12px;
  box-shadow: var(--shadow);
}
.chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:8px; }
.chip{
  padding:.42rem .72rem;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  background: color-mix(in oklab, var(--brand) 22%, transparent);
  border:1px solid rgba(148,163,184,.28);
}
.check{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
  font-size:.92rem;
}
.check svg{
  width:20px; height:20px; flex-shrink:0;
}

/* ---------- Trust Section ---------- */
.trust{
  padding: 40px 0;
  background: var(--surface);
  border-top:1px solid rgba(148,163,184,.15);
  border-bottom:1px solid rgba(148,163,184,.15);
}
.trust-row{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:20px;
}
.trust-item{
  text-align:center;
}
.trust-item strong{
  font-size:1.8rem;
  color:var(--brand);
}
.trust-item span{
  display:block;
  color:var(--muted);
}

/* ---------- Services ---------- */
.services{
  padding: clamp(48px, 7vw, 86px) 0;
  text-align:center;
}
.service-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  margin-top:30px;
}
.service-card{
  padding:20px;
  background: var(--card);
  border:1px solid rgba(148,163,184,.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.service-card h3{ margin:0 0 10px; }

/* ---------- CTA Strip ---------- */
.cta-strip{
  background: var(--brand);
  color:#fff;
  padding: 40px 0;
  text-align:center;
}
.cta-strip h2{
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
