/* ==========================================================================
   CarriersGrid — Enterprise Telecom Design System
   https://carriersgrid.com
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #050b1a;
  --navy-800: #0a1730;
  --navy-700: #0f2145;
  --navy-600: #16305f;
  --navy-500: #1e3f7d;

  --cobalt-600: #1450e8;
  --cobalt-500: #2563f0;
  --cobalt-400: #4f86ff;
  --cobalt-300: #8fb4ff;

  --emerald-600: #059b6d;
  --emerald-500: #0ec283;
  --emerald-400: #34e0a1;

  --slate-50: #f7f9fc;
  --slate-100: #eef2f8;
  --slate-200: #dde4ef;
  --slate-300: #c2cddd;
  --slate-400: #8b9bb4;
  --slate-500: #647289;

  --charcoal: #14181f;
  --charcoal-soft: #3d4757;

  --white: #ffffff;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--slate-50);
  --text: var(--charcoal);
  --text-muted: var(--charcoal-soft);
  --border: var(--slate-200);

  /* Type */
  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-hero: clamp(2.4rem, 5.2vw, 4.15rem);
  --fs-h2: clamp(1.85rem, 3.4vw, 2.85rem);
  --fs-h3: clamp(1.15rem, 1.7vw, 1.4rem);
  --fs-lead: clamp(1.02rem, 1.35vw, 1.19rem);
  --fs-body: 1rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.795rem;

  /* Space */
  --container: 1240px;
  --gutter: 24px;
  --section-y: clamp(72px, 9vw, 128px);

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 23, 48, .06), 0 4px 12px rgba(10, 23, 48, .05);
  --shadow: 0 4px 10px rgba(10, 23, 48, .05), 0 18px 46px -12px rgba(10, 23, 48, .14);
  --shadow-lg: 0 8px 20px rgba(10, 23, 48, .07), 0 34px 80px -20px rgba(10, 23, 48, .26);
  --shadow-glow: 0 12px 34px -10px rgba(20, 80, 232, .55);
  --ease: cubic-bezier(.22, .68, .32, 1);
  --t: .38s var(--ease);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.028em;
  color: var(--navy-900);
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.018em; line-height: 1.32; }
p  { margin: 0; }

::selection { background: var(--cobalt-500); color: #fff; }

:focus-visible {
  outline: 3px solid var(--cobalt-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background:
    radial-gradient(900px 460px at 12% -8%, rgba(37,99,240,.30), transparent 62%),
    radial-gradient(760px 420px at 92% 108%, rgba(14,194,131,.20), transparent 60%),
    var(--navy-900);
  color: #d7e0ee;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--tight { padding-block: clamp(56px, 6vw, 84px); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  margin-top: 18px;
  font-size: var(--fs-lead);
  color: var(--text-muted);
}
.section--dark .section-head p { color: #a8b8ce; }

.grid { display: grid; gap: clamp(20px, 2.2vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

/* ---------- 4. Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cobalt-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cobalt-500), var(--emerald-500));
}
.section--dark .eyebrow { color: var(--emerald-400); }

.lead { font-size: var(--fs-lead); color: var(--text-muted); }
.section--dark .lead { color: #a8b8ce; }
.muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1100;
  padding: 12px 22px;
  font-size: .9rem; font-weight: 700;
  color: #fff; background: var(--cobalt-600);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform .28s var(--ease);
}
.skip-link:focus { transform: none; }
.gradient-text {
  background: linear-gradient(96deg, var(--cobalt-400) 8%, var(--emerald-400) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .02em;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 240, .09);
  color: var(--cobalt-600);
  border: 1px solid rgba(37, 99, 240, .16);
}
.pill--light {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  color: #cddcf5;
  backdrop-filter: blur(8px);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-400);
  box-shadow: 0 0 0 0 rgba(52, 224, 161, .65);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(52, 224, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 224, 161, 0); }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-size: .955rem; font-weight: 700; letter-spacing: -.005em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--cobalt-500), var(--cobalt-600));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -10px rgba(20, 80, 232, .68); }

.btn--emerald {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: #04241a;
  box-shadow: 0 12px 32px -10px rgba(14, 194, 131, .6);
}
.btn--emerald:hover { transform: translateY(-2px); }

.btn--ghost {
  background: transparent; color: var(--navy-800);
  border: 1.5px solid var(--slate-300);
}
.btn--ghost:hover { border-color: var(--navy-700); background: var(--slate-50); transform: translateY(-2px); }

.btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .13); border-color: rgba(255, 255, 255, .45); transform: translateY(-2px); }

.btn--sm { padding: 11px 21px; font-size: .875rem; }
.btn--lg { padding: 17px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .93rem;
  color: var(--cobalt-600);
  transition: gap var(--t), color var(--t);
}
.link-arrow:hover { gap: 13px; }
.link-arrow svg { width: 15px; height: 15px; }
.section--dark .link-arrow { color: var(--emerald-400); }

/* ---------- 6. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: background var(--t), box-shadow var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; gap: 22px;
  height: 78px;
  transition: height var(--t);
}
.header.is-stuck {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 26px -16px rgba(10, 23, 48, .5);
}
.header.is-stuck .header__inner { height: 68px; }

/* Header over dark hero (home page) */
.header--overlay .nav__link,
.header--overlay .brand__name { color: #fff; }
.header--overlay .nav__link:hover { color: var(--emerald-400); }
.header--overlay .burger span { background: #fff; }
.header--overlay .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.header--overlay .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.header--overlay.is-stuck .nav__link,
.header--overlay.is-stuck .brand__name { color: var(--navy-800); }
.header--overlay.is-stuck .nav__link:hover { color: var(--cobalt-600); }
.header--overlay.is-stuck .burger span { background: var(--navy-800); }
.header--overlay.is-stuck .btn--ghost { color: var(--navy-800); border-color: var(--slate-300); }

/* Non-overlay pages need a solid bar from the start */
.header--solid {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--border);
}

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand__name {
  font-size: 1.235rem; font-weight: 800; letter-spacing: -.035em;
  color: var(--navy-900);
  transition: color var(--t);
}
.brand__name b { font-weight: 800; color: var(--cobalt-500); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 15px;
  font-size: .935rem; font-weight: 600;
  color: var(--charcoal-soft);
  border-radius: var(--radius-pill);
  transition: color var(--t), background var(--t);
}
.nav__link:hover { color: var(--cobalt-600); }
.nav__link.is-active { color: var(--cobalt-600); font-weight: 700; }
.header--overlay .nav__link.is-active { color: var(--emerald-400); }
.header--overlay.is-stuck .nav__link.is-active { color: var(--cobalt-600); }
.nav__link .caret { width: 11px; height: 11px; transition: transform var(--t); opacity: .7; }
.nav__item:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translate(-50%, 10px);
  width: 560px;
  padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.dropdown__item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px; border-radius: var(--radius-sm);
  transition: background var(--t);
}
.dropdown__item:hover { background: var(--slate-50); }
.dropdown__icon {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,240,.12), rgba(14,194,131,.12));
  color: var(--cobalt-600);
}
.dropdown__icon svg { width: 19px; height: 19px; }
.dropdown__t { font-size: .925rem; font-weight: 700; color: var(--navy-800); }
.dropdown__d { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.5; margin-top: 2px; }

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

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border-radius: 10px;
}
.burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--navy-800);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 899;
  padding: 100px var(--gutter) 40px;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 17px 4px;
  font-size: 1.28rem; font-weight: 700;
  color: var(--navy-800);
  border-bottom: 1px solid var(--slate-100);
}
.mobile-nav a.sub {
  font-size: 1rem; font-weight: 600; padding-left: 18px;
  color: var(--text-muted); border-bottom-color: var(--slate-50);
}
.mobile-nav__cta { display: grid; gap: 12px; margin-top: 32px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(130px, 15vw, 175px);
  padding-bottom: clamp(80px, 10vw, 128px);
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(37, 99, 240, .34), transparent 60%),
    radial-gradient(880px 560px at 8% 88%, rgba(14, 194, 131, .18), transparent 58%),
    linear-gradient(168deg, var(--navy-900) 0%, var(--navy-800) 52%, #071026 100%);
  color: #c9d5e8;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 40%, #000 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 8%, transparent 74%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(40px, 5vw, 66px);
  align-items: center;
}
.hero h1 { color: #fff; }
.hero__sub {
  margin-top: 24px;
  font-size: clamp(1.04rem, 1.45vw, 1.235rem);
  color: #a6b7d0;
  max-width: 585px;
  line-height: 1.62;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 12px 30px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__meta div { display: flex; align-items: center; gap: 9px; font-size: var(--fs-sm); color: #93a5c2; }
.hero__meta svg { width: 17px; height: 17px; color: var(--emerald-400); flex: none; }

/* Globe visual */
.globe { position: relative; aspect-ratio: 1; width: 100%; max-width: 520px; margin-inline: auto; }
.globe svg { width: 100%; height: 100%; overflow: visible; }
.globe__spin { transform-origin: 260px 260px; animation: spin 44s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.globe__float { animation: float 7s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-13px); } }

.arc { stroke-dasharray: 220; stroke-dashoffset: 220; animation: draw 3.4s var(--ease) infinite; }
@keyframes draw {
  0%   { stroke-dashoffset: 220; opacity: 0; }
  22%  { opacity: 1; }
  62%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -220; opacity: 0; }
}
.node-pulse { animation: nodePulse 2.8s ease-in-out infinite; transform-origin: center; }
@keyframes nodePulse {
  0%, 100% { opacity: .28; r: 4; }
  50%      { opacity: .95; r: 7.5; }
}

.hero__badge {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 16px;
  background: rgba(11, 22, 45, .74);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, .8);
}
.hero__badge .n { font-size: 1.14rem; font-weight: 800; color: #fff; line-height: 1.15; }
.hero__badge .l { font-size: .72rem; color: #8fa2c0; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.hero__badge .ic {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px;
  background: linear-gradient(135deg, rgba(37,99,240,.28), rgba(14,194,131,.28));
  color: var(--emerald-400);
}
.hero__badge .ic svg { width: 17px; height: 17px; }
.hero__badge--a { top: 10%; left: -4%; animation: float 6s ease-in-out infinite; }
.hero__badge--b { bottom: 12%; right: -3%; animation: float 6s ease-in-out infinite 1.6s; }

/* Page hero (inner pages) */
.page-hero {
  padding-top: clamp(126px, 13vw, 168px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background:
    radial-gradient(880px 480px at 84% 6%, rgba(37, 99, 240, .3), transparent 62%),
    radial-gradient(700px 420px at 4% 96%, rgba(14, 194, 131, .16), transparent 58%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: #b7c6dc;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 60% 20%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 60% 20%, #000, transparent 72%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 15ch; }
.page-hero p { margin-top: 20px; max-width: 640px; font-size: var(--fs-lead); color: #a2b3cd; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: var(--fs-xs); color: #7f92b1; margin-bottom: 20px; font-weight: 600; }
.crumbs a:hover { color: var(--emerald-400); }
.crumbs span { opacity: .5; }

/* ---------- 8. Cards ---------- */
.card {
  position: relative;
  padding: clamp(26px, 2.6vw, 34px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--cobalt-500), var(--emerald-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: 11px; }
.card p { color: var(--text-muted); font-size: .955rem; }

.card--dark {
  background: rgba(255, 255, 255, .038);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}
.card--dark h3 { color: #fff; }
.card--dark p { color: #9fb0c8; }
.card--dark:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255,255,255,.2); box-shadow: 0 30px 70px -24px rgba(0,0,0,.75); }

.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(37, 99, 240, .12), rgba(14, 194, 131, .13));
  color: var(--cobalt-600);
  transition: transform var(--t);
}
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon svg { width: 25px; height: 25px; }
.card--dark .card__icon {
  background: linear-gradient(135deg, rgba(79,134,255,.2), rgba(52,224,161,.2));
  color: var(--emerald-400);
}

.card__num {
  position: absolute; top: 20px; right: 26px;
  font-size: 3.1rem; font-weight: 800; line-height: 1;
  color: var(--slate-100);
  letter-spacing: -.05em;
  transition: color var(--t);
}
.card:hover .card__num { color: rgba(37, 99, 240, .16); }

.feature-list { display: grid; gap: 11px; margin-top: 22px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .925rem; color: var(--text-muted); }
.feature-list svg { width: 18px; height: 18px; flex: none; color: var(--emerald-500); margin-top: 3px; }
.section--dark .feature-list li { color: #9fb0c8; }

/* ---------- 9. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { text-align: center; position: relative; padding: 10px 8px; }
.stat + .stat::before {
  content: ''; position: absolute; left: calc(-1 * clamp(10px, 1.5vw, 20px)); top: 18%; bottom: 18%;
  width: 1px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.2), transparent);
}
.stat__n {
  font-size: clamp(2.15rem, 4vw, 3.25rem); font-weight: 800; line-height: 1;
  letter-spacing: -.045em;
  background: linear-gradient(120deg, #fff 18%, var(--cobalt-300) 62%, var(--emerald-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__l { margin-top: 12px; font-size: var(--fs-sm); color: #93a5c2; font-weight: 600; }

.stats--light .stat__n {
  background: linear-gradient(120deg, var(--navy-800), var(--cobalt-600) 70%, var(--emerald-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats--light .stat__l { color: var(--text-muted); }
.stats--light .stat + .stat::before { background: linear-gradient(180deg, transparent, var(--slate-200), transparent); }

/* ---------- 10. Map ---------- */
.map-wrap {
  position: relative;
  padding: clamp(20px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
}
.map-wrap svg { width: 100%; height: auto; }
.map-dot { fill: var(--cobalt-400); opacity: .55; transition: opacity .3s, r .3s; }
.map-hub { fill: var(--emerald-400); cursor: pointer; }
.map-hub-ring { fill: none; stroke: var(--emerald-400); opacity: 0; }
.map-node { cursor: pointer; }
.map-node:hover .map-hub { fill: #fff; }
.map-node:hover .map-hub-ring { opacity: .55; }
@keyframes ping {
  0%   { r: 5; opacity: .7; }
  100% { r: 20; opacity: 0; }
}
.map-ping { animation: ping 2.8s ease-out infinite; fill: none; stroke: var(--emerald-400); stroke-width: 1.4; }

.map-legend { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 26px; justify-content: center; }
.map-legend div { display: flex; align-items: center; gap: 9px; font-size: var(--fs-sm); color: #9fb0c8; }
.map-legend i { width: 10px; height: 10px; border-radius: 50%; display: block; }

.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.region {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  transition: background var(--t), transform var(--t), border-color var(--t);
}
.region:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); border-color: rgba(52,224,161,.4); }
.region__n { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.region__t { font-size: .935rem; font-weight: 700; color: var(--emerald-400); margin-top: 6px; }
.region__d { font-size: var(--fs-xs); color: #8ea0bb; margin-top: 8px; line-height: 1.55; }

/* ---------- 11. Logos ---------- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; gap: 68px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.11rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--slate-400);
  white-space: nowrap;
  filter: grayscale(1); opacity: .72;
  transition: opacity var(--t), filter var(--t), color var(--t);
}
.marquee__item:hover { opacity: 1; filter: grayscale(0); color: var(--navy-700); }
.marquee__item svg { width: 24px; height: 24px; flex: none; }

/* ---------- 12. Testimonials ---------- */
.tslider { position: relative; max-width: 900px; margin-inline: auto; }
.tslide {
  display: none;
  text-align: center;
  animation: fadeUp .55s var(--ease);
}
.tslide.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }
.tslide__q {
  font-size: clamp(1.18rem, 2.15vw, 1.66rem);
  font-weight: 600; line-height: 1.52; letter-spacing: -.022em;
  color: #fff;
}
.tslide__q::before { content: '\201C'; }
.tslide__q::after  { content: '\201D'; }
.tslide__who { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 34px; }
.tslide__av {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.02rem; color: #fff;
  background: linear-gradient(135deg, var(--cobalt-500), var(--emerald-600));
  flex: none;
}
.tslide__nm { font-weight: 700; color: #fff; font-size: 1rem; line-height: 1.35; text-align: left; }
.tslide__rl { font-size: var(--fs-sm); color: #93a5c2; text-align: left; }
.tdots { display: flex; justify-content: center; gap: 9px; margin-top: 40px; }
.tdot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .24);
  transition: width var(--t), background var(--t);
}
.tdot.is-active { width: 30px; border-radius: 5px; background: var(--emerald-400); }
.tstars { display: flex; justify-content: center; gap: 4px; margin-bottom: 26px; color: var(--emerald-400); }
.tstars svg { width: 19px; height: 19px; }

/* ---------- 13. Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.plan {
  position: relative;
  padding: 34px 30px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan--featured {
  border-color: var(--cobalt-500);
  box-shadow: var(--shadow-lg);
  transform: scale(1.028);
}
.plan--featured:hover { transform: scale(1.028) translateY(-6px); }
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 17px;
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--cobalt-500), var(--emerald-600));
  white-space: nowrap;
}
.plan__name { font-size: 1.16rem; font-weight: 800; color: var(--navy-900); }
.plan__for { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 6px; }
.plan__price {
  display: flex; align-items: flex-end; gap: 5px;
  margin: 24px 0 4px;
  font-size: 2.85rem; font-weight: 800; letter-spacing: -.05em; line-height: 1;
  color: var(--navy-900);
}
.plan__price small { font-size: .875rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; margin-bottom: 7px; }
.plan__note { font-size: var(--fs-xs); color: var(--slate-500); }
.plan .btn { margin: 26px 0 24px; }
.plan__feats { display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.plan__feats li { display: flex; gap: 11px; font-size: .91rem; color: var(--charcoal-soft); align-items: flex-start; }
.plan__feats svg { width: 17px; height: 17px; flex: none; color: var(--emerald-500); margin-top: 3px; }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .925rem; }
table.cmp th, table.cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--slate-100); }
table.cmp thead th {
  background: var(--slate-50);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--navy-800);
}
table.cmp tbody th { font-weight: 700; color: var(--navy-800); }
table.cmp td { color: var(--text-muted); }
table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp tbody tr:hover { background: var(--slate-50); }
.tick { color: var(--emerald-600); font-weight: 800; }
.cross { color: var(--slate-300); font-weight: 800; }

/* ---------- 14. Accordion ---------- */
.acc { border-top: 1px solid var(--border); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  width: 100%; padding: 24px 4px;
  text-align: left;
  font-size: 1.045rem; font-weight: 700; color: var(--navy-800);
  transition: color var(--t);
}
.acc__btn:hover { color: var(--cobalt-600); }
.acc__ico {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--slate-100); color: var(--navy-700);
  transition: transform var(--t), background var(--t), color var(--t);
}
.acc__ico svg { width: 15px; height: 15px; }
.acc__item.is-open .acc__ico { transform: rotate(45deg); background: var(--cobalt-500); color: #fff; }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc__panel p { padding: 0 60px 26px 4px; color: var(--text-muted); font-size: .96rem; }

/* ---------- 15. Tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.tab {
  padding: 11px 22px;
  font-size: .925rem; font-weight: 700;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: #fff;
  transition: all var(--t);
}
.tab:hover { border-color: var(--cobalt-400); color: var(--cobalt-600); }
.tab.is-active {
  background: linear-gradient(135deg, var(--cobalt-500), var(--cobalt-600));
  border-color: transparent; color: #fff;
  box-shadow: var(--shadow-glow);
}
.tabpanel { display: none; animation: fadeUp .45s var(--ease); }
.tabpanel.is-active { display: block; }

/* ---------- 16. Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: var(--fs-sm); font-weight: 700; color: var(--navy-800); }
.field label span { color: var(--cobalt-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .945rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cobalt-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 240, .13);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #e2483d; }
.field .err { font-size: var(--fs-xs); color: #e2483d; display: none; }
.field.has-error .err { display: block; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.check input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--cobalt-500); }
.form__note { font-size: var(--fs-xs); color: var(--slate-500); }
.form-success {
  display: none;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(14, 194, 131, .1);
  border: 1px solid rgba(14, 194, 131, .3);
  color: var(--emerald-600);
  font-size: .93rem; font-weight: 600;
}
.form-success.is-visible { display: block; animation: fadeUp .4s var(--ease); }
.form-success.is-error {
  background: rgba(226, 72, 61, .09);
  border-color: rgba(226, 72, 61, .32);
  color: #c23b31;
}

.form-card {
  padding: clamp(28px, 3.2vw, 42px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Newsletter */
.newsletter { display: flex; gap: 10px; margin-top: 18px; }
.newsletter input {
  flex: 1; min-width: 0;
  padding: 13px 17px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: .91rem;
}
.newsletter input::placeholder { color: #7b8dab; }
.newsletter input:focus { outline: none; border-color: var(--emerald-400); background: rgba(255,255,255,.1); }
.newsletter.has-error input { border-color: #ff7a70; background: rgba(255, 122, 112, .09); }
.newsletter button {
  flex: none; width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: #04241a;
  transition: transform var(--t);
}
.newsletter button:hover { transform: scale(1.07); }
.newsletter button svg { width: 19px; height: 19px; }

/* ---------- 17. Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: 22px;
  background: rgba(5, 11, 26, .68);
  backdrop-filter: blur(7px);
  opacity: 0; visibility: hidden;
  transition: opacity .32s var(--ease), visibility .32s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  padding: clamp(26px, 3.4vw, 40px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97);
  transition: transform .38s var(--ease);
}
.modal.is-open .modal__box { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--slate-100); color: var(--navy-800);
  transition: background var(--t), transform var(--t);
}
.modal__close:hover { background: var(--slate-200); transform: rotate(90deg); }
.modal__close svg { width: 17px; height: 17px; }

/* ---------- 18. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  padding: clamp(46px, 5.4vw, 76px);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(700px 340px at 20% 0%, rgba(37, 99, 240, .42), transparent 62%),
    radial-gradient(600px 320px at 84% 100%, rgba(14, 194, 131, .3), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 76%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { margin: 20px auto 0; max-width: 60ch; color: #a6b7d0; font-size: var(--fs-lead); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* ---------- 19. Footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--navy-900), #030713);
  color: #93a5c2;
  padding-top: clamp(58px, 6.5vw, 88px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.5fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: 54px;
}
.footer__bio { font-size: .925rem; line-height: 1.72; margin-top: 20px; max-width: 34ch; }
.footer .brand__name { color: #fff; }
.footer h4 {
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.footer__links { display: grid; gap: 13px; }
.footer__links a { font-size: .925rem; transition: color var(--t), padding-left var(--t); }
.footer__links a:hover { color: var(--emerald-400); padding-left: 5px; }
.footer__contact { display: grid; gap: 17px; margin-bottom: 6px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .91rem; line-height: 1.6; }
.footer__contact svg { width: 17px; height: 17px; flex: none; color: var(--emerald-400); margin-top: 3px; }
.footer__contact a:hover { color: var(--emerald-400); }
.footer__role { display: block; font-size: .775rem; color: #7f92b1; margin-top: 2px; }
.socials { display: flex; gap: 10px; margin-top: 26px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  color: #b9c8de;
  transition: all var(--t);
}
.socials a:hover { background: var(--cobalt-500); color: #fff; transform: translateY(-3px); border-color: transparent; }
.socials svg { width: 17px; height: 17px; }
.footer__bar {
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center; justify-content: space-between;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: var(--fs-xs);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bar a:hover { color: var(--emerald-400); }
.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.footer__badges span {
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: .705rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); color: #8fa2c0;
}

/* ---------- 20. Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .74s var(--ease), transform .74s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.progress {
  position: fixed; top: 0; left: 0; z-index: 950;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cobalt-500), var(--emerald-400));
  transition: width .08s linear;
}

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 880;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy-800); color: #fff;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--t);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--cobalt-600); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- 21. Misc blocks ---------- */
.steps { display: grid; gap: 0; counter-reset: s; }
.step {
  display: grid; grid-template-columns: 62px 1fr; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: 0; }
.step__n {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-weight: 800; font-size: 1.05rem;
  background: linear-gradient(135deg, rgba(37,99,240,.12), rgba(14,194,131,.13));
  color: var(--cobalt-600);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .955rem; }

.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--cobalt-500), var(--emerald-500), transparent);
}
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ''; position: absolute; left: -34px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--cobalt-500);
}
.timeline__y { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .1em; color: var(--emerald-600); text-transform: uppercase; }
.timeline__item h3 { margin: 7px 0 8px; font-size: 1.1rem; }
.timeline__item p { color: var(--text-muted); font-size: .945rem; }

.value-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.value-strip > div { background: #fff; padding: 30px 28px; transition: background var(--t); }
.value-strip > div:hover { background: var(--slate-50); }
.value-strip h3 { font-size: 1.06rem; margin-bottom: 9px; }
.value-strip p { font-size: .92rem; color: var(--text-muted); }

.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.person { text-align: center; }
.person__av {
  width: 96px; height: 96px; margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--cobalt-600));
  box-shadow: var(--shadow);
}
.person h3 { font-size: 1.03rem; }
.person p { font-size: var(--fs-sm); color: var(--cobalt-600); font-weight: 600; margin-top: 4px; }
.person small { display: block; font-size: var(--fs-xs); color: var(--text-muted); margin-top: 9px; line-height: 1.6; }

.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ctile {
  padding: 28px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t);
}
.ctile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ctile__ic {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(135deg, rgba(37,99,240,.12), rgba(14,194,131,.13));
  color: var(--cobalt-600); margin-bottom: 18px;
}
.ctile__ic svg { width: 22px; height: 22px; }
.ctile h3 { font-size: 1.02rem; margin-bottom: 7px; }
.ctile p { font-size: .91rem; color: var(--text-muted); }
.ctile a { color: var(--cobalt-600); font-weight: 700; font-size: .93rem; }
.ctile a:hover { text-decoration: underline; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1080px) {
  .nav, .header__cta .btn--primary { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__cta { margin-left: 0; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions, .hero__meta { justify-content: center; }
  .hero__meta { border-top: 0; }
  .globe { max-width: 420px; order: -1; margin-bottom: 12px; }
  .hero__badge--a { left: 0; } .hero__badge--b { right: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .stat + .stat::before { display: none; }
  .value-strip { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 36px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .btn { width: 100%; }
  .header__cta .btn { width: auto; }
  .mobile-nav .btn, .cta-band .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__meta { flex-direction: column; align-items: center; gap: 12px; }
  .card__num { font-size: 2.4rem; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

@media print {
  .header, .mobile-nav, .to-top, .progress, .modal { display: none !important; }
  body { color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---- Header / mobile phone link (added Sep 2026) ---- */
.header__phone{display:inline-flex;align-items:center;gap:8px;font-size:.9rem;font-weight:700;color:#fff;letter-spacing:.01em;white-space:nowrap;padding:6px 4px;transition:color var(--t)}
.header__phone svg{width:17px;height:17px;display:inline-block;color:var(--emerald-400)}
.header__phone:hover{color:var(--emerald-400)}
.header--overlay .header__phone{color:#fff}
@media (max-width:1180px){.header__phone span{display:none}}
@media (max-width:900px){.header__phone{display:none}}
.mobile-nav__phone{display:flex!important;align-items:center;gap:10px;margin-top:6px;font-weight:700;color:var(--emerald-400)!important}
.mobile-nav__phone svg{width:18px;height:18px;display:inline-block}
