:root{
  --bg:#ffffff;
  --bg2:#f6f8fc;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;

  --brand:#1e3a8a;       /* navy */
  --brand2:#2563eb;      /* blue */
  --accent:#0ea5e9;      /* sky */

  --shadow: 0 14px 40px rgba(2, 8, 23, 0.10);
  --shadow2: 0 8px 24px rgba(2, 8, 23, 0.08);

  --r12:12px;
  --r16:16px;
  --r22:22px;

  --container: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(37,99,235,.12), transparent 55%),
    radial-gradient(700px 420px at 90% 0%, rgba(14,165,233,.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fff 60%, var(--bg2) 100%);
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(var(--container), calc(100% - 48px)); margin:0 auto}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent);display:inline-block}

.topbar{
  background:#0b1b3a;
  color:#eaf1ff;
  font-size:14px;
}
.topbar__inner{
  padding:10px 0;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.topbar__label{opacity:.9; font-weight:600}
.topbar__link{font-weight:700}
.topbar__link:hover{text-decoration:underline}
.topbar__sep{opacity:.6}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  padding:14px 0;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:44px;height:44px;border-radius:14px;
  background: linear-gradient(135deg, var(--brand2), var(--accent));
  box-shadow: var(--shadow2);
}
.brand__name{font-weight:900; letter-spacing:-0.02em}
.brand__tag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:14px}
.nav__link{
  font-weight:700;
  color:#0f172a;
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{background:rgba(37,99,235,.08)}
.nav__btn{
  border:0;background:transparent; cursor:pointer;
  display:flex; align-items:center; gap:6px;
}
.chev{opacity:.7}

.header__cta{display:flex; align-items:center; gap:10px}

/* Dropdown */
.nav__dropdown{position:relative}
.dropdown{
  position:absolute; top:46px; left:0;
  min-width:260px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:10px;
  box-shadow: var(--shadow);
  display:none;
}
.dropdown__item{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  font-weight:700;
  color:#0f172a;
}
.dropdown__item:hover{background:rgba(37,99,235,.08)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid transparent;
  white-space:nowrap;
}
.btn--primary{
  background: linear-gradient(135deg, var(--brand2), var(--accent));
  color:#fff;
  box-shadow: var(--shadow2);
}
.btn--primary:hover{filter:brightness(1.03)}
.btn--ghost{
  background:#fff;
  border-color: var(--line);
  color:#0f172a;
}
.btn--ghost:hover{background:rgba(15,23,42,.04)}

/* Mobile */
.burger{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:10px;
  cursor:pointer;
}
.burger span{display:block;width:22px;height:2px;background:#0f172a;margin:4px 0;border-radius:2px}

.drawer{display:none}
.drawer__backdrop{position:fixed; inset:0; background:rgba(2,8,23,.35)}
.drawer__panel{
  position:fixed; right:16px; top:16px;
  width:min(360px, calc(100% - 32px));
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:16px;
}
.drawer__top{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px}
.drawer__brand{font-weight:900}
.drawer__close{
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.drawer__link{
  display:block;
  padding:12px 10px;
  border-radius:14px;
  font-weight:800;
}
.drawer__link:hover{background:rgba(37,99,235,.08)}
.drawer__buttons{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

/* Hero */
.hero{padding:54px 0 24px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  color:rgba(30,58,138,.85);
  font-size:12px;
  margin-bottom:10px;
}
.hero h1{
  font-size: clamp(42px, 5vw, 64px);
  line-height:1.02;
  margin:0 0 12px;
  letter-spacing:-0.03em;
}
.lead{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  margin:0 0 18px;
  max-width:55ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap}
.hero__note{
  display:flex; align-items:center; gap:10px;
  margin-top:16px;
  color:var(--muted);
  font-weight:600;
}

.hero__media{
  border-radius: var(--r22);
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__media img{
  width:100%;
  height:420px;
  object-fit:cover;
  background: #eaf0ff;
}

/* 3 cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r22);
  box-shadow: var(--shadow2);
  padding:18px;
}
.card__icon{
  width:44px; height:44px; border-radius:14px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  margin-bottom:12px;
}
.card__kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  color:rgba(15,23,42,.55);
  font-size:11px;
  margin-bottom:8px;
}
.card h3{margin:0 0 8px; font-size:18px; letter-spacing:-0.02em}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6}
.card__link{font-weight:900; color:var(--brand2)}
.card__link:hover{text-decoration:underline}

/* Split */
.split{padding:26px 0 10px}
.split__grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.splitCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r22);
  box-shadow: var(--shadow2);
  padding:20px;
}
.splitCard--alt{background: linear-gradient(180deg, #ffffff, #f3f7ff)}
.splitCard__tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  font-weight:800;
  color:rgba(30,58,138,.9);
  font-size:12px;
}
.splitCard h2{margin:12px 0 10px; font-size:28px; letter-spacing:-0.03em}
.splitCard p{margin:0 0 14px; color:var(--muted); line-height:1.6}

.check{list-style:none; padding:0; margin:0 0 16px}
.check li{padding-left:22px; position:relative; margin:9px 0; font-weight:650; color:#0f172a}
.check li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--brand2);
  font-weight:900;
}

/* Stat band */
.statband{padding:18px 0 44px}
.statband__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  background:#0b1b3a;
  color:#eaf1ff;
  border-radius: var(--r22);
  padding:20px;
  box-shadow: var(--shadow);
}
.statband__num{font-size:40px; font-weight:900; letter-spacing:-0.03em}
.statband__text{opacity:.9; margin-top:4px}
.statband__title{font-weight:800; margin-bottom:10px}

/* Sections */
.sectionHead{margin-bottom:16px}
.sectionHead__kicker{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:800;
  color:rgba(15,23,42,.55);
  font-size:12px;
}
.sectionHead h2{margin:10px 0 6px; font-size:36px; letter-spacing:-0.03em}
.sectionHead p{margin:0; color:var(--muted); line-height:1.65; max-width:72ch}
.sectionHead--row{display:flex; align-items:flex-end; justify-content:space-between; gap:16px}

/* Sectors tiles */
.sectors{padding:44px 0}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.tile{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r22);
  box-shadow: var(--shadow2);
  padding:18px;
}
.tile h3{margin:0 0 8px; letter-spacing:-0.02em}
.tile p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.tile ul{margin:0; padding-left:18px; color:#0f172a}
.tile li{margin:7px 0}

/* Services list */
.services{padding:44px 0}
.serviceList{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.serviceItem{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r16);
  padding:16px;
  box-shadow: var(--shadow2);
}
.serviceItem h3{margin:0 0 6px; letter-spacing:-0.02em}
.serviceItem p{margin:0; color:var(--muted); line-height:1.6}

.ctaRow{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--r22);
  padding:18px;
  box-shadow: var(--shadow2);
}
.ctaRow__title{font-weight:900; font-size:18px}
.ctaRow__sub{color:var(--muted); margin-top:4px}

/* News */
.news{padding:44px 0}
.newsGrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:16px;
  margin-top:18px;
}
.newsCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r22);
  padding:18px;
  box-shadow: var(--shadow2);
}
.newsCard--date{display:flex; gap:14px; align-items:flex-start}
.newsMeta{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  font-size:12px;
  color:rgba(15,23,42,.55);
}
.newsCard h3{margin:10px 0 8px; letter-spacing:-0.02em}
.newsSmall{color:var(--muted); font-weight:600}

.newsDate{
  width:74px; height:74px;
  border-radius: 18px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  display:grid;
  place-items:center;
}
.newsDate__d{font-weight:900; font-size:24px; line-height:1}
.newsDate__m{font-weight:800; font-size:12px; color:rgba(30,58,138,.9); margin-top:-2px}

/* Newsletter */
.newsletter{padding:30px 0 54px}
.newsletter__inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(14,165,233,.10));
  border:1px solid var(--line);
  border-radius: var(--r22);
  box-shadow: var(--shadow2);
  padding:18px;
}
.newsletter__inner h2{margin:0 0 6px; letter-spacing:-0.03em}
.newsletter__inner p{margin:0; color:var(--muted); line-height:1.6}
.newsletter__form{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.newsletter__form input{
  width:min(320px, 70vw);
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
}
.newsletter__form input::placeholder{color:#94a3b8}

/* Footer */
.footer{
  background:#0b1b3a;
  color:#eaf1ff;
  padding:44px 0 22px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr 1.6fr;
  gap:18px;
}
.brand--footer .brand__tag{color:rgba(234,241,255,.75)}
.footer__brand{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r22);
  padding:18px;
}
.footer__brand h3{margin:12px 0 8px}
.footer__brand p{margin:0 0 14px; opacity:.9; line-height:1.6}

.footer__cols{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.fcol{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r16);
  padding:16px;
}
.fcol__title{font-weight:900; margin-bottom:10px}
.fcol__item, .fcol__link{display:block; margin:8px 0; opacity:.95}
.fcol__link:hover{text-decoration:underline}
.fmuted{opacity:.75}

.footer__bottom{
  margin-top:16px;
  padding-top:14px;
  border-top: 1px solid rgba(255,255,255,.14);
}

/* Responsive*

