@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #149dcc;
  --deep: #075a86;
  --green: #35b957;
  --ink: #123044;
  --muted: #5d7280;
  --soft: #f3f8fa;
  --white: #fff;
  --line: #dce9ee;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; font-size:20px; }
.brand img { width:46px; height:46px; object-fit:cover; border-radius:12px; }
nav { display:flex; gap:26px; color:var(--muted); font-size:14px; font-weight:600; }
nav a:hover, .footer a:hover { color:var(--blue); }

.hero {
  padding: 92px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(20,157,204,.12), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(53,185,87,.10), transparent 30%),
    linear-gradient(180deg, #f7fcfd 0%, #fff 100%);
}
.hero-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap:70px; align-items:center; }
.eyebrow { margin:0 0 14px; color:var(--blue); font-size:12px; letter-spacing:.16em; font-weight:800; }
h1 { margin:0 0 22px; max-width:760px; font-size:clamp(42px, 6vw, 72px); line-height:1.05; letter-spacing:-.045em; }
h2 { margin:0 0 18px; font-size:clamp(30px, 4vw, 44px); line-height:1.12; letter-spacing:-.03em; }
h3 { margin:0 0 10px; font-size:20px; }
.lead { max-width:700px; color:var(--muted); font-size:20px; }
.actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.button {
  display:inline-flex; align-items:center; justify-content:center;
  min-height:48px; padding:0 22px; border-radius:999px;
  font-weight:700; font-size:14px; transition:.2s ease;
}
.button:hover { transform:translateY(-2px); }
.primary { background:var(--deep); color:#fff; }
.secondary { border:1px solid var(--line); background:#fff; }
.light { background:#fff; color:var(--deep); }

.hero-card {
  background:#fff; border:1px solid var(--line); border-radius:32px;
  padding:28px; box-shadow:0 24px 70px rgba(18,48,68,.12);
}
.hero-card img { display:block; width:100%; border-radius:20px; }

.section { padding:100px 0; }
.section p { color:var(--muted); }
.offerings, .resources { background:var(--soft); }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:38px; }
.card {
  background:#fff; border:1px solid var(--line); border-radius:24px;
  padding:30px; box-shadow:0 8px 30px rgba(18,48,68,.05);
}
.number { color:var(--green); font-weight:800; margin-bottom:26px; }

.resource-grid { display:grid; gap:14px; margin-top:38px; }
.resource {
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:20px;
  background:#fff; border:1px solid var(--line); border-radius:22px; padding:24px 26px;
  transition:.2s ease;
}
.resource:hover { transform:translateY(-2px); box-shadow:0 12px 35px rgba(18,48,68,.08); border-color:#b9dce8; }
.resource p { margin:0; }
.resource-icon { width:50px; height:50px; display:grid; place-items:center; border-radius:15px; background:#eef8fb; font-size:24px; }
.arrow { font-size:24px; color:var(--blue); }

.cta { padding:90px 0; text-align:center; color:#fff; background:linear-gradient(135deg, var(--deep), var(--blue)); }
.cta p { color:rgba(255,255,255,.82); margin-bottom:28px; }

.footer { background:#0b2d40; color:#fff; padding:48px 0 24px; }
.footer-inner { display:flex; justify-content:space-between; gap:40px; }
.footer p { margin:8px 0 0; color:rgba(255,255,255,.65); font-size:14px; }
.footer-links { display:flex; gap:22px; align-items:center; font-size:14px; font-weight:600; }
.copyright { margin-top:38px; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.5); font-size:12px; }

@media (max-width: 800px) {
  .nav { min-height:68px; }
  nav { display:none; }
  .hero { padding:64px 0; }
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .cards { grid-template-columns:1fr; }
  .section { padding:70px 0; }
  .footer-inner { flex-direction:column; }
  .footer-links { flex-wrap:wrap; }
}
