:root {
  --primary: #21a83c;
  --primary-dark: #148a2f;
  --ink: #08275e;
  --ink-soft: #12407e;
  --body: #45597c;
  --muted: #5f7294;
  --bg: #ffffff;
  --tint: #eff7f0;
  --dark: #051a48;
  --line: #e2e8f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(5, 26, 72, 0.08);
  --font-head: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; }

.container { width: min(1120px, 92%); margin: 0 auto; }

a { text-decoration: none; color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(33, 168, 60, .35); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20, 138, 47, .4); }
.btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn--block { width: 100%; }
.link { color: var(--primary-dark); font-weight: 600; }
.link:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(8,39,94,.1); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__img { height: 46px; width: auto; display: block; }
.brand__img--footer { height: 56px; background: #fff; padding: 8px 14px; border-radius: 10px; }
.brand__mark { display: inline-flex; }
.brand__text { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1; }
.brand__text b { color: var(--primary-dark); font-weight: 800; }
.brand__text small { display: block; font-size: 9px; letter-spacing: 2.5px; color: var(--muted); text-transform: uppercase; font-family: var(--font-body); margin-top: 2px; }
.brand--light .brand__text { color: #fff; }
.brand--light .brand__text small { color: #94a3b8; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-weight: 600; font-size: 15px; color: var(--ink-soft); position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--primary); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; color: #fff; background: var(--dark); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 85% 15%, rgba(33,168,60,.22), transparent 60%),
    radial-gradient(700px 420px at 8% 90%, rgba(8,39,94,.5), transparent 60%);
}
.hero__overlay {
  position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(circle at 60% 40%, #000 20%, transparent 75%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.hero__tag { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .4px; color: #cbd5e1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero__tag .pill { color: #34d399; }
.hero h1 { font-size: clamp(38px, 5.4vw, 60px); color: #fff; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 .accent { color: var(--primary); }
.hero__sub { font-size: 17px; color: #cbd5e1; max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hero__card-head { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; margin-bottom: 20px; font-size: 15px; }
.hero__card-dot { width: 10px; height: 10px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(52,211,153,.05); } }
.hero__stat { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.hero__stat b { display: block; font-family: var(--font-head); font-size: 26px; color: #fff; }
.hero__stat span { font-size: 14px; color: #94a3b8; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--dark { background: var(--dark); }
.section--dark h2 { color: #fff; }
.section--dark p { color: #cbd5e1; }
.section--tint { background: var(--tint); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__lead { margin-top: 14px; font-size: 17px; }
.eyebrow { color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.section__head h2 { font-size: clamp(28px, 3.6vw, 40px); }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(8,39,94,.15); }
.card__icon { font-size: 34px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 15px; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 18px; }
.about__text p { margin-bottom: 18px; }
.checklist { list-style: none; display: grid; gap: 12px; }
.about__banner { margin-top: 24px; display: flex; justify-content: center; }
.about__banner img { width: min(400px, 90%); border-radius: var(--radius); background: #fff; padding: 18px 26px; }
.checklist li { padding-left: 32px; position: relative; font-weight: 500; color: #cbd5e1; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #34d399; font-weight: 800; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.fact b { display: block; font-family: var(--font-head); font-size: 22px; color: var(--primary); margin-bottom: 4px; }
.fact span { font-size: 13px; color: #94a3b8; }

/* ---------- Coverage ---------- */
.coverage { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.coverage__map { display: flex; justify-content: center; }
.map-svg { width: 100%; max-width: 420px; }
.coverage__list h3 { font-size: 22px; margin-bottom: 18px; }
.coverage__list ul { list-style: none; display: grid; gap: 12px; }
.coverage__list li { padding-left: 26px; position: relative; font-weight: 500; }
.coverage__list li::before { content: "●"; position: absolute; left: 0; color: var(--primary); }

/* ---------- Mini cards ---------- */
.mini { text-align: center; padding: 26px 18px; }
.mini__num { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--primary); margin-bottom: 12px; }
.mini h3 { font-size: 18px; margin-bottom: 8px; }
.mini p { font-size: 14px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1.25fr 1fr; gap: 50px; align-items: start; }
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #f8fafc; transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(33,168,60,.18); background: #fff;
}
.form__note { margin-top: 14px; font-size: 13px; color: var(--muted); text-align: center; }
.form__success { color: #15803d; font-weight: 600; text-align: center; padding: 16px; border: 1px solid #bbf7d0; background: #f0fdf4; border-radius: 10px; }
.contact__info h3 { font-size: 18px; margin: 22px 0 8px; }
.contact__info h3:first-child { margin-top: 0; }
.contact__info p { margin-bottom: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #94a3b8; padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { max-width: 340px; margin-top: 14px; font-size: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer__links a { font-weight: 500; }
.footer__links a:hover { color: var(--primary); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13px; }
.footer__bar .container { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero__inner, .about, .coverage, .contact { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .nav__links {
    position: fixed; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 6%;
    transform: translateY(-120%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { align-items: flex-start; }
}
@media (max-width: 560px) {
  .grid, .grid--4, .form__row { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero__actions .btn { width: 100%; }
  .about__facts { grid-template-columns: 1fr 1fr; }
}
