:root {
  --blue-950: #06204b;
  --blue-900: #07376e;
  --blue-800: #005395;
  --blue-700: #006db8;
  --blue-600: #0789c9;
  --text: #071d42;
  --muted: #6f7786;
  --line: #dfe5ec;
  --surface: #ffffff;
  --soft: #f5f7fa;
  --shadow: 0 12px 28px rgba(10, 39, 78, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(7, 137, 201, 0.4);
  outline-offset: 3px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: #fff;
  border-bottom: 6px solid var(--blue-900);
  box-shadow: 0 2px 18px rgba(4, 30, 67, 0.06);
  transition: z-index 0ms;
}

/* Lift header's stacking context above overlay when mobile drawer is open */
.site-header.is-open {
  z-index: 210;
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 0;
}

.brand {
  display: block;
  width: 260px;
  flex: 0 0 auto;
  margin-right: 20px;
}

.header-stack {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.header-search {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}

.search-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(7, 55, 110, 0.18);
  border-radius: 50%;
  color: var(--blue-900);
  background: #fff;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.search-toggle:hover {
  color: var(--blue-600);
  border-color: rgba(7, 137, 201, 0.35);
  background: var(--soft);
}

.search-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.search-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  width: min(320px, 78vw);
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.header-search.is-open .search-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-panel input {
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
}

.search-panel button {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--blue-700);
  cursor: pointer;
}

.search-panel button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: var(--blue-900);
  font-size: 15px;
  font-weight: 700;
}

.primary-nav > a,
.mega-toggle {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 5px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav > a::after,
.mega-toggle::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.primary-nav > a:hover,
.primary-nav > a.active,
.mega-toggle:hover {
  color: var(--blue-600);
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after,
.has-mega.is-open .mega-toggle::after {
  transform: scaleX(1);
}

.mega-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.has-mega {
  position: relative;
}

/* Mobile nav overlay — blur effect */
.mega-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(4, 20, 52, 0.32);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 340ms ease;
}

.mega-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Mega menu — original dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  display: grid;
  width: min(520px, calc(100vw - 30px));
  padding: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  border-top: 4px solid var(--blue-700);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.has-mega:hover .mega-toggle svg,
.has-mega.is-open .mega-toggle svg {
  transform: rotate(180deg);
}

.mega-menu strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 15px;
  font-weight: 900;
}

.mega-menu a {
  display: block;
  padding: 7px 0;
  color: #31506f;
  font-size: 14px;
  font-weight: 600;
}

.mega-menu a:hover {
  color: var(--blue-700);
}

.mega-note {
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.mega-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

.mega-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.mobile-nav-head {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  flex: 0 0 auto;
  padding: 9px;
  border: 1px solid rgba(7, 55, 110, 0.18);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  background: var(--blue-900);
}

.hero-swiper {
  position: relative;
  overflow: hidden;
}

.hero-swiper,
.hero-slide {
  min-height: 430px;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  background: var(--blue-900);
}

.hero-slide--video::after {
  background: linear-gradient(90deg, rgba(6, 32, 75, 0.72) 0%, rgba(6, 32, 75, 0.2) 34%, rgba(6, 32, 75, 0.04) 58%);
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 32, 75, 0.18), rgba(6, 32, 75, 0.04) 48%, rgba(6, 32, 75, 0.08));
  content: "";
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-backdrop img,
.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video {
  pointer-events: none;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-copy-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-copy {
  pointer-events: auto;
  width: min(100%, 330px);
  padding: 24px 24px 22px;
  color: #fff;
  background: rgba(5, 30, 75, 0.78);
  backdrop-filter: blur(2px);
}

.hero-copy h1 {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-600);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
}

.hero-copy a {
  display: inline-flex;
  min-width: 118px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-copy a:hover {
  color: var(--blue-900);
  background: #fff;
  transform: translateY(-1px);
}

.hero-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-nav:hover {
  background: var(--blue-900);
  transform: translateY(-50%) scale(1.05);
}

.hero-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-pagination {
  bottom: 16px !important;
}

.hero-pagination .swiper-pagination-bullet,
.news-pagination .swiper-pagination-bullet,
.business-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: #13a4dc;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active,
.news-pagination .swiper-pagination-bullet-active,
.business-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: var(--blue-800);
}

.businesses-section {
  padding: 36px 0 44px;
  background: #fff;
}

.businesses-section h2,
.clients-section h2 {
  margin: 0;
  color: var(--blue-900);
  text-align: center;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}

.business-swiper {
  overflow: hidden;
  margin-top: 32px;
  padding-bottom: 44px;
}

.business-pagination {
  display: none;
  bottom: 8px !important;
}

.business-item {
  min-width: 0;
  text-align: center;
}

.business-item img {
  width: 128px;
  height: 128px;
  margin: 0 auto 15px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(8, 36, 75, 0.12);
}

.business-item h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.24rem;
  line-height: 1.15;
  font-weight: 900;
}

.business-item p {
  max-width: 190px;
  margin: 8px auto 0;
  color: #304a69;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 600;
}

.stats-band {
  color: #fff;
  background: linear-gradient(90deg, #004785 0%, #006eb8 50%, #004785 100%);
}

.stats-inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: 72px repeat(6, 1fr);
  align-items: center;
}

.stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-item {
  position: relative;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
}

.stat-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 58px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%);
  content: "";
}

.stat-item strong {
  display: block;
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.stat-item span {
  display: block;
  margin-top: 7px;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 800;
}

.media-section {
  padding: 64px 0 48px;
  background: #fff;
}

.news-swiper {
  overflow: hidden;
  padding: 0 0 48px;
}

.media-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 39, 78, 0.13);
}

.media-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-body {
  padding: 24px 24px 20px;
  color: #7b8491;
}

.media-body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.85;
  font-weight: 600;
}

.media-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  font-size: 0.82rem;
  line-height: 1;
}

.media-meta a {
  color: var(--blue-800);
  font-weight: 900;
}

.media-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777f8c;
  white-space: nowrap;
}

.media-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-pagination {
  bottom: 8px !important;
}

.world-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle, rgba(176, 185, 196, 0.42) 1.8px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(90deg, #f4f4f4 0%, #f8f8f8 48%, #eeeeee 100%);
}

.world-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 570px) 1fr;
  align-items: center;
  gap: 32px;
}

.world-copy {
  position: relative;
  z-index: 2;
}

.world-copy h2 {
  margin: 0 0 16px;
  color: #0a1f5b;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 600;
  text-wrap: balance;
}

.world-copy p {
  max-width: 580px;
  margin: 0;
  color: #131313;
  font-size: 1rem;
  line-height: 1.95;
}

.read-more {
  display: inline-flex;
  min-width: 144px;
  min-height: 44px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(180deg, #078fd0, #0066ad);
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 180ms ease, filter 180ms ease;
}

.read-more:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.map-visual {
  position: relative;
  min-height: 280px;
  overflow: visible;
}

.world-map {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-pin-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  border: 3px solid #4db8f0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(77, 184, 240, 0.28);
}

.map-pin:hover .map-pin-icon,
.map-pin:focus-visible .map-pin-icon {
  border-color: #7fd4ff;
  box-shadow: 0 0 0 5px rgba(127, 212, 255, 0.4);
}

.map-tooltip {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 12px);
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 12px 14px;
  gap: 4px;
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 32, 75, 0.94);
  box-shadow: 0 10px 24px rgba(6, 32, 75, 0.22);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  text-align: left;
  white-space: normal;
}

.map-tooltip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: rgba(6, 32, 75, 0.94);
  transform: translateX(-50%);
  content: "";
}

.map-tooltip strong {
  font-size: 0.92rem;
}

.map-tooltip span {
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 400;
  opacity: 0.92;
}

.map-pin:hover .map-tooltip,
.map-pin:focus-visible .map-tooltip {
  opacity: 1;
  visibility: visible;
}

.pin-paris { top: 29%; left: 49.8%; }
.pin-tehran { top: 34.5%; left: 58.2%; }
.pin-dubai { top: 38.5%; left: 60%; }
.pin-south-africa { top: 67.5%; left: 54.5%; }

.clients-section {
  padding: 30px 0 42px;
  background: #fff;
  text-align: center;
}

.clients-section h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.clients-section p {
  max-width: 820px;
  margin: 10px auto 26px;
  color: #24364e;
  font-size: 0.9rem;
  font-weight: 600;
}

.clients-swiper {
  overflow: hidden;
  padding: 0;
}

.client-logo {
  display: grid;
  min-height: 74px;
  place-items: center;
}

.client-logo span {
  display: inline-flex;
  min-width: 112px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid #edf0f4;
  box-shadow: 0 8px 18px rgba(15, 45, 80, 0.07);
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
}

.clients-pagination {
  display: none !important;
}

.contact-band {
  color: #fff;
  background: linear-gradient(90deg, #004b88 0%, #0070b9 45%, #004b88 100%);
}

.contact-inner {
  display: grid;
  min-height: 116px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.contact-icon {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #0064ad;
}

.contact-icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item strong {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 900;
}

.contact-item span {
  font-size: 0.94rem;
  line-height: 1.65;
}

.site-footer {
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 64px;
  padding: 32px 15px 28px;
}

.footer-inner h2 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.footer-about p {
  max-width: 520px;
  margin: 0 0 12px;
  color: #4b9bd2;
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 700;
}

.footer-about strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-900);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-inner li {
  margin: 0 0 8px;
  color: #3396d1;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-inner li::before {
  color: #f28b22;
  content: "› ";
}

.copyright {
  color: #fff;
  background: #002e5b;
  font-size: 0.82rem;
}

.copyright-inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .site-header {
    border-bottom-width: 4px;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 220px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav-head {
    display: flex;
  }

  .header-stack {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: min(320px, 88vw);
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: 8px 0 48px rgba(6, 30, 72, 0.22);
    border-right: 4px solid var(--blue-700);
    transform: translateX(-110%);
    transition: transform 380ms cubic-bezier(0.32, 0, 0.15, 1);
    overflow-y: auto;
    visibility: hidden;
  }

  .site-header.is-open .header-stack {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--blue-950);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
    background: var(--soft);
  }

  .mobile-nav-close {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--blue-900);
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
  }

  .mobile-nav-close:hover {
    background: var(--blue-900);
    color: #fff;
  }

  .mobile-nav-close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
  }

  .header-search {
    margin-left: auto;
  }

  .brand {
    width: 180px;
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 1rem;
    padding: 8px 0;
    flex: 1;
  }

  .primary-nav > a,
  .mega-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 50px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .primary-nav > a::after,
  .mega-toggle::after {
    display: none;
  }

  /* Mega menu — collapse to inline on mobile (inside side drawer) */
  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 0;
    padding: 14px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: 2px solid var(--blue-700);
    border-left: 3px solid var(--blue-600);
    background: var(--soft);
  }

  .has-mega.is-open .mega-menu {
    display: grid;
  }

  .hero-swiper,
  .hero-slide {
    min-height: 390px;
  }

  .hero-copy {
    width: min(100%, 320px);
  }

  .stats-inner {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 0;
  }

  .stats-icon {
    display: none;
  }

  .stat-item::before {
    display: none;
  }

  .world-inner {
    grid-template-columns: 1fr;
  }

  .map-visual {
    min-height: 180px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .brand {
    width: 205px;
  }

  .hero-swiper,
  .hero-slide {
    min-height: 430px;
  }

  .hero-backdrop img,
  .hero-backdrop video {
    object-position: 62% center;
  }

  .hero-copy-wrap {
    align-items: flex-end;
    padding-bottom: 52px;
  }

  .hero-slide--video .hero-copy-wrap {
    align-items: center;
    padding-bottom: 0;
  }

  .hero-copy {
    width: min(100%, 330px);
    padding: 20px;
  }

  .hero-nav {
    width: 32px;
    height: 32px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .businesses-section,
  .media-section,
  .world-section {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .business-pagination {
    display: block;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .client-logo span {
    min-width: 130px;
  }

  .contact-item {
    gap: 18px;
  }

  .contact-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .copyright-inner {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand {
    width: 188px;
  }

  .hero-copy h1 {
    font-size: 1.34rem;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .world-copy h2 {
    font-size: 2rem;
  }
}
