/* =============================================================================
   VAOW Platform — Custom styles
   Brand tokens, mockups, animations. Tailwind handles utility layout.
   Swap Tailwind CDN for a proper build by keeping these class names intact.
   ============================================================================= */

:root {
  --vaow-green: #0bbb00;
  --vaow-green-deep: #087a00;
  --vaow-black: #080a08;
  --vaow-surface: #111411;
  --vaow-surface-elevated: #181c18;
  --vaow-light: #f5f7f5;
  --vaow-white: #ffffff;
  --vaow-muted: #687068;
  --vaow-border: rgba(255, 255, 255, 0.08);
  --vaow-border-dark: rgba(8, 10, 8, 0.08);
  --vaow-glow: rgba(11, 187, 0, 0.35);
  --font-sans: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-height: 72px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
}

body {
  font-family: var(--font-sans);
  color: var(--vaow-black);
  background: var(--vaow-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(11, 187, 0, 0.22);
  color: var(--vaow-black);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--vaow-green);
  color: var(--vaow-black);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* -----------------------------------------------------------------------------
   Typography
   ----------------------------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vaow-green);
}

.headline-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.headline-lg {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.headline-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--vaow-muted);
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vaow-muted);
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.25s var(--ease-soft),
    border-color 0.25s var(--ease-soft), box-shadow 0.35s var(--ease-out), color 0.25s;
  will-change: transform;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--vaow-green);
  color: var(--vaow-black);
  box-shadow: 0 0 0 0 rgba(11, 187, 0, 0);
}

.btn-primary:hover {
  background: #12d100;
  box-shadow: 0 8px 28px rgba(11, 187, 0, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--vaow-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-dark {
  background: transparent;
  color: var(--vaow-black);
  border-color: rgba(8, 10, 8, 0.16);
}

.btn-secondary-dark:hover {
  background: rgba(8, 10, 8, 0.04);
  border-color: rgba(8, 10, 8, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--vaow-white);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-nav-secondary {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: inherit;
  border-color: currentColor;
  opacity: 0.85;
}

.btn-nav-primary {
  min-height: 40px;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  background: var(--vaow-green);
  color: var(--vaow-black);
}

.btn-nav-primary:hover {
  background: #12d100;
}

/* Magnetic button offset via JS custom properties */
.btn-magnetic {
  transform: translate(var(--mx, 0), var(--my, 0));
}

/* -----------------------------------------------------------------------------
   Navigation
   ----------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.4s var(--ease-soft), backdrop-filter 0.4s, border-color 0.4s,
    box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 8, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.site-header.is-light {
  color: var(--vaow-black);
}

.site-header.is-scrolled.is-light {
  background: rgba(245, 247, 245, 0.82);
  border-bottom-color: rgba(8, 10, 8, 0.06);
  box-shadow: 0 4px 24px rgba(8, 10, 8, 0.06);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit;
  opacity: 0.72;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  opacity: 1;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.logo-img-footer {
  height: 32px;
  max-width: 160px;
}

@media (min-width: 768px) {
  .logo-img {
    height: 32px;
    max-width: 160px;
  }

  .logo-img-footer {
    height: 36px;
    max-width: 180px;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 10, 8, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 0.75rem) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-menu-nav a {
  font-size: clamp(1.35rem, 5.5vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--vaow-white);
  text-decoration: none;
  padding: 0.55rem 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu.is-open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.11s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.17s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu-nav a:nth-child(7) { transition-delay: 0.23s; }

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

.mobile-menu-footer .btn {
  width: 100%;
  min-height: 48px;
}

.mobile-menu-footer .lang-select {
  min-height: 48px;
  font-size: 1rem;
  width: 100%;
  max-width: none;
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  border-radius: 10px;
  flex-shrink: 0;
}

.menu-toggle-bars {
  width: 20px;
  height: 14px;
  position: relative;
}

.menu-toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s;
}

.menu-toggle-bars span:nth-child(1) { top: 0; }
.menu-toggle-bars span:nth-child(2) { top: 6px; }
.menu-toggle-bars span:nth-child(3) { top: 12px; }

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* -----------------------------------------------------------------------------
   Sections & layout helpers
   ----------------------------------------------------------------------------- */

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.container,
.container-wide,
.container-narrow {
  width: 100%;
  margin-inline: auto;
  padding-inline: max(1.25rem, env(safe-area-inset-left, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.container {
  max-width: 1180px;
}

.container-wide {
  max-width: 1320px;
}

.container-narrow {
  max-width: 760px;
}

.bg-dark {
  background: var(--vaow-black);
  color: var(--vaow-white);
}

.bg-surface {
  background: var(--vaow-surface);
  color: var(--vaow-white);
}

.bg-light {
  background: var(--vaow-light);
  color: var(--vaow-black);
}

.bg-white {
  background: var(--vaow-white);
  color: var(--vaow-black);
}

.muted-on-dark {
  color: rgba(245, 247, 245, 0.62);
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--vaow-border-dark);
  background: var(--vaow-white);
  box-shadow: 0 12px 40px rgba(8, 10, 8, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(8, 10, 8, 0.1);
}

.panel-dark {
  border-color: var(--vaow-border);
  background: var(--vaow-surface-elevated);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.panel-dark:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* -----------------------------------------------------------------------------
   Reveal animations
   ----------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-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; }

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 2rem) 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(11, 187, 0, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(8, 122, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #080a08 0%, #0c100c 55%, #111411 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero-content .headline-xl,
.hero-content .body-lg,
.hero-content .body-md,
.hero-content .eyebrow {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-stage {
  position: relative;
  z-index: 1;
  height: clamp(340px, 48vw, 560px);
  margin-top: clamp(1.5rem, 4vw, 3rem);
  perspective: 1400px;
}

.hero-composition {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

.float-phone,
.float-dashboard,
.float-map,
.float-status {
  position: absolute;
  will-change: transform;
}

.float-phone {
  width: min(220px, 28vw);
  right: 8%;
  bottom: 8%;
  z-index: 4;
  animation: floatY 7s ease-in-out infinite;
}

.float-dashboard {
  width: min(620px, 72vw);
  left: 2%;
  top: 4%;
  z-index: 2;
  animation: floatY 9s ease-in-out infinite reverse;
}

.float-map {
  width: min(280px, 36vw);
  right: 18%;
  top: 6%;
  z-index: 3;
  animation: floatY 8s ease-in-out infinite 1s;
}

.float-status {
  z-index: 5;
  animation: floatY 6.5s ease-in-out infinite 0.5s;
}

.float-status-1 { left: 4%; bottom: 18%; }
.float-status-2 { left: 28%; bottom: 4%; }
.float-status-3 { right: 36%; bottom: 22%; }

.hero-trust {
  font-size: 0.875rem;
  color: rgba(245, 247, 245, 0.5);
  margin-top: 1.5rem;
}

.hero-transition {
  position: relative;
  z-index: 2;
  margin-top: clamp(-2rem, -4vw, -1rem);
}

.hero-transition-fade {
  height: clamp(4rem, 10vw, 7rem);
  background: linear-gradient(180deg, transparent, #080a08);
  pointer-events: none;
}

.hero-transition-band {
  background: #080a08;
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) 1.5rem;
  position: relative;
}

.hero-transition-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(640px, 80vw);
  height: min(220px, 40vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(11, 187, 0, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-transition-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

.hero-transition-lead {
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: #ffffff;
  text-wrap: balance;
}

.hero-transition-support {
  margin: 0.75rem 0 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.58);
  text-wrap: balance;
}

.hero-transition-bridge {
  height: clamp(3.5rem, 8vw, 5.5rem);
  background: linear-gradient(180deg, #080a08 0%, #111411 35%, var(--vaow-light) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-transition-band::before {
    opacity: 0.5;
  }
}

/* -----------------------------------------------------------------------------
   Device mockups
   ----------------------------------------------------------------------------- */

.device-phone {
  border-radius: 36px;
  background: #1a1e1a;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}

.device-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 18px;
  background: #080a08;
  border-radius: 999px;
  z-index: 5;
}

.device-phone-screen {
  position: absolute;
  inset: 0;
  background: #0e120e;
  padding: 2.2rem 0.7rem 0.7rem;
  overflow: hidden;
}

.device-phone-real {
  background: #080a08;
}

.device-phone-real::before {
  display: none;
}

.device-phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.device-laptop {
  border-radius: 16px 16px 10px 10px;
  background: #1c211c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

.device-laptop::after {
  content: "";
  display: block;
  height: 10px;
  background: linear-gradient(180deg, #2a302a, #151815);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.device-laptop-screen {
  height: calc(100% - 10px);
  background: #0d110d;
  padding: 0.65rem;
  overflow: hidden;
}

.device-tablet {
  border-radius: 20px;
  background: #1a1e1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.status-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(17, 20, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  min-width: 140px;
}

.status-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vaow-green);
  box-shadow: 0 0 10px var(--vaow-glow);
  flex-shrink: 0;
}

.status-chip .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 247, 245, 0.5);
}

.status-chip .value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vaow-white);
  letter-spacing: -0.02em;
}

/* Mini UI pieces inside mockups */
.ui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.ui-title {
  font-size: 0.7rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.ui-muted {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
}

.ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0.35rem;
}

.ui-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 600;
  background: rgba(11, 187, 0, 0.15);
  color: var(--vaow-green);
}

.ui-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(11, 187, 0, 0.15), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(8, 122, 0, 0.12), transparent 35%),
    linear-gradient(160deg, #121612, #0a0e0a);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vaow-green);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(11, 187, 0, 0.5);
  animation: pulseMarker 2.4s ease-out infinite;
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(11, 187, 0, 0.5);
}

.map-marker.is-alert {
  background: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
  animation-name: pulseMarkerAlert;
}

.map-marker.is-alert::after {
  border-color: rgba(245, 158, 11, 0.5);
}

.chart-line {
  fill: none;
  stroke: var(--vaow-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2.5s var(--ease-out) forwards;
}

.chart-area {
  fill: url(#chartFill);
  opacity: 0.35;
}

.battery-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.battery-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vaow-green-deep), var(--vaow-green));
}

/* -----------------------------------------------------------------------------
   Ecosystem diagram
   ----------------------------------------------------------------------------- */

.ecosystem {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.ecosystem-nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-nodes .ecosystem-node {
  pointer-events: auto;
}

.ecosystem-center {
  position: relative;
  z-index: 2;
  width: min(180px, 40vw);
  aspect-ratio: 1;
  border-radius: 32px;
  background: linear-gradient(145deg, #111411, #0a0e0a);
  border: 1px solid rgba(11, 187, 0, 0.35);
  box-shadow:
    0 0 60px rgba(11, 187, 0, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--vaow-white);
  padding: 1rem;
}

.ecosystem-ring {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(8, 10, 8, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.ecosystem-node {
  position: absolute;
  z-index: 1;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: var(--vaow-white);
  border: 1px solid rgba(8, 10, 8, 0.08);
  box-shadow: 0 8px 24px rgba(8, 10, 8, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.ecosystem.is-visible .ecosystem-node {
  opacity: 1;
  transform: scale(1);
}

.ecosystem-node.is-center-x {
  left: 50%;
  transform: translateX(-50%) scale(0.92);
}

.ecosystem.is-visible .ecosystem-node.is-center-x {
  transform: translateX(-50%) scale(1);
}

.ecosystem-node i {
  color: var(--vaow-green);
  margin-right: 0.35rem;
}

/* -----------------------------------------------------------------------------
   Storytelling sticky section
   ----------------------------------------------------------------------------- */

.story-section {
  background: var(--vaow-light);
}

.story-layout {
  display: grid;
  gap: 2.5rem;
}

@media (max-width: 1023px) {
  .story-layout {
    display: flex;
    flex-direction: column;
  }

  .story-visual-sticky {
    order: -1;
    position: sticky;
    top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 0.75rem);
    z-index: 5;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .story-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: start;
  }

  .story-visual-sticky {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
    height: calc(100svh - var(--nav-height) - 3rem);
    display: flex;
    align-items: center;
  }
}

.story-panel {
  min-height: auto;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid rgba(8, 10, 8, 0.06);
}

@media (min-width: 1024px) {
  .story-panel {
    min-height: 85svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    border-bottom: none;
  }
}

.story-visual {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #0d110d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(8, 10, 8, 0.18);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  position: relative;
}

.story-visual-frame {
  position: absolute;
  inset: 0;
  padding: 1rem;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.story-visual-frame.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.story-app-shots {
  display: flex;
  gap: 0.65rem;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0.35rem;
}

.story-app-phone {
  width: 30%;
  border-radius: 22px;
  flex-shrink: 0;
}

.story-app-phone.is-focus {
  width: 34%;
  margin-bottom: 0.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* -----------------------------------------------------------------------------
   Connectivity stream
   ----------------------------------------------------------------------------- */

.stream-canvas {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(11, 187, 0, 0.08), transparent 55%),
    #0c100c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 420px;
}

.stream-node {
  position: absolute;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.stream-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(160px, 36vw);
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(145deg, #151a15, #0a0e0a);
  border: 1px solid rgba(11, 187, 0, 0.4);
  box-shadow: 0 0 50px rgba(11, 187, 0, 0.25);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stream-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vaow-green);
  box-shadow: 0 0 8px var(--vaow-glow);
  opacity: 0;
  animation: streamFlow 3.5s linear infinite;
}

.data-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 245, 0.75);
}

.data-tag i {
  color: var(--vaow-green);
  font-size: 0.7rem;
}

/* -----------------------------------------------------------------------------
   White-label showcase
   ----------------------------------------------------------------------------- */

.wl-section {
  position: relative;
  background:
    radial-gradient(ellipse 60% 45% at 50% 20%, rgba(11, 187, 0, 0.06), transparent 60%),
    linear-gradient(180deg, #fbfcfb 0%, var(--vaow-light) 45%, #ffffff 100%);
  overflow: hidden;
}

.wl-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 10, 8, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 10, 8, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black, transparent);
}

.wl-title-line {
  display: block;
}

.wl-title-accent {
  display: block;
  background: linear-gradient(100deg, var(--vaow-green-deep), var(--vaow-green) 45%, #5ee05e);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wlAccentShift 6s ease-in-out infinite;
}

.wl-stage {
  position: relative;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  max-width: 920px;
  min-height: clamp(420px, 62vw, 560px);
  perspective: 1400px;
}

.wl-stage-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(460px, 70vw);
  height: min(280px, 40vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--wl-active, #2f5bff) 28%, transparent), transparent 70%);
  filter: blur(8px);
  transition: background 0.8s var(--ease-out);
  pointer-events: none;
}

.wl-phones {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
}

.brand-phone {
  --brand: #0bbb00;
  --brand-deep: #087a00;
  --brand-soft: #e8f8e8;
  position: absolute;
  width: min(220px, 58vw);
  transform-origin: center bottom;
  transition: transform 0.75s var(--ease-out), opacity 0.55s var(--ease-out), z-index 0s;
  cursor: pointer;
  will-change: transform, opacity;
  z-index: 1;
  opacity: 0.75;
}

.brand-phone.is-left {
  transform: translate3d(-38%, 10%, 0) rotate(-12deg) scale(0.86);
  z-index: 1;
}

.brand-phone.is-right {
  transform: translate3d(38%, 10%, 0) rotate(12deg) scale(0.86);
  z-index: 1;
}

.brand-phone.is-active {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1.06);
  z-index: 4;
  opacity: 1;
}

.brand-phone-shell {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(8, 10, 8, 0.1);
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 10, 8, 0.14);
  aspect-ratio: 9 / 18.5;
  transition: box-shadow 0.55s var(--ease-out);
  animation: wlFloatY 6.5s ease-in-out infinite;
}

.brand-phone-shell-real {
  background: #080a08;
  border-color: rgba(8, 10, 8, 0.35);
}

.brand-phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.brand-phone.is-active .brand-phone-shell {
  box-shadow:
    0 34px 90px rgba(8, 10, 8, 0.22),
    0 0 0 1px color-mix(in srgb, var(--brand) 40%, transparent);
  animation-duration: 5.5s;
}

.brand-phone.is-left .brand-phone-shell {
  animation-delay: -1.2s;
}

.brand-phone.is-right .brand-phone-shell {
  animation-delay: -2.4s;
}

.brand-phone-bezel {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 16px;
  border-radius: 999px;
  background: #080a08;
  z-index: 2;
}

.brand-phone-header {
  position: relative;
  padding: 2.1rem 1rem 1rem;
  color: #fff;
  background: linear-gradient(160deg, var(--brand), var(--brand-deep));
  transition: background 0.6s var(--ease-out);
}

.brand-phone-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.brand-phone-headline {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-phone-body {
  padding: 0.9rem;
}

.brand-phone-map {
  position: relative;
  height: 7.5rem;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  background:
    radial-gradient(circle at 40% 45%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 45%),
    linear-gradient(160deg, var(--brand-soft), #f5f7f5);
  overflow: hidden;
  transition: background 0.6s var(--ease-out);
}

.brand-map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 45%, transparent);
  animation: pulseMarker 2.4s ease-out infinite;
}

.brand-phone-meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--vaow-black);
}

.brand-phone-cta {
  margin-top: 0.75rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  transition: background 0.45s var(--ease-out), color 0.45s;
}

.brand-phone[data-brand="0"] .brand-phone-cta {
  color: #080a08;
}

.wl-brand-switcher {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 5;
}

.wl-brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--swatch, var(--vaow-green));
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  padding: 0;
}

.wl-brand-dot:hover {
  transform: scale(1.15);
}

.wl-brand-dot.is-active {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--swatch) 28%, transparent);
  border-color: rgba(255, 255, 255, 0.9);
}

.wl-brand-caption {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--vaow-muted);
  letter-spacing: -0.01em;
}

.wl-brand-caption-name {
  display: inline-block;
  margin-left: 0.4rem;
  font-weight: 700;
  color: var(--vaow-black);
  letter-spacing: 0.04em;
  transition: opacity 0.25s;
}

html[dir="rtl"] .wl-brand-caption-name {
  margin-left: 0;
  margin-right: 0.4rem;
}

.wl-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 820px;
  margin-inline: auto;
}

.wl-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vaow-muted);
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, color 0.35s, background 0.35s;
}

.wl-stage.is-visible ~ .wl-chips .wl-chip,
.wl-chips.is-visible .wl-chip {
  animation: wlChipIn 0.7s var(--ease-out) both;
}

.wl-chips .wl-chip:nth-child(1) { animation-delay: 0.05s; }
.wl-chips .wl-chip:nth-child(2) { animation-delay: 0.1s; }
.wl-chips .wl-chip:nth-child(3) { animation-delay: 0.15s; }
.wl-chips .wl-chip:nth-child(4) { animation-delay: 0.2s; }
.wl-chips .wl-chip:nth-child(5) { animation-delay: 0.25s; }
.wl-chips .wl-chip:nth-child(6) { animation-delay: 0.3s; }
.wl-chips .wl-chip:nth-child(7) { animation-delay: 0.35s; }
.wl-chips .wl-chip:nth-child(8) { animation-delay: 0.4s; }
.wl-chips .wl-chip:nth-child(9) { animation-delay: 0.45s; }
.wl-chips .wl-chip:nth-child(10) { animation-delay: 0.5s; }

.wl-chip:hover {
  transform: translateY(-2px);
  color: var(--vaow-black);
  border-color: color-mix(in srgb, var(--vaow-green) 40%, transparent);
  background: #fff;
}

@keyframes wlAccentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

@media (max-width: 639px) {
  .wl-stage {
    min-height: 460px;
  }

  .brand-phone {
    width: min(200px, 62vw);
  }

  .brand-phone.is-left {
    transform: translate3d(-22%, 16%, 0) rotate(-8deg) scale(0.78);
  }

  .brand-phone.is-right {
    transform: translate3d(22%, 16%, 0) rotate(8deg) scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wl-title-accent,
  .brand-phone-shell,
  .brand-map-dot,
  .wl-chip {
    animation: none !important;
  }

  .brand-phone {
    transition: none;
  }
}

.solution-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
  display: grid;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8, 10, 8, 0.1);
}

.solution-preview {
  aspect-ratio: 16 / 10;
  background: #0e120e;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

/* -----------------------------------------------------------------------------
   Automation flow
   ----------------------------------------------------------------------------- */

.flow-builder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 0;
  padding: 2rem 1rem;
}

.flow-node {
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  max-width: 200px;
  text-align: center;
  position: relative;
}

.flow-node.trigger {
  border-color: rgba(11, 187, 0, 0.35);
  background: rgba(11, 187, 0, 0.08);
}

.flow-node.condition {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}

.flow-node.action {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(96, 165, 250, 0.08);
}

.flow-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(11, 187, 0, 0.2), rgba(11, 187, 0, 0.8), rgba(11, 187, 0, 0.2));
  position: relative;
  flex-shrink: 0;
}

.flow-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--vaow-green);
}

.flow-example {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}

.flow-example:hover {
  border-color: rgba(11, 187, 0, 0.3);
  background: rgba(11, 187, 0, 0.05);
}

/* -----------------------------------------------------------------------------
   Payments flow
   ----------------------------------------------------------------------------- */

.payment-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
}

.payment-step {
  flex: 1 1 120px;
  max-width: 160px;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: var(--vaow-white);
  border: 1px solid rgba(8, 10, 8, 0.08);
  text-align: center;
  box-shadow: 0 8px 24px rgba(8, 10, 8, 0.04);
}

.payment-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11, 187, 0, 0.12);
  color: var(--vaow-green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}

.payment-arrow {
  display: none;
  align-self: center;
  color: var(--vaow-muted);
}

@media (min-width: 768px) {
  .payment-arrow {
    display: block;
  }
}

/* -----------------------------------------------------------------------------
   Integrations
   ----------------------------------------------------------------------------- */

.integration-track {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.integration-track-inner {
  display: flex;
  gap: 1rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.integration-pill {
  flex-shrink: 0;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 10, 8, 0.1);
  background: var(--vaow-white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.code-panel {
  border-radius: var(--radius-md);
  background: #0c100c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.65;
}

.code-panel-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.code-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.code-panel pre {
  margin: 0;
  padding: 1.25rem;
  overflow-x: auto;
  color: rgba(245, 247, 245, 0.85);
}

.code-panel .tok-key { color: #7dd87d; }
.code-panel .tok-str { color: #a8e6a8; }
.code-panel .tok-num { color: #fbbf24; }
.code-panel .tok-comment { color: rgba(255, 255, 255, 0.35); }

/* -----------------------------------------------------------------------------
   Security
   ----------------------------------------------------------------------------- */

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

@media (min-width: 640px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.security-item {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
}

.security-item i {
  color: var(--vaow-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* -----------------------------------------------------------------------------
   Comparison
   ----------------------------------------------------------------------------- */

.compare-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
}

.compare-table > * {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(8, 10, 8, 0.06);
  font-size: 0.9rem;
}

.compare-head {
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--vaow-light);
}

.compare-head.vaow {
  background: rgba(11, 187, 0, 0.1);
  color: var(--vaow-green-deep);
}

.compare-label {
  font-weight: 600;
  color: var(--vaow-black);
}

.compare-internal {
  color: var(--vaow-muted);
}

.compare-vaow {
  color: var(--vaow-black);
  font-weight: 500;
  background: rgba(11, 187, 0, 0.03);
}

@media (max-width: 767px) {
  .compare-table {
    grid-template-columns: 1fr;
  }

  .compare-table > * {
    border-bottom: 1px solid rgba(8, 10, 8, 0.06);
  }

  .compare-row-label {
    background: var(--vaow-light);
    font-weight: 700;
  }
}

/* -----------------------------------------------------------------------------
   Modules
   ----------------------------------------------------------------------------- */

.module-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 10, 8, 0.08);
}

.module-preview {
  height: 110px;
  background: #0e120e;
  position: relative;
  overflow: hidden;
  padding: 0.75rem;
}

.module-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
}

/* -----------------------------------------------------------------------------
   Global map
   ----------------------------------------------------------------------------- */

.global-map {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 45% 45%, rgba(11, 187, 0, 0.12), transparent 50%),
    #0c100c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 380px;
  overflow: hidden;
}

.global-map svg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  opacity: 0.9;
}

.city-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}

.city-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--vaow-green);
  box-shadow: 0 0 0 0 rgba(11, 187, 0, 0.45);
  animation: pulseMarker 2.8s ease-out infinite;
}

.city-pin-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* -----------------------------------------------------------------------------
   Social proof placeholders
   ----------------------------------------------------------------------------- */

.placeholder-box {
  border: 1px dashed rgba(8, 10, 8, 0.18);
  border-radius: var(--radius-md);
  background: rgba(8, 10, 8, 0.02);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--vaow-muted);
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 72px;
  padding: 1rem;
}

.placeholder-stat {
  border: 1px dashed rgba(8, 10, 8, 0.18);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
}

.placeholder-stat .ph-value {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--vaow-muted);
}

.placeholder-stat .ph-label {
  font-size: 0.8rem;
  color: var(--vaow-muted);
  margin-top: 0.35rem;
}

/* -----------------------------------------------------------------------------
   Final CTA & form
   ----------------------------------------------------------------------------- */

.final-cta {
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(11, 187, 0, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(8, 122, 0, 0.12), transparent 45%),
    var(--vaow-black);
}

.contact-form,
.booking-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.35rem, 3vw, 2rem);
  backdrop-filter: blur(12px);
}

.booking-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.booking-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vaow-green);
}

.booking-card-title {
  margin-top: 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--vaow-white);
}

.booking-summary {
  min-width: min(100%, 220px);
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(11, 187, 0, 0.08);
  border: 1px solid rgba(11, 187, 0, 0.22);
}

.booking-summary-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.45);
}

.booking-summary strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--vaow-white);
  font-weight: 600;
}

.booking-schedule {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .booking-schedule {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.15rem;
    align-items: stretch;
  }
}

.booking-calendar,
.booking-slots-panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  padding: 1rem;
}

.booking-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.booking-cal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vaow-white);
  letter-spacing: -0.02em;
}

.booking-cal-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vaow-white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.booking-cal-btn:hover:not(:disabled) {
  background: rgba(11, 187, 0, 0.15);
  border-color: rgba(11, 187, 0, 0.35);
}

.booking-cal-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-cal-weekdays,
.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking-cal-weekdays {
  margin-bottom: 0.35rem;
}

.booking-cal-weekdays span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.4);
  padding: 0.2rem 0;
}

.booking-cal-day {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(245, 247, 245, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: default;
  position: relative;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.booking-cal-day.is-outside {
  visibility: hidden;
}

.booking-cal-day.is-available {
  color: var(--vaow-white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.booking-cal-day.is-available::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vaow-green);
}

.booking-cal-day.is-available:hover {
  border-color: rgba(11, 187, 0, 0.45);
  background: rgba(11, 187, 0, 0.12);
  transform: translateY(-1px);
}

.booking-cal-day.is-selected {
  color: var(--vaow-black);
  background: var(--vaow-green);
  border-color: var(--vaow-green);
  box-shadow: 0 8px 22px rgba(11, 187, 0, 0.28);
}

.booking-cal-day.is-selected::after {
  background: var(--vaow-black);
}

.booking-cal-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px rgba(11, 187, 0, 0.45);
}

.booking-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  color: rgba(245, 247, 245, 0.5);
}

.booking-cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.booking-cal-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.booking-cal-legend i.is-available { background: var(--vaow-green); }
.booking-cal-legend i.is-selected { background: #fff; box-shadow: 0 0 0 2px var(--vaow-green); }
.booking-cal-legend i.is-unavailable { background: rgba(255, 255, 255, 0.2); }

.booking-slots-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.booking-slots-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 247, 245, 0.45);
}

.booking-slots-date {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--vaow-white);
}

.booking-tz {
  font-size: 0.7rem;
  color: rgba(245, 247, 245, 0.4);
  text-align: right;
  max-width: 9rem;
  line-height: 1.35;
}

.booking-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.booking-slot {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 247, 245, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.booking-slot:hover {
  border-color: rgba(11, 187, 0, 0.45);
  background: rgba(11, 187, 0, 0.1);
}

.booking-slot.is-selected {
  background: var(--vaow-green);
  border-color: var(--vaow-green);
  color: var(--vaow-black);
}

.booking-slots-empty,
.booking-slots-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 0.5rem;
  font-size: 0.85rem;
  color: rgba(245, 247, 245, 0.45);
}

.booking-schedule-error {
  min-height: 1.1em;
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: #f87171;
}

.booking-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.35rem 0 1rem;
}

.booking-fields {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 640px) {
  .booking-fields {
    grid-template-columns: 1fr 1fr;
  }

  .booking-field-full {
    grid-column: 1 / -1;
  }
}

.booking-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.booking-step-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 187, 0, 0.9);
  margin: 0.25rem 0 0.85rem;
}

@media (max-width: 639px) {
  .booking-slots-grid {
    max-height: 220px;
  }

  .booking-summary {
    width: 100%;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(245, 247, 245, 0.7);
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--vaow-white);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--vaow-green);
  box-shadow: 0 0 0 3px rgba(11, 187, 0, 0.2);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23687068' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field select option {
  background: #111411;
  color: #fff;
}

.form-field .error-msg {
  font-size: 0.75rem;
  color: #f87171;
  display: none;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #f87171;
}

.form-field.has-error .error-msg {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 187, 0, 0.15);
  color: var(--vaow-green);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.btn-loading .btn-label {
  opacity: 0;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(8, 10, 8, 0.2);
  border-top-color: var(--vaow-black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-submit {
  position: relative;
  width: 100%;
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */

.site-footer {
  background: var(--vaow-surface);
  color: rgba(245, 247, 245, 0.7);
  padding: 4rem 0 2rem;
}

.footer-link {
  color: rgba(245, 247, 245, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--vaow-white);
}

.lang-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 247, 245, 0.8);
  border-radius: 10px;
  padding: 0.5rem 2rem 0.5rem 0.7rem;
  font-size: 0.85rem;
  font-family: inherit;
  line-height: 1.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23687068' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  cursor: pointer;
}

.lang-select-emoji {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.lang-select option {
  background: #111411;
  color: #fff;
  font-size: 1rem;
}

.lang-select-nav {
  min-height: 40px;
  max-width: 118px;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.06);
}

.lang-select-compact {
  max-width: 92px;
  min-width: 84px;
  padding-inline: 0.45rem 1.65rem;
  font-size: 0.9rem;
  text-align: center;
}

.site-header.is-light .lang-select-nav {
  border-color: rgba(8, 10, 8, 0.14);
  background-color: rgba(8, 10, 8, 0.04);
  color: var(--vaow-black);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* -----------------------------------------------------------------------------
   RTL (Arabic and other RTL languages)
   ----------------------------------------------------------------------------- */

html[dir="rtl"] body,
body.is-rtl {
  font-family: "Noto Sans Arabic", Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[dir="rtl"] .headline-xl,
html[dir="rtl"] .headline-lg,
html[dir="rtl"] .headline-md {
  letter-spacing: -0.02em;
}

html[dir="rtl"] .lang-select {
  background-position: left 0.7rem center;
  padding: 0.5rem 0.85rem 0.5rem 2rem;
}

html[dir="rtl"] .ecosystem-node i,
html[dir="rtl"] .data-tag i {
  margin-right: 0;
  margin-left: 0.35rem;
}

html[dir="rtl"] .story-panel li i,
html[dir="rtl"] #global li i {
  margin-right: 0;
  margin-left: 0.5rem;
}

html[dir="rtl"] .payment-arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] .flow-connector::after {
  right: auto;
  left: -2px;
  border-left-color: transparent;
  border-right-color: var(--vaow-green);
}

html[dir="rtl"] .code-panel {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .integration-track-inner {
  animation-name: marqueeRtl;
}

@keyframes marqueeRtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (min-width: 1024px) {
  html[dir="rtl"] .story-layout {
    grid-template-columns: 1.05fr 1fr;
  }
}

/* -----------------------------------------------------------------------------
   Keyframes
   ----------------------------------------------------------------------------- */

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

@keyframes pulseMarker {
  0% { box-shadow: 0 0 0 0 rgba(11, 187, 0, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(11, 187, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 187, 0, 0); }
}

@keyframes pulseMarkerAlert {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes streamFlow {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* -----------------------------------------------------------------------------
   Responsive refinements
   ----------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  .float-map {
    display: none;
  }

  .float-status-3 {
    display: none;
  }

  .float-dashboard {
    width: min(560px, 88vw);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    animation: none;
  }

  .float-phone {
    right: 4%;
    bottom: 4%;
    width: min(150px, 34vw);
  }

  .hero-composition .float-dashboard {
    transform: translateX(-50%);
  }

  .ecosystem {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .ecosystem-ring {
    display: none;
  }

  .ecosystem-center {
    margin: 0 auto;
    position: relative;
  }

  .ecosystem-node {
    position: static;
    white-space: normal;
  }

  .ecosystem-nodes {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }

  .story-visual {
    aspect-ratio: 16 / 12;
    border-radius: var(--radius-md);
  }

  .story-visual-frame {
    padding: 0.75rem;
  }
}

@media (max-width: 767px) {
  :root {
    --nav-height: 64px;
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  html {
    scroll-padding-top: calc(var(--nav-height) + env(safe-area-inset-top));
  }

  .container,
  .container-wide,
  .container-narrow {
    padding-inline: max(1.75rem, env(safe-area-inset-left, 0px))
      max(1.75rem, env(safe-area-inset-right, 0px));
  }

  .section {
    padding: 4rem 0;
  }

  .section-tight {
    padding: 3.25rem 0;
  }

  .headline-xl {
    font-size: clamp(2.05rem, 9.2vw, 2.75rem);
    letter-spacing: -0.035em;
  }

  .headline-lg {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .headline-md {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .body-lg {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + env(safe-area-inset-top) + 1.75rem) 0 0;
  }

  .hero-content {
    padding-bottom: 1.5rem;
    padding-inline: max(1.75rem, env(safe-area-inset-left, 0px))
      max(1.75rem, env(safe-area-inset-right, 0px));
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
    gap: 0.65rem;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-trust {
    margin-top: 1.15rem;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .hero-stage {
    height: 260px;
    margin-top: 1.25rem;
  }

  .hero-transition-band {
    padding-block: 3rem;
    padding-inline: max(1.75rem, env(safe-area-inset-left, 0px))
      max(1.75rem, env(safe-area-inset-right, 0px));
  }

  .hero-transition-lead {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-transition-support {
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  }

  .story-panel {
    padding: 1.5rem 0 2.25rem;
  }

  .story-visual-sticky {
    position: relative;
    top: auto;
    margin-bottom: 1.25rem;
  }

  .story-layout {
    gap: 1.5rem;
  }

  .flow-builder {
    flex-direction: column;
    padding: 1.5rem 0.5rem;
    gap: 0.55rem;
  }

  .flow-node {
    max-width: none;
    width: 100%;
    font-size: 0.85rem;
  }

  .flow-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, rgba(11, 187, 0, 0.2), rgba(11, 187, 0, 0.8), rgba(11, 187, 0, 0.2));
  }

  .flow-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(-50%);
    border-left-color: transparent;
    border-top-color: var(--vaow-green);
  }

  .pricing-card {
    padding: 1.5rem 1.35rem 1.35rem;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-card-name {
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
    padding-right: 0;
  }

  .pricing-card-featured .pricing-card-name {
    padding-right: 5rem;
  }

  html[dir="rtl"] .pricing-card-featured .pricing-card-name {
    padding-right: 0;
    padding-left: 5rem;
  }

  .pricing-features li {
    font-size: 0.82rem;
  }

  .pricing-calculator {
    padding: 1.35rem;
  }

  .calc-vehicle-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .calc-breakdown {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .calc-plan-option {
    font-size: 0.82rem;
    min-height: 44px;
    padding: 0.55rem 0.65rem;
  }

  .contact-form,
  .booking-card {
    padding: 1.35rem;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 48px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .form-field textarea {
    min-height: 120px;
  }

  .site-footer {
    padding: 3.25rem 0 max(1.75rem, env(safe-area-inset-bottom));
  }

  .solution-card:hover,
  .module-card:hover {
    transform: none;
  }

  .wl-stage {
    min-height: 420px;
  }

  .payment-flow {
    gap: 1rem;
  }

  .security-item,
  .module-card,
  .solution-card {
    padding-inline: inherit;
  }
}

@media (max-width: 639px) {
  .float-status {
    display: none;
  }

  .container,
  .container-wide,
  .container-narrow,
  .hero-content {
    padding-inline: max(1.5rem, env(safe-area-inset-left, 0px))
      max(1.5rem, env(safe-area-inset-right, 0px));
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero {
    padding: calc(var(--nav-height) + env(safe-area-inset-top) + 1.5rem) 0 0;
  }

  .hero-stage {
    height: 220px;
  }

  .float-dashboard {
    width: min(92vw, 420px);
  }

  .float-phone {
    width: min(112px, 28vw);
    right: 2%;
    bottom: 2%;
  }

  .device-phone {
    border-radius: 24px;
  }

  .wl-stage {
    min-height: 400px;
  }

  .brand-phone {
    width: min(180px, 58vw);
  }

  .brand-phone.is-left {
    transform: translate3d(-18%, 14%, 0) rotate(-7deg) scale(0.74);
  }

  .brand-phone.is-right {
    transform: translate3d(18%, 14%, 0) rotate(7deg) scale(0.74);
  }

  .pricing-addons {
    padding: 1.25rem;
  }

  .booking-card,
  .contact-form,
  .pricing-calculator {
    padding: 1.25rem;
  }

  .mobile-menu {
    padding-inline: 1.5rem;
  }
}

@media (max-width: 379px) {
  .headline-xl {
    font-size: 1.9rem;
  }

  .lang-select-compact {
    max-width: 78px;
    min-width: 72px;
    font-size: 0.82rem;
    padding-inline: 0.3rem 1.4rem;
  }

  .hero-stage {
    height: 190px;
  }
}

/* -----------------------------------------------------------------------------
   Reduced motion
   ----------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .float-phone,
  .float-dashboard,
  .float-map,
  .float-status {
    animation: none !important;
  }

  .integration-track-inner {
    animation: none;
  }

  .btn-magnetic {
    transform: none !important;
  }
}

/* -----------------------------------------------------------------------------
   Pricing + calculator
   ----------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

@media (min-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
  padding: 1.75rem 1.35rem 1.5rem;
  min-height: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(8, 10, 8, 0.08);
}

.pricing-card-featured {
  background: #eef6ee;
  border-color: rgba(11, 187, 0, 0.22);
  box-shadow: 0 12px 40px rgba(11, 187, 0, 0.08);
}

.pricing-card-dark {
  background: var(--vaow-black);
  color: var(--vaow-white);
  border-color: transparent;
}

.pricing-card-dark .pricing-starts,
.pricing-card-dark .pricing-unit,
.pricing-card-dark .pricing-min,
.pricing-card-dark .pricing-desc,
.pricing-card-dark .pricing-meta,
.pricing-card-dark .pricing-includes-label,
.pricing-card-dark .pricing-protocol,
.pricing-card-dark .pricing-features {
  color: rgba(245, 247, 245, 0.55);
}

.pricing-card-dark .pricing-features li {
  color: rgba(245, 247, 245, 0.78);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 187, 0, 0.15);
  color: var(--vaow-green-deep);
}

html[dir="rtl"] .pricing-badge {
  right: auto;
  left: 1rem;
}

.pricing-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  padding-right: 5.5rem;
}

html[dir="rtl"] .pricing-card-name {
  padding-right: 0;
  padding-left: 5.5rem;
}

.pricing-card:not(.pricing-card-featured) .pricing-card-name {
  padding-right: 0;
  padding-left: 0;
}

.pricing-starts {
  font-size: 0.8rem;
  color: var(--vaow-muted);
  margin-bottom: 0.35rem;
}

.pricing-amount {
  font-size: clamp(1.85rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pricing-amount-contact {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-bottom: 0.35rem;
}

.pricing-unit {
  font-size: 0.9rem;
  color: var(--vaow-muted);
  margin-top: 0.15rem;
}

.pricing-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vaow-black);
  margin-top: 0.45rem;
  line-height: 1.4;
}

.pricing-meta-on-dark {
  color: rgba(245, 247, 245, 0.85);
}

.pricing-min {
  font-size: 0.8rem;
  color: var(--vaow-muted);
  margin-top: 0.5rem;
}

.pricing-includes-label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--vaow-black);
}

.pricing-card-dark .pricing-includes-label {
  color: var(--vaow-white);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--vaow-muted);
}

html[dir="rtl"] .pricing-features li {
  padding-left: 0;
  padding-right: 1.1rem;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--vaow-green);
}

html[dir="rtl"] .pricing-features li::before {
  left: auto;
  right: 0;
}

.pricing-protocol {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--vaow-muted);
  margin-top: 0.9rem;
}

.pricing-addons {
  max-width: 48rem;
  margin-inline: auto;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
}

.pricing-addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-addons-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--vaow-muted);
}

html[dir="rtl"] .pricing-addons-list li {
  padding-left: 0;
  padding-right: 1.15rem;
}

.pricing-addons-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--vaow-green);
}

html[dir="rtl"] .pricing-addons-list li::before {
  left: auto;
  right: 0;
}

.pricing-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(8, 10, 8, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-card-dark .pricing-card-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.pricing-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--vaow-muted);
  margin-top: 0.85rem;
}

.pricing-btn {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(8, 10, 8, 0.12);
  background: transparent;
  color: var(--vaow-black);
  min-height: 48px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-btn:hover {
  background: rgba(8, 10, 8, 0.04);
}

.pricing-btn-primary {
  background: var(--vaow-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(8, 10, 8, 0.06);
}

.pricing-btn-primary:hover {
  background: #fff;
}

.pricing-btn-light {
  background: var(--vaow-white);
  color: var(--vaow-black);
  border-color: transparent;
}

.pricing-calculator {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 16px 48px rgba(8, 10, 8, 0.05);
}

.pricing-calc-body {
  display: grid;
  gap: 2rem;
  margin-top: 1.75rem;
}

@media (min-width: 900px) {
  .pricing-calc-body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.calc-vehicle-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 0.75rem;
  align-items: center;
}

.calc-vehicle-row input[type="range"] {
  width: 100%;
  accent-color: var(--vaow-green);
  cursor: pointer;
}

.calc-vehicles-input {
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(8, 10, 8, 0.12);
  background: var(--vaow-light);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--vaow-black);
  width: 100%;
}

.calc-vehicles-input:focus {
  outline: none;
  border-color: var(--vaow-green);
  box-shadow: 0 0 0 3px rgba(11, 187, 0, 0.18);
}

.calc-plan-fieldset {
  border: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.calc-plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.calc-plan-toggle-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 520px) {
  .calc-plan-toggle-3 {
    grid-template-columns: 1fr;
  }
}

.calc-plan-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(8, 10, 8, 0.1);
  background: var(--vaow-light);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.calc-plan-option:has(input:checked),
.calc-plan-option.is-selected {
  border-color: rgba(11, 187, 0, 0.45);
  background: rgba(11, 187, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(11, 187, 0, 0.12);
}

.calc-plan-option input {
  accent-color: var(--vaow-green);
}

.pricing-calc-result {
  border-radius: var(--radius-md);
  background: var(--vaow-black);
  color: var(--vaow-white);
  padding: 1.5rem;
}

.calc-total {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 0.35rem;
  color: var(--vaow-green);
}

.calc-status {
  font-size: 0.8rem;
  color: rgba(245, 247, 245, 0.55);
  margin-top: 0.35rem;
  min-height: 1.2em;
}

.calc-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-breakdown dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245, 247, 245, 0.45);
  margin-bottom: 0.2rem;
}

.calc-breakdown dd {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.calc-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.calc-compare-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {
  .calc-compare-3 {
    grid-template-columns: 1fr;
  }
}

.calc-compare-card {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(8, 10, 8, 0.08);
  background: var(--vaow-light);
  padding: 1rem 1.1rem;
}

.calc-compare-card.is-active {
  border-color: rgba(11, 187, 0, 0.35);
  background: rgba(11, 187, 0, 0.06);
}

.calc-compare-amount {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0.35rem;
}

.pricing-calculator .form-field label {
  color: var(--vaow-muted);
}

.pricing-calculator .form-field {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(8, 10, 8, 0.08);
  border-radius: var(--radius-md);
  background: var(--vaow-light);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  padding: 1.1rem 1.25rem;
  color: var(--vaow-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 600;
  color: var(--vaow-green);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--vaow-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.faq-item[open] {
  border-color: rgba(11, 187, 0, 0.28);
  background: #fff;
}
