/* ============================================================
   AVIGAGE SYSTEMS — Global Stylesheet
   ============================================================ */

/* --- TOKENS ------------------------------------------------- */
:root {
  --bg:           #FAFAFA;
  --bg-2:         #F2F4F6;
  --deep:         #0D1B2A;
  --teal:         #1ABCB0;
  --teal-dark:    #0E9E94;
  --navy:         #0F2D4A;
  --text:         #0D1B2A;
  --body:         #3D4D5C;
  --muted:        #8A97A3;
  --border:       rgba(13,27,42,0.08);
  --border-light: rgba(255,255,255,0.15);
  --glass:        rgba(255,255,255,0.65);
  --glass-dark:   rgba(255,255,255,0.08);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-head:    'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container:    1280px;
  --gutter:       clamp(24px, 5vw, 80px);
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* --- GRAIN OVERLAY ----------------------------------------- */
.grain-overlay {
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9998;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100%{ transform:translate(0,0) }
  10%{ transform:translate(-2%,-3%) }
  20%{ transform:translate(2%,1%) }
  30%{ transform:translate(-1%,4%) }
  40%{ transform:translate(3%,-2%) }
  50%{ transform:translate(-3%,3%) }
  60%{ transform:translate(1%,-1%) }
  70%{ transform:translate(-2%,2%) }
  80%{ transform:translate(2%,-3%) }
  90%{ transform:translate(-1%,1%) }
}

/* --- CUSTOM CURSOR ------------------------------------------ */
.cursor {
  position: fixed;
  width: 30px; height: 30px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
.cursor.hover {
  width: 40px; height: 40px;
  background: rgba(26,188,176,0.08);
  border-color: var(--teal);
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* --- PAGE LOADER -------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { opacity: 0; transform: scale(0.8); transition: all 0.6s var(--ease-spring); }
.loader.ready .loader-logo { opacity: 1; transform: scale(1); }

/* --- LAYOUT ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

/* --- TYPOGRAPHY --------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.025em;
}
h3, .h3 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
p { color: var(--body); line-height: 1.75; }
.mono { font-family: var(--font-mono); }
.text-muted { color: var(--muted); }
.text-white { color: #fff; }
.text-center { text-align: center; }

/* --- BUTTONS ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-spring);
  white-space: nowrap;
}
.btn {
  /* default spotlight position */
  --mx: 95%;
  --my: 50%;
}

.btn,
.btn * {
  position: relative;
  z-index: 2;           /* everything inside stays above glow */
}

/* Base glow layer (shared) */
.btn::before{
  content:'';
  position:absolute;
  inset: -14px;                 /* spill outside border */
  border-radius: inherit;
  pointer-events:none;
  z-index: 1;
  mix-blend-mode: normal;

  opacity: 1;
  filter: blur(0.6px);
  transition: opacity 0.22s var(--ease-out), filter 0.22s var(--ease-out);
}

.btn.spot-on::before{
  opacity: 1;
  filter: blur(0.9px);
}

/* WHITE BUTTONS = white glow (no teal) */
.btn-outline::before{
  display: none;
}

/* GREEN BUTTONS = teal glow (no white core) */
.btn-primary::before,
.btn-nav::before{
  background: radial-gradient(
    ellipse 60% 150% at var(--mx) 50%,
    rgba(130, 255, 245, 0.55) 0%,
    rgba(90, 240, 228, 0.34) 28%,
    rgba(26,188,176,0.18) 56%,
    rgba(26,188,176,0.00) 78%
  );
}

/* Primary — teal liquid glass */
.btn-primary {
  background: linear-gradient(135deg, rgba(26,188,176,0.92), rgba(14,158,148,0.97));
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(26,188,176,0.45);
  color: #fff;
  box-shadow:
    0 4px 24px rgba(26,188,176,0.38),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-primary:hover {
  box-shadow:
    0 8px 48px rgba(26,188,176,0.55),
    inset 0 1px 0 rgba(255,255,255,0.38),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  transform: translateY(-2px) scale(1.02);
}

/* Ghost — white glass for dark backgrounds */
.btn-ghost {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  box-shadow:
    0 2px 16px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.06);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-1px) scale(1.01);
}

/* Outline — for light backgrounds */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--body);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

/* Nav CTA glass button */
.btn-nav {
  background: linear-gradient(135deg, rgba(26,188,176,0.88), rgba(14,158,148,0.94));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26,188,176,0.4);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 2px 16px rgba(26,188,176,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-nav:hover {
  box-shadow: 0 4px 24px rgba(26,188,176,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
  transform: translateY(-1px) scale(1.02);
}

/* --- NAVIGATION -------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s var(--ease-expo), backdrop-filter 0.6s, box-shadow 0.6s;
}

.nav.scrolled {
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-dark {
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-dark.scrolled {
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg, .nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.3s var(--ease-expo);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links-dark a { color: rgba(255,255,255,0.85); }
.nav-links-dark a:hover { color: #fff; }
.nav-dark .nav-dropdown-toggle { color: rgba(255,255,255,0.85); }
.nav-dark .nav-dropdown-toggle:hover { color: #fff; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  transition: color 0.25s;
}
.nav-phone:hover { color: var(--teal); }
.nav-phone-light { color: rgba(255,255,255,0.75); }
.nav-phone-light:hover { color: #fff; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.25s;
}
.nav-dropdown-toggle:hover { color: var(--text); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(13,27,42,0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease-expo);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--body);
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(26,188,176,0.08);
  color: var(--teal);
  padding-left: 20px;
}
.nav-dropdown-caret { font-size: 10px; transition: transform 0.25s; }
.nav-dropdown:hover .nav-dropdown-caret { transform: rotate(180deg); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s, background 0.2s;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: flex;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  height: 100dvh;
  background: var(--deep);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 96px 36px 40px;
  gap: 0;
  z-index: 999;
  box-shadow: -8px 0 40px rgba(13,27,42,0.35);
  transform: translateX(100%);
  visibility: hidden;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0s 0.4s;
}
.nav-mobile.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), visibility 0s 0s;
}
.nav-mobile > a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 11px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s;
}
.nav-mobile > a:hover { color: var(--teal); }
/* Section label */
.nav-mobile-section {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 18px 0 6px;
  width: 100%;
}
/* Indented sub-links */
.nav-mobile-sub {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.55) !important;
  padding: 8px 0 8px 14px !important;
  border-bottom: none !important;
  width: 100%;
  display: block;
  transition: color 0.25s;
}
.nav-mobile-sub:hover { color: var(--teal) !important; }
/* Bottom contact bar */
.nav-mobile-bottom {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.nav-mobile-email {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-mobile-email:hover { color: var(--teal); }
/* Backdrop — opacity transition for smooth open/close */
.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, visibility 0s 0.35s;
}
.nav-mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s, visibility 0s 0s;
}
/* Landscape: compact padding so content isn't cut off */
@media (max-height: 500px) and (orientation: landscape) {
  .nav-mobile { padding-top: 64px; padding-bottom: 20px; }
}

/* --- HERO -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Left-side text contrast — no tint on right, video shows clean */
  background: linear-gradient(100deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.65) 28%,
    rgba(13,27,42,0.18) 55%,
    rgba(13,27,42,0.0)  72%
  );
}

/* Tablet: constrain content to left, lighter overlay, video breathes on right */
@media (max-width: 1100px) and (min-width: 901px) {
  .hero { min-height: auto; }
  .hero-left { max-width: 38%; }
  .hero-stat-card { display: none; }
  .hero-overlay {
    background: linear-gradient(100deg,
      rgba(13,27,42,0.70) 0%,
      rgba(13,27,42,0.55) 32%,
      rgba(13,27,42,0.15) 52%,
      rgba(13,27,42,0.0)  65%
    );
  }
}

@media (max-width: 900px) {
  /* Hide video on mobile — solid dark background from .hero { background: var(--deep) } */
  .hero-video-wrap { display: none; }
  /* Teal ambient glow blob for mobile hero depth */
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(26,188,176,0.14) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13,27,42,0)    0%,
      rgba(13,27,42,0)    100%
    );
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-left { max-width: 620px; }
.hero-headline {
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.trust-item svg { color: var(--teal); flex-shrink: 0; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4)); }

/* Floating stat card */
.hero-stat-card {
  position: absolute;
  bottom: 60px;
  right: clamp(24px, 8vw, 120px);
  z-index: 3;
  background: rgba(13,27,42,0.72);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.stat-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.stat-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(26,188,176,0.5);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(26,188,176,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(26,188,176,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,188,176,0); }
}
.stat-live {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

/* --- MARQUEE ----------------------------------------------- */
.marquee-section {
  background: var(--deep);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item .sep {
  width: 4px; height: 4px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- STATS BAR --------------------------------------------- */
.stats-section {
  background: var(--bg-2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  text-align: center;
}
.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}
.stat-number {

  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label-text {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.4;
}

/* --- SOLUTIONS GRID ---------------------------------------- */
.solutions-section { background: var(--bg); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-expo);
  position: relative;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  opacity: 0;
  transition: opacity 0.3s;
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(13,27,42,0.1);
}
.card-media {
  position: relative;
  background: #f4f7f9;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-expo);
  opacity: 1;
}
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo);
}
/* Data card CSS chart background */
.card-media-data {
  background: linear-gradient(145deg, #060f1a 0%, #0d1f35 50%, #061a28 100%);
  overflow: hidden;
}
.data-chart-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay removed — card media uses light-background illustrations */
.solution-card:hover .card-media img,
.solution-card:hover .card-media video {
  transform: scale(1.05);
  opacity: 1;
}
.card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.card-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card-text {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.25s var(--ease-spring);
}
.card-cta:hover { gap: 12px; }

/* --- HOW IT WORKS ------------------------------------------ */
.how-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,188,176,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.how-title {
  color: #fff;
  max-width: 680px;
  margin-bottom: 80px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}
/* Connector line removed */
.how-steps::before { display: none; }
.how-step { padding: 0 48px 0 0; }
.how-step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: block;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(26,188,176,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { color: var(--teal); }
.step-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.step-text { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }

.how-cta-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.how-cta-text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.how-cta-text p { color: rgba(255,255,255,0.55); font-size: 16px; }

/* --- WHY AVIGAGE SECTION ----------------------------------- */
.why-section { background: var(--bg); overflow: hidden; position: relative; }
.why-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,188,176,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13,27,42,0.1), 0 0 0 1px rgba(26,188,176,0.2);
}
.why-video-wrap {
  height: 200px;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.why-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card-body { padding: 24px; }
.why-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* --- VENUE TYPES SECTION ----------------------------------- */
.venues-section { background: var(--bg-2); }
.venues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.venue-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s var(--ease-spring);
  cursor: default;
}
.venue-card:hover {
  border-color: var(--teal);
  background: rgba(26,188,176,0.04);
  transform: translateY(-3px);
}
.venue-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  color: var(--teal);
}
.venue-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* --- KIOSK SHOWCASE ---------------------------------------- */
.kiosk-section { background: var(--bg); overflow: hidden; }
.kiosk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kiosk-visual { position: relative; }
.kiosk-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(13,27,42,0.15);
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.kiosk-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s var(--ease-expo);
}
.kiosk-image-wrap:hover img { transform: scale(1.03); }
.kiosk-tags {
  position: absolute;
  top: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kiosk-tag {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(13,27,42,0.08);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.kiosk-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.kiosk-text .eyebrow { margin-bottom: 16px; }
.kiosk-text .h2 { margin-bottom: 20px; }
.kiosk-text p { font-size: 17px; line-height: 1.75; margin-bottom: 36px; }
.kiosk-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.kiosk-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.kiosk-feature-icon {
  width: 32px; height: 32px;
  background: rgba(26,188,176,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.kiosk-feature-icon svg { color: var(--teal); }
.kiosk-feature-title { font-weight: 600; color: var(--text); font-size: 15px; margin-bottom: 3px; }
.kiosk-feature-text { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* --- CONTACT FORM ------------------------------------------ */
.contact-section { background: var(--bg-2); }
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 56px;
}
.contact-header .h2 { margin-bottom: 16px; }
.contact-header p { font-size: 18px; max-width: 540px; margin: 0 auto; }
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 8px 48px rgba(13,27,42,0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-label .req { color: var(--teal); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-textarea { height: auto; padding: 14px 16px; resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,188,176,0.12);
  background: #fff;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input.input-error, .form-select.input-error, .form-textarea.input-error {
  border-color: #e55a5a;
  box-shadow: 0 0 0 3px rgba(229,90,90,0.1);
}
.field-error {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #e55a5a;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.form-select {
  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='%238A97A3' 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;
  cursor: pointer;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  height: 56px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success.show { display: block; }
.success-check {
  width: 72px; height: 72px;
  background: rgba(26,188,176,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-check svg { color: var(--teal); }
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--text); margin-bottom: 12px; }
.form-success p { color: var(--body); }

/* --- FOOTER ------------------------------------------------ */
.footer {
  background: var(--deep);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img, .footer-brand svg { height: 32px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-location {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
a.footer-solutions-link {
  text-decoration: none;
  transition: opacity 0.2s;
}
a.footer-solutions-link:hover { opacity: 0.75; }

/* Solutions tabs */
.sol-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.sol-tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.2s;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
}
.sol-tab:hover { color: var(--text); }
.sol-tab.active {
  background: var(--teal);
  color: #fff;
  border-bottom-color: transparent;
  border-radius: 100px;
}
.sol-panel { display: none; }
.sol-panel.active { display: block; }
.sol-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
}
.sol-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sol-stat-chip {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26,188,176,0.25);
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
}
.sol-stat-chip .stat-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.sol-stat-chip .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* Deployment Timeline */
.timeline-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: rgba(26,188,176,0.3);
  transform: translateX(-50%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0 24px;
  align-items: center;
  margin-bottom: 48px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-node {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  position: relative;
  z-index: 1;
  justify-self: center;
}
.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.timeline-day {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(26,188,176,0.4);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  background: rgba(26,188,176,0.08);
}
.timeline-left { text-align: right; }
.timeline-right { text-align: left; }
.timeline-left .timeline-day { margin-left: auto; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.9); }
.footer-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* --- SECTION UTILITY CLASSES ------------------------------- */
.bg-deep { background: var(--deep); }
.bg-light { background: var(--bg); }
.bg-panel { background: var(--bg-2); }

/* heading on dark bg */
.on-dark h2, .on-dark .h2 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.55); }
.on-dark .eyebrow { color: var(--teal); }

/* --- SCROLL REVEAL ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* --- DIVIDERS ---------------------------------------------- */
.divider { width: 64px; height: 2px; background: var(--teal); margin: 24px 0; }
.divider-center { margin-left: auto; margin-right: auto; }

/* --- INNER PAGE HERO --------------------------------------- */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 35%, rgba(26,188,176,0.15) 70%, transparent 100%);
  z-index: 2;
}
.page-hero-dark { background: var(--deep); }
.page-hero-light { background: var(--bg); }
.page-hero-content { max-width: 760px; }
.page-hero-content.centered { max-width: 700px; margin: 0 auto; text-align: center; }
.page-hero-content.centered .eyebrow { display: block; }
.page-hero-content.centered .divider { margin-left: auto; margin-right: auto; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.breadcrumb-light {
  color: var(--muted);
}
.page-hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,188,176,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* --- SPLIT LAYOUT ------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.split-reverse .split-visual { order: -1; }

/* --- FEATURE LIST ------------------------------------------ */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-check {
  width: 22px; height: 22px;
  background: rgba(26,188,176,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg { color: var(--teal); }
.feature-text { font-size: 15px; color: var(--body); line-height: 1.6; }

/* --- LEGAL PAGES ------------------------------------------- */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 80px 0 120px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 100px;
}
.legal-nav-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-nav-links { display: flex; flex-direction: column; gap: 2px; }
.legal-nav-links a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  display: block;
}
.legal-nav-links a:hover, .legal-nav-links a.active {
  color: var(--teal);
  border-left-color: var(--teal);
  background: rgba(26,188,176,0.05);
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p { font-size: 16px; line-height: 1.8; color: var(--body); margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 16px 0; }
.legal-content ul li {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  padding: 4px 0 4px 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--teal);
  font-weight: bold;
}
.legal-note {
  background: rgba(26,188,176,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--body);
  font-style: italic;
}

/* --- DATA ANALYTICS PAGE MOBILE ---------------------------- */
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr !important; }
  .data-dimensions-grid { grid-template-columns: 1fr !important; }
}

/* --- DOOH ADVERTISING PAGE MOBILE -------------------------- */
@media (max-width: 900px) {
  .dooh-value-grid { grid-template-columns: 1fr !important; }
  .dooh-formats-grid { grid-template-columns: 1fr !important; }
}

/* --- CONTACT PAGE MOBILE ----------------------------------- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-info { order: -1; }
}

/* --- SOLUTIONS PAGE MOBILE --------------------------------- */
@media (max-width: 900px) {
  .sol-tabs { margin-bottom: 24px; flex-wrap: wrap; }
  .sol-cta-light { padding-top: 0 !important; }
  /* Comparison table: card layout instead of horizontal scroll */
  .comp-table { min-width: 0 !important; }
  .comp-header { display: none !important; }
  .comp-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    padding: 20px !important;
    gap: 14px 20px !important;
    align-items: start !important;
  }
  .comp-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .comp-cell::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .comp-cell-name {
    grid-column: 1 / -1;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .comp-cell-name::before { display: none; }
}

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .stats-grid .stat-item:nth-child(2) { border-top: none; }
  .stats-grid .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .how-steps { grid-template-columns: 1fr; gap: 48px; }
  .how-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .kiosk-inner { grid-template-columns: 1fr; gap: 48px; }
  .kiosk-tags { right: 0; top: auto; bottom: -16px; flex-direction: row; flex-wrap: wrap; position: relative; margin-top: 16px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; display: none; }
  .venues-grid { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-visual { order: unset; }
}
@media (max-width: 900px) {
  /* Nav: keep phone + CTA visible, hamburger handles nav links */
  .nav-links, .nav-dropdown { display: none; }
  .nav-hamburger {
    display: flex;
    background: rgba(13,27,42,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 10px;
    gap: 5px;
  }
  .nav-hamburger span { background: #fff; }
  .nav-phone { font-size: 11px; letter-spacing: 0; }
  .btn-nav { font-size: 12px; padding: 8px 14px; }

  .hero-stat-card { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .stats-section { overflow: hidden; }
  .stats-grid { grid-template-columns: 1fr 1fr; width: 100%; max-width: 100%; overflow: hidden; }
  .stat-item { min-width: 0; padding: 0 16px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .how-cta-card { flex-direction: column; text-align: center; align-items: center; }
  .how-cta-card .btn { width: 100%; justify-content: center; white-space: normal; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  /* About page: stack identity and values grids */
  .about-identity-grid { grid-template-columns: 1fr !important; }
  .about-values-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .nav-phone { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* --- GSAP ANIMATION STATES --------------------------------- */
[data-gsap="fade-up"] { opacity: 0; transform: translateY(40px); }
[data-gsap="fade-in"] { opacity: 0; }
[data-gsap="scale-in"] { opacity: 0; transform: scale(0.92); }
[data-gsap="slide-right"] { opacity: 0; transform: translateX(-40px); }
[data-gsap="slide-left"] { opacity: 0; transform: translateX(40px); }
