/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

:root {
  --blue:        #1351a8;
  --blue-dark:   #0c3a7a;
  --blue-deeper: #071d3e;
  --blue-light:  #e6eef9;
  --blue-mid:    #3b76cc;
  --red:         #e8251a;
  --red-dark:    #bf1b11;
  --gold:        #f59e0b;
  --dark:        #0d1b2e;
  --text:        #1e293b;
  --muted:       #64748b;
  --border:      #dde6f0;
  --bg:          #f4f8fd;
  --white:       #ffffff;
  --wa:          #25d366;
  --wa-dark:     #1aab52;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(19,81,168,.08);
  --shadow-md:   0 6px 24px rgba(19,81,168,.13);
  --shadow-lg:   0 12px 48px rgba(19,81,168,.18);
  --font-head:   'Outfit', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  /* Ready to expand into global typography tokens:
     --h1-size, --h2-size, --body-size, --caption-size, etc. */
  /* ================================
     Hero Typography Scale Tokens
     ================================ */
  --hero-h1-size: clamp(3rem, 4.2vw, 3.5rem); /* Main hero headline size (desktop base) */
  --hero-h1-line-height: 1.14; /* Main hero headline line-height */
  --hero-sub-size: 1.125rem; /* Hero supporting paragraph size */
  --hero-sub-line-height: 1.6; /* Hero supporting paragraph line-height */
  --hero-badge-size: .69rem; /* Hero badge text size */
  --hero-badge-letter-spacing: .08em; /* Hero badge tracking for premium look */
  --hero-cta-size: .94rem; /* Hero CTA button text size */
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 900;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOP BAR ──────────────────────────────────────── */
.topbar {
  background: var(--blue-deeper);
  padding: 9px 0;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.82);
  transition: color var(--transition);
}
.topbar-badge svg,
.topbar-phone a svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: .8;
  flex-shrink: 0;
  transition: opacity var(--transition), color var(--transition);
}
.topbar-badge svg { color: rgba(255,255,255,.8); }
.topbar-badge:hover { color: var(--white); }
.topbar-badge:hover svg { color: var(--white); opacity: 1; }
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-phone a {
  background: var(--red);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-phone a:hover { background: var(--red-dark); }
.topbar-phone a:hover svg { color: var(--white); opacity: 1; }

/* ── HEADER ───────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(19,81,168,.3);
}
.logo-icon svg { color: white; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue-dark);
}
.logo-text span { color: var(--red); }
.logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.wa-label-short { display: none; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
nav a:hover { color: var(--blue); background: var(--blue-light); }
nav a.active { color: var(--blue); background: rgba(19,81,168,.12); }
.nav-item { position: relative; }
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu-chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transform: translateY(0) rotate(var(--chev-rot, 0deg));
  transform-origin: center;
  transition: transform .2s ease, color .2s ease;
}
.mega-trigger[aria-expanded="true"] .menu-chevron,
.mobile-services-toggle[aria-expanded="true"] .menu-chevron { --chev-rot: 180deg; }
.mega-trigger:hover .menu-chevron,
.mobile-services-toggle:hover .menu-chevron {
  color: var(--blue);
  transform: translateY(2px) rotate(var(--chev-rot, 0deg));
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1200px, calc(100vw - 40px));
  background: var(--white);
  border: 1px solid rgba(19,81,168,.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 20px;
  max-height: 520px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1100;
}
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-top {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(19,81,168,.2);
}
.mega-menu-kicker {
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #1f2937;
  opacity: .75;
}
.mega-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 280px;
  gap: 24px;
  align-items: start;
}
.mega-grid {
  display: grid;
  grid-column: 1 / 5;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.mega-col { min-width: 0; }
.mega-group { margin-bottom: 18px; }
.mega-group:last-child { margin-bottom: 0; }
.mega-title {
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: #1f2937;
  margin-bottom: 7px;
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .77rem;
  font-weight: 600;
  color: #29496f;
  border-radius: 6px;
  padding: 6px 8px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mega-col a svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.mega-col a:hover {
  background: #f1f5ff;
  color: #1f3f69;
}
.mega-col a:hover svg {
  transform: translateX(4px);
  transition: transform .2s ease;
}
.mega-highlight {
  grid-column: 5;
  background: linear-gradient(160deg, #eef4ff 0%, #f7faff 100%);
  border: 1px solid rgba(19,81,168,.16);
  border-radius: 12px;
  padding: 14px;
}
.mega-highlight-title {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.mega-highlight p {
  font-size: .8rem;
  line-height: 1.5;
  color: #415a79;
  margin-bottom: 12px;
}
.mega-highlight-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.mega-highlight-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-wa {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--blue-light);
  border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--blue-dark); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 45%, var(--blue) 100%);
  overflow: hidden;
  padding: 72px 0 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(59,118,204,.35), transparent),
    radial-gradient(ellipse 300px 300px at 10% 80%, rgba(232,37,26,.12), transparent);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(to bottom, rgba(7,29,62,0) 0%, rgba(11,43,90,.45) 50%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,37,26,.15);
  border: 1px solid rgba(232,37,26,.35);
  color: #ff7a74;
  font-family: var(--font-head);
  font-size: var(--hero-badge-size);
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 50px;
  letter-spacing: var(--hero-badge-letter-spacing);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.5); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: var(--hero-h1-size);
  font-weight: 800;
  color: var(--white);
  line-height: var(--hero-h1-line-height);
  letter-spacing: -.35px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(162, 209, 255, .2);
  background: linear-gradient(92deg, #9cd0ff 0%, #cae6ff 52%, #ecf7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 6px rgba(123, 184, 248, .1);
}
.hero h1 strong {
  color: #ffd166;
  font-weight: 900;
}

.hero-sub {
  font-size: var(--hero-sub-size);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 34px;
  line-height: var(--hero-sub-line-height);
}

.hero-checks {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  margin-bottom: 40px;
}
.hero-check {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.45;
}
.hero-check svg { color: #5bdf8a; flex-shrink: 0; margin-top: 1px; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}
.btn-call {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(140deg, #f03a2f 0%, var(--red) 55%, var(--red-dark) 100%);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  font-family: var(--font-head);
  font-size: calc(var(--hero-cta-size) + .05rem);
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  transition: all var(--transition);
  box-shadow: 0 10px 28px rgba(232,37,26,.36), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(232,37,26,.48), inset 0 1px 0 rgba(255,255,255,.26); }
.btn-call-sub { font-size: .7rem; font-weight: 500; opacity: .8; letter-spacing: .3px; }

.btn-wa-hero {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.886);
  border: 1.5px solid rgba(203,227,255,.48);
  color: green;
  font-family: var(--font-head);
  font-size: var(--hero-cta-size);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(4, 20, 42, .24), inset 0 1px 0 rgba(255,255,255,.24);
  transition: all var(--transition);
}
.btn-wa-hero:hover { background: rgba(180,220,255,.22); border-color: rgba(223,241,255,.78); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 3px;
}
.hero-stat-div { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* Hero card */
.hero-card {
  background: linear-gradient(140deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(216,237,255,.32);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 18px 56px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.2);
}
.hero-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(214,235,255,.22);
}
.hero-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(19,81,168,.4);
}
.hero-card-icon svg { color: white; }
.hero-card-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-card-sub { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.hero-card-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.hero-card-feat {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .88rem;
  font-weight: 500;
}
.feat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5bdf8a; flex-shrink: 0;
}

.hero-card-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px;
  border-radius: 10px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(232,37,26,.4);
  letter-spacing: .3px;
}
.hero-card-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hero-card-num { font-size: 1.25rem; }

/* ── SECTION LABELS ───────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: block; width: 18px; height: 2px;
  background: var(--blue); border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.3px;
}
.section-sub {
  font-size: .97rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 10px;
  line-height: 1.65;
}
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── SERVICES ─────────────────────────────────────── */
.services {
  padding: 88px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(19,81,168,.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08); }
.service-icon svg { color: var(--white); }
.si-blue  { background: linear-gradient(135deg, #1351a8, #3b76cc); box-shadow: 0 6px 18px rgba(19,81,168,.3); }
.si-teal  { background: linear-gradient(135deg, #0ea5e9, #38bdf8); box-shadow: 0 6px 18px rgba(14,165,233,.3); }
.si-indigo{ background: linear-gradient(135deg, #6366f1, #818cf8); box-shadow: 0 6px 18px rgba(99,102,241,.3); }
.si-green { background: linear-gradient(135deg, #059669, #34d399); box-shadow: 0 6px 18px rgba(5,150,105,.3); }
.si-amber { background: linear-gradient(135deg, #d97706, #fbbf24); box-shadow: 0 6px 18px rgba(217,119,6,.3); }
.si-orange{ background: linear-gradient(135deg, #ea580c, #fb923c); box-shadow: 0 6px 18px rgba(234,88,12,.3); }
.si-violet{ background: linear-gradient(135deg, #7c3aed, #a78bfa); box-shadow: 0 6px 18px rgba(124,58,237,.3); }
.si-red   { background: linear-gradient(135deg, #dc2626, #f87171); box-shadow: 0 6px 18px rgba(220,38,38,.3); }

.service-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.service-list li {
  font-size: .8rem;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 7px;
  line-height: 1.4;
}
.service-list li::before {
  content: '·';
  color: var(--blue);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.1;
  flex-shrink: 0;
}
.service-link {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 8px; color: var(--blue-dark); }

/* ── WHY US ───────────────────────────────────────── */
.why {
  padding: 88px 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-feat:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.why-feat-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 11px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.why-feat-icon svg { color: var(--blue); }
.why-feat-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-feat-text { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.why-stat-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.why-stat-card.accent {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-color: transparent;
}
.why-stat-card.accent .why-stat-val,
.why-stat-card.accent .why-stat-label { color: var(--white); }
.why-stat-card.red {
  background: linear-gradient(135deg, var(--red), #f55048);
  border-color: transparent;
}
.why-stat-card.red .why-stat-val,
.why-stat-card.red .why-stat-label { color: var(--white); }

.why-stat-val {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat-label {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── AREAS ────────────────────────────────────────── */
.areas {
  padding: 88px 0 108px;
  background: var(--bg);
}
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.district {
  display: flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid rgba(19,81,168,.12);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
}
.district svg { color: var(--blue); flex-shrink: 0; }
.district:hover {
  border-color: rgba(19,81,168,.35);
  color: var(--blue-dark);
  background: #f7fbff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19,81,168,.14);
}
.areas-trust-line {
  margin-top: 16px;
  font-size: .82rem;
  color: #5e7188;
}

.btn-all-areas {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 10px;
  margin-top: 18px;
  transition: all var(--transition);
}
.btn-all-areas:hover { background: var(--blue); color: var(--white); }

.location-card {
  background: linear-gradient(145deg, #0d3f83 0%, #1f5fb7 55%, #3b7bd0 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 90px;
  overflow: hidden;
}
.location-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -42px;
  top: -56px;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
  pointer-events: none;
}
.location-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.location-card p { font-size: .88rem; opacity: .8; margin-bottom: 24px; line-height: 1.6; }
.location-features {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.location-features div {
  font-size: .8rem;
  color: rgba(255,255,255,.88);
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-features div::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ee6b5;
  flex-shrink: 0;
}
.btn-location {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  padding: 13px;
  border-radius: 10px;
  transition: all var(--transition);
}
.btn-location:hover { background: var(--red-dark); transform: translateY(-1px); }
.location-card svg { color: rgba(255,255,255,.4); }
.btn-location-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1fc864;
  border: 1px solid rgba(255,255,255,.28);
  color: #ecfff5;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  padding: 11px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(31,200,100,.28);
  transition: all var(--transition);
}
.btn-location-wa:hover { background: #19b55a; transform: translateY(-1px); }

/* ── EMERGENCY CTA ────────────────────────────────── */
.emergency {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #f0352a 100%);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.emergency::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.emergency-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.emergency-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.emergency-text p { color: rgba(255,255,255,.8); font-size: .95rem; }

.emergency-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-call-white {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  color: var(--red-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: all var(--transition);
}
.btn-call-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.35); }
.btn-wa-emergency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.36);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 22px;
  border-radius: 12px;
  transition: all var(--transition);
}
.btn-wa-emergency:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.52);
  transform: translateY(-2px);
}

/* ── TRUST BAR ────────────────────────────────────── */
.trust-bar {
  background: var(--blue-deeper);
  padding: 28px 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item-title {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.trust-item-sub { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 1px; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, #08152c 0%, #0b1d3b 58%, #0b1630 100%);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .16;
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(34,117,255,.22) 0%, rgba(34,117,255,0) 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}
.footer-mini-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-mini-cta-call,
.footer-mini-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer-mini-cta-call {
  background: rgba(255, 69, 58, .2);
  border: 1px solid rgba(255, 108, 100, .36);
  color: #ffd5d2;
}
.footer-mini-cta-wa {
  background: rgba(37, 211, 102, .18);
  border: 1px solid rgba(64, 226, 126, .33);
  color: #d6ffe7;
}
.footer-mini-cta-call:hover,
.footer-mini-cta-wa:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: all var(--transition);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  transform: translateX(0);
  transition: color var(--transition), transform var(--transition);
}
.footer-links a:hover { color: var(--white); transform: translateX(4px); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item svg { color: var(--blue-mid); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span {
  font-size: .83rem; color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-item a { transition: color var(--transition), transform var(--transition); }
.footer-contact-item a:hover { color: var(--white); transform: translateX(3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a {
  color: rgba(255,255,255,.3);
  transition: color var(--transition), transform var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,.76); transform: translateX(2px); }

/* ── MOBILE NAV ───────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-light); }
.mobile-nav a.active { color: var(--blue); background: rgba(19,81,168,.12); }
.mobile-nav .btn-call { justify-content: center; margin-top: 8px; }
.mobile-nav .btn-wa { justify-content: center; }
.mobile-services-toggle {
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mobile-services-toggle:hover { color: var(--blue); background: var(--blue-light); }
.mobile-services-list {
  display: none;
  margin: 2px 0 6px;
  border: 1px solid rgba(19,81,168,.14);
  border-radius: 10px;
  padding: 8px;
  background: #f8fbff;
}
.mobile-services-list.open { display: block; }
.mobile-services-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .88rem;
}
.mobile-services-list a:hover { background: rgba(19,81,168,.08); color: var(--blue); }

/* ── FLOATING WA ──────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: all var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}
.float-wa:hover { background: var(--wa-dark); transform: scale(1.1); animation: none; }
.float-wa svg { color: white; }
@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    /* Tablet Hero Typography Tokens */
    --hero-h1-size: clamp(2.25rem, 4vw, 2.75rem);
    --hero-h1-line-height: 1.15;
    --hero-sub-size: 1.03rem;
    --hero-sub-line-height: 1.6;
    --hero-badge-size: .67rem;
    --hero-badge-letter-spacing: .08em;
    --hero-cta-size: .92rem;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .districts-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { margin-bottom: 20px; }
  .hero-badge {
    padding: 6px 12px;
  }
  .hero-sub {
    margin-bottom: 28px;
  }
  .hero-checks { gap: 12px 22px; margin-bottom: 34px; }
}

@media (max-width: 768px) {
  :root {
    /* Mobile Hero Typography Tokens */
    --hero-h1-size: clamp(1.78rem, 7vw, 2rem);
    --hero-h1-line-height: 1.18;
    --hero-sub-size: .98rem;
    --hero-sub-line-height: 1.62;
    --hero-badge-size: .7rem;
    --hero-badge-letter-spacing: .075em;
    --hero-cta-size: .88rem;
  }
  .hero h1 { margin-bottom: 18px; }
  .hero-badge {
    padding: 6px 11px;
    margin-bottom: 18px;
  }
  .hero-sub { margin-bottom: 24px; }
  .hero-checks { gap: 10px 18px; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; margin-bottom: 30px; }
  .btn-call {
    padding: 12px 20px;
  }
  .btn-wa-hero {
    padding: 12px 18px;
  }
}

@media (max-width: 900px) {
  body::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-inner .why-stats-grid { order: -1; }
  .areas-inner { grid-template-columns: 1fr; }
  .location-card { position: static; }
  nav { display: none; }
  .mega-menu { display: none; }
  .mega-layout { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
}
@media (max-width: 1200px) {
  .mega-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mega-menu {
    max-height: none;
    overflow: visible;
  }
  .mega-grid {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .mega-highlight {
    grid-column: auto;
  }
}
@media (min-width: 901px) {
  body.mega-open::before {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 640px) {
  .hero { padding: 52px 0 60px; }
  .hero::after { height: 84px; }
  .hero-check { gap: 8px; font-size: .86rem; line-height: 1.4; }
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 60px 0; }
  .areas { padding: 60px 0 76px; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-ctas { justify-content: center; }
  .footer-mini-ctas { flex-direction: column; align-items: stretch; }
  .footer-mini-cta-call, .footer-mini-cta-wa { width: 100%; }
  .footer-bottom { gap: 12px; }
  .float-wa { bottom: 88px; right: 18px; }
  .trust-items { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .topbar-badges { gap: 10px; }
  .topbar-badge:nth-child(n+3) { display: none; }
}

@media (max-width: 420px) {
  .container { padding: 0 12px; max-width: 100%; }

  .topbar { padding: 7px 0; }
  .topbar-inner {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
  }
  .topbar-badges { gap: 0; flex-wrap: nowrap; min-width: 0; }
  .topbar-badge { font-size: .72rem; white-space: nowrap; }
  .topbar-badge:nth-child(n+2) { display: none; }
  .topbar-phone { gap: 0; flex-shrink: 0; }
  .topbar-phone a {
    padding: 4px 8px;
    font-size: .72rem;
    gap: 4px;
    white-space: nowrap;
  }

  .header-inner {
    height: 62px;
    gap: 8px;
  }
  .logo { gap: 7px; min-width: 0; }
  .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .logo-icon svg {
    width: 18px;
    height: 18px;
  }
  .logo-text {
    font-size: .86rem;
    line-height: 1.05;
    white-space: nowrap;
  }
  .logo-sub { display: none; }

  .header-ctas { gap: 6px; }
  .btn-wa {
    padding: 7px 10px;
    gap: 5px;
    font-size: .78rem;
  }
  .btn-wa svg {
    width: 14px;
    height: 14px;
  }
  .wa-label-full { display: none; }
  .wa-label-short { display: inline; }

  .hamburger {
    padding: 6px;
    gap: 4px;
  }
  .hamburger span { width: 20px; }
}
