/* Minimal, modern, responsive landing */
:root {
  --primary: #0B1454;
  --accent: #10b981;
  --muted: #6b7280;
  --ring: #e5e7eb;
  --bg: #f7f8fb;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: #0f172a;
  background: var(--bg);
}
a { color: inherit; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.site-header { background: white; border-bottom: 1px solid var(--ring); position: sticky; top: 0; z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand-logo { height: 44px; width: auto; object-fit: contain; }
.menu { display: flex; gap: 10px; align-items: center; }
.menu-link { padding: 8px 10px; text-decoration: none; color: #111827; }
.btn {
  display: inline-block; border-radius: 12px; padding: 12px 18px; text-decoration: none; font-weight: 600; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-outline { border-color: var(--ring); background: white; }
.btn-ghost { border-color: var(--ring); background: transparent; }
.btn-block { display:block; width:100%; text-align:center; }

.hero {
  background: radial-gradient(1200px 500px at 10% -10%, #ffffff 0, #eef2ff 40%, #e2e8f0 100%);
  padding: 56px 0 32px;
}
.hero-grid { display: grid; gap: 28px; grid-template-columns: 1.2fr 1fr; }
.hero h1 { color: var(--primary); font-size: clamp(28px, 4vw, 42px); margin: 6px 0; }
.lead { color: #1f2937; font-size: clamp(15px, 2.2vw, 18px); line-height: 1.7; }
.cta-row { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.meta { display:flex; gap:10px; align-items:center; color: var(--muted); margin-top: 10px; }
.tag { background: white; border:1px solid var(--ring); padding: 6px 10px; border-radius: 999px; }
.sep { opacity: .5; }
.link { color: var(--primary); text-decoration: none; }

.card { background: white; border:1px solid var(--ring); border-radius: 16px; padding: 20px; box-shadow: 0 8px 18px rgba(2, 6, 23, .04);}
.checklist { margin: 10px 0 16px 0; padding-left: 18px; }
.checklist li { margin: 6px 0; }

.section { padding: 48px 0; }
.section.alt { background: white; border-top:1px solid var(--ring); border-bottom:1px solid var(--ring); }
.section h2 { font-size: clamp(22px, 3vw, 28px); color: var(--primary); margin: 0 0 16px; }

.cards { display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); }
.feature { background:white; border:1px solid var(--ring); border-radius:14px; padding:18px; }
.feature h3 { margin: 4px 0 8px; }
.grid-3 { display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); }
.pill { background: #f8fafc; border:1px solid var(--ring); border-radius:14px; padding:16px; }
.center { text-align:center; }
.mt-24 { margin-top:24px; }

.contact-cta { background: linear-gradient(90deg, #ffffff, #f1f5f9); border-top:1px solid var(--ring); border-bottom:1px solid var(--ring); }
.contact-grid { display:grid; gap:14px; grid-template-columns: 1.2fr .8fr; padding: 24px 0; }
.contact-actions { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; align-items:center; }

.site-footer { background: #0f172a; color: #cbd5e1; margin-top: 20px; }
.foot-grid { padding: 24px 0; display: grid; gap: 16px; grid-template-columns: 1fr auto; align-items: center; }
.brand-mini { height: 32px; filter: brightness(0) invert(1); }
.foot-nav { display:flex; gap:14px; justify-content:center; }
.foot-nav a { color: #e2e8f0; text-decoration: none; }
.copy { grid-column: 1 / -1; text-align:center; margin: 8px 0 0; font-size: 13px; color:#94a3b8; }
.muted { color: #94a3b8; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; text-align:center; }
  .contact-actions { justify-content:center; }
}
