/* =============================================
   GLOBALREACH - Global Relocation Services
   Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --navy:       #0d2b4e;
  --navy-deep:  #091d38;
  --teal:       #007b8a;
  --teal-light: #00a3b5;
  --gold:       #c8963c;
  --gold-light: #e8b455;
  --white:      #ffffff;
  --off-white:  #f4f8fb;
  --light-gray: #e8edf2;
  --mid-gray:   #8899aa;
  --dark-gray:  #334455;
  --text:       #1a2a3a;

  --font-display: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm:  0 2px 8px rgba(13,43,78,0.08);
  --shadow-md:  0 6px 24px rgba(13,43,78,0.12);
  --shadow-lg:  0 16px 48px rgba(13,43,78,0.16);
  --shadow-xl:  0 32px 80px rgba(13,43,78,0.22);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);

  --container:  1200px;
  --nav-h:      80px;
  --header-total-h: 152px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-total-h, 152px) + 12px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--dark-gray); line-height: 1.75; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}
.section-pad   { padding: 96px 0; }
.section-pad-sm{ padding: 64px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }

.bg-navy     { background: var(--navy); }
.bg-teal     { background: var(--teal); }
.bg-off-white{ background: var(--off-white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,0.7); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.section-header-row h2 { margin: 0; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 0;
}
.divider--center { margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }
.btn.magnetic { transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), background var(--transition), box-shadow var(--transition), border-color var(--transition); }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 9px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announcement-bar a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar .close-ann {
  position: absolute;
  right: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  font-size: 1rem;
}
.announcement-bar .close-ann:hover { opacity: 1; }
.announcement-bar[data-href] {
  cursor: pointer;
}
.announcement-bar[data-href] strong {
  color: var(--gold-light);
  font-weight: 700;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1200;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 0.1s linear;
}

/* Anchor offset so sticky header doesn't cover section tops */
section[id], .cta-band[id] {
  scroll-margin-top: calc(var(--header-total-h, 152px) + 12px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.site-header-wrap.is-scrolling {
  transform: translateY(-100%);
}

.site-header {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Scrollspy active state */
.nav-link.active {
  color: var(--teal);
  background: var(--off-white);
}
.nav-link.active::after { transform: scaleX(1); }
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }

/* Top utility bar */
.nav-util {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  padding: 8px 0;
}
.nav-util .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-util a {
  font-size: 0.8rem;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-util a:hover { color: var(--teal); }
.nav-util-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-util-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Main nav bar */
.nav-main {
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo .logo-mark svg { width: 26px; height: 26px; }
.nav-logo .logo-mark.logo-mark--img {
  width: auto;
  padding: 8px 12px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(13,43,78,0.08);
}
.nav-logo .logo-mark.logo-mark--img img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo .logo-text span { color: var(--teal); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: var(--off-white); color: var(--teal); }
.nav-link svg  { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg,
.nav-item.is-open .nav-link svg { transform: rotate(180deg); }

/* Dropdown menus */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-gray);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform-origin: top center;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  padding: 12px 0;
}
.nav-item:hover .dropdown,
.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown--wide {
  width: 760px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dropdown-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
}
.dropdown-col a {
  display: block;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.dropdown-col a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.dropdown-col a.dropdown-service {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}
.dropdown-col a.dropdown-service:last-of-type { border-bottom: none; }
.dropdown-col a.dropdown-service strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 3px;
  transition: color var(--transition);
}
.dropdown-col a.dropdown-service span {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--mid-gray);
}
.dropdown-col a.dropdown-service:hover strong { color: var(--teal); }
.dropdown-col a.dropdown-service[aria-current="page"] strong { color: var(--teal); }
.dropdown-col a.dropdown-service[aria-current="page"] strong::after { content: '•'; margin-left: 6px; color: var(--gold); }
.dropdown--simple a {
  display: block;
  padding: 10px 20px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: background var(--transition), color var(--transition);
}
.dropdown--simple a:hover { background: var(--off-white); color: var(--teal); }
.dropdown--simple a.active { background: var(--off-white); color: var(--teal); }

/* Services mega menu (icon grid) */
.dropdown--services {
  width: 720px;
  padding: 28px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.dropdown-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 20px;
  align-content: start;
}
.dropdown-service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.dropdown-service-item:hover,
.dropdown-service-item.active { background: var(--off-white); }
.dropdown-service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-service-icon svg { width: 20px; height: 20px; color: var(--white); }
.dropdown-service-text h5 {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 3px;
  transition: color var(--transition);
}
.dropdown-service-text p {
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--mid-gray);
}
.dropdown-service-item:hover .dropdown-service-text h5,
.dropdown-service-item.active .dropdown-service-text h5 { color: var(--teal); }

/* Featured card inside mega menu */
.dropdown-feature {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--white);
  grid-column: span 1;
}
.dropdown-feature .eyebrow { color: var(--gold-light); font-size: 0.7rem; }
.dropdown-feature h4 { color: var(--white); font-size: 1rem; margin: 6px 0 8px; }
.dropdown-feature p  { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 0 0 14px; }
.dropdown-feature a.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Nav CTA & search */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-search-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--transition);
}
.nav-search-btn:hover { background: var(--off-white); }
.nav-search-btn svg { width: 18px; height: 18px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--white);
  overflow-y: auto;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open {
  transform: translateX(0);
  display: block;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-nav-close svg { width: 20px; height: 20px; }
.mobile-nav-item {
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}
.mobile-nav-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.mobile-nav-link.expanded svg { transform: rotate(90deg); }
.mobile-sub-links {
  display: none;
  padding: 0 0 16px 16px;
}
.mobile-sub-links.open { display: block; }
.mobile-sub-links a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}
.mobile-nav-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  padding-top: var(--header-total-h, 152px);
  padding-bottom: 52px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero > .container {
  position: relative;
  z-index: 3;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg,
.hero-particles,
.hero-glow,
.hero-globe {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  color: var(--white);
}

/* Inner page hero (no video, shorter, breadcrumb) */
.hero--inner {
  min-height: auto;
  padding: 200px 0 110px;
}
.hero--inner .hero-content { max-width: 720px; }
.hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-breadcrumb a:hover { color: var(--gold-light); }
.hero-breadcrumb span { opacity: 0.5; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: clamp(12px, 2vh, 20px);
  line-height: 1.08;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  margin-bottom: clamp(20px, 3vh, 32px);
  max-width: 560px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}
.hero-actions .btn {
  position: relative;
  z-index: 1;
}
.hero-stats-bar {
  background: linear-gradient(180deg, rgba(9,29,56,0.98) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.hero-stats-bar .hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 0;
  border-top: none;
}
.hero-stats-bar .hero-stat .number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.hero-stats-bar .hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  pointer-events: none;
}
.scroll-indicator svg { width: 20px; height: 20px; }

/* Short viewports — keep hero content + buttons on one screen */
@media (max-height: 860px) {
  .hero-content h1 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); margin-bottom: 12px; }
  .hero-content p  { margin-bottom: 18px; font-size: 0.95rem; }
  .hero-content .eyebrow { margin-bottom: 10px; }
  .scroll-indicator { bottom: 16px; opacity: 0.7; }
}
@media (max-height: 720px) {
  .scroll-indicator { display: none; }
  .hero { padding-bottom: 24px; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   PAGE HERO (inner pages, real photography)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--header-total-h, 152px) + 20px);
  padding-bottom: 64px;
}
.hero-image-wrap { position: absolute; inset: 0; z-index: 0; background: var(--navy-deep); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(9,29,56,0.92) 0%, rgba(13,43,78,0.78) 45%, rgba(0,123,138,0.55) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 780px; margin-bottom: 20px; line-height: 1.15; }
.page-hero .lead { color: rgba(255,255,255,0.85); font-size: 1.12rem; max-width: 620px; margin-bottom: 36px; }
.page-hero .hero-actions { margin-bottom: 0; }

/* Service overview content (between hero and How We Help) */
.service-content {
  padding: 72px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-content-inner {
  max-width: 920px;
  margin: 0 auto;
}
.service-content-inner h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.35;
}
.service-content-inner p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark-gray);
  margin-bottom: 1.25em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.service-content-inner p:last-child { margin-bottom: 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); font-weight: 600; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.breadcrumb .current { color: var(--white); font-weight: 600; }

/* =============================================
   TRUST LOGOS STRIP
   ============================================= */
.trust-strip {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--light-gray);
}
.trust-strip p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-align: center;
  margin-bottom: 32px;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.trust-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-right: 48px;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--mid-gray);
  opacity: 0.55;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.trust-logo:hover { opacity: 0.9; transform: translateY(-2px); }
.trust-logo svg { width: 28px; height: 28px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal-light);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--white); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p  { font-size: 0.9rem; margin-bottom: 20px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }

/* =============================================
   APPROACH SECTION
   ============================================= */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-visual {
  position: relative;
}
.approach-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-img-wrap svg {
  width: 60%;
  opacity: 0.2;
}
.approach-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.approach-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.approach-badge .big-num {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.approach-badge .small-text {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 4px;
}
.approach-content h2 { margin-bottom: 16px; }
.approach-content p  { margin-bottom: 32px; }
.approach-list { margin-bottom: 40px; }
.approach-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}
.approach-list li:last-child { border-bottom: none; }
.approach-list .bullet {
  width: 28px;
  height: 28px;
  background: var(--off-white);
  border-radius: 50%;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.approach-list .bullet svg { width: 14px; height: 14px; color: var(--teal); }
.approach-list .item-text h4 { font-size: 0.97rem; margin-bottom: 4px; }
.approach-list .item-text p  { font-size: 0.87rem; }

/* =============================================
   STORY VIDEO CARDS
   ============================================= */
#story-videos {
  scroll-margin-top: calc(var(--header-total-h, 152px) + 16px);
}
.story-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  padding: 0;
  width: 100%;
  font: inherit;
  color: inherit;
}
.story-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal-light);
}
.story-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-deep);
}
.story-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.story-card:hover .story-card-thumb img {
  transform: scale(1.05);
}
.story-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 29, 56, 0.35);
  transition: background var(--transition);
}
.story-card-play svg {
  width: 56px;
  height: 56px;
  color: var(--white);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform var(--transition);
}
.story-card:hover .story-card-play {
  background: rgba(9, 29, 56, 0.48);
}
.story-card:hover .story-card-play svg {
  transform: scale(1.08);
}
.story-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.story-card-body h3 {
  font-size: 1.15rem;
  margin: 0;
}
.story-card-body p {
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}
.story-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 4px;
}

/* Video modal popup */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[hidden] {
  display: none;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 29, 56, 0.88);
  backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-xl);
  animation: videoModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes videoModalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.22);
}
.video-modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}
.video-modal-title {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 40px 16px 0;
  padding-right: 8px;
}
.video-modal-player {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.video-modal-player video {
  width: 100%;
  max-height: min(70vh, 520px);
  display: block;
  background: #000;
}

/* =============================================
   SOLUTIONS TABS
   ============================================= */
.solutions-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-gray);
  border: 2px solid var(--light-gray);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}
.tab-btn:hover { border-color: var(--teal); color: var(--teal); }
.tab-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; }
.solutions-panel-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.solution-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
a.solution-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.solution-item .solution-text h4 {
  color: var(--navy);
}
.solution-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-icon svg { width: 24px; height: 24px; color: var(--teal); }
.solution-text h4 { margin-bottom: 6px; }
.solution-text p  { font-size: 0.87rem; }

/* =============================================
   STACK CARDS (numbered feature list — sticky overlap)
   ============================================= */
.stack-cards {
  --stack-gap: 20px;
  --stack-stick-top: calc(var(--header-total-h, 152px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: min(32vh, 320px);
}
.stack-card {
  --stack-i: 0;
  position: sticky;
  top: calc(var(--stack-stick-top) + var(--stack-i) * var(--stack-gap));
  z-index: calc(var(--stack-i) + 1);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  margin-bottom: 32px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(13, 43, 78, 0.1);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.stack-card:nth-child(1) { --stack-i: 0; }
.stack-card:nth-child(2) { --stack-i: 1; }
.stack-card:nth-child(3) { --stack-i: 2; }
.stack-card:nth-child(4) { --stack-i: 3; }
.stack-card:nth-child(5) { --stack-i: 4; }
.stack-card:last-child { margin-bottom: 0; }
.stack-card:hover {
  box-shadow: 0 16px 48px rgba(13, 43, 78, 0.14);
  border-color: var(--teal-light);
}
.stack-card-num {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stack-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
}
.stack-card > div p { margin-bottom: 18px; }
.stack-card-list { display: flex; flex-direction: column; gap: 10px; }
.stack-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark-gray);
}
.stack-card-list svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--teal-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--teal); transition: color var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-answer p { font-size: 0.9rem; }
.faq-item.open .faq-answer { max-height: 320px; padding: 0 24px 22px; }

/* =============================================
   RELATED SERVICES / EXPLORE MORE
   ============================================= */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.related-link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal-light);
}
.related-link-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.related-link-icon svg { width: 22px; height: 22px; color: var(--teal); }
.related-link-card h4 { font-size: 1rem; margin-bottom: 8px; }
.related-link-card p  { font-size: 0.85rem; margin-bottom: 16px; }

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.06;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block .desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.stat-block .unit {
  font-size: 1.5rem;
  color: var(--gold);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--teal);
  line-height: 0.6;
  height: 32px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--light-gray);
  padding-top: 20px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: 0.9rem; }
.author-title { font-size: 0.8rem; color: var(--mid-gray); }
.star-rating  { display: flex; gap: 3px; margin-top: 4px; }
.star-rating svg { width: 13px; height: 13px; color: var(--gold); }

/* =============================================
   INSIGHTS / BLOG
   ============================================= */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.insight-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insight-img svg { width: 64px; height: 64px; opacity: 0.2; color: var(--white); }
.insight-img .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.insight-body p  { font-size: 0.87rem; flex: 1; margin-bottom: 20px; }
.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--mid-gray);
}
.insight-meta .read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.insight-meta svg { width: 13px; height: 13px; }

a.insight-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.insight-card:hover .insight-body h3 { color: var(--teal); }
.insight-card .card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
}

/* Blog listing page */
.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.blog-filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--light-gray);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--off-white);
}

/* Blog article (single post) */
.blog-article-inner {
  max-width: 780px;
  margin: 0 auto;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.blog-back:hover { color: var(--navy); }
.blog-article-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--light-gray);
}
.blog-article-header .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-article-header h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  font-size: 0.88rem;
  color: var(--mid-gray);
}
.blog-article-meta .read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-article-meta svg { width: 14px; height: 14px; }
.blog-featured-img {
  height: min(360px, 50vw);
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-featured-img svg {
  width: 80px;
  height: 80px;
  opacity: 0.2;
  color: var(--white);
}
.blog-article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark-gray);
  margin-bottom: 1.25em;
  text-align: justify;
  text-justify: inter-word;
}
.blog-article-content h2 {
  font-size: 1.45rem;
  margin: 2em 0 0.75em;
  color: var(--navy);
}
.blog-article-content ul {
  margin: 0 0 1.25em 1.25em;
  list-style: disc;
}
.blog-article-content li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--dark-gray);
  margin-bottom: 0.5em;
}
.blog-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--light-gray);
}
.blog-related h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  text-align: center;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-band .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .nav-logo {
  margin-bottom: 20px;
}
.footer-brand .logo-mark {
  background: transparent;
  margin-bottom: 0;
}
.footer-brand .nav-logo .logo-mark.logo-mark--img {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.footer-brand .nav-logo .logo-mark.logo-mark--img img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link:hover { background: var(--teal); }
.social-link svg { width: 16px; height: 16px; color: var(--white); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-row select {
  cursor: pointer;
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(0,163,181,0.15);
}
.form-row textarea { resize: vertical; }
.form-success {
  display: none;
  font-size: 0.88rem;
  color: var(--teal);
  font-weight: 600;
  background: var(--off-white);
  border: 1px solid var(--teal-light);
  border-radius: 8px;
  padding: 12px 16px;
  animation: fadeInUp 0.4s ease both;
}
.contact-form.submitted .form-success { display: block; }
.contact-form.submitted button[type="submit"] { opacity: 0.6; pointer-events: none; }

/* Free assessment page */
.assessment-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.assessment-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark-gray);
  cursor: pointer;
}
.assessment-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  flex-shrink: 0;
}
.assessment-benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.assessment-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.assessment-benefits .solution-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.assessment-benefits strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.assessment-benefits p {
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.55;
}

/* =============================================
   ABOUT US PAGES
   ============================================= */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-pillar-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.about-pillar-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-pillar-card .pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.about-pillar-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.about-pillar-card p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
  color: var(--mid-gray);
}

.about-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-region-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-region-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-region-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.about-region-card .region-body {
  padding: 22px 24px;
}
.about-region-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.about-region-card p {
  font-size: 0.85rem;
  margin: 0 0 12px;
  line-height: 1.55;
  color: var(--mid-gray);
}
.about-region-card .region-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.about-fact-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.about-fact-card .fact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-fact-card .fact-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.about-fact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.about-fact-card p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
  color: var(--mid-gray);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.about-mission-card {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.about-mission-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.about-mission-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.journey-timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 0;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  opacity: 0.35;
}
.journey-step {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}
.journey-step:last-child { margin-bottom: 0; }
.journey-step-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--off-white);
}
.journey-step-marker svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.journey-step-body {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.journey-step:hover .journey-step-body {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.journey-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 6px;
}
.journey-step-body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.journey-step-body p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
  color: var(--mid-gray);
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.experience-metric {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
}
.experience-metric .metric-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.experience-metric .metric-label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.4;
}

.about-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .about-pillars-grid   { grid-template-columns: 1fr; }
  .about-regions-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-facts-grid     { grid-template-columns: repeat(2, 1fr); }
  .experience-metrics   { grid-template-columns: repeat(2, 1fr); }
  .about-related-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-regions-grid   { grid-template-columns: 1fr; }
  .about-facts-grid     { grid-template-columns: 1fr; }
  .about-mission-grid   { grid-template-columns: 1fr; }
  .experience-metrics   { grid-template-columns: 1fr 1fr; }
  .about-related-grid   { grid-template-columns: 1fr; }
  .journey-timeline::before { left: 22px; }
  .journey-step-marker { width: 44px; height: 44px; }
  .journey-step-marker svg { width: 18px; height: 18px; }
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-deep);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   NEWSLETTER SIGNUP
   ============================================= */
.newsletter-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.newsletter-text h3 { color: var(--white); font-size: 1.3rem; }
.newsletter-text p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 0; }
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--teal-light); }
.newsletter-form button {
  padding: 13px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* =============================================
   GLOBAL PRESENCE MAP
   ============================================= */
.map-section { background: var(--off-white); }
.world-map-container {
  position: relative;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.world-map-container svg { width: 100%; height: 100%; }
.map-dots-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.map-dot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}
.map-dot-item .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--teal  { background: var(--teal); }
.dot--navy  { background: var(--navy); }
.dot--gold  { background: var(--gold); }

/* =============================================
   SEARCH OVERLAY
   ============================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(9,29,56,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box {
  width: 100%;
  max-width: 680px;
  position: relative;
}
.search-box input,
.search-box .search-input {
  width: 100%;
  padding: 20px 64px 20px 24px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1.2rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.search-box input:focus,
.search-box .search-input:focus { border-color: var(--teal-light); }
.search-box input::placeholder,
.search-box .search-input::placeholder { color: rgba(255,255,255,0.4); }
.search-close-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search-close-btn svg { width: 18px; height: 18px; color: var(--white); }
.search-hints {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.search-hint {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.search-hint:hover { border-color: var(--teal-light); color: var(--white); }
.search-feedback {
  width: 100%;
  max-width: 680px;
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.search-feedback.is-error { color: #ffb4b4; }
.search-feedback[hidden] { display: none; }

/* =============================================
   ANIMATIONS / REVEALS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-section {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   QUICK CONTACT FAB (global)
   ============================================= */
.quick-contact-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.quick-contact-fab > * { pointer-events: auto; }

.quick-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}
.quick-contact-fab.is-open .quick-contact-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.quick-contact-btn__label {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.quick-contact-fab.is-open .quick-contact-btn__label {
  opacity: 1;
  transform: translateX(0);
}
.quick-contact-fab.is-open .quick-contact-btn:nth-child(1) .quick-contact-btn__label { transition-delay: 0.04s; }
.quick-contact-fab.is-open .quick-contact-btn:nth-child(2) .quick-contact-btn__label { transition-delay: 0.08s; }
.quick-contact-fab.is-open .quick-contact-btn:nth-child(3) .quick-contact-btn__label { transition-delay: 0.12s; }
.quick-contact-fab.is-open .quick-contact-btn:nth-child(4) .quick-contact-btn__label { transition-delay: 0.16s; }

.quick-contact-btn__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quick-contact-btn__icon svg { width: 22px; height: 22px; }
.quick-contact-btn:hover .quick-contact-btn__icon {
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
}
.quick-contact-btn--call .quick-contact-btn__icon {
  background: var(--teal);
  color: var(--white);
}
.quick-contact-btn--whatsapp .quick-contact-btn__icon {
  background: #25d366;
  color: var(--white);
}
.quick-contact-btn--map .quick-contact-btn__icon {
  background: var(--navy);
  color: var(--white);
}
.quick-contact-btn--mail .quick-contact-btn__icon {
  background: var(--gold);
  color: var(--white);
}

.quick-contact-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 123, 138, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  flex-shrink: 0;
}
.quick-contact-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 123, 138, 0.5);
}
.quick-contact-toggle svg {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.quick-contact-toggle__close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}
.quick-contact-fab.is-open .quick-contact-toggle {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 8px 28px rgba(13, 43, 78, 0.4);
}
.quick-contact-fab.is-open .quick-contact-toggle__open {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}
.quick-contact-fab.is-open .quick-contact-toggle__close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

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

/* Large tablets / small laptops */
@media (max-width: 1200px) {
  .approach-grid       { gap: 56px; }
  .footer-grid         { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  .footer-brand        { grid-column: span 4; }
  .stats-row           { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
  .story-cards-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .insights-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-wrap   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand        { grid-column: span 3; }
  .dropdown--wide      { width: min(600px, 92vw); grid-template-columns: repeat(2, 1fr); }
  .dropdown--services  { width: min(600px, 92vw); grid-template-columns: 1fr; }
  .hero-globe          { width: 50vw; right: -10%; opacity: 0.06; }
}

/* Tablets */
@media (max-width: 900px) {
  .section-pad         { padding: 72px 0; }
  .section-pad-sm      { padding: 56px 0; }
  .section-intro       { margin-bottom: 40px; }
  .approach-grid       { grid-template-columns: 1fr; gap: 48px; }
  .approach-visual     { order: -1; }
  .approach-img-wrap   { aspect-ratio: 16/9; }
  .approach-badge      { right: 20px; bottom: -12px; }
  .stats-row           { grid-template-columns: repeat(2, 1fr); }
  .stats-band          { padding: 64px 0; }
  .solutions-panel-grid{ grid-template-columns: 1fr; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-hamburger       { display: flex; }
  .mobile-nav          { display: block; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: span 2; }
  .newsletter-wrap     { flex-direction: column; text-align: center; padding: 32px 28px; }
  .newsletter-form     { width: 100%; max-width: 100%; }
  .page-hero           { min-height: 100vh; min-height: 100dvh; padding-top: calc(var(--header-total-h, 152px) + 16px); padding-bottom: 56px; }
  .stack-cards         { padding-bottom: 0; gap: 24px; }
  .stack-card          { position: relative; top: auto; z-index: auto; margin-bottom: 0; grid-template-columns: 1fr; gap: 14px; padding: 28px; box-shadow: var(--shadow-sm); }
  .stack-card-num      { font-size: 1.8rem; }
  .cta-band            { padding: 72px 0; }
  .trust-strip         { padding: 40px 0; }
  .service-card        { padding: 28px 24px; }
  .contact-form        { max-width: 100%; }
  .hero-content p      { font-size: 1.05rem; }
  .scroll-indicator    { display: none; }
}

/* Large phones / small tablets */
@media (max-width: 768px) {
  .hero-actions .btn,
  .page-hero .hero-actions .btn,
  .cta-band .btn-group .btn {
    flex: 1 1 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .hero-actions,
  .page-hero .hero-actions,
  .cta-band .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-stats          { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .page-hero h1        { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .page-hero .lead     { font-size: 1rem; margin-bottom: 28px; }
  .section-header-row  { flex-direction: column; align-items: flex-start; }
  .solutions-tabs      { gap: 6px; margin-bottom: 40px; }
  .tab-btn             { padding: 8px 16px; font-size: 0.82rem; }
  .solution-item       { padding: 20px; gap: 16px; }
  .newsletter-form     { flex-direction: column; }
  .newsletter-form input {
    border-radius: var(--radius-sm);
    width: 100%;
  }
  .newsletter-form button {
    border-radius: var(--radius-sm);
    width: 100%;
  }
  .search-overlay      { padding: 24px 20px; }
  .search-box input    { font-size: 1rem; padding: 16px 52px 16px 18px; }
  .search-hints        { justify-content: center; padding: 0 4px; }
  .world-map-container { aspect-ratio: 4/3; margin-top: 32px; }
  .map-dots-info       { flex-direction: column; align-items: center; gap: 16px; }
  .related-link-card   { padding: 22px; }
  .faq-item.open .faq-answer { max-height: 480px; }
}

/* Phones */
@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .announcement-bar {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 10px 36px 10px 16px;
    text-align: left;
    justify-content: flex-start;
  }
  .announcement-bar .close-ann { right: 12px; }
  .nav-util .container { justify-content: center; gap: 12px; flex-wrap: wrap; }
  .nav-util-item  { font-size: 0.7rem; }
  .nav-util-item svg { width: 12px; height: 12px; }
  .nav-logo .logo-mark.logo-mark--img img { height: 42px; }
  .footer-brand .nav-logo .logo-mark.logo-mark--img img { height: 52px; }
  .nav-main .container { gap: 12px; }
  .section-pad    { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
  .section-intro  { margin-bottom: 32px; }
  .services-grid  { grid-template-columns: 1fr; }
  .story-cards-grid { grid-template-columns: 1fr; }
  .blog-related .insights-grid { grid-template-columns: 1fr; }
  .testimonials-wrap { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero           { height: 100svh; max-height: 100svh; padding-bottom: 44px; }
  .hero--inner    { min-height: auto; padding: calc(var(--header-total-h, 120px) + 24px) 0 70px; }
  .hero-content   { padding-top: 0; }
  .hero-content h1 { margin-bottom: 14px; font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-content p  { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-actions   { margin-bottom: 0; gap: 10px; }
  .hero-stats-bar { padding: 22px 0; }
  .hero-stats-bar .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats     { gap: 20px; padding-top: 28px; }
  .hero-stat .number { font-size: 1.8rem; }
  .hero-globe     { display: none; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand   { grid-column: 1; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
  .world-map-container { aspect-ratio: 4/3; }
  .trust-logos    { gap: 24px; }
  .dropdown--wide { width: 90vw; grid-template-columns: 1fr; padding: 20px; }
  .related-services-grid { grid-template-columns: 1fr; }
  .page-hero      { min-height: 100svh; padding-top: calc(var(--header-total-h, 120px) + 12px); padding-bottom: 48px; }
  .page-hero .container { width: 100%; }
  .breadcrumb     { font-size: 0.75rem; margin-bottom: 16px; }
  .faq-question   { padding: 16px 18px; font-size: 0.9rem; }
  .cta-band       { padding: 56px 0; }
  .cta-band p     { font-size: 0.98rem; margin-bottom: 28px; }
  .btn            { padding: 13px 24px; font-size: 0.85rem; }
  .service-icon   { width: 48px; height: 48px; margin-bottom: 18px; }
  .approach-badge { position: relative; right: auto; bottom: auto; margin-top: 16px; display: inline-block; }
  .approach-visual { margin-bottom: 0; }
  .stack-card     { padding: 24px 20px; }
  .quick-contact-fab { right: 16px; bottom: 16px; }
  .quick-contact-btn__icon { width: 44px; height: 44px; }
  .quick-contact-toggle { width: 52px; height: 52px; }
  .site-footer    { padding-top: 56px; }
  .toast          { left: 16px; right: 16px; transform: translateX(0) translateY(20px); max-width: calc(100% - 32px); text-align: center; }
  .toast.show     { transform: translateX(0) translateY(0); }
}

/* Small phones */
@media (max-width: 480px) {
  .nav-util-item:nth-child(2) { display: none; }
  .hero-stats-bar .hero-stats { grid-template-columns: 1fr; text-align: center; }
  .stats-row       { grid-template-columns: 1fr; }
  .hero-stat       { width: 100%; }
  .solution-item   { flex-direction: column; align-items: flex-start; }
  .testimonial-card { padding: 24px 20px; }
  .insight-body    { padding: 20px; }
  .page-hero       { padding-top: calc(var(--header-total-h, 110px) + 8px); padding-bottom: 40px; }
  .marquee-track   { animation-duration: 36s; }
}

/* Very small screens */
@media (max-width: 360px) {
  .container       { padding: 0 14px; }
  .btn             { padding: 12px 18px; }
  .announcement-bar { font-size: 0.68rem; }
}
