/*
 * zahwah-v2.css — Zahwah Global 2026 Premium Redesign
 * Inspired by: Refokus (scroll storytelling), Made with GSAP (interactions),
 *              TesroXP (color depth & vibrancy)
 * Stack: Bootstrap 5.3 override layer + custom design system
 */

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Backgrounds ── */
  --zv-bg:        #F1F5F9;
  --zv-bg2:       #F8FAFC;
  --zv-bg3:       #FFFFFF;
  --zv-surface:   #FFFFFF;
  --zv-surface2:  #F8FAFC;
  --zv-glass:     rgba(255,255,255,0.92);

  /* ── Brand palette ── */
  --zv-primary:   #0077B6;
  --zv-primary2:  #0096D6;
  --zv-cyan:      #0077B6;
  --zv-coral:     #DC2626;
  --zv-mint:      #059669;
  --zv-amber:     #D97706;
  --zv-pink:      #DB2777;

  /* ── Text ── */
  --zv-text:      #111827;
  --zv-muted:     #6B7280;
  --zv-muted2:    #374151;

  /* ── Borders ── */
  --zv-border:    #E2E8F0;
  --zv-border2:   rgba(0,119,182,0.18);

  /* ── Accent gradients ── */
  --zv-grad-primary: linear-gradient(135deg, #0077B6, #0099DD);
  --zv-grad-warm:    linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  --zv-grad-cool:    linear-gradient(135deg, #0077B6, #0099DD);
  --zv-grad-hero:    linear-gradient(135deg, #0077B6, #0099DD);

  /* ── Easing ── */
  --zv-ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --zv-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --zv-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Typography ── */
  --zv-font-display: 'Sora', 'Inter', sans-serif;
  --zv-font-body:    'Inter', 'DM Sans', sans-serif;

  /* ── Radius ── */
  --zv-r:   0.875rem;
  --zv-r2:  1.125rem;
  --zv-rmd: 0.625rem;
  --zv-rsm: 0.375rem;

  /* ── Shadows (light theme, very subtle) ── */
  --zv-shadow-sm:  0 1px 3px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.04);
  --zv-shadow-md:  0 2px 8px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
  --zv-shadow-lg:  0 4px 12px rgba(0,0,0,0.05), 0 12px 40px rgba(0,0,0,0.07);
  --zv-glow-p:     0 4px 20px rgba(0,119,182,0.15);
  --zv-glow-c:     0 4px 20px rgba(0,119,182,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   BASE OVERRIDES
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--zv-bg) !important;
  color: var(--zv-text);
  font-family: var(--zv-font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Override Bootstrap's bg-nexus-dark */
.bg-nexus-dark { background: var(--zv-bg) !important; }
.bg-nexus-primary { background: var(--zv-bg) !important; }

/* ═══════════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR
═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--zv-bg); }
::-webkit-scrollbar-thumb { background: var(--zv-primary); border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM NAVBAR
═══════════════════════════════════════════════════════════════ */
.zv-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

/* Scrolled state */
.zv-nav.scrolled {
  background: rgba(6,5,14,0.88) !important;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--zv-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.zv-nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

/* Logo */
.zv-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.zv-logo:hover { opacity: 0.85; }
.zv-logo img { height: 40px; width: auto; }

/* Nav links */
.zv-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.zv-nav-links > li { position: relative; }

.zv-nav-links > li > a,
.zv-nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 2rem;
  font-family: var(--zv-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #F1F5F9;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.zv-nav-links > li > a:hover,
.zv-nav-links > li > button:hover,
.zv-nav-links > li > a.active {
  color: var(--zv-text);
  background: rgba(255,255,255,0.05);
}
.zv-nav-links > li > a.active { color: var(--zv-cyan); }

/* Dropdown caret */
.zv-caret {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.zv-nav-links > li.is-open .zv-caret { transform: rotate(180deg); }

/* Mega dropdown */
.zv-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(10,9,24,0.96);
  border: 1px solid var(--zv-border);
  border-radius: var(--zv-r2);
  padding: 1.25rem;
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(24px);
  box-shadow: var(--zv-shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
  transition: opacity 0.25s ease, transform 0.25s var(--zv-ease);
}
.zv-nav-links > li.is-open .zv-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.zv-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--zv-rmd);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s var(--zv-spring);
}
.zv-dd-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(4px);
}
.zv-dd-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.zv-dd-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--zv-text);
  margin-bottom: 0.15rem;
}
.zv-dd-text span {
  font-size: 0.77rem;
  color: var(--zv-muted);
  line-height: 1.4;
}

/* Nav right actions */
.zv-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Language selector */
.zv-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--zv-border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(240,238,255,0.6);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.zv-lang-btn:hover { background: rgba(255,255,255,0.08); color: var(--zv-text); }

/* CTA button */
.zv-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--zv-grad-primary);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s var(--zv-spring), box-shadow 0.25s ease, opacity 0.2s;
  white-space: nowrap;
}
.zv-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,119,182,0.45);
  opacity: 0.95;
}
.zv-nav-cta:active { transform: translateY(0); }

/* Hamburger button */
.zv-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--zv-border);
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: background 0.2s;
}
.zv-hamburger:hover { background: rgba(255,255,255,0.1); }
.zv-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--zv-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.zv-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zv-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.zv-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.zv-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,5,14,0.97);
  backdrop-filter: blur(24px);
  z-index: 1049;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 2rem;
}
.zv-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.zv-mobile-links {
  list-style: none;
  margin: 0; padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  max-width: 360px;
}
.zv-mobile-links a,
.zv-mobile-links button {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(240,238,255,0.75);
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.zv-mobile-links a:hover, .zv-mobile-links button:hover {
  background: rgba(255,255,255,0.05);
  color: var(--zv-text);
}
.zv-mobile-links .zv-mob-sub {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.1rem;
  padding: 0 0.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.zv-mobile-links .zv-mob-sub.is-open { max-height: 400px; }
.zv-mobile-links .zv-mob-sub a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--zv-muted);
  padding: 0.55rem 0.85rem;
}
.zv-mobile-cta-wrap {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE TOP OFFSET (account for fixed nav)
═══════════════════════════════════════════════════════════════ */
.zv-page { padding-top: 72px; }

/* ═══════════════════════════════════════════════════════════════
   GLOBAL TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
.zv-display {
  font-family: var(--zv-font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--zv-text);
}

.zv-h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
.zv-h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
.zv-h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.zv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zv-muted);
  margin-bottom: 1rem;
}
.zv-kicker::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--zv-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.zv-lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--zv-muted2);
  line-height: 1.72;
  max-width: 580px;
}

/* Gradient text utility */
.zv-grad-text {
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.zv-grad-warm {
  background: var(--zv-grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL BUTTONS
═══════════════════════════════════════════════════════════════ */
.zv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--zv-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--zv-spring), box-shadow 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.zv-btn:hover { transform: translateY(-3px); }
.zv-btn:active { transform: translateY(-1px); }

.zv-btn-primary {
  background: var(--zv-grad-primary);
  color: #fff;
}
.zv-btn-primary:hover {
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,119,182,0.45);
}

.zv-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(240,238,255,0.8);
  backdrop-filter: blur(8px);
}
.zv-btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: var(--zv-text);
}

.zv-btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--zv-border);
  color: var(--zv-text);
}
.zv-btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATION CLASSES
   (Applied via IntersectionObserver in zahwah-v2.js)
═══════════════════════════════════════════════════════════════ */
.zv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--zv-ease), transform 0.7s var(--zv-ease);
}
.zv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.zv-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--zv-ease), transform 0.7s var(--zv-ease);
}
.zv-reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.zv-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--zv-ease), transform 0.7s var(--zv-ease);
}
.zv-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.zv-delay-1 { transition-delay: 0.08s !important; }
.zv-delay-2 { transition-delay: 0.16s !important; }
.zv-delay-3 { transition-delay: 0.24s !important; }
.zv-delay-4 { transition-delay: 0.32s !important; }
.zv-delay-5 { transition-delay: 0.40s !important; }
.zv-delay-6 { transition-delay: 0.48s !important; }

/* Clip-path text reveal (Refokus style) */
.zv-clip-reveal {
  overflow: hidden;
  display: block;
}
.zv-clip-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.85s var(--zv-ease);
}
.zv-clip-inner.zv-kicker {
  display: inline-flex;
}
.zv-clip-reveal.is-visible .zv-clip-inner { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════════════════════════════ */
.zv-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.zv-section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.zv-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  width: 100%;
}

/* Section header center block */
.zv-section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.zv-section-head h2 {
  font-family: var(--zv-font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--zv-text);
  margin: 0 0 1rem;
}
.zv-section-head p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--zv-muted2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════════
   GLASS CARD
═══════════════════════════════════════════════════════════════ */
.zv-card {
  background: var(--zv-surface);
  border: 1px solid var(--zv-border);
  border-radius: var(--zv-r2);
  padding: 2rem;
  transition: transform 0.3s var(--zv-spring), box-shadow 0.3s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.zv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}
.zv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--zv-shadow-lg);
  border-color: var(--zv-border2);
}

/* Card accent colors */
.zv-card-violet:hover { box-shadow: 0 24px 64px rgba(124,61,255,0.25); }
.zv-card-cyan:hover   { box-shadow: 0 24px 64px rgba(0,212,255,0.2); }
.zv-card-coral:hover  { box-shadow: 0 24px 64px rgba(255,77,109,0.2); }
.zv-card-mint:hover   { box-shadow: 0 24px 64px rgba(0,229,160,0.2); }

/* Icon box */
.zv-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.zv-ib-violet { background: rgba(124,61,255,0.12); color: var(--zv-primary); }
.zv-ib-cyan   { background: rgba(0,212,255,0.1); color: var(--zv-cyan); }
.zv-ib-coral  { background: rgba(255,77,109,0.1); color: var(--zv-coral); }
.zv-ib-mint   { background: rgba(0,229,160,0.1); color: var(--zv-mint); }
.zv-ib-amber  { background: rgba(255,140,0,0.1); color: var(--zv-amber); }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM FOOTER — redesigned
═══════════════════════════════════════════════════════════════ */
.zv-footer {
  background: var(--zv-bg);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

/* Top gradient line */
.zv-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--zv-primary) 30%, var(--zv-cyan) 70%, transparent 100%);
  z-index: 1;
}

/* Ambient orbs */
.zv-footer-orb-1 {
  position: absolute;
  top: 10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,119,182,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.zv-footer-orb-2 {
  position: absolute;
  bottom: 15%; right: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Giant faint watermark */
.zv-footer-wm {
  position: absolute;
  bottom: -0.15em; right: -0.05em;
  font-family: var(--zv-font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  text-stroke: 1px rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* ── Pre-footer CTA band ─────────────────────────────────────── */
.zv-prefooter {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--zv-border);
  padding: 4rem 0;
}
.zv-prefooter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.zv-prefooter-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zv-mint);
  margin-bottom: 0.75rem;
}
.zv-prefooter-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--zv-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--zv-mint);
  animation: zvPulseDot 2s ease-in-out infinite;
}
@keyframes zvPulseDot {
  0%, 100% { box-shadow: 0 0 6px var(--zv-mint); opacity: 1; }
  50%       { box-shadow: 0 0 16px var(--zv-mint), 0 0 24px rgba(0,229,160,0.3); opacity: 0.8; }
}
.zv-prefooter-heading {
  font-family: var(--zv-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--zv-text);
  margin: 0;
}
.zv-prefooter-heading .zv-grad-text {
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.zv-prefooter-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.zv-prefooter-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--zv-r);
  color: #25D366;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.zv-prefooter-wa:hover {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

/* ── Stats strip ─────────────────────────────────────────────── */
.zv-footer-stats-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--zv-border);
  padding: 2rem 0;
  background: rgba(255,255,255,0.012);
}
.zv-footer-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.zv-footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 2.5rem;
  flex: 1;
}
.zv-fstat-num {
  font-family: var(--zv-font-display);
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.zv-fstat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zv-muted);
  margin-top: 0.2rem;
}
.zv-fstat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--zv-border);
  flex-shrink: 0;
}

/* ── Main footer grid ────────────────────────────────────────── */
.zv-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1.1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}

/* Brand column */
.zv-footer-logo-link { display: inline-block; margin-bottom: 1.25rem; }
.zv-footer-logo-img  { height: 64px; width: auto; display: block; }

.zv-footer-desc {
  font-size: 0.875rem;
  color: var(--zv-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1rem;
}
.zv-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--zv-muted);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.zv-footer-email:hover { color: var(--zv-cyan); }
.zv-footer-email .bi { color: var(--zv-primary2); }

/* Social icons */
.zv-social-links { display: flex; gap: 0.6rem; }
.zv-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--zv-surface);
  border: 1px solid var(--zv-border);
  color: var(--zv-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s var(--zv-spring);
}
.zv-social-link:hover {
  background: rgba(0,119,182,0.12);
  border-color: rgba(0,119,182,0.30);
  color: var(--zv-primary2);
  transform: translateY(-4px);
}

/* Nav columns */
.zv-footer-heading {
  font-family: var(--zv-font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zv-text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.zv-footer-heading::before {
  content: '';
  display: inline-block;
  width: 16px; height: 2px;
  background: var(--zv-grad-primary);
  border-radius: 1px;
  flex-shrink: 0;
}

.zv-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.zv-footer-links a {
  font-size: 0.875rem;
  color: var(--zv-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0;
  transition: color 0.2s ease, gap 0.2s ease;
  border-bottom: 1px solid transparent;
}
.zv-footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
  color: var(--zv-cyan);
}
.zv-footer-links a:hover {
  color: var(--zv-text);
  gap: 0.55rem;
}
.zv-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact column */
.zv-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.zv-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--zv-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
a.zv-footer-contact-item:hover { color: var(--zv-text); }
.zv-fci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--zv-surface);
  border: 1px solid var(--zv-border);
  border-radius: 7px;
  font-size: 0.8rem;
  color: var(--zv-primary2);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Region chips */
.zv-footer-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.zv-footer-region {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border: 1px solid var(--zv-border);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--zv-muted);
  background: var(--zv-surface);
}

/* ── Bottom bar ──────────────────────────────────────────────── */
.zv-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--zv-border);
  padding: 1.5rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.zv-footer-copy {
  font-size: 0.8rem;
  color: var(--zv-muted);
}
.zv-footer-tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.2);
  margin: 0;
  letter-spacing: 0.06em;
}
.zv-footer-legal {
  display: flex;
  gap: 1.25rem;
}
.zv-footer-legal a {
  font-size: 0.8rem;
  color: var(--zv-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.zv-footer-legal a:hover { color: var(--zv-text); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE STICKY CTA — upgraded
═══════════════════════════════════════════════════════════════ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,5,14,0.9);
  border: 1px solid var(--zv-border);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(20px);
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--zv-muted);
  transition: background 0.2s, color 0.2s;
}
.mobile-sticky-cta a:hover, .mobile-sticky-cta a:first-child {
  background: var(--zv-grad-primary);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (non-home pages)
═══════════════════════════════════════════════════════════════ */
.zv-page-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zv-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,119,182,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.zv-page-hero h1 {
  font-family: var(--zv-font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--zv-text);
  margin: 0 0 1.25rem;
}
.zv-page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--zv-muted2);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC
═══════════════════════════════════════════════════════════════ */
.zv-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.zv-stat-box {
  background: var(--zv-surface);
  border: 1px solid var(--zv-border2);
  border-radius: var(--zv-r);
  padding: 1.5rem;
  text-align: center;
}
.zv-stat-box strong {
  display: block;
  font-family: var(--zv-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.zv-stat-box span { font-size: 0.82rem; color: var(--zv-muted); }

/* Timeline */
.zv-timeline { position: relative; padding-left: 2.25rem; }
.zv-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--zv-primary) 0%, rgba(0,119,182,0.08) 100%);
  border-radius: 2px;
}
.zv-tl-item {
  position: relative;
  margin-bottom: 1.75rem;
}
.zv-tl-item:last-child { margin-bottom: 0; }
.zv-tl-dot {
  position: absolute;
  left: -1.75rem;
  top: 1.25rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--zv-primary);
  box-shadow: 0 0 16px rgba(0,119,182,0.50), 0 0 32px rgba(0,119,182,0.20);
}
.zv-tl-card {
  background: var(--zv-surface);
  border: 1px solid var(--zv-border);
  border-radius: var(--zv-r);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, transform 0.3s var(--zv-spring);
}
.zv-tl-card:hover { border-color: var(--zv-border2); transform: translateX(4px); }
.zv-tl-year {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zv-primary2);
  margin-bottom: 0.3rem;
}
.zv-tl-card strong {
  display: block;
  color: var(--zv-text);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.zv-tl-card p { color: var(--zv-muted); font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* Service cards */
.zv-service-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.zv-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zv-text);
  margin: 0 0 0.625rem;
}
.zv-service-card p {
  font-size: 0.875rem;
  color: var(--zv-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.zv-check-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.zv-check-list li {
  font-size: 0.85rem;
  color: rgba(240,238,255,0.68);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.zv-check-list li i { font-size: 0.8rem; flex-shrink: 0; }

/* Why cards */
.zv-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.zv-why-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.zv-why-card strong {
  display: block;
  color: var(--zv-text);
  font-size: 1rem;
  margin-bottom: 0.375rem;
}
.zv-why-card span {
  color: var(--zv-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Metrics strip */
.zv-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  text-align: center;
}
.zv-metric strong {
  display: block;
  font-family: var(--zv-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.zv-metric span { font-size: 0.875rem; color: var(--zv-muted); }

/* Team */
.zv-team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.zv-team-card { text-align: center; }
.zv-team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--zv-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  letter-spacing: 0.03em;
}
.zv-team-card strong {
  display: block;
  color: var(--zv-text);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.zv-team-card .zv-team-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.zv-team-card p { color: var(--zv-muted); font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* Regions grid */
.zv-regions-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.zv-region-card {
  text-align: center;
  padding: 2rem 1.25rem;
}
.zv-region-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.zv-region-card strong {
  display: block;
  color: var(--zv-text);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.zv-region-card p { color: var(--zv-muted); font-size: 0.825rem; line-height: 1.6; margin: 0; }

/* Final CTA section */
.zv-cta-section {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.zv-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,119,182,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 100%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(255,77,109,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.zv-cta-section h2 {
  font-family: var(--zv-font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--zv-text);
  margin: 0 0 1.25rem;
}
.zv-cta-section p {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--zv-muted2);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.72;
}
.zv-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE SHARED STYLES (nexus.css override layer)
═══════════════════════════════════════════════════════════════ */
.zg-page { background: var(--zv-bg) !important; }
.zg-section { padding: clamp(4.5rem,9vw,8rem) 0; }
.zg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zv-muted);
  margin-bottom: 1rem;
}
.zg-kicker::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--zv-primary);
  border-radius: 2px;
}
.zg-section-head { text-align: center; margin-bottom: 3.5rem; margin-left: auto; margin-right: auto; }
.zg-section-head h2 {
  font-family: var(--zv-font-display);
  font-size: clamp(1.8rem,4vw,3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--zv-text);
}
.zg-lead { color: var(--zv-muted2); line-height: 1.72; }

/* Override old card colors */
.zg-final-cta {
  background: var(--zv-bg2);
  border-top: 1px solid var(--zv-border);
  padding: clamp(4rem,9vw,7rem) 0;
  text-align: center;
}
.cta-panel { max-width: 680px; margin: 0 auto; }
.cta-panel .zg-kicker { justify-content: center; }
.cta-panel h2 {
  font-family: var(--zv-font-display);
  font-size: clamp(2rem,4.5vw,3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--zv-text);
  margin-bottom: 1rem;
}
.cta-panel p { color: var(--zv-muted2); line-height: 1.72; margin-bottom: 2.5rem; }
.zg-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* Override home buttons to match new system */
.home-btn { border-radius: 999px !important; font-weight: 700 !important; }
.home-btn-primary {
  background: var(--zv-grad-primary) !important;
  color: #fff !important;
  border: none !important;
}
.home-btn-primary:hover {
  color: #fff !important;
  box-shadow: 0 12px 40px rgba(0,119,182,0.45) !important;
  transform: translateY(-3px) !important;
}
.home-btn-ghost {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: var(--zv-text) !important;
}
.home-btn-ghost:hover { background: rgba(255,255,255,0.1) !important; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.zv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.zv-contact-info h3 {
  font-family: var(--zv-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--zv-text);
  margin-bottom: 1rem;
}
.zv-contact-info p { color: var(--zv-muted); line-height: 1.72; font-size: 0.95rem; }
.zv-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.zv-contact-detail i { color: var(--zv-primary); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.zv-contact-detail strong { display: block; color: var(--zv-text); font-size: 0.9rem; margin-bottom: 0.15rem; }
.zv-contact-detail span { color: var(--zv-muted); font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════════════════════════ */
.zv-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.zv-portfolio-card { overflow: hidden; }
.zv-portfolio-visual {
  height: 200px;
  border-radius: var(--zv-rmd) var(--zv-rmd) 0 0;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem;
  position: relative;
}
.zv-portfolio-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zv-text);
  margin-bottom: 0.35rem;
}
.zv-portfolio-body .zv-portfolio-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.zv-portfolio-body p { color: var(--zv-muted); font-size: 0.85rem; line-height: 1.65; }
.zv-portfolio-result {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--zv-border);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.zv-result-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(0,119,182,0.10);
  color: var(--zv-primary2);
  border: 1px solid rgba(0,119,182,0.18);
}

/* Filter tabs */
.zv-filter-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.zv-filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--zv-surface);
  border: 1px solid var(--zv-border);
  color: var(--zv-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.zv-filter-tab:hover, .zv-filter-tab.active {
  background: rgba(0,119,182,0.10);
  border-color: rgba(0,119,182,0.25);
  color: var(--zv-primary2);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE
═══════════════════════════════════════════════════════════════ */
.zv-product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.zv-product-industry-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.zv-industry-chip {
  background: var(--zv-surface);
  border: 1px solid var(--zv-border);
  border-radius: var(--zv-rmd);
  padding: 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--zv-text);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--zv-spring);
}
.zv-industry-chip:hover {
  background: rgba(0,119,182,0.07);
  border-color: rgba(0,119,182,0.20);
  transform: translateY(-3px);
}
.zv-industry-chip i { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--zv-primary2); }


/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════════════════════ */
.zv-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--zv-grad-primary);
  z-index: 9997;
  width: 0%;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .zv-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .zv-footer-cta-col { grid-column: span 2; }
}
@media (max-width: 991px) {
  .zv-nav-links, .zv-lang-btn, .zv-nav-cta { display: none; }
  .zv-hamburger { display: flex; }
  .zv-about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .zv-service-grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .zv-why-grid { grid-template-columns: 1fr; }
  .zv-metrics-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .zv-team-grid { grid-template-columns: 1fr; gap: 1rem; }
  .zv-regions-grid { grid-template-columns: repeat(2,1fr); }
  .zv-portfolio-grid { grid-template-columns: 1fr; }
  .zv-product-feature-grid { grid-template-columns: 1fr 1fr; }
  .zv-product-industry-grid { grid-template-columns: repeat(2,1fr); }
  .zv-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mobile-sticky-cta { display: flex; }

}
@media (max-width: 767px) {
  .zv-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .zv-footer-cta-col { grid-column: span 1; }
  .zv-footer-bottom { flex-direction: column; text-align: center; }
  .zv-metrics-grid { grid-template-columns: 1fr 1fr; }
  .zv-regions-grid { grid-template-columns: 1fr 1fr; }
  .zv-product-feature-grid { grid-template-columns: 1fr; }
  .zv-product-industry-grid { grid-template-columns: repeat(2,1fr); }
  .zv-service-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 479px) {
  .zv-nav-inner { padding: 0 1rem; }
  .zv-metrics-grid { grid-template-columns: 1fr 1fr; }
  .zv-regions-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── About Page ───────────────────────────────────────────────── */
.zv-about-hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background: var(--zv-bg);
}
.zv-about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.zv-about-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,119,182,0.20) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.zv-about-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.zv-about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
.zv-about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  min-width: 260px;
}
.zv-about-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.zv-about-stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,119,182,0.30);
  transform: translateY(-3px);
}
.zv-about-stat-card strong {
  display: block;
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.zv-about-stat-card span {
  font-size: 0.78rem;
  color: var(--zv-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .zv-about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .zv-about-hero-stats { min-width: 0; grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575px) {
  .zv-about-hero-stats { grid-template-columns: 1fr 1fr; }
}
.zv-about-hero-title {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--zv-text);
  margin: 1.25rem 0 1.5rem;
  overflow: hidden;
}
.zv-about-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--zv-muted);
  line-height: 1.7;
  max-width: 640px;
  display: block;
}

/* Story */
.zv-about-story {
  padding: 6rem 0;
  background: var(--zv-bg2);
}
.zv-about-story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.zv-about-story-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--zv-text);
  margin: 1rem 0 1.5rem;
  overflow: hidden;
}
.zv-about-story-body p {
  color: var(--zv-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.zv-about-story-body strong { color: var(--zv-text); }
.zv-about-story-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}
.zv-story-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.3s, transform 0.3s;
}
.zv-story-card:hover { border-color: rgba(0,119,182,0.35); transform: translateY(-4px); }
.zv-story-year, .zv-story-stat {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.zv-story-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zv-muted);
}

/* Values */
.zv-about-values {
  padding: 6rem 0;
  background: var(--zv-bg);
}
.zv-about-section-header { max-width: 640px; margin-bottom: 4rem; }
.zv-about-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--zv-text);
  margin: 1rem 0 0;
  overflow: hidden;
}
.zv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.zv-why-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.zv-why-card:hover {
  border-color: rgba(0,119,182,0.30);
  transform: translateY(-4px);
}
.zv-why-icon {
  font-size: 1.75rem;
  color: var(--zv-primary);
  margin-bottom: 1rem;
  display: block;
}
.zv-why-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zv-text);
  margin-bottom: 0.6rem;
}
.zv-why-card p {
  font-size: 0.9rem;
  color: var(--zv-muted);
  line-height: 1.7;
  margin: 0;
}

/* Metrics */
.zv-about-metrics {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.08) 0%, rgba(0,153,221,0.04) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.zv-about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.zv-about-metric { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.zv-metric-num {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.zv-metric-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zv-muted);
}

/* About services */
.zv-about-services {
  padding: 6rem 0;
  background: var(--zv-bg2);
}
.zv-about-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.zv-about-svc-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.zv-about-svc-item:hover {
  border-color: rgba(0,119,182,0.35);
  transform: translateY(-4px);
}
.zv-about-svc-item > i { font-size: 2rem; color: var(--zv-primary); }
.zv-about-svc-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--zv-text);
  margin: 0;
}
.zv-about-svc-item p {
  font-size: 0.9rem;
  color: var(--zv-muted);
  line-height: 1.6;
  margin: 0;
}
.zv-about-svc-arrow {
  margin-top: auto;
  color: var(--zv-primary);
  font-size: 1rem;
  transition: transform 0.3s;
}
.zv-about-svc-item:hover .zv-about-svc-arrow { transform: translateX(4px); }

/* Regions */
.zv-about-regions {
  padding: 6rem 0;
  background: var(--zv-bg);
}
.zv-about-regions-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
}
.zv-about-regions-text .zv-about-section-title { margin-bottom: 1.5rem; }
.zv-about-regions-text p { color: var(--zv-muted); line-height: 1.8; margin-bottom: 1rem; }
.zv-about-regions-visual { display: flex; justify-content: center; }
.zv-region-globe {
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(0,119,182,0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zv-globe-rotate 8s linear infinite;
}
@keyframes zv-globe-rotate {
  from { box-shadow: 0 0 0 0 rgba(0,119,182,0.12); }
  50%  { box-shadow: 0 0 60px 20px rgba(0,119,182,0.12); }
  to   { box-shadow: 0 0 0 0 rgba(0,119,182,0.12); }
}
.zv-region-pulse {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--zv-primary);
}
.zv-region-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--zv-primary);
  opacity: 0.5;
  animation: zv-pulse-ring 2s ease-out infinite;
}
.zv-region-pulse-1 { top: 15%; left: 30%; animation: zv-pulse-ring 2s ease-out infinite; }
.zv-region-pulse-2 { top: 25%; right: 20%; animation: zv-pulse-ring 2s ease-out infinite 0.5s; }
.zv-region-pulse-3 { bottom: 30%; left: 20%; animation: zv-pulse-ring 2s ease-out infinite 1s; }
.zv-region-pulse-4 { bottom: 20%; right: 30%; animation: zv-pulse-ring 2s ease-out infinite 1.5s; }
@keyframes zv-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,119,182,0.45); }
  100% { box-shadow: 0 0 0 16px rgba(0,119,182,0); }
}
.zv-region-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.zv-region-center i {
  font-size: 2rem;
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zv-region-center span {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zv-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* About CTA */
.zv-about-cta {
  position: relative;
  padding: 7rem 0;
  background: var(--zv-bg2);
  text-align: center;
  overflow: hidden;
}
.zv-about-cta-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,182,0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}
.zv-about-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.zv-about-cta-title {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--zv-text);
  margin: 0;
  overflow: hidden;
}
.zv-about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* About responsive */
@media (max-width: 991px) {
  .zv-about-story-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .zv-about-regions-inner { grid-template-columns: 1fr; gap: 3rem; }
  .zv-about-story-visual { position: static; flex-direction: row; flex-wrap: wrap; }
  .zv-story-card { flex: 1 1 140px; }
  .zv-about-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .zv-why-grid { grid-template-columns: repeat(2, 1fr); }
  .zv-about-regions-visual { order: -1; }
}
@media (max-width: 767px) {
  .zv-about-hero { padding: 7rem 0 4rem; }
  .zv-about-hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .zv-about-section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .zv-about-svc-grid { grid-template-columns: 1fr; }
  .zv-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 479px) {
  .zv-about-metrics-grid { grid-template-columns: 1fr 1fr; }
  .zv-about-cta-actions { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .zv-reveal, .zv-reveal-left, .zv-reveal-right,
  .zv-clip-inner, .zv-card, .zv-btn {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .zv-clip-inner { transform: none !important; }
  .zv-region-globe, .zv-region-pulse { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHT THEME — Corporate Premium Overrides
   Token changes in :root handle ~65% automatically.
   This block covers hardcoded dark rgba() values.
═══════════════════════════════════════════════════════════════ */

/* ── Scrollbar ── */
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ── Gradient text (restored) ── */
.zv-grad-text {
  background: var(--zv-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.zv-grad-warm {
  background: var(--zv-grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.zv-fstat-num,
.zv-about-stat-card strong,
.zv-story-year,
.zv-story-stat,
.zv-region-center i,
.zv-metric strong,
.zv-metric-num,
.zv-stat-box strong {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: #0077B6 !important;
}

/* ── Navbar — dark pill on light pages (matches footer palette) ── */
.zv-nav-inner {
  background: #0F172A !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 6px rgba(0,0,0,0.10) !important;
  backdrop-filter: blur(20px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
}
.zv-nav.is-scrolled .zv-nav-inner,
.zv-nav.scrolled .zv-nav-inner {
  background: #0F172A !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.24), 0 2px 8px rgba(0,0,0,0.12) !important;
  height: 62px;
}
.zv-nav.scrolled,
.zv-nav.is-scrolled {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

/* Nav link text — light on dark navbar */
.zv-nav-links > li > a,
.zv-nav-links > li > button { color: #F1F5F9 !important; }
.zv-nav-links > li > a:hover,
.zv-nav-links > li > button:hover {
  color: #0077B6 !important;
  background: rgba(0,119,182,0.10) !important;
}
.zv-nav-links > li > a.active,
.zv-nav-links > li > a.is-active,
.zv-nav-link.is-active,
.zv-nav-links > li > button.is-active {
  color: #0077B6 !important;
  background: rgba(0,119,182,0.12) !important;
}
.zv-nav-links > li > a::after,
.zv-nav-links > li > button::after { background: rgba(226,232,240,0.45) !important; }
/* Vertical separator between nav items */
.zv-nav-links > li + li::before {
  content: '';
  position: absolute;
  left: -0.13rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1rem;
  background: rgba(226,232,240,0.45) !important;
  pointer-events: none;
}

/* Dropdown */
.zv-dropdown {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05) !important;
}
.zv-dropdown::before { display: none !important; }
.zv-dropdown-item:hover,
.zv-dropdown-item:focus-visible,
.zv-dd-item:hover {
  background: rgba(0,119,182,0.05) !important;
  border-color: rgba(0,119,182,0.12) !important;
  transform: translateY(-1px) !important;
}
.zv-dropdown-item.is-active {
  background: rgba(0,119,182,0.08) !important;
  border-color: rgba(0,119,182,0.18) !important;
}
.zv-dd-icon {
  background: rgba(0,119,182,0.08) !important;
  border-color: rgba(0,119,182,0.12) !important;
  color: #0077B6 !important;
}
.zv-dd-text strong { color: #111827 !important; }
.zv-dd-text small,
.zv-dd-text span { color: #6B7280 !important; }
.zv-dropdown--wide .zv-dropdown-grid::after {
  color: #6B7280 !important;
  background: rgba(0,0,0,0.03) !important;
  border-color: #E2E8F0 !important;
}

/* Language button — light on dark navbar */
.zv-lang-btn {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(225,232,240,0.82) !important;
}
.zv-lang-btn:hover {
  background: rgba(255,255,255,0.14) !important;
  color: #FFFFFF !important;
}

/* Nav CTA */
.zv-nav-cta {
  background: linear-gradient(135deg, #0077B6, #0099DD) !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 12px rgba(0,119,182,0.30) !important;
  padding: 0.45rem 2rem !important;
}
.zv-nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 24px rgba(0,119,182,0.40) !important;
  opacity: 0.92 !important;
}

/* Hamburger — light on dark navbar */
.zv-hamburger {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}
.zv-hamburger:hover { background: rgba(255,255,255,0.14) !important; }
.zv-hamburger span { background: rgba(225,232,240,0.90) !important; }

/* Mobile overlay */
.zv-mobile-overlay {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.zv-mobile-link {
  border-color: #E2E8F0 !important;
  background: rgba(0,0,0,0.02) !important;
  color: #374151 !important;
}
.zv-mobile-links a,
.zv-mobile-links button { color: #374151 !important; }
.zv-mobile-links a:hover,
.zv-mobile-links button:hover {
  background: rgba(0,119,182,0.05) !important;
  color: #0077B6 !important;
}
.zv-mobile-links .zv-mob-sub a { color: #6B7280 !important; }
.zv-mobile-sub-link { color: #6B7280 !important; }
.zv-mobile-lang-btn {
  color: #374151 !important;
  background: rgba(0,0,0,0.03) !important;
  border-color: #E2E8F0 !important;
}
.zv-mobile-lang-btn.is-active {
  color: #0077B6 !important;
  border-color: rgba(0,119,182,0.25) !important;
  background: rgba(0,119,182,0.07) !important;
}

/* ── Typography ── */
.zv-display { color: #111827; }
.zv-kicker { color: #6B7280; }
.zv-kicker::before { background: #0077B6; }
.zv-lead { color: #374151; }
.zv-section-head h2 { color: #111827; }
.zv-section-head p { color: #374151; }
/* Service/product page text hardcoded for dark bg */
.pf-card-sub,
.pf-card-story-item > p,
.pf-cta-sub,
.svc-hero-intro,
.svc-process-body p,
.svc-accordion .accordion-body,
.svc-sidebar-cta p,
.prod-lead,
.prod-feat-card p,
.prod-industry-card p,
.prod-step p,
.cta-panel p { color: #374151 !important; }

/* ── Buttons ── */
.btn-nexus-primary {
  background: linear-gradient(135deg, #0077B6, #0099DD) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
}
.btn-nexus-primary:hover,
.btn-nexus-primary:focus {
  background: linear-gradient(135deg, #005F8F, #0077B6) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(0,119,182,0.35) !important;
}
.zv-btn-primary {
  background: linear-gradient(135deg, #0077B6, #0099DD) !important;
  color: #FFFFFF !important;
}
.zv-btn-primary:hover {
  background: linear-gradient(135deg, #005F8F, #0077B6) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(0,119,182,0.35) !important;
}
.zv-btn-outline {
  background: transparent !important;
  border: 1.5px solid #0077B6 !important;
  color: #0077B6 !important;
  backdrop-filter: none !important;
}
.zv-btn-outline:hover {
  background: rgba(0,119,182,0.06) !important;
  color: #0077B6 !important;
}
.zv-btn-ghost {
  background: rgba(0,0,0,0.04) !important;
  border-color: #E2E8F0 !important;
  color: #374151 !important;
}
.zv-btn-ghost:hover { background: rgba(0,0,0,0.07) !important; }
.home-btn-primary {
  background: #0077B6 !important;
  color: #fff !important;
  border: none !important;
}
.home-btn-primary:hover {
  background: #005F8F !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,119,182,0.25) !important;
}
.home-btn-ghost {
  background: rgba(0,0,0,0.04) !important;
  border: 1.5px solid #D1D5DB !important;
  color: #374151 !important;
}
.home-btn-ghost:hover {
  background: rgba(0,0,0,0.07) !important;
  border-color: #9CA3AF !important;
}

/* ── Cards ── */
.zv-card {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03) !important;
}
.zv-card::before { display: none !important; }
.zv-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.05) !important;
  border-color: rgba(0,119,182,0.18) !important;
}
.zv-card-violet:hover,
.zv-card-cyan:hover,
.zv-card-coral:hover,
.zv-card-mint:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.05) !important;
}

/* Icon boxes */
.zv-ib-violet { background: rgba(0,119,182,0.08) !important; color: #0077B6 !important; }
.zv-ib-cyan   { background: rgba(0,150,214,0.08) !important; color: #0096D6 !important; }
.zv-ib-coral  { background: rgba(220,38,38,0.07) !important; color: #DC2626 !important; }
.zv-ib-mint   { background: rgba(5,150,105,0.08) !important; color: #059669 !important; }
.zv-ib-amber  { background: rgba(217,119,6,0.07)  !important; color: #D97706 !important; }

/* ── Page hero ── */
.zv-page-hero::before { display: none !important; }
.zv-page-hero h1 { color: #111827 !important; }
.zv-page-hero p { color: #374151 !important; }

/* ── Section backgrounds ── */
.zg-page { background: #F1F5F9 !important; }
.zg-final-cta { background: #F8FAFC !important; border-color: #E2E8F0 !important; }
.cta-panel h2 { color: #111827 !important; }
.cta-panel p { color: #374151 !important; }
.zv-cta-section::before { display: none !important; }
.zv-cta-section h2 { color: #111827 !important; }
.zv-cta-section p { color: #374151 !important; }
.zg-kicker { color: #6B7280 !important; }
.zg-kicker::before { background: #0077B6 !important; }
.zg-section-head h2 { color: #111827 !important; }
.zg-lead { color: #374151 !important; }

/* ── Footer — keep dark, update accents ── */
.zv-footer { background: #0F172A !important; }
.zv-footer::before {
  background: linear-gradient(90deg, transparent 0%, #0077B6 40%, #0096D6 60%, transparent 100%) !important;
}
.zv-footer-orb-1,
.zv-footer-orb-2 { display: none !important; }
.zv-footer-wm { -webkit-text-stroke: 1px rgba(255,255,255,0.03) !important; }
.zv-social-link {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.zv-social-link:hover {
  background: rgba(0,119,182,0.15) !important;
  border-color: rgba(0,119,182,0.3) !important;
  color: #0096D6 !important;
}
.zv-footer-email:hover { color: #0096D6 !important; }
.zv-footer-email .bi { color: #0096D6 !important; }
.zv-footer-links a::before { color: #0096D6 !important; }
.zv-footer-links a:hover { color: #E2E8F0 !important; }
.zv-fci-icon {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.09) !important;
  color: #0096D6 !important;
}
.zv-footer-region {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: rgba(226,232,240,0.55) !important;
}
.zv-footer-heading::before { background: #0077B6 !important; }
.zv-footer-heading { color: #F1F5F9 !important; }
.zv-footer-copy { color: rgba(226,232,240,0.45) !important; }
.zv-footer-tagline { color: rgba(255,255,255,0.12) !important; }
.zv-footer-legal a { color: rgba(226,232,240,0.45) !important; }
.zv-footer-legal a:hover { color: #E2E8F0 !important; }
.zv-footer-bottom { border-color: rgba(255,255,255,0.06) !important; }
.zv-footer-stats-strip {
  background: rgba(255,255,255,0.02) !important;
  border-color: rgba(255,255,255,0.06) !important;
}
.zv-fstat-lbl { color: rgba(226,232,240,0.45) !important; }
.zv-fstat-divider { background: rgba(255,255,255,0.07) !important; }

/* Pre-footer */
.zv-prefooter { background: #0F172A !important; border-color: rgba(255,255,255,0.07) !important; }
.zv-prefooter-eyebrow { color: #0096D6 !important; }
.zv-prefooter-dot { background: #0096D6 !important; box-shadow: 0 0 8px #0096D6 !important; }
@keyframes zvPulseDot {
  0%, 100% { box-shadow: 0 0 6px #0096D6; opacity: 1; }
  50%       { box-shadow: 0 0 16px #0096D6, 0 0 24px rgba(0,150,214,0.3); opacity: 0.8; }
}
.zv-prefooter-heading { color: #F8FAFC !important; }
.zv-prefooter-wa { border-color: rgba(37,211,102,0.3) !important; }

/* ── Mobile sticky CTA ── */
.mobile-sticky-cta {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.mobile-sticky-cta a {
  background: #0077B6 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0,119,182,0.35) !important;
}
.mobile-sticky-cta a:hover,
.mobile-sticky-cta a:active { background: #005F8F !important; }

/* ── About page ── */
.zv-about-hero { background: #F1F5F9 !important; }
.zv-about-orb-1, .zv-about-orb-2 { display: none !important; }
.zv-about-hero-title { color: #111827 !important; }
.zv-about-hero-sub { color: #374151 !important; }
.zv-about-stat-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-top: 3px solid #0077B6 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05) !important;
}
.zv-about-stat-card:hover {
  background: #F8FBFF !important;
  border-color: #E2E8F0 !important;
  border-top-color: #0099DD !important;
  box-shadow: 0 10px 32px rgba(0,119,182,0.14) !important;
  transform: translateY(-4px) !important;
}
.zv-about-stat-card span { color: #6B7280 !important; }
.zv-about-story { background: #F8FAFC !important; }
.zv-about-story-title { color: #111827 !important; }
.zv-about-story-body p { color: #374151 !important; }
.zv-about-story-body strong { color: #111827 !important; }
.zv-story-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.zv-story-card:hover { border-color: rgba(0,119,182,0.2) !important; }
.zv-story-label { color: #6B7280 !important; }
.zv-about-values { background: #F1F5F9 !important; }
.zv-about-section-title { color: #111827 !important; }
.zv-why-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.zv-why-card:hover { border-color: rgba(0,119,182,0.18) !important; }
.zv-why-icon { color: #0077B6 !important; }
.zv-why-card h3 { color: #111827 !important; }
.zv-why-card p { color: #374151 !important; }
.zv-about-metrics {
  background: #F8FAFC !important;
  border-top-color: #E2E8F0 !important;
  border-bottom-color: #E2E8F0 !important;
}
.zv-metric-label { color: #6B7280 !important; }
.zv-about-services { background: #F1F5F9 !important; }
.zv-about-svc-item {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.zv-about-svc-item:hover { border-color: rgba(0,119,182,0.18) !important; }
.zv-about-svc-item > i { color: #0077B6 !important; }
.zv-about-svc-item h3 { color: #111827 !important; }
.zv-about-svc-item p { color: #374151 !important; }
.zv-about-svc-arrow { color: #0077B6 !important; }
.zv-about-regions { background: #F8FAFC !important; }
.zv-about-regions-text p { color: #374151 !important; }
.zv-about-cta { background: #0F172A !important; }
.zv-about-cta-orb { display: none !important; }
.zv-about-cta-title { color: #F1F5F9 !important; }

/* ── Timeline ── */
.zv-timeline::before {
  background: linear-gradient(180deg, #0077B6 0%, rgba(0,119,182,0.08) 100%) !important;
}
.zv-tl-dot {
  background: #0077B6 !important;
  box-shadow: 0 0 10px rgba(0,119,182,0.3), 0 0 20px rgba(0,119,182,0.12) !important;
}
.zv-tl-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.zv-tl-card:hover { border-color: rgba(0,119,182,0.18) !important; }
.zv-tl-year { color: #0077B6 !important; }
.zv-tl-card strong { color: #111827 !important; }
.zv-tl-card p { color: #374151 !important; }

/* ── Portfolio / filters ── */
.zv-result-tag {
  background: rgba(0,119,182,0.07) !important;
  color: #0077B6 !important;
  border-color: rgba(0,119,182,0.15) !important;
}
.zv-filter-tab:hover,
.zv-filter-tab.active {
  background: rgba(0,119,182,0.07) !important;
  border-color: rgba(0,119,182,0.2) !important;
  color: #0077B6 !important;
}
.zv-portfolio-result { border-top-color: #E2E8F0 !important; }
.zv-portfolio-body h3 { color: #111827 !important; }
.zv-portfolio-body p { color: #374151 !important; }

/* ── Contact / forms ── */
.form-control,
.form-select {
  color-scheme: light !important;
  background-color: #FFFFFF !important;
  border-color: #D1D5DB !important;
  color: #111827 !important;
}
.form-control:focus,
.form-select:focus {
  border-color: #0077B6 !important;
  box-shadow: 0 0 0 0.2rem rgba(0,119,182,0.15) !important;
}
.invalid-feedback,
.alert-danger { color: #B91C1C !important; }
.form-control.is-invalid,
.form-select.is-invalid { border-color: #DC2626 !important; }

/* ── Product page ── */
.zv-industry-chip {
  background: #FFFFFF !important;
  border-color: #E2E8F0 !important;
  color: #374151 !important;
}
.zv-industry-chip:hover {
  background: rgba(0,119,182,0.05) !important;
  border-color: rgba(0,119,182,0.18) !important;
}
.zv-industry-chip i { color: #0077B6 !important; }

/* ── Stat/service/team/region cards ── */
.zv-stat-box {
  background: #FFFFFF !important;
  border-color: rgba(0,119,182,0.12) !important;
}
.zv-stat-box span { color: #6B7280 !important; }
.zv-service-card h3 { color: #111827 !important; }
.zv-service-card p { color: #374151 !important; }
.zv-team-card strong { color: #111827 !important; }
.zv-team-card p { color: #374151 !important; }
.zv-check-list li { color: #374151 !important; }
.zv-region-card strong { color: #111827 !important; }
.zv-region-card p { color: #374151 !important; }

/* ── Globe ── */
.zv-region-globe { border-color: rgba(0,119,182,0.22) !important; }
@keyframes zv-globe-rotate {
  from { box-shadow: 0 0 0 0 rgba(0,119,182,0.1); }
  50%  { box-shadow: 0 0 40px 15px rgba(0,119,182,0.1); }
  to   { box-shadow: 0 0 0 0 rgba(0,119,182,0.1); }
}
@keyframes zv-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,119,182,0.35); }
  100% { box-shadow: 0 0 0 16px rgba(0,119,182,0); }
}

/* ── Scroll progress bar ── */
.zv-progress-bar { background: #0077B6 !important; }

/* Production polish layer */
html,
body {
  width: 100%;
  max-width: 100%;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--zv-cyan);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, 1180px);
  max-width: 1180px;
}

@media (min-width: 1600px) {
  .container,
  .zv-nav-inner {
    max-width: 1440px;
  }
}

.zv-nav {
  padding: 0.75rem 1rem;
  pointer-events: none;
}

.zv-nav.is-scrolled,
.zv-nav.scrolled {
  background: transparent !important;
  border-bottom: 0;
  box-shadow: none;
}

.zv-nav-inner {
  pointer-events: auto;
  height: 68px;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(6,5,14,0.64);
  box-shadow: 0 18px 55px rgba(0,0,0,0.32);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  transition: height 0.28s var(--zv-ease), background 0.28s var(--zv-ease), border-color 0.28s var(--zv-ease);
}

.zv-nav.is-scrolled .zv-nav-inner,
.zv-nav.scrolled .zv-nav-inner {
  height: 62px;
  background: rgba(6,5,14,0.86);
  border-color: rgba(255,255,255,0.12);
}

.zv-nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  transition: transform 0.25s var(--zv-spring), opacity 0.2s ease;
}

.zv-nav-logo:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.zv-nav-logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s ease;
}

.zv-nav-link.is-active,
.zv-nav-links > li > a.is-active,
.zv-nav-links > li > button.is-active {
  color: var(--zv-text);
  background: rgba(0,119,182,0.10);
}

.zv-nav-links > li > a,
.zv-nav-links > li > button {
  position: relative;
}

.zv-nav-links > li > a::after,
.zv-nav-links > li > button::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--zv-grad-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--zv-ease);
}

.zv-nav-links > li > a:hover::after,
.zv-nav-links > li > button:hover::after,
.zv-nav-link.is-active::after {
  transform: scaleX(1);
}

.zv-chevron {
  font-size: 0.72rem;
  transition: transform 0.25s var(--zv-ease);
}

.zv-has-dropdown.is-open .zv-chevron,
.zv-nav-links > li.open .zv-caret {
  transform: rotate(180deg);
}

.zv-has-dropdown.is-open > .zv-dropdown,
.zv-nav-links > li.open .zv-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.zv-dropdown {
  display: block;
  min-width: min(720px, calc(100vw - 2rem));
  padding: 0;
  overflow: hidden;
  transform: translateX(-50%) translateY(12px) scale(0.98);
}

.zv-dropdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(124,61,255,0.18), transparent 34%),
    radial-gradient(circle at 90% 16%, rgba(0,212,255,0.14), transparent 32%);
  pointer-events: none;
}

.zv-dropdown-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 1rem;
}

.zv-dropdown--wide .zv-dropdown-grid::after {
  content: 'End-to-end digital systems for launch, growth, and operations.';
  grid-column: 1 / -1;
  display: block;
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: rgba(240,238,255,0.62);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
}

.zv-dropdown-item,
.zv-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.24s var(--zv-spring), background 0.24s ease, border-color 0.24s ease;
}

.zv-dropdown-item:hover,
.zv-dropdown-item:focus-visible,
.zv-dd-item:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(124,61,255,0.22);
  transform: translateY(-2px);
}

.zv-dropdown-item.is-active {
  background: rgba(124,61,255,0.14);
  border-color: rgba(124,61,255,0.28);
}

.zv-dd-icon {
  background: rgba(124,61,255,0.12);
  border: 1px solid rgba(124,61,255,0.22);
  color: var(--zv-primary2);
}

.zv-dd-text {
  min-width: 0;
}

.zv-dd-text strong {
  color: var(--zv-text);
}

.zv-dd-text small,
.zv-dd-text span {
  display: block;
  color: rgba(240,238,255,0.58);
}

.zv-lang-dropdown {
  min-width: 180px;
  left: auto !important;
  right: 0 !important;
  transform: translateY(8px) !important;
}

.zv-has-dropdown.is-open .zv-lang-dropdown {
  transform: translateY(0) !important;
}

.zv-lang-dropdown .zv-dropdown-grid {
  grid-template-columns: 1fr !important;
}

.zv-hamburger.is-open span:nth-child(1),
.zv-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.zv-hamburger.is-open span:nth-child(2),
.zv-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.zv-hamburger.is-open span:nth-child(3),
.zv-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.zv-mobile-overlay {
  overflow-y: auto;
  align-items: stretch;
  justify-content: flex-start;
  padding: 6.5rem 1rem 2rem;
}

.zv-mobile-overlay.is-open,
.zv-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.zv-mobile-inner {
  width: min(100%, 520px);
  margin: 0 auto;
}

.zv-mobile-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.07) !important;
  background: rgba(255,255,255,0.035) !important;
}

.zv-mobile-sub {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--zv-ease);
}

.zv-mobile-sub-link {
  display: flex !important;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #6B7280 !important;
  font-size: 0.95rem !important;
}

.zv-mobile-lang {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.zv-mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(240,238,255,0.68);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.zv-mobile-lang-btn.is-active {
  color: var(--zv-text);
  border-color: rgba(124,61,255,0.3);
  background: rgba(124,61,255,0.12);
}

.zv-mobile-cta {
  width: 100%;
}

.zv-overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1048;
  background: rgba(0,0,0,0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.zv-page-hero,
.zv-about-hero,
.zv-contact-hero,
.pf-hero,
.svc-hero,
.prod-hero {
  padding-top: clamp(7rem, 10vw, 10rem);
}

.pf-hero-title,
.pf-cta-title,
.svc-hero-title,
.svc-block-title,
.prod-hero h1,
.zg-section-head h2,
.cta-panel h2,
.zv-about-hero-title,
.zv-about-section-title,
.zv-about-story-title,
.zv-about-cta-title,
.zv-contact-hero-title,
.zv-contact-info-title {
  letter-spacing: 0 !important;
}

.pf-hero,
.pf-showcase,
.pf-cta,
.svc-hero,
.svc-main,
.prod-page,
.prod-hero,
.zg-section,
.zg-final-cta {
  overflow-x: clip;
}

/* ── Service tiles — whole card is the anchor link ──────────── */
a.ph-svc-card {
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.ph-svc-arrow {
  position: static !important;
  inset: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin-top: auto !important;
  font-size: 1.2rem !important;
  transition: transform 0.2s ease;
}
a.ph-svc-card:hover .ph-svc-arrow {
  transform: translate(3px, -3px);
}

.pf-grid,
.pf-hero-grid,
.svc-hero-inner,
.svc-layout,
.svc-benefits-grid,
.svc-outcomes-grid,
.prod-hero-grid,
.prod-features-grid,
.prod-compare-grid,
.prod-industry-grid,
.prod-metrics-grid,
.prod-steps-grid {
  min-width: 0;
}

.pf-card,
.pf-card-content,
.svc-benefit-item,
.svc-outcome-item,
.svc-sidebar-cta,
.prod-dashboard,
.prod-feat-card,
.prod-compare-card,
.prod-industry-card,
.prod-step,
.cta-panel {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pf-card-sub,
.pf-card-story-item > p,
.pf-cta-sub,
.svc-hero-intro,
.svc-process-body p,
.svc-accordion .accordion-body,
.svc-sidebar-cta p,
.prod-lead,
.prod-feat-card p,
.prod-industry-card p,
.prod-step p,
.cta-panel p {
  color: #374151 !important;
}

.pf-filter-btn,
.zv-filter-tab {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.prod-table-wrap {
  overflow-x: auto;
}

.prod-table-row {
  min-width: 420px;
}

.prod-actions,
.zg-actions,
.pf-cta-btns,
.svc-hero-actions {
  align-items: center;
}

.zv-card,
.zv-why-card,
.zv-about-svc-item,
.zv-contact-detail,
.zv-story-card {
  overflow-wrap: anywhere;
}

.form-control,
.form-select,
.dropdown-menu {
  color-scheme: light;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #ff6b7a !important;
}

.invalid-feedback,
.alert-danger {
  color: #B91C1C;
}

/* ── Service page partial light-theme fixes ── */
.svc-hero { background: #F1F5F9 !important; }
.svc-hero-orb-1, .svc-hero-orb-2 { display: none !important; }
.svc-hero-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.svc-hero-card strong { color: #111827 !important; }
.svc-main { background: #F1F5F9 !important; }
.svc-main--lower { background: #F8FAFC !important; }
.svc-benefit-item {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.svc-benefit-item:hover {
  border-color: rgba(0,119,182,0.25) !important;
  background: rgba(0,119,182,0.03) !important;
}
.svc-benefit-item i { color: #0077B6 !important; }
.svc-benefit-item span { color: #374151 !important; }
.svc-process-list::before { background: linear-gradient(to bottom, #0077B6, #38BDF8, transparent) !important; }
.svc-process-item { border-bottom: 1px solid #E2E8F0 !important; }
.svc-process-num {
  background: #FFFFFF !important;
  border-color: rgba(0,119,182,0.3) !important;
  color: #0077B6 !important;
}
.svc-outcome-item {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.svc-outcome-item:hover { border-color: rgba(0,119,182,0.25) !important; }
.svc-outcome-item i { color: #0077B6 !important; }
.svc-outcome-item p { color: #374151 !important; }
.svc-stack-pill {
  background: rgba(0,119,182,0.08) !important;
  border-color: rgba(0,119,182,0.18) !important;
  color: #0077B6 !important;
}
.svc-accordion .accordion-item {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.svc-accordion .accordion-button {
  background: transparent !important;
  color: #111827 !important;
}
.svc-accordion .accordion-button:not(.collapsed) {
  background: rgba(0,119,182,0.05) !important;
  color: #0077B6 !important;
}
.svc-accordion .accordion-button::after { filter: none !important; }
.svc-accordion .accordion-body { color: #374151 !important; }
.svc-sidebar-other {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.svc-sidebar-other-title { color: #6B7280 !important; border-bottom: 1px solid #E2E8F0 !important; }
.svc-sidebar-other-link {
  color: #374151 !important;
  border-bottom: 1px solid #F1F5F9 !important;
}
.svc-sidebar-other-link:hover {
  background: rgba(0,119,182,0.04) !important;
  color: #0077B6 !important;
}
.svc-block-title { color: #111827 !important; }
.svc-block-title::before { background: #0077B6 !important; }

/* About page stat cards — stable layout */
.zv-about-hero-stats {
  min-width: 320px;
  max-width: 460px;
}

/* About regions visual */
.zv-about-regions-visual { min-width: 0; overflow: hidden; }
.zv-world-map {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,119,182,0.1);
  display: block;
}

/* Contact page form light overrides */
.zv-contact-detail {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.zv-contact-detail:hover { border-color: rgba(0,119,182,0.25) !important; }
.zv-contact-detail-icon {
  background: rgba(0,119,182,0.08) !important;
  border-color: rgba(0,119,182,0.15) !important;
  color: #0077B6 !important;
}

@media (min-width: 1200px) {
  .zv-contact-grid,
  .zv-about-regions-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }
}

@media (max-width: 1199px) {
  .zv-nav {
    padding-inline: 0.75rem;
  }

  .zv-nav-inner {
    gap: 1rem;
  }

  .prod-hero-grid,
  .prod-compare-grid {
    grid-template-columns: 1fr !important;
  }

  .prod-compare-vs {
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .zv-nav {
    padding: 0.6rem 0.75rem;
  }

  .zv-nav-inner {
    height: 60px;
    border-radius: 16px;
  }

  .zv-nav-logo img {
    height: 38px;
  }

  .zv-mobile-overlay {
    display: block;
  }

  .zv-about-story-visual {
    position: static;
  }

  .pf-hero-grid,
  .svc-hero-inner,
  .svc-layout,
  .prod-hero-grid,
  .zv-contact-layout {
    grid-template-columns: 1fr !important;
  }

  .svc-hero-card,
  .pf-hero-stat {
    display: block;
    max-width: 100%;
    width: 100%;
  }

  .svc-sidebar,
  .zv-contact-info {
    position: static !important;
  }

  .prod-dashboard {
    order: -1;
  }

  .prod-stat-row,
  .prod-features-grid,
  .prod-industry-grid,
  .prod-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .prod-steps-grid {
    grid-template-columns: 1fr !important;
  }

  .prod-step-arrow {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .zv-nav {
    padding: 0.5rem;
  }

  .zv-nav-inner {
    padding-inline: 0.75rem;
  }

  .zv-btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 1rem;
    white-space: normal;
    text-align: center;
  }

  .zv-mobile-sticky-cta,
  .mobile-sticky-cta {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }

  .pf-hero,
  .svc-hero,
  .prod-hero,
  .zv-contact-hero,
  .zv-about-hero {
    padding-top: 6.75rem !important;
    padding-bottom: 3.25rem !important;
  }

  .pf-grid,
  .svc-benefits-grid,
  .svc-outcomes-grid,
  .prod-stat-row,
  .prod-features-grid,
  .prod-industry-grid,
  .prod-metrics-grid {
    grid-template-columns: 1fr !important;
  }

  .pf-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-filter-btn {
    width: 100%;
    padding-inline: 0.75rem;
  }

  .svc-process-item {
    gap: 1rem;
  }

  .svc-process-list::before {
    left: 1.25rem;
  }

  .svc-process-num {
    width: 2.5rem;
    height: 2.5rem;
  }

  .zv-contact-form-shell {
    padding: 1.25rem !important;
  }

  .prod-trust-row,
  .prod-actions,
  .zg-actions,
  .pf-cta-btns,
  .svc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
