/* Landing Page - Dark & Light Themes */
:root,
[data-theme="light"] {
  --orange: #1a92ca;
  --orange-hover: #1580b0;
  --orange-glow: rgba(26, 146, 202, 0.35);

  --bg-body: #f4f7fa;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --bg-header: #ffffff;
  --bg-topbar: #0f2a3d;
  --bg-footer: #0a1f2e;
  --bg-card: #ffffff;
  --bg-stats: linear-gradient(135deg, #0f2a3d 0%, #1a4a6b 100%);

  --text-primary: #0f2a3d;
  --text-secondary: #5a6b7d;
  --text-muted: #8a9bb0;
  --text-inverse: #ffffff;
  --text-topbar: rgba(255, 255, 255, 0.85);

  --border: #e2e8f0;
  --border-light: #edf2f7;
  --shadow-sm: 0 2px 8px rgba(15, 42, 61, 0.06);
  --shadow: 0 8px 32px rgba(15, 42, 61, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 42, 61, 0.15);

  --hero-overlay: linear-gradient(
    105deg,
    rgba(15, 42, 61, 0.72) 0%,
    rgba(15, 42, 61, 0.44) 45%,
    rgba(15, 42, 61, 0.1) 100%
  );
  --header-shadow: 0 4px 24px rgba(15, 42, 61, 0.08);
  --logo-display: block;
  --logo-dark-display: none;
}

[data-theme="dark"] {
  --bg-body: #071520;
  --bg-surface: #0c1e2e;
  --bg-elevated: #112636;
  --bg-header: #0a1a28;
  --bg-topbar: #061018;
  --bg-footer: #040e16;
  --bg-card: #112636;
  --bg-stats: linear-gradient(135deg, #0a1a28 0%, #0f2a3d 100%);

  --text-primary: #f0f4f8;
  --text-secondary: #a8b8c8;
  --text-muted: #6b7f94;
  --text-inverse: #ffffff;
  --text-topbar: rgba(255, 255, 255, 0.75);

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);

  --hero-overlay: linear-gradient(
    105deg,
    rgba(4, 14, 22, 0.78) 0%,
    rgba(7, 21, 32, 0.56) 45%,
    rgba(7, 21, 32, 0.18) 100%
  );
  --header-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --logo-display: none;
  --logo-dark-display: block;
}

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

html { scroll-behavior: smooth; }

body.landing-page {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}

body.landing-page {
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-img-light { display: var(--logo-display); }
.logo-img-dark  { display: var(--logo-dark-display); }

h1, h2, h3, h4 {
  font-family: 'Outfit', 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ========== PREMIUM SITE HEADER ========== */
.site-header-premium {
  position: sticky;
  top: 0;
  z-index: 300;
}

/* Top bar */
.top-bar {
  position: relative;
  background: linear-gradient(90deg, #040e16 0%, #0a1a28 45%, #0f2438 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #1a92ca 20%, #38b8e8 50%, #1a92ca 80%, transparent 100%);
  opacity: 0.9;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
}

.top-bar-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  position: relative;
}

.top-bar-info li:first-child { padding-left: 0; }

.top-bar-info li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.top-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 146, 202, 0.15);
  border: 1px solid rgba(26, 146, 202, 0.25);
  color: #38b8e8;
  flex-shrink: 0;
}

.top-bar-icon svg {
  width: 13px;
  height: 13px;
}

.top-bar-info a,
.top-bar-info span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.top-bar-info a:hover { color: #38b8e8; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.top-bar-support-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #38b8e8;
  background: rgba(26, 146, 202, 0.12);
  border: 1px solid rgba(26, 146, 202, 0.28);
  border-radius: 999px;
}

.social-links {
  display: flex;
  gap: 0.4rem;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: #1a92ca;
  border-color: #1a92ca;
  color: #fff;
  transform: translateY(-2px);
}

.social-links svg { width: 13px; height: 13px; }

.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
}

.theme-toggle:hover {
  background: #1a92ca;
  border-color: #1a92ca;
}

.theme-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon svg { width: 17px; height: 17px; }

[data-theme="light"] .theme-icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.5); }
[data-theme="light"] .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"]  .theme-icon-sun  { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"]  .theme-icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }

/* Main header */
.landing-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

[data-theme="light"] .landing-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(15, 42, 61, 0.08);
}

[data-theme="dark"] .landing-header {
  background: rgba(10, 26, 40, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.landing-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .landing-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.landing-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
}

.landing-logo-wrap {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  margin-left: -1.25rem;
}

.logo-accent-bar {
  width: 5px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #1a92ca 0%, #38b8e8 50%, #1580b0 100%);
}

.landing-logo {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem 0.75rem 1.25rem;
  position: relative;
  transition: opacity 0.2s ease;
}

.landing-logo:hover { opacity: 0.9; }

.landing-logo .logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.35rem;
  background: rgba(26, 146, 202, 0.05);
  border: 1px solid rgba(26, 146, 202, 0.1);
  border-radius: 12px;
}

[data-theme="dark"] .landing-nav {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.landing-nav a {
  position: relative;
  padding: 0.55rem 1.125rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
}

.landing-nav a:hover {
  color: var(--orange);
  background: rgba(26, 146, 202, 0.1);
}

.landing-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  box-shadow: 0 4px 14px rgba(26, 146, 202, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a92ca;
  background: rgba(26, 146, 202, 0.1);
  border: 1.5px solid rgba(26, 146, 202, 0.35);
  border-radius: 8px;
  transition: all 0.22s ease;
}

.header-cta-btn:hover {
  background: #1a92ca;
  border-color: #1a92ca;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 146, 202, 0.3);
}

.header-cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  background: rgba(26, 146, 202, 0.06);
  border: 1px solid rgba(26, 146, 202, 0.14);
  border-radius: 999px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.header-phone:hover {
  border-color: rgba(26, 146, 202, 0.35);
  box-shadow: 0 4px 16px rgba(26, 146, 202, 0.12);
}

.phone-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26, 146, 202, 0.4);
}

.phone-icon svg { width: 18px; height: 18px; }

.phone-rotate-viewport {
  position: relative;
  height: 2.35rem;
  min-width: 168px;
}

.phone-type-label,
.phone-type-number {
  display: inline;
}

.phone-type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 1px;
  background: var(--orange);
  vertical-align: text-bottom;
  opacity: 0;
  animation: phoneCursorBlink 0.7s step-end infinite;
}

.phone-type-cursor.is-on {
  opacity: 1;
}

@keyframes phoneCursorBlink {
  50% { opacity: 0; }
}

.phone-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.2;
}

.phone-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.phone-number:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(26, 146, 202, 0.35);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-call-btn,
.theme-toggle-mobile {
  display: none;
}

.header-call-btn {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  color: #1a92ca;
  background: rgba(26, 146, 202, 0.1);
  border: 1px solid rgba(26, 146, 202, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-call-btn svg {
  width: 18px;
  height: 18px;
}

.header-call-btn:hover {
  background: #1a92ca;
  border-color: #1a92ca;
  color: #fff;
}

.theme-toggle-mobile {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
}

.theme-toggle-mobile:hover {
  background: rgba(26, 146, 202, 0.12);
  border-color: rgba(26, 146, 202, 0.3);
}

.theme-toggle-mobile .theme-icon svg {
  width: 17px;
  height: 17px;
}

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

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

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 280;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(4, 14, 22, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.footer-col-details summary {
  list-style: none;
  cursor: default;
}

.footer-col-details summary::-webkit-details-marker {
  display: none;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  height: min(92vh, 780px);
  min-height: 580px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  pointer-events: none;
}

.hero-slide.is-active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-text {
  max-width: 620px;
  animation: heroFadeUp 0.8s ease both;
}

.hero-slide:not(.is-active) .hero-text {
  animation: none;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(26, 146, 202, 0.2);
  border: 1px solid rgba(26, 146, 202, 0.4);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

[data-theme="light"] .hero-badge {
  color: #ffffff;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: -0.75rem 0 2rem;
  max-width: 520px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

[data-theme="light"] .hero-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-text p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px var(--orange-glow);
}

.btn-hero span:first-child { padding: 0.9rem 1.5rem; }

.btn-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  min-height: 48px;
  background: rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-icon svg { width: 18px; height: 18px; }

.btn-hero:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--orange-glow);
  color: #fff;
}

.btn-hero-light {
  background: #fff;
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-light .btn-hero-icon { background: var(--orange); color: #fff; border-left: none; }
.btn-hero-light:hover { background: #f0f4f8; color: var(--text-primary); }

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.btn-hero-outline .btn-hero-icon { background: transparent; border-left-color: rgba(255, 255, 255, 0.3); }
.btn-hero-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); color: #fff; }

/* Hero inline tracking form */
.hero-track-wrap {
  max-width: 580px;
}

.hero-track-subtitle {
  display: none;
}

.hero-track-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-track-alert {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(254, 242, 242, 0.95);
}

.hero-track-form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(15, 42, 61, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-track-form:focus-within {
  border-color: rgba(26, 146, 202, 0.45);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.22),
    0 0 0 3px rgba(26, 146, 202, 0.18);
}

.hero-track-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1.125rem;
  background: #fff;
  border-right: 1px solid #e4edf3;
}

.hero-track-field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a92ca;
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-track-field-icon svg {
  width: 20px;
  height: 20px;
}

.hero-track-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  padding: 1.0625rem 1.125rem 1.0625rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0f2a3d;
  background: transparent;
  outline: none;
}

.hero-track-input::placeholder {
  color: #8fa3b5;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-track-btn {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: #1a92ca;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  padding: 0;
  transition: background 0.2s ease;
  box-shadow: none;
}

.hero-track-btn:hover {
  background: #1580b0;
  transform: none;
  color: #fff;
}

.hero-track-btn-text {
  display: flex;
  align-items: center;
  padding: 0 1.125rem;
  white-space: nowrap;
}

.hero-track-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-track-btn-icon svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.hero-track-btn:hover .hero-track-btn-icon svg {
  transform: translateX(2px);
}

.hero-track-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.hero-track-hint::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338b8e8' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Vertical dots */
.hero-dots {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.is-active,
.hero-dot:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ========== TRACKING CARD (legacy / alerts) ========== */
.track-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.track-card-hero {
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  border-top: 3px solid #1a92ca;
  box-shadow:
    0 4px 6px rgba(15, 42, 61, 0.04),
    0 24px 48px rgba(15, 42, 61, 0.14);
  overflow: hidden;
  animation: trackCardEnter 0.6s ease 0.1s both;
}

[data-theme="dark"] .track-card-hero {
  background: #ffffff;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.28);
}

@keyframes trackCardEnter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.track-card-inner {
  position: relative;
  padding: 1.75rem 1.75rem 1.5rem;
}

/* Professional header */
.track-card-header-pro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8eef3;
}

.track-card-header-pro h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f2a3d;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.track-card-header-pro p {
  font-size: 0.875rem;
  color: #5c6f82;
  margin: 0;
  line-height: 1.5;
}

/* Professional form */
.track-form-pro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-form-pro .track-field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.125rem;
}

.track-input-pro {
  min-width: 0;
  background: #f8fafc;
  border: 1px solid #dce4ec;
  border-radius: 8px;
  padding: 0 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.track-input-pro:focus-within {
  background: #fff;
  border-color: #1a92ca;
  box-shadow: 0 0 0 3px rgba(26, 146, 202, 0.12);
}

.track-input-pro input {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.875rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f2a3d;
  outline: none;
}

.track-input-pro input::placeholder {
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-track-pro {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: #1a92ca;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.btn-track-pro:hover {
  background: #1580b0;
  box-shadow: 0 4px 12px rgba(26, 146, 202, 0.3);
  transform: none;
}

.track-card-hint {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
}

.track-card-hero .track-form-landing {
  flex-direction: column;
  gap: 0.5rem;
}

.track-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.track-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 146, 202, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.track-card-icon svg { width: 26px; height: 26px; }

.track-card-header h2 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.track-card-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.alert {
  padding: 0.875rem 1.125rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

[data-theme="dark"] .alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.25);
}

.track-form-landing {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.track-input-wrap {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-body);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.track-input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(26, 146, 202, 0.12);
}

.track-input-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.track-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  outline: none;
}

.track-input-wrap input::placeholder {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.btn-track {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--orange) 0%, #1580b0 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px var(--orange-glow);
}

.btn-track svg { width: 18px; height: 18px; }

.btn-track:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

/* ========== STATS STRIP ========== */
/* ========== REGIONAL SERVICES ========== */
.region-services-section {
  position: relative;
  padding: 4.5rem 0;
  background: var(--bg-surface);
  overflow: hidden;
  transition: background 0.35s ease;
}

.region-services-section > .container {
  position: relative;
  z-index: 1;
}

/* Logistics network background */
.region-services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.region-network-grid {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(circle at center, rgba(26, 146, 202, 0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
  animation: regionGridDrift 80s linear infinite;
}

[data-theme="dark"] .region-network-grid {
  background-image:
    radial-gradient(circle at center, rgba(56, 184, 232, 0.12) 1px, transparent 1px);
  opacity: 0.25;
}

@keyframes regionGridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(36px, 36px); }
}

.region-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #1a92ca;
}

.region-route {
  fill: none;
  stroke: rgba(26, 146, 202, 0.16);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 14;
}

.region-route-ocean {
  stroke: url(#regionRouteGrad);
  stroke-width: 2;
  stroke-dasharray: 10 16;
  animation: regionRouteFlow 22s linear infinite;
}

.region-route-1 { animation: regionRouteFlow 24s linear infinite; }
.region-route-2 { animation: regionRouteFlow 28s linear infinite reverse; animation-delay: -6s; }
.region-route-3 { animation: regionRouteFlow 20s linear infinite; animation-delay: -3s; }
.region-route-4 { animation: regionRouteFlow 26s linear infinite reverse; animation-delay: -9s; }
.region-route-5 { animation: regionRouteFlow 18s linear infinite; animation-delay: -5s; }

@keyframes regionRouteFlow {
  to { stroke-dashoffset: -160; }
}

[data-theme="dark"] .region-route {
  stroke: rgba(56, 184, 232, 0.14);
}

.region-hub-glow {
  fill: url(#regionHubGlow);
  animation: regionHubGlow 4s ease-in-out infinite;
}

.region-hub-glow:nth-child(2) { animation-delay: 1.3s; }
.region-hub-glow:nth-child(3) { animation-delay: 2.6s; }

@keyframes regionHubGlow {
  0%, 100% { opacity: 0.5; transform-origin: center; }
  50%      { opacity: 1; }
}

.region-node {
  fill: rgba(26, 146, 202, 0.55);
  animation: regionNodePulse 3.5s ease-in-out infinite;
}

.region-node-hub {
  fill: #1a92ca;
  animation: regionNodePulse 2.8s ease-in-out infinite;
}

.region-network-icon {
  animation: regionIconPulse 5s ease-in-out infinite;
}

.region-network-icon-2 { animation-delay: 1.6s; }
.region-network-icon-3 { animation-delay: 3.2s; }

@keyframes regionIconPulse {
  0%, 100% { opacity: 0.12; }
  50%      { opacity: 0.28; }
}

.region-network-hubs .region-node:nth-child(4)  { animation-delay: 0s; }
.region-network-hubs .region-node:nth-child(5)  { animation-delay: 0.5s; }
.region-network-hubs .region-node:nth-child(6)  { animation-delay: 1s; }
.region-network-hubs .region-node:nth-child(7)  { animation-delay: 0.2s; }
.region-network-hubs .region-node:nth-child(8)  { animation-delay: 0.6s; }
.region-network-hubs .region-node:nth-child(9)  { animation-delay: 1s; }
.region-network-hubs .region-node:nth-child(10) { animation-delay: 1.4s; }
.region-network-hubs .region-node:nth-child(11) { animation-delay: 0.3s; }
.region-network-hubs .region-node:nth-child(12) { animation-delay: 0.7s; }
.region-network-hubs .region-node:nth-child(13) { animation-delay: 1.1s; }
.region-network-hubs .region-node:nth-child(14) { animation-delay: 0.4s; }
.region-network-hubs .region-node:nth-child(15) { animation-delay: 0.8s; }
@keyframes regionNodePulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 1; }
}

.region-vehicle {
  opacity: 0.95;
  filter: drop-shadow(0 3px 8px rgba(26, 146, 202, 0.4));
}

[data-theme="dark"] .region-vehicle {
  filter: drop-shadow(0 3px 12px rgba(56, 184, 232, 0.5));
}

.region-vehicle-graphic {
  pointer-events: none;
}

/* Air cargo - slow straight flight above services */
.region-network-flight {
  opacity: 0.92;
}

.region-plane-lane {
  fill: none;
  stroke: rgba(26, 146, 202, 0.12);
  stroke-width: 1;
  stroke-dasharray: 4 12;
}

.region-vehicle-plane {
  filter: drop-shadow(0 6px 18px rgba(15, 42, 61, 0.22));
}

.region-plane-img {
  mix-blend-mode: screen;
  opacity: 0.88;
}

[data-theme="dark"] .region-vehicle-plane {
  filter: drop-shadow(0 8px 22px rgba(56, 184, 232, 0.28));
}

[data-theme="dark"] .region-plane-img {
  mix-blend-mode: lighten;
  opacity: 0.82;
}

[data-theme="dark"] .region-plane-lane {
  stroke: rgba(56, 184, 232, 0.14);
}

.region-network-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-surface) 0%, transparent 18%, transparent 82%, var(--bg-surface) 100%),
    linear-gradient(90deg, var(--bg-surface) 0%, transparent 12%, transparent 88%, var(--bg-surface) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .region-network-grid,
  .region-route,
  .region-route-ocean,
  .region-hub-glow,
  .region-node,
  .region-network-icon {
    animation: none !important;
  }

  .region-network-flight {
    display: none;
  }

  .region-route {
    stroke-dasharray: none;
  }
}

.region-services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}

.region-services-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.region-services-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.region-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  scroll-margin-top: 132px;
}

.region-tabs {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  width: auto;
  max-width: 100%;
  padding: 5px;
  border-radius: 12px;
  background: rgba(26, 146, 202, 0.06);
  border: 1px solid rgba(26, 146, 202, 0.14);
  box-shadow: none;
}

[data-theme="dark"] .region-tabs {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.region-tabs-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 42, 61, 0.1), 0 0 0 1px rgba(15, 42, 61, 0.04);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .region-tabs-indicator {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.region-tab {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 8rem;
  padding: 0.7rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.22s ease;
  white-space: nowrap;
}

[data-theme="dark"] .region-tab {
  color: rgba(255, 255, 255, 0.45);
}

.region-tab:hover:not(.is-active) {
  color: #1a92ca;
}

[data-theme="dark"] .region-tab:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.7);
}

.region-tab.is-active {
  color: #1a92ca;
  background: transparent;
  box-shadow: none;
}

[data-theme="dark"] .region-tab.is-active {
  color: #1580b0;
}

.region-tab-label {
  line-height: 1;
}

.region-tab-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  line-height: 0;
  opacity: 0.8;
  transition: opacity 0.22s ease;
}

.region-tab.is-active .region-tab-flag {
  opacity: 1;
}

.region-tab-flag svg {
  width: 17px;
  height: auto;
  display: block;
}

.region-panels {
  position: relative;
}

.region-panel {
  display: none;
  animation: regionPanelIn 0.4s ease both;
}

.region-panel.is-active {
  display: block;
}

.region-panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.625rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.875rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.region-panel-subtitle {
  max-width: 680px;
  margin: 0 auto 2rem;
  padding-bottom: 1.75rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.region-panel-subtitle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1a92ca 0%, #38b8e8 100%);
}

.region-icon-strip-wrap {
  margin: 0 auto 2rem;
  padding: 0.65rem 0.85rem;
  background: rgba(26, 146, 202, 0.04);
  border: 1px solid rgba(26, 146, 202, 0.12);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .region-icon-strip-wrap {
  background: rgba(26, 146, 202, 0.03);
  border-color: rgba(26, 146, 202, 0.1);
  box-shadow: inset 0 1px 2px rgba(26, 146, 202, 0.04);
}

[data-theme="dark"] .region-icon-strip-wrap {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.region-icon-strip {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.region-icon-strip::-webkit-scrollbar {
  display: none;
}

.region-icon-strip-item {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  min-width: 88px;
  text-align: center;
}

.region-icon-strip-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.5rem 0.35rem 0.65rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: background 0.22s ease, transform 0.22s ease;
}

.region-icon-strip-btn img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.3rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.region-icon-strip-btn span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
  transition: color 0.22s ease;
}

.region-icon-strip-btn:hover {
  background: rgba(26, 146, 202, 0.06);
}

.region-icon-strip-btn:hover img {
  border-color: rgba(26, 146, 202, 0.3);
  transform: translateY(-1px);
}

.region-icon-strip-btn.is-active {
  background: rgba(26, 146, 202, 0.08);
}

.region-icon-strip-btn.is-active img {
  border-color: #1a92ca;
  box-shadow: 0 4px 14px rgba(26, 146, 202, 0.2);
}

.region-icon-strip-btn.is-active span {
  color: #1a92ca;
}

.region-icon-strip-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #1a92ca;
}

.region-service-showcase {
  position: relative;
  margin-top: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .region-service-showcase {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.region-service-split {
  display: none;
  animation: regionPanelIn 0.4s ease both;
}

.region-service-split.is-active {
  display: block;
}

.region-service-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 0;
}

.region-service-split-content {
  order: 1;
  padding-right: 0.5rem;
}

.region-service-split-media {
  order: 2;
}

.region-service-split-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
  padding-top: 0.75rem;
}

.region-service-split-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1a92ca 0%, #38b8e8 100%);
}

.region-service-split-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 34rem;
}

.region-service-split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(26, 146, 202, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.region-service-split-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.region-service-split-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 146, 202, 0.38);
}

.region-service-split-cta:hover svg {
  transform: translateX(3px);
}

.region-service-split-media img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15, 42, 61, 0.12);
}

@keyframes regionPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.region-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.region-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
}

.region-service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.region-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 146, 202, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1rem;
}

.region-service-icon svg {
  width: 24px;
  height: 24px;
}

.region-service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.region-service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.region-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

.region-service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.region-service-link:hover svg {
  transform: translateX(4px);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 4rem 0 4.5rem;
  background: var(--bg-body);
  transition: background 0.35s ease;
}

.contact-section-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.contact-section-accent {
  flex-shrink: 0;
  width: 4px;
  height: 2rem;
  border-radius: 2px;
  background: linear-gradient(180deg, #1a92ca 0%, #38b8e8 100%);
}

.contact-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.35s ease, border-color 0.35s ease;
}

[data-theme="dark"] .contact-block {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-block-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.contact-block-intro p,
.contact-block-tagline .contact-tagline-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.contact-tagline-text {
  font-style: italic;
  color: var(--text-primary);
}

.contact-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-office-head {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.1rem;
}

.contact-office-code {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a92ca;
  background: rgba(26, 146, 202, 0.1);
  border: 1px solid rgba(26, 146, 202, 0.2);
  border-radius: 8px;
}

.contact-office h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.contact-office-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-office-coverage {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  line-height: 1.45;
  opacity: 0.9;
}

.contact-office-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(26, 146, 202, 0.06);
  border: 1px solid rgba(26, 146, 202, 0.14);
  border-radius: 999px;
  transition: all 0.22s ease;
}

[data-theme="dark"] .contact-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.contact-pill svg {
  width: 15px;
  height: 15px;
  color: #1a92ca;
  flex-shrink: 0;
}

.contact-pill:hover {
  border-color: #1a92ca;
  color: #1a92ca;
  background: rgba(26, 146, 202, 0.1);
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.about-content-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.about-content-accent {
  flex-shrink: 0;
  width: 4px;
  height: 2rem;
  border-radius: 2px;
  background: linear-gradient(180deg, #1a92ca 0%, #38b8e8 100%);
}

.about-content-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  margin-bottom: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.carrier-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.carrier-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: background 0.35s ease, border-color 0.35s ease;
}

[data-theme="dark"] .carrier-block {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.carrier-block p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
}

.carrier-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(26, 146, 202, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.carrier-block-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.carrier-block-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 146, 202, 0.38);
}

.carrier-block-cta:hover svg {
  transform: translateX(3px);
}

.about-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
}

.about-content > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(26, 146, 202, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
}

.feature-list span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.about-card svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.about-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.35;
}

.about-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-card-1 { top: 0; left: 5%; width: 185px; animation: float 4s ease-in-out infinite; }
.about-card-2 { top: 28%; right: 0; width: 195px; animation: float 4s ease-in-out 1s infinite; }
.about-card-3 { bottom: 8%; left: 18%; width: 190px; animation: float 4s ease-in-out 2s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ========== SERVICES ========== */
.services-section {
  padding: 5rem 0;
  background: var(--bg-surface);
  transition: background 0.35s ease;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 146, 202, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

.service-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-link:hover svg { transform: translateX(4px); }

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0a1f2e 0%, #0f2a3d 40%, #1a4a6b 100%);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-banner-glow-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(26, 146, 202, 0.22);
}

.cta-banner-glow-2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -60px;
  background: rgba(56, 184, 232, 0.12);
}

.cta-banner-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1 1 420px;
  max-width: 640px;
}

.cta-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38b8e8;
  margin-bottom: 0.75rem;
}

.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 1.25rem;
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 220px;
  padding: 0.85rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.cta-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.cta-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  box-shadow: 0 6px 22px rgba(26, 146, 202, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 146, 202, 0.5);
  color: #fff;
}

.cta-btn-primary:hover svg {
  transform: translateX(3px);
}

.cta-btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 4.5rem 0 4rem;
  background: var(--bg-body);
  overflow: hidden;
  transition: background 0.35s ease;
}

.testimonials-container {
  margin-bottom: 2.5rem;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.testimonials-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.testimonials-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.testimonials-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.testimonials-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: testimonialsScroll 70s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonials-scroll-wrapper {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0.75rem;
  flex-shrink: 0;
}

@keyframes testimonialsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 146, 202, 0.35);
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: #f5b301;
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
}

.testimonial-text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

[data-theme="dark"] .testimonial-header {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
}

.testimonial-author {
  flex: 1;
  min-width: 0;
}

.testimonial-author h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
  line-height: 1.4;
}

.testimonial-region {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem 0.2rem 0.35rem;
  border-radius: 999px;
}

.testimonial-region-flag {
  display: inline-flex;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.testimonial-region-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.testimonial-region-kenya,
.testimonial-region-africa {
  color: #1a7a3a;
  background: rgba(26, 122, 58, 0.12);
  border: 1px solid rgba(26, 122, 58, 0.2);
}

.testimonial-region-usa {
  color: #1a4a8a;
  background: rgba(26, 74, 138, 0.1);
  border: 1px solid rgba(26, 74, 138, 0.18);
}

[data-theme="dark"] .testimonial-region-kenya,
[data-theme="dark"] .testimonial-region-africa {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.2);
}

[data-theme="dark"] .testimonial-region-usa {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .testimonials-scroll-wrapper[aria-hidden="true"] {
    display: none;
  }

  .testimonials-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .testimonial-card {
    width: min(340px, 100%);
  }
}

@media (max-width: 768px) {
  .testimonials-section { padding: 3.5rem 0 3rem; }
  .testimonial-card { width: 300px; min-height: 240px; padding: 1.25rem; }
  .testimonials-scroll-wrapper { gap: 1rem; }
}

/* ========== FOOTER ========== */
.landing-footer {
  position: relative;
  background: linear-gradient(180deg, #0a1f2e 0%, #071520 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 0 0;
  overflow: hidden;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, transparent, #1a92ca 30%, #38b8e8 50%, #1a92ca 70%, transparent);
}

.landing-footer .container {
  padding-top: 3.5rem;
  padding-bottom: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  font-style: italic;
  color: #38b8e8;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 320px;
  margin: 0 0 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.22s ease;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(26, 146, 202, 0.25);
  border-color: rgba(26, 146, 202, 0.45);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.15rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-list a svg {
  width: 15px;
  height: 15px;
  color: #1a92ca;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #38b8e8;
  padding-left: 4px;
}

.footer-list a:hover svg {
  color: #38b8e8;
}

.footer-main .footer-col-office {
  min-width: 0;
  display: flex;
}

.footer-main .footer-office {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  height: 100%;
}

.footer-main .footer-office-head {
  margin-bottom: 0;
}

.footer-main .footer-office-contacts {
  margin-top: auto;
  padding-top: 1rem;
}

.footer-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-office {
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.footer-office:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(26, 146, 202, 0.25);
}

.footer-office-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-office-code {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #38b8e8;
  background: rgba(26, 146, 202, 0.15);
  border: 1px solid rgba(26, 146, 202, 0.25);
  border-radius: 6px;
}

.footer-office-head h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem;
}

.footer-office-head p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-office-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-office-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer-office-contacts a svg {
  width: 15px;
  height: 15px;
  color: #1a92ca;
  flex-shrink: 0;
}

.footer-office-contacts a:hover {
  color: #38b8e8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.35rem 0 1.5rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

.footer-bottom-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

@media (min-width: 769px) {
  .footer-col-details summary.footer-heading::after {
    display: none;
  }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .top-bar-hours,
  .top-bar-address {
    display: none;
  }

  .top-bar-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
  }

  .top-bar-info {
    flex: 1;
    min-width: 0;
  }

  .top-bar-info li {
    padding: 0;
  }

  .top-bar-info li:not(:last-child)::after {
    display: none;
  }

  .top-bar-email-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 52vw;
  }
}

/* Tablet & mobile header - switch before desktop nav overflows */
@media (max-width: 1100px) {
  .top-bar-inner {
    padding: 0.5rem 0;
    gap: 0.5rem;
  }

  .top-bar-address { display: none; }

  .top-bar-info li {
    padding: 0 0.65rem;
  }

  .top-bar-info li:not(:last-child)::after {
    height: 14px;
  }

  .top-bar-right {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .social-links {
    display: none;
  }

  .landing-header {
    position: relative;
  }

  .landing-header-inner {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.65rem;
    min-height: 64px;
    padding: 0 1rem;
  }

  .landing-logo-wrap {
    margin-left: -0.5rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .landing-logo {
    padding: 0.5rem 0.75rem 0.5rem 0.65rem;
  }

  .landing-logo .logo-img {
    height: 38px;
    max-width: min(160px, 42vw);
  }

  .landing-nav {
    display: none;
    position: fixed;
    top: var(--site-header-h, 0px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 290;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem 1rem 2rem;
    margin: 0;
    border: none;
    border-radius: 0;
    background: var(--bg-header);
    box-shadow: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  [data-theme="light"] .landing-nav {
    background: #fff;
  }

  [data-theme="dark"] .landing-nav {
    background: #0a1a28;
  }

  .landing-nav.is-open {
    display: flex;
  }

  .landing-nav a {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  .landing-nav a.active {
    background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
  }

  .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .mobile-nav-head {
    display: block;
    margin-bottom: 0.5rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(26, 146, 202, 0.12) 0%, rgba(26, 146, 202, 0.04) 100%);
    border: 1px solid rgba(26, 146, 202, 0.18);
    border-radius: 12px;
  }

  .mobile-nav-head-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.6rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a92ca;
    background: rgba(26, 146, 202, 0.14);
    border: 1px solid rgba(26, 146, 202, 0.28);
    border-radius: 999px;
    margin-bottom: 0.45rem;
  }

  .mobile-nav-head-meta {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #1a92ca 0%, #1580b0 100%);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(26, 146, 202, 0.35);
  }

  .mobile-nav-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-phone-link {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 1rem;
    background: rgba(26, 146, 202, 0.08);
    border: 1px solid rgba(26, 146, 202, 0.18);
    border-radius: 10px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .mobile-phone-link:hover {
    background: rgba(26, 146, 202, 0.14);
    border-color: rgba(26, 146, 202, 0.35);
  }

  .mobile-phone-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
  }

  .mobile-phone-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .mobile-nav-email {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a92ca;
    padding: 0.5rem;
  }

  .header-actions {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .header-cta-btn,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { min-height: 300px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
  .contact-offices { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Hide cluttered desktop top bar on phones - info lives in mobile menu */
  .top-bar {
    display: none;
  }

  .header-call-btn,
  .theme-toggle-mobile {
    display: flex;
  }

  .landing-header-inner {
    min-height: 56px;
    padding: 0 0.85rem;
    gap: 0.5rem;
  }

  .landing-logo-wrap {
    margin-left: 0;
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-accent-bar {
    width: 4px;
  }

  .landing-logo {
    padding: 0.45rem 0.65rem 0.45rem 0.55rem;
  }

  .landing-logo .logo-img {
    height: 34px;
    max-width: min(150px, 48vw);
  }

  .header-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 10px;
    position: relative;
    z-index: 300;
  }

  .footer-col-details summary.footer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.65rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-col-details summary.footer-heading::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1;
  }

  .footer-col-details[open] summary.footer-heading::after {
    content: '−';
  }

  .footer-col-details .footer-list {
    padding: 0.5rem 0 1rem;
  }

  .footer-main {
    gap: 0.25rem;
  }

  .footer-desc {
    max-width: none;
  }

  .footer-offices {
    padding: 1.5rem 0;
    gap: 0.85rem;
  }

  .footer-office {
    padding: 1rem 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.25rem 0 1.5rem;
  }

  .landing-footer .container {
    padding-top: 2.5rem;
  }

  .testimonials-section { padding: 3.5rem 0 3rem; }
  .testimonial-card { width: 300px; min-height: 240px; padding: 1.25rem; }
  .testimonials-scroll-wrapper { gap: 1rem; }

  /* Hero: image flush under header, content below */
  main {
    margin: 0;
    padding: 0;
  }

  .hero-slider {
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .landing-header {
    border-bottom: none;
    box-shadow: none;
  }

  [data-theme="light"] .landing-header {
    border-bottom: none;
  }

  [data-theme="dark"] .landing-header {
    box-shadow: none;
    border-bottom: none;
  }

  .landing-header.is-scrolled {
    box-shadow: none;
  }

  .hero-slides {
    position: relative;
    height: auto;
    min-height: 0;
    width: 100%;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
  }

  .hero-slide.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    position: relative;
  }

  .hero-slide-bg {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: unset;
    height: clamp(220px, 56vw, 52vh);
    max-height: 52vh;
    min-height: 220px;
    transform: none !important;
    overflow: hidden;
    background-color: #071520;
  }

  .hero-slide-video {
    object-position: center top;
  }

  [data-theme="light"] .hero-slide-bg {
    background-color: #0f2a3d;
  }

  .hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: clamp(220px, 56vw, 52vh);
    max-height: 52vh;
    min-height: 220px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 32, 0.45) 100%);
  }

  .hero-slide-content {
    order: 3;
    position: relative;
    z-index: 3;
    height: auto;
    max-width: none;
    width: auto;
    margin: 0.75rem 1rem 0;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem 1.5rem;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(15, 42, 61, 0.07);
  }

  .hero-text {
    max-width: 100%;
    width: 100%;
    padding-bottom: 0;
    animation: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: none;
    line-height: 1.65;
    text-align: center;
  }

  [data-theme="dark"] .hero-slide-content {
    background: #0a1a28;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }

  [data-theme="dark"] .hero-text h1 {
    color: #fff;
  }

  [data-theme="dark"] .hero-text p {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.85rem;
    text-align: center;
  }

  [data-theme="light"] .hero-badge {
    color: #1a92ca;
    background: rgba(26, 146, 202, 0.1);
    border-color: rgba(26, 146, 202, 0.25);
  }

  .hero-tags {
    margin: 0 0 1.25rem;
    justify-content: center;
  }

  [data-theme="light"] .hero-tag {
    color: var(--text-primary);
    background: rgba(26, 146, 202, 0.08);
    border-color: rgba(26, 146, 202, 0.18);
  }

  [data-theme="dark"] .hero-tag {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-text .btn-hero {
    align-self: center;
  }

  .hero-track-wrap {
    max-width: none;
    width: 100%;
    margin-top: 0.15rem;
    text-align: center;
  }

  .hero-track-subtitle {
    display: block;
    margin: 0 0 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a92ca;
    text-align: center;
  }

  .hero-track-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 0.4rem;
    padding: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
  }

  .hero-track-form {
    flex-direction: column;
    gap: 0.65rem;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    box-shadow: none;
    padding: 0;
  }

  .hero-track-form:focus-within {
    box-shadow: none;
    border-color: transparent;
  }

  .hero-track-field {
    flex-direction: row;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 0.85rem;
    min-width: 0;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-track-form:focus-within .hero-track-field {
    border-color: rgba(26, 146, 202, 0.55);
    box-shadow: 0 0 0 3px rgba(26, 146, 202, 0.12);
  }

  .hero-track-field-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-track-input {
    padding: 0.85rem 0 0.85rem 0;
    font-size: 0.9375rem;
  }

  .hero-track-input::placeholder {
    font-size: 0.8125rem;
    color: #94a3b8;
  }

  .hero-track-btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    min-height: 48px;
    box-shadow: 0 4px 16px rgba(26, 146, 202, 0.32);
  }

  .hero-track-btn-text {
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 700;
  }

  .hero-track-btn-icon {
    width: auto;
    align-self: center;
    background: transparent;
    border-left: none;
    padding: 0;
  }

  .hero-track-btn-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-track-hint {
    margin: 0.7rem 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    justify-content: center;
    text-align: center;
  }

  .hero-track-hint::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a92ca' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E");
  }

  [data-theme="dark"] .hero-track-field {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
  }

  [data-theme="dark"] .hero-track-label {
    color: rgba(255, 255, 255, 0.9);
  }

  [data-theme="dark"] .hero-track-input {
    color: #fff;
  }

  [data-theme="dark"] .hero-track-hint {
    color: rgba(255, 255, 255, 0.55);
  }

  .hero-dots {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 0 0;
    order: 10;
  }

  .hero-dot.is-active,
  .hero-dot:hover {
    transform: scale(1.15);
  }

  .track-card { padding: 1.5rem; }
  .track-form-landing { flex-direction: column; }
  .btn-track { width: 100%; justify-content: center; }

  .contact-section { padding: 3rem 0 3.5rem; }
  .contact-block { padding: 1.15rem 1.2rem; }
  .contact-office-links { flex-direction: column; }
  .contact-pill { width: 100%; justify-content: flex-start; }

  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-content { max-width: 100%; }
  .cta-inner p { margin-left: auto; margin-right: auto; }
  .cta-tags { justify-content: center; }
  .cta-actions { width: 100%; max-width: 320px; }
  .cta-btn { width: 100%; min-width: 0; }

  .footer-main { grid-template-columns: 1fr; }

  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.5rem;
  }

  .footer-logo-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-desc {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .about-section {
    padding: 3rem 0;
  }

  .about-content-header {
    justify-content: center;
    text-align: center;
  }

  .carrier-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .carrier-block p {
    text-align: center;
  }

  .carrier-block-cta {
    align-self: center;
  }

  /* Services - spacing, calmer motion, scrollable tabs, centered content */
  .region-services-section {
    margin-top: 1.25rem;
    padding: 2.75rem 0 3rem;
  }

  .region-services-header {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .region-services-bg {
    display: none;
  }

  #services .region-panel,
  #services .region-panel.is-active,
  #services .region-service-split,
  #services .region-service-split.is-active,
  #services .region-service-showcase,
  #services .region-icon-strip-btn,
  #services .region-icon-strip-btn img,
  #services .region-tabs-indicator,
  #services .region-tab,
  #services .region-service-split-cta {
    animation: none !important;
    transition: none !important;
  }

  .region-tabs-wrap { padding: 0; }
  .region-tab { min-width: 7.25rem; padding: 0.62rem 0.9rem; font-size: 0.75rem; gap: 0.4rem; }
  .region-tab-flag svg { width: 16px; }

  .region-icon-strip-wrap {
    margin: 0 -0.35rem 1.25rem;
    padding: 0.55rem 0;
    overflow: hidden;
    position: relative;
  }

  .region-icon-strip-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2rem;
    background: linear-gradient(90deg, transparent, var(--bg-surface));
    pointer-events: none;
    z-index: 1;
  }

  .region-icon-strip {
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.15rem 0.75rem 0.15rem 0.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
  }

  .region-icon-strip-item {
    min-width: 80px;
    scroll-snap-align: start;
  }

  .region-icon-strip-btn {
    transform: none;
  }

  .region-icon-strip-btn:hover,
  .region-icon-strip-btn:hover img {
    transform: none;
  }

  .region-icon-strip-btn img {
    width: 48px;
    height: 48px;
  }

  .region-icon-strip-btn span {
    font-size: 0.5625rem;
  }

  .region-service-showcase {
    padding: 1.15rem 0.85rem;
    border-radius: 14px;
  }

  .region-service-split-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .region-service-split-media {
    order: -1;
    width: 100%;
  }

  .region-service-split-media img {
    width: 100%;
    height: auto;
    min-height: unset;
    max-height: none;
    object-fit: contain;
    object-position: center;
    padding: 0.35rem;
    background: var(--bg-card);
  }

  .region-service-split-content {
    order: 2;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .region-service-split-title {
    padding-top: 0.85rem;
  }

  .region-service-split-title::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .region-service-split-text {
    max-width: none;
    text-align: center;
  }

  .region-service-split-cta {
    align-self: center;
  }

  .region-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.85rem;
  }

  .landing-header-inner {
    min-height: 52px;
    padding: 0 0.75rem;
  }

  .landing-logo .logo-img {
    height: 32px;
  }

  .header-call-btn,
  .theme-toggle-mobile,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-slide-bg {
    height: clamp(200px, 54vw, 48vh);
    min-height: 200px;
    max-height: 48vh;
  }

  .hero-slide-overlay {
    height: clamp(200px, 54vw, 48vh);
    min-height: 200px;
    max-height: 48vh;
  }

  .hero-slide-content {
    margin: 0.65rem 0.85rem 0;
    padding: 1.1rem 0.85rem 1.35rem;
    border-radius: 12px;
  }

  .hero-text h1 {
    font-size: 1.4rem;
  }

  .hero-scroll { display: none; }
  .about-card { position: relative; width: 100% !important; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; animation: none; }
  .about-visual { display: flex; flex-direction: column; gap: 1rem; min-height: auto; }
}
