
:root{
  --blue-600:#2563eb;
  --blue-700:#1d4ed8;
  --blue-50:#eff6ff;
  --slate-900:#0f172a;
  --slate-700:#334155;
  --slate-600:#475569;
  --slate-500:#64748b;
  --ring:#e2e8f0;
  --radius:16px;
  --shadow:0 4px 12px rgba(0,0,0,.06);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--slate-900);
  background: linear-gradient(to bottom, #eff6ff, #fff);
  line-height:1.5;
}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
/* Header */
.site-header{position:sticky;top:0;z-index:10;background:rgba(255,255,255,.9);backdrop-filter:saturate(1.2) blur(6px);border-bottom:1px solid #e5e7eb}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;text-decoration:none;color:inherit;gap:10px}
.logo{height:40px;width:auto}
.brand-name{font-weight:700;font-size:14px}
.brand-sub{font-size:12px;color:var(--slate-500)}
.contact-actions{display:none;gap:10px}
@media (min-width:640px){.contact-actions{display:flex}}

/* Buttons */
.btn{display:inline-block;padding:10px 16px;border-radius:12px;font-weight:600;text-decoration:none;transition:.15s ease-in-out;border:1px solid transparent}
.btn.primary{background:var(--blue-600);color:#fff;box-shadow:var(--shadow)}
.btn.primary:hover{background:var(--blue-700)}
.btn.ghost{background:#fff;color:#1e40af;border-color:#bfdbfe}
.btn.ghost:hover{background:#f8fafc}
.btn.invert{background:#fff;color:#1e3a8a;border:1px solid #bfdbfe}
.btn.outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.center{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.mt-24{margin-top:24px}

/* Hero */
.hero{padding:56px 0 24px}
.hero-logo{height:64px;margin:0 auto 16px;display:block}
.badges{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:10px}
.badge{background:#eff6ff;color:#1d4ed8;border:1px solid #bfdbfe;padding:6px 10px;border-radius:999px;font-size:13px;font-weight:600}
.headline{font-size:clamp(28px,4vw,44px);text-align:center;margin:6px 0 8px}
.subhead{max-width:700px;margin:0 auto;color:var(--slate-600);text-align:center}

/* Sections */
.section-title{text-align:center;margin-bottom:10px}
.section-title .eyebrow{font-size:12px;font-weight:700;letter-spacing:.1em;color:#1d4ed8;opacity:.9;text-transform:uppercase;margin-bottom:6px}
.section-title h2{font-size:28px;margin:6px 0}
.section-title .subtitle{color:var(--slate-600)}

/* Cards & tables */
.card-grid{display:grid;gap:16px;margin-top:18px}
@media (min-width:768px){.card-grid{grid-template-columns:repeat(2,1fr)}}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;box-shadow:var(--shadow);padding:18px}
.card-head{display:flex;align-items:center;justify-content:space-between}
.card h3{margin:0;font-size:18px}
.chip{background:#eff6ff;color:#1d4ed8;border:1px solid #bfdbfe;border-radius:999px;padding:4px 8px;font-size:12px;font-weight:700}
.table-wrap{border-radius:12px;overflow:hidden;border:1px solid #e5e7eb;margin-top:12px}
table{width:100%;border-collapse:collapse;font-size:14px}
thead{background:#f8fafc;color:var(--slate-700)}
th,td{padding:10px 12px;border-top:1px solid #e5e7eb}
thead th{border-top:none}
.strong{font-weight:700;color:#0f172a}
.fine{font-size:12px;color:var(--slate-600);margin-top:8px}

/* Why */
.why{background:#f8fbff;padding:28px 0}
.features{display:grid;gap:12px;margin-top:14px}
@media (min-width:768px){.features{grid-template-columns:repeat(4,1fr)}}
.feature{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:16px;box-shadow:var(--shadow)}
.feature h3{margin:0 0 6px;font-size:16px}

/* CTA */
.cta{background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;padding:34px 0;margin:10px 0 24px}
.cta-logo{height:44px;display:block;margin:0 auto 10px}
.cta h3{text-align:center;margin:0 0 4px;font-size:24px}
.cta p{text-align:center;margin:0 0 12px;color:rgba(255,255,255,.9)}
.cta-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* Footer */
.site-footer{background:#fff;border-top:1px solid #e5e7eb;padding:18px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.footer-logo{height:32px}
.muted{color:var(--slate-500);font-size:14px}
