:root {
  --bg: #0b1220;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --brand: #0f4c81;
  --brand-2: #0a3a63;
  --ok: #16a34a;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, system-ui, sans-serif; color: var(--ink); line-height: 1.6; background: var(--surface); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand { font-weight: 800; font-size: 1.3rem; color: var(--brand); }
.brand span { color: #1e293b; }
.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a { font-weight: 600; font-size: .95rem; color: #1f2937; }
.nav a:hover { color: var(--brand); }
.menu-btn { display: none; border: 0; background: transparent; font-size: 1.6rem; }

.btn { border-radius: 10px; padding: .8rem 1.1rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.btn-sm { padding: .55rem .9rem; font-size: .9rem; }
.btn-primary { background: var(--brand); color: #fff; }
.nav a.btn-primary { color: #fff; }
.btn-primary:hover { background: var(--brand-2); color: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }

.hero {
  background: radial-gradient(1200px 600px at 75% -10%, #2a6fb0 0%, rgba(42,111,176,0) 55%), linear-gradient(130deg, #0f4c81, #0b1f36);
  color: #fff; padding: 4.6rem 0 3.2rem;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: start; }
.eyebrow { color: #c7dbef; font-weight: 700; letter-spacing: .02em; margin-bottom: .7rem; font-size: .92rem; }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.1; margin-bottom: 1rem; }
.lede { color: #deebf7; max-width: 66ch; margin-bottom: 1.3rem; }
.hero-actions { display: flex; gap: .8rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.trust-inline { list-style: none; display: grid; gap: .3rem; font-size: .95rem; color: #d8e8f7; }
.hero-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.26);
  border-radius: 14px; padding: 1rem 1.1rem; box-shadow: var(--shadow);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.hero-card ul { padding-left: 1rem; color: #e9f2fb; display: grid; gap: .4rem; margin-bottom: .8rem; }
.mini-cta { font-size: .92rem; color: #dceaf8; }

.logo-strip { border-bottom: 1px solid var(--line); background: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: .95rem 0; color: #334155; font-size: .95rem; }

.section { padding: 4.2rem 0; }
.section-alt { background: var(--surface-alt); }
.section-head { max-width: 720px; margin-bottom: 1.6rem; }
.section-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); line-height: 1.15; margin-bottom: .5rem; }
.section-head p { color: var(--muted); }

.cards { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.card h3 { margin-bottom: .45rem; font-size: 1.08rem; }
.card p { color: #334155; margin-bottom: .5rem; }
.card ul { padding-left: 1rem; color: #475569; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.steps > div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .9rem; }
.steps span { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; background: #dbeafe; color: #1e3a8a; font-weight: 800; margin-bottom: .45rem; }
.steps h4 { margin-bottom: .25rem; }
.steps p { color: #475569; font-size: .95rem; }

.proof-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; align-items: start; }
.proof-list { padding-left: 1rem; display: grid; gap: .65rem; }
.proof-list li { color: #334155; }
.quote { background: #0f172a; color: #e2e8f0; border-radius: 14px; padding: 1.2rem; font-size: 1.08rem; }
.quote cite { display: block; margin-top: .8rem; color: #93c5fd; font-size: .95rem; }

.cta-band { background: #0f172a; color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cta-band h3 { font-size: clamp(1.3rem, 2.7vw, 1.9rem); }
.cta-band p { color: #cbd5e1; }

.faq { display: grid; gap: .7rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .7rem .85rem; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin-top: .45rem; color: #475569; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-lines { margin-top: .9rem; display: grid; gap: .4rem; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem;
  display: grid; gap: .75rem; box-shadow: var(--shadow);
}
.contact-form label { font-weight: 600; font-size: .9rem; color: #334155; display: grid; gap: .28rem; }
.contact-form input, .contact-form textarea {
  border: 1px solid #cbd5e1; border-radius: 10px; padding: .75rem .8rem; font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid #bfdbfe; border-color: #60a5fa; }
.form-note { color: #64748b; font-size: .85rem; }

.site-footer { border-top: 1px solid var(--line); padding: 1.1rem 0; background: #fff; }
.footer-row { display: flex; justify-content: space-between; gap: .8rem; color: #475569; font-size: .92rem; }

@media (max-width: 980px) {
  .hero-grid, .proof-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .strip-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .menu-btn { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    display: none; flex-direction: column; padding: 1rem; align-items: stretch;
  }
  .nav.show { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}
