:root{
  --bg:#f3f6fb;
  --card:#ffffff;
  --line:#dbe5f3;

  --text:#0a1020;
  --muted:#5b6a86;

  --navy1:#071a3a;
  --navy2:#0a2a63;
  --navy3:#0b3b93;

  --accent:#ff8a1d;
  --accent2:#ff6f00;

  --shadow: 0 18px 50px rgba(7, 26, 58, .10);
  --shadowSoft: 0 14px 32px rgba(7, 26, 58, .10);
  --r:14px;

  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}

a{color:inherit}
button,input,select,textarea{font-family:inherit}
.sr{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:10px;
  padding:10px 12px; border-radius:12px;
  background:#fff; border:1px solid var(--line);
}
.skip:focus{left:10px; z-index:9999}

/* ===== Topbar (dark nav like screenshots) ===== */
.topbar{
  position:sticky; top:0; z-index:2000;
  background: linear-gradient(180deg, rgba(7,26,58,.98), rgba(7,26,58,.92));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.logo{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:#fff;
  font-weight:800;
}
.logo__badge{
  width:30px; height:30px; border-radius:999px;
  display:grid; place-items:center;
  background:#ffffff;
  color:#0b1a3b;
  font-size:12px;
  font-weight:900;
}
.logo__name{
  font-size:14px;
  opacity:.95;
  letter-spacing:.2px;
  white-space:nowrap;
}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav__link{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  padding:8px 2px;
  border-bottom:2px solid transparent;
}
.nav__link:hover{color:#fff}
.nav__link.is-active{
  color:#fff;
  border-bottom-color:#ffffff;
}

.cta{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  color:#131313;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 22px rgba(255,138,29,.30);
  white-space:nowrap;
}
.cta:hover{filter:brightness(1.02)}
.cta--full{width:100%}

/* Mobile drawer */
.navBtn{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  cursor:pointer;
}
.navBtn__bar{
  width:18px; height:2px; background:#fff;
  display:block; margin:0 auto; position:relative;
}
.navBtn__bar::before,.navBtn__bar::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:#fff;
}
.navBtn__bar::before{top:-6px}
.navBtn__bar::after{top:6px}

.drawer{display:none}
.drawer.is-open{display:block}
.drawer__card{
  width:min(420px, calc(100% - 40px));
  margin: 10px auto 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:14px;
}
.drawer__links{display:grid; gap:10px; margin-bottom:12px}
.drawer__link{
  color:#fff; text-decoration:none; font-weight:800;
  padding:10px 12px; border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

/* ===== Pages ===== */
.page{display:none}
.page.is-active{display:block}

/* ===== Hero blocks (dark blue gradients like screenshots) ===== */
.hero{
  color:#fff;
  background:
    radial-gradient(900px 400px at 20% 30%, rgba(27,102,255,.35), transparent 55%),
    radial-gradient(900px 460px at 80% 0%, rgba(0,187,255,.18), transparent 58%),
    linear-gradient(180deg, var(--navy1), var(--navy2) 55%, #0a3e9a);
  padding: 44px 0;
}
.hero--home{padding: 52px 0 46px}
.hero--inner{padding: 44px 0}
.hero--about{padding: 52px 0 0}
.hero--contact{padding: 44px 0 44px}

.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:start;
}
.hero__grid--about{padding-bottom:28px}
.hero__inner{max-width: 860px}

.kicker{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
  font-weight:800;
  margin-bottom:12px;
}
.hero__title{
  margin:0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height:1.12;
  letter-spacing:-.4px;
}
.hero__lead{
  margin:12px 0 0;
  color: rgba(255,255,255,.82);
  line-height:1.7;
  font-size:14px;
  max-width: 62ch;
}

.hero__actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  font-size:13px;
  border:1px solid transparent;
}
.btn--accent{
  color:#141414;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 22px rgba(255,138,29,.28);
}
.btn--ghost{
  color:#fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.btn--blue{
  color:#fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}
.btn--ghostLight{
  color:#fff;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
}

.hero__stats{
  display:flex; gap:18px; flex-wrap:wrap;
  margin-top:22px;
}
.hstat{min-width:120px}
.hstat__v{font-weight:900; font-size:16px}
.hstat__k{color: rgba(255,255,255,.72); font-size:12px; margin-top:4px}

/* Right hero cards */
.heroCard{
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:16px;
  box-shadow: 0 16px 40px rgba(3, 10, 25, .30);
}
.heroCard__title{font-weight:900; font-size:14px}
.heroCard__desc{color: rgba(255,255,255,.78); font-size:12px; margin-top:8px; line-height:1.6}

.heroGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.miniCard{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding:12px;
}
.miniCard__pill{
  display:inline-flex;
  padding:4px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  color:#0b1020;
  background:#ffffff;
}
.miniCard__pill--green{background:#34d399}
.miniCard__pill--amber{background:#fbbf24}
.miniCard__pill--blue{background:#60a5fa}
.miniCard__pill--teal{background:#2dd4bf}
.miniCard__t{margin-top:8px; font-weight:900; color:#fff; font-size:13px}
.miniCard__p{margin-top:6px; color: rgba(255,255,255,.74); font-size:12px; line-height:1.55}

/* About focus card */
.focusCard{
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:16px;
  box-shadow: 0 16px 40px rgba(3, 10, 25, .30);
}
.focusCard__h{font-weight:900; margin-bottom:10px}
.focusCard__list{margin:0; padding-left:18px; color: rgba(255,255,255,.82); line-height:1.7; font-size:13px}

/* Stats bar on about */
.statsBar{
  margin-top:26px;
  background: linear-gradient(180deg, #0a3e9a, #0a2f75);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.statsBar__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.sbar{text-align:center}
.sbar__v{font-weight:900; font-size:18px}
.sbar__k{margin-top:6px; color: rgba(255,255,255,.75); font-size:12px}

/* Chips row */
.chipsRow{
  background:#ffffff;
  border-bottom:1px solid var(--line);
  padding: 14px 0;
}
.chipsRow__inner{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.chipsRow__label{color:#7a889f; font-weight:700; font-size:12px}
.chipsRow__chips{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#f7f9ff;
  color:#445472;
  font-size:12px;
  font-weight:800;
}

/* Sections and typography */
.section{padding: 34px 0}
.h2{margin:0; font-size:22px; letter-spacing:-.2px}
.h2--small{font-size:18px}
.p{margin:12px 0 0; color:var(--muted); line-height:1.75}
.sub{margin:10px 0 0; color:#7a889f; font-size:12px; line-height:1.6}
.centerHead{text-align:center; margin-bottom:16px}
.centerHead--tight{margin-top:26px}

.split{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:18px;
  align-items:start;
}
.split__right .btn{margin-top:12px}

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
}
.card--shadow{box-shadow: var(--shadowSoft)}
.card--dark{
  background: linear-gradient(180deg, #081c3d, #0a2a63);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  box-shadow: 0 18px 50px rgba(2, 8, 24, .30);
}
.card__title{font-weight:900; font-size:14px}
.card__title--light{color:#fff}
.card__text{margin-top:10px; color:var(--muted); line-height:1.7; font-size:13px}
.card--dark .card__text{color: rgba(255,255,255,.78)}

.bullets{margin:12px 0 0; padding-left:18px; color:#607095; line-height:1.7; font-size:13px}
.checks{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.checks li{
  padding-left:18px;
  position:relative;
  color:#607095;
  font-weight:700;
  font-size:13px;
  line-height:1.6;
}
.checks li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:#1f7ae0;
  font-weight:900;
}
.card--dark .checks li{color: rgba(255,255,255,.78)}
.card--dark .checks li::before{color:#8fd3ff}

/* Banner CTA (blue bar) */
.banner{
  padding: 18px 0;
  background: linear-gradient(90deg, #0a2f75, #0a3ea0);
}
.banner__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  border-radius: 14px;
  padding: 12px 14px;
}
.banner__t{font-weight:900; color:#fff}
.banner__p{color: rgba(255,255,255,.78); font-size:12px; margin-top:6px; line-height:1.6}
.banner__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Core services cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top: 14px;
}
.svc{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.svc--dark{
  background: linear-gradient(180deg, #071a3a, #0a2a63);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
}
.svc__badge{
  width:28px; height:28px; border-radius:8px;
  display:grid; place-items:center;
  background:#0b1a3b;
  color:#fff;
  font-weight:900;
  font-size:12px;
}
.svc--dark .svc__badge{background: rgba(255,255,255,.14)}
.svc__t{margin:10px 0 0; font-size:14px; font-weight:900}
.svc__p{margin:10px 0 0; color:#5b6a86; line-height:1.7; font-size:13px}
.svc--dark .svc__p{color: rgba(255,255,255,.76)}
.svc__list{margin:12px 0 0; padding-left:18px; color:#607095; font-size:13px; line-height:1.7}
.svc--dark .svc__list{color: rgba(255,255,255,.76)}
.svc__link{
  display:inline-flex;
  margin-top:12px;
  text-decoration:none;
  font-weight:900;
  color:#0b5bd6;
  font-size:13px;
}
.svc--dark .svc__link{color:#fff; opacity:.92}

/* Two cards row */
.cards2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top: 14px;
}
.cards2--tight{margin-top: 18px}

.steps{margin-top:12px; display:grid; gap:10px}
.step{display:flex; gap:10px; align-items:flex-start}
.step__n{
  width:26px; height:26px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.14);
  color:#fff; font-weight:900; font-size:12px;
}
.step__t{font-weight:900; font-size:13px}
.step__p{margin-top:4px; color: rgba(255,255,255,.75); font-size:12px; line-height:1.6}

/* Dark mid band */
.darkBand{
  margin-top: 18px;
  background: linear-gradient(90deg, #071a3a, #0a2a63);
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  color:#fff;
  box-shadow: 0 22px 60px rgba(2, 8, 24, .28);
}
.darkBand__t{font-weight:900; font-size:16px}
.darkBand__p{margin-top:8px; color: rgba(255,255,255,.78); line-height:1.7; font-size:13px}
.darkBand__list{margin:12px 0 0; padding-left:18px; color: rgba(255,255,255,.78); font-size:13px; line-height:1.7}
.bubble{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 14px;
}
.bubble__t{font-weight:900}
.bubble__p{margin-top:8px; color: rgba(255,255,255,.78); font-size:12px; line-height:1.6}

/* Small cards row */
.small3, .expect3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top: 14px;
}
.smallCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.smallCard__t{font-weight:900; font-size:13px}
.smallCard__p{margin-top:8px; color:#607095; font-size:12px; line-height:1.65}

/* Dark list card */
.darkList{margin:12px 0 0; padding-left:18px; color: rgba(255,255,255,.78); line-height:1.7; font-size:13px}

/* FAQ accordion (matches screenshot style) */
.faq{margin-top: 12px}
.faq--wide{max-width: 980px; margin: 12px auto 0}
.faqItem{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight:900;
  cursor:pointer;
  margin-top:10px;
}
.faqItem__icon{
  width:26px; height:26px;
  display:grid; place-items:center;
  border-radius:999px;
  border:1px solid var(--line);
  color:#2f3e5a;
  font-weight:900;
}
.faqPanel{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-top:none;
  border-radius: 0 0 12px 12px;
  padding: 12px 14px;
  color:#607095;
  line-height:1.75;
  font-size:13px;
}
.faqItem.is-open{
  border-radius: 12px 12px 0 0;
}
.faqPanel.is-open{display:block}

/* Bottom CTA */
.bottomCta{
  margin-top: 22px;
  border-radius: 16px;
  background: linear-gradient(90deg, #0a2a63, #0a3ea0);
  padding: 14px;
}
.bottomCta--tight{margin-top: 18px}
.bottomCta__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  background: linear-gradient(90deg, #0a2f75, #0a3ea0);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
  color:#fff;
}
.bottomCta__t{font-weight:900}
.bottomCta__p{margin-top:6px; color: rgba(255,255,255,.78); font-size:12px; line-height:1.6}

/* Services: workflow outline table */
.workline{
  margin-top:12px;
  display:grid;
  grid-template-columns: 26px 120px 1fr;
  gap:10px;
  align-items:start;
}
.workline__i{
  width:26px; height:26px; border-radius:999px;
  display:grid; place-items:center;
  background:#eff5ff;
  border:1px solid var(--line);
  font-weight:900;
  color:#0a3ea0;
}
.workline__t{font-weight:900; color:#223252}
.workline__p{color:#607095; line-height:1.6; font-size:13px}

/* About top layout */
.aboutTop{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.valueCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.valueCard__t{font-weight:900; margin-bottom:12px}
.valueRow{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 10px;
  border-radius: 12px;
  border:1px solid #eef2fb;
  background:#fbfcff;
  margin-top:10px;
}
.valueRow__ic{
  width:26px; height:26px; border-radius:10px;
  display:grid; place-items:center;
  background:#eff5ff;
  border:1px solid var(--line);
  color:#0a3ea0;
  font-weight:900;
}
.valueRow__h{font-weight:900; font-size:13px}
.valueRow__p{margin-top:4px; color:#607095; font-size:12px; line-height:1.6}

/* Framework row */
.framework{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:16px;
  align-items:center;
}
.ring{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:14px;
  box-shadow: var(--shadowSoft);
  display:flex;
  justify-content:center;
}
.framework__right .checks li{color:#607095}
.framework__right .checks li::before{color:#0a3ea0}

/* Team cards (4) */
.team4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top:14px;
}
.teamCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadowSoft);
}
.teamCard--dark{
  background: linear-gradient(180deg, #071a3a, #0a2a63);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
}
.pill2{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  color:#fff;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
}
.pill2--light{
  color:#0a2a63;
  background:#eff5ff;
  border:1px solid var(--line);
}
.teamCard__t{margin-top:10px; font-weight:900}
.teamCard__list{margin:10px 0 0; padding-left:18px; color:#607095; line-height:1.7; font-size:12px}
.teamCard--dark .teamCard__list{color: rgba(255,255,255,.78)}

/* CTA band on about */
.ctaBand{
  margin-top: 18px;
  background: linear-gradient(90deg, #0a2a63, #0a3ea0);
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  padding: 16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  color:#fff;
}
.ctaBand__t{font-weight:900}
.ctaBand__p{margin-top:6px; color: rgba(255,255,255,.78); font-size:12px; line-height:1.6}

/* Contact layout (matches screenshot #3) */
.contactGrid{
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap:16px;
  align-items:start;
}
.contactLeft h2{margin-bottom:12px}

.infoCard{
  display:flex; gap:12px; align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:14px;
  box-shadow: var(--shadowSoft);
  margin-top:12px;
}
.infoCard__ic{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:#eff5ff;
  border:1px solid var(--line);
  font-size:14px;
}
.infoCard__t{font-weight:900; font-size:13px}
.infoCard__p{margin-top:6px; color:#607095; font-size:12px; line-height:1.6}
.link{color:#0a5bd6; font-weight:900; text-decoration:none}
.link:hover{text-decoration:underline}

.mapCard{
  margin-top:12px;
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadowSoft);
}
.mapCard iframe{width:100%; height:220px; border:0}

.social{margin-top:14px}
.social__t{font-weight:900; font-size:13px}
.social__btns{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.chipBtn{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  font-size:12px;
  color:#31435f;
}
.chipBtn:disabled{opacity:.65; cursor:not-allowed}

/* Form card */
.formCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:18px;
  box-shadow: var(--shadow);
}
.formCard__h{font-weight:900; font-size:16px}
.formCard__sub{margin-top:8px; color:#7a889f; font-size:12px; line-height:1.6}

.form{margin-top:14px}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:grid; gap:8px; margin-top:12px}
.field__label{font-weight:800; font-size:12px; color:#2f3e5a}
.req{color:#d21b1b}
.field__input{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  font-size:13px;
}
.field__input:focus{
  border-color:#94b6ff;
  box-shadow: 0 0 0 4px rgba(27,102,255,.12);
}
.field__input--area{resize:vertical; min-height:140px}

.submitBtn{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:900;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 30px rgba(255,138,29,.30);
}
.formNote{
  margin-top:10px;
  color:#7a889f;
  font-size:11px;
  line-height:1.6;
  text-align:center;
}
.formStatus{
  margin-top:10px;
  font-weight:900;
  color:#223252;
  text-align:center;
}

/* Before section (center like screenshot) */
.before{
  margin-top: 28px;
  text-align:center;
}
.before__title{font-size:20px; font-weight:900; letter-spacing:-.2px}
.before__sub{margin-top:8px; color:#7a889f; font-size:12px}

/* Footer (dark) */
.footer{
  background: linear-gradient(180deg, #06152f, #040e1f);
  color:#fff;
  padding: 28px 0 18px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .7fr .7fr 1.1fr;
  gap:18px;
  align-items:start;
}
.footer__logo{display:flex; align-items:center; gap:10px; font-weight:900}
.footer__badge{
  width:28px; height:28px; border-radius:999px;
  background:#fff; color:#081830;
  display:grid; place-items:center;
  font-weight:900; font-size:12px;
}
.footer__desc{margin-top:10px; color: rgba(255,255,255,.70); font-size:12px; line-height:1.7}

.footer__col{display:grid; gap:10px}
.footer__h{font-weight:900; font-size:12px; color: rgba(255,255,255,.90)}
.footer__col a, .footerBtn{
  color: rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  background: transparent;
  border:0;
  padding:0;
  text-align:left;
  cursor:pointer;
}
.footer__col a:hover, .footerBtn:hover{color:#fff; text-decoration:underline}

.footer__txt{color: rgba(255,255,255,.72); font-size:12px; line-height:1.6}
.footer__link{color:#fff; font-weight:900; font-size:12px; text-decoration:none}
.footer__link:hover{text-decoration:underline}

.footer__map{
  margin-top:12px;
  border-radius: 12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.footer__map iframe{width:100%; height:140px; border:0}

.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.60);
  font-size:12px;
}

/* Modal */
.modal{position:fixed; inset:0; display:none; z-index:4000}
.modal.is-open{display:block}
.modal__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.55)}
.modal__card{
  position:relative;
  width:min(780px, calc(100% - 30px));
  margin: 10vh auto;
  background:#fff;
  border-radius: 16px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 14px;
  border-bottom:1px solid var(--line);
}
.modal__title{font-weight:900}
.modal__close{
  width:40px; height:40px;
  border-radius: 12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:900;
}
.modal__body{padding:14px; color:#607095; line-height:1.75; font-size:13px}

/* Cookie banner */
.cookie{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  z-index:5000;
}
.cookie__inner{
  width:min(var(--max), 100%);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cookie__t{font-weight:900}
.cookie__p{margin-top:4px; color:#607095; font-size:12px; line-height:1.6}
.cookieBtn{
  border-radius: 999px;
  padding: 10px 12px;
  font-weight:900;
  border:1px solid var(--line);
  cursor:pointer;
}
.cookieBtn--ghost{background:#fff}
.cookieBtn--accent{
  border:0;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}

/* Responsive */
@media (max-width: 1020px){
  .hero__grid{grid-template-columns: 1fr; gap:16px}
  .statsBar__grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .split{grid-template-columns: 1fr}
  .cards3{grid-template-columns: 1fr}
  .cards2{grid-template-columns: 1fr}
  .darkBand{grid-template-columns: 1fr}
  .small3, .expect3{grid-template-columns: 1fr}
  .team4{grid-template-columns: 1fr 1fr}
  .framework{grid-template-columns: 1fr}
  .aboutTop{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
}
@media (max-width: 820px){
  .nav{display:none}
  .cta{display:none}
  .navBtn{display:inline-grid; place-items:center}
  .drawer{padding-bottom: 10px}
  .heroGrid{grid-template-columns: 1fr}
  .team4{grid-template-columns: 1fr}
  .form__row{grid-template-columns: 1fr}
  .workline{grid-template-columns: 26px 1fr}
  .workline__p{grid-column: 2 / 3}
}
