:root {
  --bg: #020714;
  --bg-2: #04122c;
  --bg-3: #061d48;
  --panel: rgba(7, 24, 58, .76);
  --panel-strong: rgba(7, 30, 72, .94);
  --blue: #087cff;
  --blue-2: #19a7ff;
  --blue-3: #0b46bd;
  --cyan: #7ce2ff;
  --silver: #e9f3ff;
  --white: #f8fbff;
  --text: #dceaff;
  --muted: #90a8cc;
  --line: rgba(151, 197, 255, .16);
  --line-strong: rgba(151, 208, 255, .32);
  --shadow: 0 28px 100px rgba(0, 17, 58, .5);
  --radius: 28px;
  --container: min(1220px, calc(100% - 40px));
  --heading: "Sora", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 5%, rgba(0, 114, 255, .18), transparent 26%),
    radial-gradient(circle at 8% 36%, rgba(0, 178, 255, .09), transparent 25%),
    linear-gradient(180deg, #020713 0%, #031027 48%, #020714 100%);
  font-family: var(--body);
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
::selection { color: #fff; background: rgba(14, 126, 255, .92); }
.container { width: var(--container); margin-inline: auto; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 144, 255, .14), transparent 66%);
  transition: opacity .25s ease;
}
body:hover .cursor-glow { opacity: 1; }
.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.02);
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #0b58dc, #1aafff, #a7edff);
  box-shadow: 0 0 16px #168eff;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 22px;
  background:
    radial-gradient(circle at 50% 47%, rgba(0, 114, 255, .2), transparent 24%),
    #01050f;
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__scene {
  position: relative;
  display: grid;
  place-items: center;
  width: 175px;
  height: 175px;
  perspective: 800px;
}
.preloader__scene img {
  position: relative;
  z-index: 2;
  width: 136px;
  animation: preloadLogo 2.2s ease-in-out infinite;
  filter: drop-shadow(0 25px 34px rgba(0, 105, 255, .4));
}
.preloader__ring {
  position: absolute;
  border: 1px solid rgba(119, 210, 255, .45);
  border-radius: 50%;
}
.preloader__ring--one { inset: 0; transform: rotateX(67deg); animation: preRing 2.8s linear infinite; }
.preloader__ring--two { inset: 26px; border-style: dashed; transform: rotateY(67deg); animation: preRing2 2.2s linear infinite; }
.preloader__line { width: min(290px, 74vw); height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.preloader__line span { display: block; width: 35%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, transparent, #0b74ff, #8ee7ff, transparent); animation: preloadLine 1.1s linear infinite; }
.preloader p { margin: 0; color: #91a9ca; font-size: 11px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
@keyframes preloadLogo { 50% { transform: translateY(-9px) rotateZ(2deg) scale(1.025); } }
@keyframes preRing { to { transform: rotateX(67deg) rotateZ(360deg); } }
@keyframes preRing2 { to { transform: rotateY(67deg) rotateZ(-360deg); } }
@keyframes preloadLine { from { transform: translateX(-140%); } to { transform: translateX(390%); } }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 15px 0;
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
}
.header.is-scrolled {
  padding: 8px 0;
  border-bottom: 1px solid rgba(137, 188, 255, .12);
  background: rgba(2, 8, 23, .8);
  backdrop-filter: blur(20px) saturate(135%);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img {
  width: 59px;
  height: 59px;
  object-fit: contain;
  filter: drop-shadow(0 11px 19px rgba(0, 111, 255, .26));
  transition: transform .35s ease;
}
.brand:hover img { transform: translateY(-2px) rotate(-2deg); }
.brand span { display: grid; line-height: .9; }
.brand strong { color: #fff; font-family: var(--heading); font-size: 17px; font-weight: 800; letter-spacing: -.04em; }
.brand small { margin-top: 6px; color: #41b8ff; font-family: var(--heading); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; color: #b8cbe7; font-size: 13px; font-weight: 700; transition: color .25s ease; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 2px; border-radius: 99px; background: linear-gradient(90deg, #0b7aff, #7edcff); transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 41px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  cursor: pointer;
}
.sound-bars { display: flex; align-items: center; gap: 2px; height: 14px; }
.sound-bars i { width: 2px; border-radius: 8px; background: #66caff; animation: soundBar .9s ease-in-out infinite alternate; }
.sound-bars i:nth-child(1) { height: 7px; }
.sound-bars i:nth-child(2) { height: 13px; animation-delay: -.35s; }
.sound-bars i:nth-child(3) { height: 9px; animation-delay: -.6s; }
.sound-toggle[aria-pressed="false"] .sound-bars i { height: 2px; animation: none; }
.sound-label { color: #aac0dd; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
@keyframes soundBar { to { opacity: .55; transform: scaleY(.45); } }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.05); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 10px; background: #fff; transition: .3s; }

/* BUTTONS */
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 55px;
  padding: 0 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease;
}
.button::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(112deg, transparent 18%, rgba(255,255,255,.3) 48%, transparent 74%); transform: translateX(-130%); transition: transform .75s ease; }
.button::after { content: ""; position: absolute; inset: auto 12% -10px; z-index: -2; height: 22px; border-radius: 50%; background: rgba(0, 93, 255, .5); filter: blur(17px); opacity: .35; transition: opacity .25s; }
.button:hover::before { transform: translateX(130%); }
.button:hover::after { opacity: .65; }
.button:hover { transform: translateY(-3px) translateZ(10px); }
.button:active { transform: translateY(1px) scale(.98); }
.button--small { min-height: 43px; padding: 0 18px; border-radius: 13px; color: #fff; background: linear-gradient(145deg, #1495ff, #0a54cf 62%, #06348d); box-shadow: 0 13px 34px rgba(0, 100, 255, .25), inset 0 1px rgba(255,255,255,.3); }
.button--primary { color: #fff; background: linear-gradient(145deg, #17a5ff 0%, #0876f5 42%, #0746b7 76%, #062c83 100%); box-shadow: 0 20px 44px rgba(0, 100, 255, .3), inset 0 1px rgba(255,255,255,.3), inset 0 -8px 22px rgba(0, 24, 84, .22); }
.button--primary:hover { box-shadow: 0 26px 60px rgba(0, 105, 255, .4), inset 0 1px rgba(255,255,255,.34); }
.button--ghost { border-color: rgba(164, 205, 255, .2); color: #edf6ff; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); box-shadow: inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(15px); }
.button--ghost:hover { border-color: rgba(92, 184, 255, .55); }
.button--light { color: #06347e; background: linear-gradient(180deg, #fff, #dfeeff); box-shadow: 0 20px 50px rgba(0, 18, 65, .28), inset 0 1px #fff; }
.button--full { width: 100%; }

/* HERO */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 980px;
  padding: 160px 0 114px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -6;
  background:
    linear-gradient(90deg, rgba(2, 7, 20, .98) 0%, rgba(2, 8, 22, .91) 43%, rgba(2, 8, 22, .52) 74%, rgba(2, 8, 22, .72) 100%),
    url("assets/hero-cinematic-ultra.webp") center / cover no-repeat;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -2; height: 260px; background: linear-gradient(transparent, #031027 80%); }
.hero-world { position: absolute; inset: 0; z-index: -3; perspective: 1200px; transform-style: preserve-3d; overflow: hidden; }
.hero-world__grid {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -42%;
  height: 74%;
  opacity: .34;
  background-image: linear-gradient(rgba(71, 151, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(71, 151, 255, .2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(transparent, #000 20%, #000 78%, transparent);
  transform: rotateX(63deg) translateZ(-120px);
  transform-origin: center bottom;
  animation: gridMove 12s linear infinite;
}
.hero-world__horizon { position: absolute; left: 16%; right: 5%; top: 52%; height: 1px; background: linear-gradient(90deg, transparent, rgba(91, 187, 255, .6), transparent); box-shadow: 0 0 30px rgba(0, 121, 255, .5); }
@keyframes gridMove { to { background-position: 0 64px, 64px 0; } }
.orb { position: absolute; border-radius: 50%; transform-style: preserve-3d; will-change: transform; }
.orb::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 28% 22%, rgba(255,255,255,.95), rgba(106, 208, 255, .55) 12%, rgba(11, 113, 255, .72) 34%, rgba(3, 21, 64, .96) 72%); box-shadow: inset -22px -28px 40px rgba(0, 8, 34, .55), inset 14px 12px 22px rgba(255,255,255,.12), 0 30px 80px rgba(0, 80, 220, .3); }
.orb span { position: absolute; inset: -16%; border: 1px solid rgba(124, 210, 255, .23); border-radius: 50%; transform: rotateX(70deg); animation: orbRing 12s linear infinite; }
.orb--one { width: 92px; height: 92px; left: 9%; top: 26%; opacity: .46; animation: orbFloat 8s ease-in-out infinite; }
.orb--two { width: 44px; height: 44px; right: 45%; top: 19%; opacity: .76; animation: orbFloat 6.8s ease-in-out infinite -2s; }
.orb--three { width: 128px; height: 128px; right: 5%; bottom: 18%; opacity: .35; animation: orbFloat 10s ease-in-out infinite -4s; }
@keyframes orbFloat { 50% { translate: 0 -22px; rotate: 4deg; } }
@keyframes orbRing { to { transform: rotateX(70deg) rotateZ(360deg); } }
.glass-cube { position: absolute; width: 72px; height: 72px; transform-style: preserve-3d; animation: cubeSpin 16s linear infinite; will-change: transform; }
.glass-cube i { position: absolute; inset: 0; border: 1px solid rgba(121, 208, 255, .28); background: linear-gradient(145deg, rgba(47, 162, 255, .13), rgba(255,255,255,.015)); box-shadow: inset 0 0 20px rgba(0, 119, 255, .12); backdrop-filter: blur(3px); }
.glass-cube i:nth-child(1) { transform: translateZ(36px); }
.glass-cube i:nth-child(2) { transform: rotateY(180deg) translateZ(36px); }
.glass-cube i:nth-child(3) { transform: rotateY(90deg) translateZ(36px); }
.glass-cube i:nth-child(4) { transform: rotateY(-90deg) translateZ(36px); }
.glass-cube i:nth-child(5) { transform: rotateX(90deg) translateZ(36px); }
.glass-cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(36px); }
.glass-cube--one { left: 44%; bottom: 17%; opacity: .5; }
.glass-cube--two { right: 8%; top: 28%; width: 45px; height: 45px; opacity: .48; animation-duration: 12s; animation-direction: reverse; }
.glass-cube--two i:nth-child(1) { transform: translateZ(22.5px); }.glass-cube--two i:nth-child(2) { transform: rotateY(180deg) translateZ(22.5px); }.glass-cube--two i:nth-child(3) { transform: rotateY(90deg) translateZ(22.5px); }.glass-cube--two i:nth-child(4) { transform: rotateY(-90deg) translateZ(22.5px); }.glass-cube--two i:nth-child(5) { transform: rotateX(90deg) translateZ(22.5px); }.glass-cube--two i:nth-child(6) { transform: rotateX(-90deg) translateZ(22.5px); }
@keyframes cubeSpin { to { transform: rotateX(360deg) rotateY(540deg) rotateZ(180deg); } }
.route-pin { position: absolute; display: grid; place-items: center; width: 54px; height: 70px; will-change: transform; }
.route-pin b { position: relative; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(182, 226, 255, .42); border-radius: 50% 50% 50% 8px; color: #fff; background: linear-gradient(145deg, #18a7ff, #073a9c); box-shadow: 0 17px 32px rgba(0, 72, 190, .4), inset 0 1px rgba(255,255,255,.35); font-family: var(--heading); font-size: 10px; transform: rotate(-45deg); }
.route-pin b::first-line { transform: rotate(45deg); }
.route-pin span { position: absolute; bottom: 0; width: 36px; height: 10px; border-radius: 50%; background: #0b6cff; filter: blur(10px); opacity: .55; }
.route-pin--one { left: 27%; bottom: 26%; animation: pinFloat 5s ease-in-out infinite; }
.route-pin--two { right: 23%; top: 18%; animation: pinFloat 6s ease-in-out infinite -2s; }
@keyframes pinFloat { 50% { translate: 0 -14px; } }
.flight-path { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .42; overflow: visible; }
.flight-path path { fill: none; stroke: rgba(83, 181, 255, .5); stroke-width: 1.4; stroke-dasharray: 5 13; filter: drop-shadow(0 0 6px #168cff); }
.flight-path__dot { fill: #d8f5ff; filter: drop-shadow(0 0 10px #38b6ff); }
.hero__grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 34px; }
.hero__content { max-width: 700px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: #79d1ff; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { padding: 11px 15px; border: 1px solid rgba(128, 205, 255, .2); border-radius: 999px; background: linear-gradient(145deg, rgba(17, 57, 113, .62), rgba(4, 19, 48, .54)); box-shadow: inset 0 1px rgba(255,255,255,.06); backdrop-filter: blur(14px); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4af5a3; box-shadow: 0 0 0 6px rgba(74,245,163,.08), 0 0 18px rgba(74,245,163,.7); animation: pulseDot 1.5s ease-in-out infinite; }
@keyframes pulseDot { 50% { opacity: .7; transform: scale(.72); } }
.hero__title { margin: 26px 0 23px; max-width: 780px; color: #fff; font-family: var(--heading); font-size: clamp(50px, 5.8vw, 84px); font-weight: 800; line-height: .98; letter-spacing: -.067em; text-wrap: balance; }
.text-3d { position: relative; display: inline-block; color: #66c8ff; background: linear-gradient(180deg, #f5fcff 0%, #a9e6ff 20%, #39adff 47%, #0873f7 73%, #073798 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 18px 26px rgba(0, 78, 215, .3)); text-shadow: 0 1px 0 #bcf0ff, 0 2px 0 #73caff, 0 3px 0 #3e9ff5, 0 4px 0 #2073d4, 0 6px 0 #124ca4, 0 14px 34px rgba(0, 82, 225, .4); }
.hero__description { max-width: 650px; margin: 0; color: #b7cae7; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.78; }
.hero__description strong { color: #fff; font-weight: 700; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 700px; margin-top: 39px; }
.trust-item { display: flex; align-items: flex-start; gap: 11px; min-height: 78px; padding: 15px; border: 1px solid rgba(135, 183, 247, .12); border-radius: 17px; background: linear-gradient(145deg, rgba(255,255,255,.062), rgba(255,255,255,.013)); box-shadow: inset 0 1px rgba(255,255,255,.04); backdrop-filter: blur(14px); transform-style: preserve-3d; transition: transform .3s ease, border-color .3s ease; }
.trust-item:hover { transform: translateY(-5px) rotateX(3deg); border-color: rgba(79, 177, 255, .35); }
.trust-icon { display: grid; place-items: center; flex: 0 0 26px; height: 26px; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #1faeff, #0750c6); box-shadow: 0 9px 19px rgba(0, 105, 255, .24), inset 0 1px rgba(255,255,255,.34); font-size: 12px; }
.trust-item div { display: grid; gap: 3px; }
.trust-item strong { color: #fff; font-size: 12px; }
.trust-item small { color: #8199be; font-size: 10px; line-height: 1.4; }

/* HERO VISUAL */
.hero__visual { min-height: 670px; display: grid; place-items: center; perspective: 1200px; }
.visual-stage { position: relative; width: min(550px, 43vw); aspect-ratio: 1 / 1.07; transform-style: preserve-3d; transition: transform .18s ease-out; }
.visual-stage::before { content: ""; position: absolute; inset: 5% -5% -3% 8%; border-radius: 48%; background: radial-gradient(circle, rgba(13, 126, 255, .35), transparent 65%); filter: blur(30px); transform: translateZ(-120px); }
.visual-stage__floor { position: absolute; left: 3%; right: -5%; bottom: -4%; height: 26%; border: 1px solid rgba(92, 182, 255, .18); border-radius: 50%; background: radial-gradient(ellipse, rgba(0, 107, 255, .17), rgba(0, 12, 39, .1) 55%, transparent 72%); box-shadow: inset 0 0 65px rgba(0, 98, 255, .15), 0 0 50px rgba(0, 71, 189, .1); transform: rotateX(72deg) translateZ(-10px); }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(116, 203, 255, .27); transform-style: preserve-3d; }
.visual-orbit::after { content: ""; position: absolute; width: 8px; height: 8px; top: -4px; left: 50%; border-radius: 50%; background: #cbf4ff; box-shadow: 0 0 16px #23a7ff; }
.visual-orbit--outer { width: 106%; aspect-ratio: 1; left: -3%; top: 2%; box-shadow: 0 0 55px rgba(0,119,255,.1); transform: rotateX(66deg) rotateZ(-18deg) translateZ(-20px); animation: orbitOuter 19s linear infinite; }
.visual-orbit--middle { width: 88%; aspect-ratio: 1; left: 6%; top: 10%; border-style: dashed; transform: rotateX(72deg) rotateZ(48deg) translateZ(18px); animation: orbitMiddle 14s linear infinite reverse; }
.visual-orbit--inner { width: 68%; aspect-ratio: 1; left: 16%; top: 20%; transform: rotateY(68deg) rotateZ(14deg) translateZ(45px); animation: orbitInner 12s linear infinite; }
@keyframes orbitOuter { to { transform: rotateX(66deg) rotateZ(342deg) translateZ(-20px); } }
@keyframes orbitMiddle { to { transform: rotateX(72deg) rotateZ(408deg) translateZ(18px); } }
@keyframes orbitInner { to { transform: rotateY(68deg) rotateZ(374deg) translateZ(45px); } }
.logo-sphere { position: absolute; z-index: 4; top: -1%; right: -2%; width: 58%; aspect-ratio: 1; transform: translateZ(110px); animation: logoFloat 5s ease-in-out infinite; will-change: transform; }
.logo-sphere img { position: relative; z-index: 3; width: 100%; filter: drop-shadow(0 35px 34px rgba(0, 25, 80, .62)); }
.logo-sphere__halo { position: absolute; inset: 8%; z-index: 0; border-radius: 50%; background: #0877ff; filter: blur(40px); opacity: .34; }
.logo-sphere__disc { position: absolute; inset: 9%; z-index: 1; border: 1px solid rgba(173, 227, 255, .28); border-radius: 50%; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(0, 81, 218, .11)); box-shadow: inset -18px -28px 45px rgba(0, 20, 75, .36), inset 10px 10px 20px rgba(255,255,255,.1); backdrop-filter: blur(6px); }
@keyframes logoFloat { 50% { transform: translateZ(110px) translateY(-17px) rotateZ(2deg) rotateY(-4deg); } }
.poster-card { position: absolute; left: 1%; bottom: 0; z-index: 3; width: 61%; aspect-ratio: 9 / 16; overflow: hidden; border: 1px solid rgba(164, 215, 255, .34); border-radius: 31px; background: #06142d; box-shadow: 0 45px 100px rgba(0, 11, 43, .7), inset 0 1px rgba(255,255,255,.25); transform: rotateY(12deg) rotateX(1deg) rotateZ(-4deg) translateZ(45px); will-change: transform; }
.poster-card::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 0 0 8px rgba(255,255,255,.035), inset 0 -130px 100px rgba(0,9,40,.28); }
.poster-card img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; }
.poster-card__shine { position: absolute; inset: -45%; z-index: 3; background: linear-gradient(115deg, transparent 37%, rgba(255,255,255,.3) 50%, transparent 64%); transform: translateX(-85%) rotate(12deg); animation: cardShine 6s ease-in-out infinite; }
.poster-card__edge { position: absolute; inset: 0; z-index: 4; border-radius: inherit; box-shadow: inset -14px 0 22px rgba(0, 26, 85, .26), inset 9px 0 12px rgba(255,255,255,.08); pointer-events: none; }
@keyframes cardShine { 56%, 100% { transform: translateX(112%) rotate(12deg); } }
.floating-chip { position: absolute; z-index: 6; display: flex; align-items: center; gap: 11px; min-width: 176px; padding: 12px 14px; border: 1px solid rgba(165, 218, 255, .24); border-radius: 17px; background: linear-gradient(145deg, rgba(17, 56, 113, .94), rgba(4, 18, 47, .88)); box-shadow: 0 20px 50px rgba(0, 16, 57, .52), inset 0 1px rgba(255,255,255,.13); backdrop-filter: blur(16px); will-change: transform; }
.floating-chip--top { top: 31%; left: -10%; animation: chipFloat 4.5s ease-in-out infinite; }
.floating-chip--bottom { right: -7%; bottom: 12%; animation: chipFloat 4.8s ease-in-out infinite -2s; }
.floating-chip--side { right: -13%; top: 48%; min-width: 154px; animation: chipFloat 5.2s ease-in-out infinite -3s; }
@keyframes chipFloat { 50% { translate: 0 -11px; rotate: .6deg; } }
.chip-icon { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 13px; color: #fff; background: linear-gradient(145deg, #1baeff, #0749b9); box-shadow: 0 11px 25px rgba(0,113,255,.34), inset 0 1px rgba(255,255,255,.35); }
.floating-chip div { display: grid; gap: 2px; }
.floating-chip small { color: #92a9ca; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.floating-chip strong { color: #fff; font-size: 13px; }

/* MARQUEE */
.route-strip { position: absolute; left: -1%; bottom: 0; width: 102%; overflow: hidden; border-block: 1px solid rgba(128, 192, 255, .18); background: linear-gradient(90deg, rgba(4, 22, 58, .9), rgba(8, 91, 196, .78), rgba(4, 22, 58, .9)); box-shadow: 0 18px 50px rgba(0, 24, 80, .2), inset 0 1px rgba(255,255,255,.07); backdrop-filter: blur(17px); transform: rotate(-1.1deg); }
.route-strip::before, .route-strip::after { content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: 12vw; pointer-events: none; }
.route-strip::before { left: 0; background: linear-gradient(90deg, #03102a, transparent); }
.route-strip::after { right: 0; background: linear-gradient(-90deg, #03102a, transparent); }
.route-strip__track { display: flex; width: max-content; will-change: transform; animation: marquee 30s linear infinite; }
.route-strip__group { display: flex; flex-shrink: 0; align-items: center; gap: 31px; padding: 17px 16px; }
.route-strip span { color: #f1f8ff; font-family: var(--heading); font-size: 13px; font-weight: 700; letter-spacing: .15em; white-space: nowrap; text-shadow: 0 3px 12px rgba(0, 15, 50, .55); }
.route-strip i { color: #82ddff; font-size: 8px; font-style: normal; filter: drop-shadow(0 0 8px #2baeff); }
.route-strip:hover .route-strip__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* SHARED */
.section { position: relative; padding: 125px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 55px; }
.section-heading > div { max-width: 700px; }
.section-heading h2, .experience__content h2, .quote-card h2 { margin: 13px 0 0; color: #f8fbff; font-family: var(--heading); font-size: clamp(35px, 4vw, 59px); font-weight: 750; line-height: 1.08; letter-spacing: -.055em; text-wrap: balance; }
.section-heading h2 span, .experience__content h2 span, .quote-card h2 span { color: #48b8ff; }
.section-heading > p { max-width: 465px; margin: 0; color: #8fa7c9; font-size: 15px; line-height: 1.8; }
.section-heading--center { display: grid; justify-items: center; text-align: center; }
.section-heading--center p { max-width: 620px; }

/* SERVICES */
.services { isolation: isolate; overflow: hidden; background: linear-gradient(180deg, #031027 0%, #04132f 50%, #031027 100%); }
.services::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(77, 149, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 149, 255, .04) 1px, transparent 1px); background-size: 74px 74px; mask-image: radial-gradient(circle at 50% 45%, #000, transparent 75%); }
.services-bg { position: absolute; inset: 0; z-index: -2; pointer-events: none; perspective: 1000px; }
.services-bg__ring { position: absolute; border: 1px solid rgba(73, 170, 255, .12); border-radius: 50%; box-shadow: inset 0 0 80px rgba(0, 107, 255, .04); }
.services-bg__ring--a { width: 680px; height: 680px; left: -340px; top: 100px; animation: serviceRing 28s linear infinite; }
.services-bg__ring--b { width: 520px; height: 520px; right: -210px; bottom: 40px; border-style: dashed; animation: serviceRing 22s linear infinite reverse; }
.services-bg__prism { position: absolute; width: 130px; height: 130px; right: 9%; top: 9%; border: 1px solid rgba(97, 189, 255, .15); background: linear-gradient(145deg, rgba(54, 160, 255, .08), rgba(255,255,255,.01)); box-shadow: inset 0 0 40px rgba(0, 117, 255, .07); transform: rotateX(58deg) rotateY(0deg) rotateZ(45deg); animation: prismFloat 10s ease-in-out infinite; }
@keyframes serviceRing { to { transform: rotate(360deg); } }
@keyframes prismFloat { 50% { transform: translateY(-24px) rotateX(65deg) rotateY(180deg) rotateZ(49deg); } }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; perspective: 1400px; }
.service-card { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; min-height: 430px; padding: 34px; overflow: hidden; border: 1px solid rgba(140, 196, 255, .17); border-radius: 29px; background: linear-gradient(145deg, rgba(12, 46, 100, .8), rgba(4, 17, 43, .94) 63%, rgba(2, 11, 31, .98)); box-shadow: 0 26px 80px rgba(0, 14, 47, .34), inset 0 1px rgba(255,255,255,.07); transform-style: preserve-3d; transition: transform .18s ease-out, border-color .3s ease, box-shadow .3s ease; }
.service-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle at var(--mx, 25%) var(--my, 20%), rgba(44, 170, 255, .24), transparent 36%); opacity: 0; transition: opacity .35s ease; }
.service-card::after { content: ""; position: absolute; inset: 1px; z-index: 0; border: 1px solid rgba(255,255,255,.035); border-radius: 28px; pointer-events: none; }
.service-card:hover { border-color: rgba(80, 184, 255, .44); box-shadow: 0 38px 100px rgba(0, 24, 78, .5), inset 0 1px rgba(255,255,255,.1); }
.service-card:hover::before { opacity: 1; }
.service-card__aurora { position: absolute; width: 300px; height: 300px; left: -90px; top: -100px; border-radius: 50%; background: var(--card-glow, #0778ff); filter: blur(85px); opacity: .13; animation: auroraMove 8s ease-in-out infinite; }
.service-card--airport { --card-glow: #11a7ff; }
.service-card--bus { --card-glow: #0871ff; }
.service-card--hotel { --card-glow: #63d6ff; }
.service-card--tour { --card-glow: #00b7d8; }
@keyframes auroraMove { 50% { transform: translate(90px, 55px) scale(1.2); opacity: .2; } }
.service-card__number { position: absolute; top: 25px; right: 27px; z-index: 2; color: rgba(188, 221, 255, .23); font-family: var(--heading); font-size: 15px; font-weight: 800; letter-spacing: .14em; }
.service-card__visual { position: relative; z-index: 2; min-height: 310px; display: grid; place-items: center; transform-style: preserve-3d; }
.service-icon-3d { position: relative; width: min(250px, 100%); aspect-ratio: 1; display: grid; place-items: center; transform: translateZ(55px); animation: serviceIconFloat 5.5s ease-in-out infinite; }
.service-card:nth-child(2) .service-icon-3d { animation-delay: -1.2s; }
.service-card:nth-child(3) .service-icon-3d { animation-delay: -2.4s; }
.service-card:nth-child(4) .service-icon-3d { animation-delay: -3.6s; }
.service-icon-3d img { position: relative; z-index: 3; width: 100%; filter: drop-shadow(0 30px 30px rgba(0, 15, 50, .48)); transition: transform .4s ease, filter .4s ease; }
.service-card:hover .service-icon-3d img { transform: translateY(-9px) rotateY(-5deg) rotateX(4deg) scale(1.04); filter: drop-shadow(0 38px 36px rgba(0, 21, 73, .6)); }
.service-icon-3d__ring { position: absolute; z-index: 1; width: 74%; aspect-ratio: 1; border: 1px solid rgba(123, 212, 255, .28); border-radius: 50%; transform: rotateX(72deg); animation: serviceOrbit 11s linear infinite; }
.service-icon-3d__ring::before { content: ""; position: absolute; width: 9px; height: 9px; top: -5px; left: 50%; border-radius: 50%; background: #dff8ff; box-shadow: 0 0 18px #2cb5ff; }
.service-icon-3d__shadow { position: absolute; bottom: 14%; width: 58%; height: 17%; border-radius: 50%; background: #057aff; filter: blur(23px); opacity: .22; }
@keyframes serviceIconFloat { 50% { transform: translateZ(55px) translateY(-16px) rotateY(4deg); } }
@keyframes serviceOrbit { to { transform: rotateX(72deg) rotateZ(360deg); } }
.service-route { position: absolute; inset: 20% 0 8%; z-index: 0; opacity: .38; transform: translateZ(-20px); }
.service-route span { position: absolute; left: 15%; top: 50%; width: 70%; height: 1px; border-top: 1px dashed rgba(109, 202, 255, .6); transform: rotate(-18deg); }
.service-route i, .service-route b { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #8be4ff; box-shadow: 0 0 14px #1ba9ff; }
.service-route i { left: 15%; top: 61%; }
.service-route b { right: 14%; top: 37%; animation: routePulse 1.8s ease-in-out infinite; }
@keyframes routePulse { 50% { transform: scale(1.8); opacity: .4; } }
.service-card__content { position: relative; z-index: 3; padding: 18px 8px 18px 12px; transform: translateZ(28px); }
.service-card__eyebrow { color: #69caff; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { margin: 12px 0 13px; color: #fff; font-family: var(--heading); font-size: 29px; font-weight: 750; letter-spacing: -.04em; }
.service-card p { margin: 0; color: #96acca; font-size: 13px; line-height: 1.72; }
.service-card ul { display: grid; gap: 8px; margin: 20px 0 25px; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 19px; color: #c7d6eb; font-size: 11px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .45em; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(145deg, #8ee7ff, #0b78ff); box-shadow: 0 0 10px rgba(44, 180, 255, .7); }
.service-card button { display: inline-flex; align-items: center; gap: 12px; padding: 0; border: 0; background: transparent; color: #75d1ff; font-size: 12px; font-weight: 800; cursor: pointer; }
.service-card button span { transition: transform .25s ease; }
.service-card button:hover span { transform: translate(4px, -4px); }

/* EXPERIENCE */
.experience { isolation: isolate; overflow: hidden; }
.experience-world { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.experience-world__orb { position: absolute; width: 580px; height: 580px; left: -260px; top: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 119, 255, .2), transparent 66%); filter: blur(20px); }
.experience-world__wire { position: absolute; width: 500px; height: 500px; right: -230px; top: 80px; border: 1px solid rgba(78, 170, 255, .1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(45, 150, 255, .018), 0 0 0 90px rgba(45, 150, 255, .012); animation: slowSpin 26s linear infinite; }
.experience-world__plate { position: absolute; right: 14%; bottom: 10%; width: 120px; height: 120px; border: 1px solid rgba(102, 195, 255, .12); background: linear-gradient(145deg, rgba(32, 141, 255, .08), transparent); transform: rotateX(62deg) rotateZ(45deg); animation: plateFloat 8s ease-in-out infinite; }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes plateFloat { 50% { translate: 0 -22px; rotate: 18deg; } }
.experience__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 95px; align-items: center; }
.experience__visual { position: relative; perspective: 1200px; }
.experience-frame { position: relative; width: min(500px, 100%); aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid rgba(157, 211, 255, .24); border-radius: 34px; box-shadow: 0 42px 110px rgba(0, 18, 61, .6), inset 0 1px rgba(255,255,255,.12); transform-style: preserve-3d; transition: transform .18s ease-out; }
.experience-frame::before { content: ""; position: absolute; inset: 0; z-index: 4; border-radius: inherit; box-shadow: inset 0 0 0 8px rgba(255,255,255,.026), inset 0 -130px 100px rgba(0, 8, 36, .3); pointer-events: none; }
.experience-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.experience-frame__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,8,24,.05), rgba(1,8,24,.22) 52%, rgba(1,8,24,.9)), linear-gradient(120deg, rgba(0,105,255,.09), transparent 65%); }
.experience-frame__scan { position: absolute; left: 0; right: 0; top: -18%; height: 18%; background: linear-gradient(transparent, rgba(112, 211, 255, .19), transparent); filter: blur(8px); animation: scanFrame 5s ease-in-out infinite; }
@keyframes scanFrame { 60%, 100% { transform: translateY(720%); opacity: 0; } }
.experience-frame__badge { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 5; display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid rgba(156, 215, 255, .22); border-radius: 19px; background: rgba(4, 19, 48, .78); box-shadow: inset 0 1px rgba(255,255,255,.07); backdrop-filter: blur(17px); transform: translateZ(45px); }
.experience-frame__badge > span { display: grid; place-items: center; width: 49px; height: 49px; border-radius: 15px; color: #fff; background: linear-gradient(145deg, #18a7ff, #073b9e); box-shadow: 0 12px 28px rgba(0,101,255,.3), inset 0 1px rgba(255,255,255,.34); font-family: var(--heading); font-size: 23px; font-weight: 800; }
.experience-frame__badge div { display: grid; gap: 3px; }
.experience-frame__badge small { color: #72c8ff; font-size: 9px; letter-spacing: .17em; }
.experience-frame__badge strong { color: #fff; }
.experience__floating-label { position: absolute; right: -36px; top: 18%; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(149, 210, 255, .22); border-radius: 14px; background: rgba(6, 27, 64, .82); box-shadow: 0 18px 44px rgba(0, 15, 55, .45); backdrop-filter: blur(14px); animation: labelFloat 4.8s ease-in-out infinite; }
.experience__floating-label i { width: 8px; height: 8px; border-radius: 50%; background: #42f1a0; box-shadow: 0 0 14px #42f1a0; }
.experience__floating-label span { color: #dff4ff; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
@keyframes labelFloat { 50% { transform: translateY(-12px); } }
.experience__glow { position: absolute; width: 290px; height: 90px; left: 110px; bottom: -25px; border-radius: 50%; background: #076bff; filter: blur(58px); opacity: .3; }
.experience__content .lead { margin: 25px 0 33px; color: #9cb2d1; font-size: 16px; line-height: 1.8; }
.feature-list { display: grid; gap: 16px; margin-bottom: 31px; }
.feature-list article { display: flex; gap: 18px; padding: 18px; border: 1px solid rgba(132, 184, 255, .12); border-radius: 19px; background: linear-gradient(145deg, rgba(255,255,255,.048), rgba(255,255,255,.013)); box-shadow: inset 0 1px rgba(255,255,255,.04); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.feature-list article:hover { transform: translateX(8px) translateZ(8px); border-color: rgba(74, 174, 255, .34); background: linear-gradient(145deg, rgba(21, 99, 207, .14), rgba(255,255,255,.02)); }
.feature-list__icon { display: grid; place-items: center; flex: 0 0 46px; height: 46px; border: 1px solid rgba(103, 190, 255, .22); border-radius: 15px; color: #80d4ff; background: linear-gradient(145deg, rgba(12, 116, 241, .28), rgba(4, 31, 82, .5)); box-shadow: inset 0 1px rgba(255,255,255,.08); font-family: var(--heading); font-size: 10px; }
.feature-list h3 { margin: 0 0 6px; color: #fff; font-size: 15px; }
.feature-list p { margin: 0; color: #849bbe; font-size: 13px; line-height: 1.62; }

/* PROCESS */
.process { isolation: isolate; overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(0, 105, 255, .1), transparent 34%), linear-gradient(180deg, rgba(5, 17, 43, .72), rgba(3, 10, 27, .24)); }
.process-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.process-bg div { position: absolute; border: 1px solid rgba(76, 174, 255, .1); transform: rotate(45deg); animation: processShape 11s ease-in-out infinite; }
.process-bg div:nth-child(1) { width: 100px; height: 100px; left: 8%; top: 25%; }
.process-bg div:nth-child(2) { width: 55px; height: 55px; right: 9%; top: 18%; animation-delay: -3s; }
.process-bg div:nth-child(3) { width: 130px; height: 130px; right: 19%; bottom: 8%; animation-delay: -6s; }
@keyframes processShape { 50% { transform: translateY(-24px) rotate(225deg) scale(1.08); opacity: .35; } }
.process .container { position: relative; }
.process-line { position: absolute; left: 16%; right: 16%; top: 267px; height: 1px; background: rgba(126, 187, 255, .16); }
.process-line span { display: block; width: 31%; height: 100%; background: linear-gradient(90deg, transparent, #1594ff, #88e5ff, transparent); box-shadow: 0 0 22px #0b84ff; animation: routeTravel 4.4s ease-in-out infinite; }
@keyframes routeTravel { from { transform: translateX(-20%); } to { transform: translateX(248%); } }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; perspective: 1000px; }
.process-card { position: relative; min-height: 250px; padding: 36px 30px; overflow: hidden; border: 1px solid rgba(139, 188, 255, .14); border-radius: 25px; background: linear-gradient(145deg, rgba(11, 39, 83, .8), rgba(4, 16, 42, .91)); box-shadow: 0 24px 65px rgba(0, 17, 55, .25), inset 0 1px rgba(255,255,255,.055); transform-style: preserve-3d; transition: transform .18s ease-out, border-color .3s ease; }
.process-card:hover { border-color: rgba(73, 177, 255, .38); }
.process-card__glow { position: absolute; width: 180px; height: 180px; right: -80px; top: -90px; border-radius: 50%; background: #087eff; filter: blur(60px); opacity: .12; transition: opacity .3s ease; }
.process-card:hover .process-card__glow { opacity: .25; }
.process-card__number { position: relative; z-index: 2; display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 40px; border: 6px solid #07152f; border-radius: 50%; outline: 1px solid rgba(115, 194, 255, .27); color: #fff; background: linear-gradient(145deg, #19a7ff, #0846b4); box-shadow: 0 16px 36px rgba(0, 105, 255, .3), inset 0 1px rgba(255,255,255,.34); font-family: var(--heading); font-size: 11px; transform: translateZ(30px); }
.process-card h3 { position: relative; z-index: 2; margin: 0 0 10px; color: #fff; font-family: var(--heading); font-size: 19px; letter-spacing: -.025em; transform: translateZ(20px); }
.process-card p { position: relative; z-index: 2; margin: 0; color: #8fa6c9; font-size: 13px; line-height: 1.72; }

/* CTA */
.quote-section { padding-top: 62px; }
.quote-card { position: relative; min-height: 440px; display: flex; align-items: center; padding: 72px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 40px; background: radial-gradient(circle at 80% 48%, rgba(117, 219, 255, .38), transparent 25%), linear-gradient(120deg, #0c86ff 0%, #0755d3 47%, #061f72 100%); box-shadow: 0 45px 120px rgba(0, 61, 172, .38), inset 0 1px rgba(255,255,255,.28); transform-style: preserve-3d; transition: transform .18s ease-out; }
.quote-card::before { content: ""; position: absolute; inset: 1px; border: 1px solid rgba(255,255,255,.12); border-radius: 39px; pointer-events: none; }
.quote-card__content { position: relative; z-index: 3; max-width: 740px; transform: translateZ(30px); }
.quote-card .kicker { color: #e1f5ff; }
.quote-card h2 { color: #fff; }
.quote-card h2 span { color: #b6ecff; }
.quote-card p { max-width: 640px; color: rgba(234,247,255,.84); font-size: 16px; line-height: 1.8; }
.quote-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 31px; }
.phone-link { display: grid; gap: 4px; }
.phone-link small { color: rgba(228,244,255,.74); font-size: 11px; }
.phone-link strong { color: #fff; font-family: var(--heading); font-size: 18px; }
.quote-card__logo { position: absolute; width: 500px; right: -70px; bottom: -130px; opacity: .36; filter: drop-shadow(0 38px 38px rgba(0, 18, 75, .38)); transform: rotate(-8deg) translateZ(22px); animation: quoteLogo 7s ease-in-out infinite; }
.quote-card__rings { position: absolute; width: 650px; height: 650px; right: -180px; top: -100px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 58px rgba(255,255,255,.025), 0 0 0 116px rgba(255,255,255,.018); animation: slowSpin 32s linear infinite; }
@keyframes quoteLogo { 50% { transform: translateY(-18px) rotate(-4deg) scale(1.02); } }

/* FOOTER */
.footer { padding: 72px 0 24px; border-top: 1px solid rgba(130, 179, 247, .1); background: #010611; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .65fr 1fr; gap: 72px; }
.brand--footer img { width: 74px; height: 74px; }
.footer p { max-width: 390px; color: #8198b9; font-size: 13px; line-height: 1.72; }
.footer h3 { margin: 10px 0 18px; color: #fff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__grid a, .footer__grid span { color: #8ca3c3; font-size: 13px; transition: color .2s ease; }
.footer__grid a:hover { color: #69c9ff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(130,179,247,.09); color: #657a9a; font-size: 11px; }

/* WHATSAPP */
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 0 19px 0 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: #fff; background: linear-gradient(145deg, #2ee27a, #12a950); box-shadow: 0 21px 48px rgba(0, 120, 55, .38), inset 0 1px rgba(255,255,255,.3); font-size: 12px; font-weight: 800; }
.whatsapp-float::after { background: rgba(22, 206, 101, .6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* MODAL */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0, 4, 15, .77); backdrop-filter: blur(13px); }
.modal__panel { position: relative; z-index: 2; width: min(760px, 100%); max-height: min(820px, calc(100vh - 40px)); overflow: auto; padding: 35px; border: 1px solid rgba(151, 205, 255, .21); border-radius: 29px; background: radial-gradient(circle at 90% 0, rgba(0, 122, 255, .18), transparent 30%), #06142e; box-shadow: 0 42px 125px rgba(0,0,0,.67), inset 0 1px rgba(255,255,255,.07); animation: modalIn .35s cubic-bezier(.2,.8,.2,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } }
.modal__close { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid rgba(140,190,255,.15); border-radius: 13px; color: #fff; background: rgba(255,255,255,.05); font-size: 24px; cursor: pointer; }
.modal__header { display: flex; align-items: center; gap: 16px; margin-bottom: 27px; padding-right: 45px; }
.modal__header img { width: 84px; height: 84px; }
.modal__header span { color: #62c7ff; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.modal__header h2 { margin: 5px 0 0; color: #fff; font-family: var(--heading); font-size: clamp(23px, 4vw, 34px); letter-spacing: -.045em; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label span { color: #a9bedc; font-size: 11px; font-weight: 700; }
.form-grid input, .form-grid select { width: 100%; height: 51px; padding: 0 14px; border: 1px solid rgba(143,190,255,.15); border-radius: 14px; outline: none; color: #fff; background: rgba(255,255,255,.046); transition: border-color .25s ease, box-shadow .25s ease; }
.form-grid input::placeholder { color: #667d9f; }
.form-grid input:focus, .form-grid select:focus { border-color: #229cff; box-shadow: 0 0 0 4px rgba(34,156,255,.1); }
.form-grid select option { color: #0a1731; }
.modal form > .button { margin-top: 20px; }
.form-note { margin: 12px 0 0; color: #7187a8; text-align: center; font-size: 10px; }

/* INTERACTION */
.click-ripple { position: fixed; z-index: 9997; width: 12px; height: 12px; border: 1px solid rgba(126, 218, 255, .88); border-radius: 50%; pointer-events: none; box-shadow: 0 0 18px rgba(43, 174, 255, .5); animation: clickRipple .68s ease-out forwards; }
.click-spark { position: fixed; z-index: 9997; width: 3px; height: 18px; border-radius: 99px; pointer-events: none; background: linear-gradient(#fff, #36baff, transparent); transform-origin: 50% 100%; animation: clickSpark .56s ease-out forwards; }
@keyframes clickRipple { to { opacity: 0; transform: translate(-50%, -50%) scale(8); } }
@keyframes clickSpark { to { opacity: 0; transform: translateY(-25px) scaleY(.2); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .82s ease, transform .82s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay, .reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
.reveal--delay-3 { transition-delay: .32s; }

/* RESPONSIVE */
@media (max-width: 1120px) {
  .nav { gap: 18px; }
  .nav a { font-size: 12px; }
  .hero__grid { grid-template-columns: 1fr 1fr; }
  .hero__trust { grid-template-columns: 1fr; max-width: 430px; }
  .trust-item { min-height: auto; }
  .service-card { padding: 28px; }
  .service-card__visual { min-height: 280px; }
}
@media (max-width: 930px) {
  :root { --container: min(calc(100% - 28px), 760px); }
  .header .button--small, .sound-label { display: none; }
  .sound-toggle { width: 42px; padding: 0; justify-content: center; }
  .menu-toggle { display: block; }
  .nav { position: fixed; top: 76px; left: 14px; right: 14px; display: grid; gap: 0; padding: 12px; border: 1px solid rgba(133,188,255,.16); border-radius: 20px; background: rgba(4,14,36,.97); box-shadow: 0 30px 80px rgba(0,0,0,.45); backdrop-filter: blur(19px); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s; }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 15px 14px; border-bottom: 1px solid rgba(130,179,247,.08); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .hero { padding-top: 130px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 760px; }
  .hero__visual { min-height: 690px; }
  .visual-stage { width: min(560px, 90vw); }
  .section-heading { display: grid; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; }
  .experience__grid { grid-template-columns: 1fr; gap: 64px; }
  .experience__visual { display: grid; place-items: center; }
  .process-line { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .process-card__number { margin-bottom: 24px; }
  .quote-card { padding: 52px 38px; }
  .quote-card__logo { right: -175px; opacity: .2; }
  .footer__grid { grid-template-columns: 1.3fr 1fr; }
  .footer__grid > div:last-child { grid-column: span 2; }
}
@media (max-width: 650px) {
  .header { padding: 8px 0; }
  .brand img { width: 49px; height: 49px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 7px; }
  .hero { min-height: auto; padding: 120px 0 100px; }
  .hero::before { background-position: 64% center; }
  .hero__title { font-size: clamp(42px, 12.8vw, 59px); }
  .hero__description { font-size: 15px; }
  .hero__buttons { display: grid; }
  .button { width: 100%; }
  .hero__trust { margin-top: 28px; }
  .hero__visual { min-height: 545px; margin-top: 10px; }
  .visual-stage { width: 94vw; transform: none !important; }
  .floating-chip { min-width: 145px; padding: 9px 10px; }
  .floating-chip--top { left: 0; }
  .floating-chip--bottom { right: 0; }
  .floating-chip--side { display: none; }
  .chip-icon { width: 34px; height: 34px; }
  .poster-card { width: 58%; border-radius: 23px; }
  .logo-sphere { width: 53%; top: 2%; right: 2%; }
  .route-strip__group { gap: 23px; padding: 14px 12px; }
  .route-strip span { font-size: 10px; }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .experience__content h2, .quote-card h2 { font-size: 34px; }
  .service-card { grid-template-columns: 1fr; min-height: auto; padding: 25px; }
  .service-card__visual { min-height: 250px; }
  .service-icon-3d { width: 230px; }
  .service-card__content { padding: 0 4px 10px; }
  .experience-frame { width: 100%; }
  .experience__floating-label { right: 10px; }
  .quote-section { padding-top: 30px; }
  .quote-card { min-height: 510px; align-items: flex-start; padding: 44px 25px; }
  .quote-card__actions { display: grid; width: 100%; }
  .quote-card__logo { width: 380px; right: -145px; bottom: -140px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid > div:last-child { grid-column: auto; }
  .footer__bottom { display: grid; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 58px; height: 58px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .modal { padding: 12px; }
  .modal__panel { padding: 24px 18px; border-radius: 22px; }
  .modal__header img { width: 64px; height: 64px; }
  .orb--one, .route-pin--one, .glass-cube--one { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cursor-glow { display: none; }
}

/* =========================================================
   V3 • CINEMATIC MOTION / TRUE TRANSPARENT LOGO / UNIQUE 3D
   ========================================================= */
:root {
  --heading: "Outfit", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --body: "Manrope", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --motion-blue: #118dff;
  --motion-cyan: #7fe5ff;
  --chrome-light: #f5fbff;
}

body { background-attachment: fixed; }
main, .footer { position: relative; z-index: 2; }
.header { z-index: 1200; }

/* Always force the round artwork to remain round, even before image decoding. */
.brand img,
.preloader__scene img,
.logo-sphere img,
.quote-card__logo,
.modal__header img {
  clip-path: circle(49.35% at 50% 50%);
  background: transparent !important;
}
.brand img, .preloader__scene img, .modal__header img { object-fit: contain; }
.logo-sphere__disc { background: radial-gradient(circle at 34% 25%, rgba(255,255,255,.16), rgba(0,91,227,.09) 45%, rgba(0,18,63,.16) 76%, transparent 77%); }

/* GLOBAL 3D MOTION UNIVERSE */
.motion-universe {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
  opacity: .82;
}
.motion-universe::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 22%, rgba(42,164,255,.11), transparent 19%),
    radial-gradient(circle at 82% 62%, rgba(0,95,255,.12), transparent 25%),
    conic-gradient(from 210deg at 50% 50%, transparent, rgba(21,120,255,.035), transparent 38%);
  animation: universeBreath 11s ease-in-out infinite alternate;
}
.ambient-beam {
  position: absolute;
  width: 78vw;
  height: 8vw;
  min-height: 90px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(61,176,255,.13), rgba(222,247,255,.1), transparent);
  filter: blur(35px);
  mix-blend-mode: screen;
  transform-style: preserve-3d;
}
.ambient-beam--one { left: -22vw; top: 18vh; transform: rotate(-26deg) translateZ(-140px); animation: beamSweep 13s ease-in-out infinite alternate; }
.ambient-beam--two { right: -35vw; bottom: 18vh; transform: rotate(21deg) translateZ(-170px); animation: beamSweepTwo 16s ease-in-out infinite alternate; }

.motion-torus {
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform, translate;
}
.motion-torus::before,
.motion-torus::after,
.motion-torus i,
.motion-torus b,
.motion-torus span {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px solid rgba(125,214,255,.17);
  box-shadow: inset 0 0 24px rgba(0,113,255,.13), 0 0 28px rgba(0,117,255,.08);
}
.motion-torus::before { transform: rotateX(72deg); border-width: 9px; border-color: rgba(69,172,255,.2); }
.motion-torus::after { transform: rotateY(72deg); border-color: rgba(230,250,255,.18); }
.motion-torus i { transform: rotateX(58deg) rotateZ(38deg); inset: 23%; border-style: dashed; }
.motion-torus b { transform: rotateY(60deg) rotateZ(-22deg); inset: 29%; }
.motion-torus span { inset: 42%; background: radial-gradient(circle at 32% 25%, #f4fdff, #199eff 38%, #031b5a 78%); border: 0; box-shadow: 0 0 35px rgba(17,139,255,.38); }
.motion-torus--one { left: -65px; top: 20vh; opacity: .42; animation: torusJourney 18s ease-in-out infinite; }
.motion-torus--two { right: -95px; top: 55vh; width: 280px; opacity: .3; animation: torusJourneyTwo 22s ease-in-out infinite; }

.motion-prism {
  position: absolute;
  width: 74px;
  height: 74px;
  transform-style: preserve-3d;
  animation: globalPrismSpin 15s linear infinite;
  opacity: .42;
}
.motion-prism i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(147,220,255,.25);
  background: linear-gradient(145deg, rgba(50,160,255,.13), rgba(255,255,255,.025));
  box-shadow: inset 0 0 24px rgba(0,103,255,.12);
  backdrop-filter: blur(3px);
}
.motion-prism i:nth-child(1){transform:translateZ(37px)}
.motion-prism i:nth-child(2){transform:rotateY(180deg) translateZ(37px)}
.motion-prism i:nth-child(3){transform:rotateY(90deg) translateZ(37px)}
.motion-prism i:nth-child(4){transform:rotateY(-90deg) translateZ(37px)}
.motion-prism i:nth-child(5){transform:rotateX(90deg) translateZ(37px)}
.motion-prism i:nth-child(6){transform:rotateX(-90deg) translateZ(37px)}
.motion-prism--one { left: 8vw; bottom: 13vh; }
.motion-prism--two { right: 17vw; top: 12vh; width: 48px; height: 48px; animation-duration: 11s; animation-direction: reverse; }
.motion-prism--two i:nth-child(1){transform:translateZ(24px)}
.motion-prism--two i:nth-child(2){transform:rotateY(180deg) translateZ(24px)}
.motion-prism--two i:nth-child(3){transform:rotateY(90deg) translateZ(24px)}
.motion-prism--two i:nth-child(4){transform:rotateY(-90deg) translateZ(24px)}
.motion-prism--two i:nth-child(5){transform:rotateX(90deg) translateZ(24px)}
.motion-prism--two i:nth-child(6){transform:rotateX(-90deg) translateZ(24px)}

.motion-sphere {
  position: absolute;
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 22%, #fff 0 4%, #a9e7ff 10%, #218fff 35%, #062663 70%, #010b24 100%);
  box-shadow: inset -17px -22px 32px rgba(0,4,24,.62), inset 12px 10px 19px rgba(255,255,255,.13), 0 25px 65px rgba(0,85,220,.24);
  opacity: .38;
  will-change: translate, transform;
}
.motion-sphere span { position: absolute; inset: -18%; border: 1px solid rgba(140,218,255,.22); border-radius: 50%; transform: rotateX(72deg); animation: sphereRing 9s linear infinite; }
.motion-sphere--one { right: 6vw; bottom: 8vh; animation: sphereJourney 10s ease-in-out infinite; }
.motion-sphere--two { left: 40vw; top: 9vh; width: 38px; opacity: .5; animation: sphereJourneyTwo 8s ease-in-out infinite; }
.motion-ribbon { position: absolute; left: -20vw; top: 72vh; width: 140vw; height: 1px; transform: rotate(-12deg) translateZ(-220px); background: linear-gradient(90deg, transparent, rgba(74,183,255,.4), transparent); box-shadow: 0 0 22px rgba(12,131,255,.38); animation: globalRibbon 9s ease-in-out infinite alternate; }
.motion-ribbon span { position: absolute; left: 20%; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: #e8fbff; box-shadow: 0 0 18px #36b7ff; animation: ribbonDot 8s linear infinite; }

@keyframes universeBreath { to { transform: scale(1.08) rotate(.8deg); opacity: .78; } }
@keyframes beamSweep { 0% { translate: -8vw -3vh; rotate: -3deg; } 100% { translate: 20vw 8vh; rotate: 4deg; } }
@keyframes beamSweepTwo { 0% { translate: 5vw 6vh; } 100% { translate: -23vw -7vh; } }
@keyframes torusJourney { 0%,100% { transform: rotateX(61deg) rotateY(-14deg) rotateZ(0deg) translate3d(0,0,-80px); } 50% { transform: rotateX(74deg) rotateY(26deg) rotateZ(180deg) translate3d(55px,-45px,50px); } }
@keyframes torusJourneyTwo { 0%,100% { transform: rotateX(70deg) rotateY(10deg) rotateZ(0deg) translate3d(0,0,-120px); } 50% { transform: rotateX(50deg) rotateY(-30deg) rotateZ(-180deg) translate3d(-75px,-70px,60px); } }
@keyframes globalPrismSpin { from { transform: rotateX(0) rotateY(0) rotateZ(0) translateZ(-60px); } to { transform: rotateX(360deg) rotateY(720deg) rotateZ(180deg) translateZ(80px); } }
@keyframes sphereRing { to { transform: rotateX(72deg) rotateZ(360deg); } }
@keyframes sphereJourney { 50% { transform: translate3d(-50px,-95px,80px) rotate(18deg); } }
@keyframes sphereJourneyTwo { 50% { transform: translate3d(70px,45px,110px) scale(1.15); } }
@keyframes globalRibbon { to { translate: 0 -8vh; rotate: 3deg; opacity: .7; } }
@keyframes ribbonDot { from { left: 3%; } to { left: 96%; } }

/* HERO: stronger continuous 3D motion */
.hero { min-height: 980px; isolation: isolate; }
.hero-world { animation: heroWorldBreath 12s ease-in-out infinite alternate; }
.hero-world__grid { animation: gridTravel 9s linear infinite; }
.hero-tunnel {
  position: absolute;
  right: 1%;
  top: 9%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  opacity: .5;
  animation: tunnelFloat 8s ease-in-out infinite;
}
.hero-tunnel i { position: absolute; border: 1px solid rgba(95,193,255,.19); border-radius: 50%; box-shadow: inset 0 0 35px rgba(0,107,255,.08), 0 0 30px rgba(0,107,255,.05); }
.hero-tunnel i:nth-child(1){inset:0;transform:rotateX(70deg) translateZ(-100px);animation:tunnelSpin 16s linear infinite}
.hero-tunnel i:nth-child(2){inset:11%;transform:rotateY(69deg) translateZ(-55px);animation:tunnelSpin 13s linear infinite reverse}
.hero-tunnel i:nth-child(3){inset:23%;transform:rotateX(61deg) rotateZ(40deg);animation:tunnelSpin 10s linear infinite}
.hero-tunnel i:nth-child(4){inset:35%;transform:rotateY(65deg) rotateZ(-30deg);animation:tunnelSpin 8s linear infinite reverse}
.hero-tunnel i:nth-child(5){inset:45%;background:radial-gradient(circle,#a9ebff,#178dff 35%,#03164b 75%);border:0;box-shadow:0 0 50px rgba(21,143,255,.5);animation:tunnelCore 4s ease-in-out infinite}
.hero-plane-3d { position: absolute; left: 41%; top: 17%; width: 190px; filter: drop-shadow(0 24px 24px rgba(0,20,66,.55)); transform-style: preserve-3d; animation: planeFlight 11s cubic-bezier(.42,0,.58,1) infinite; }
.hero-plane-3d svg { width: 100%; overflow: visible; }
.hero-glass-panel { position: absolute; display: grid; gap: 3px; min-width: 110px; padding: 13px 16px; border: 1px solid rgba(139,211,255,.18); border-radius: 15px; background: linear-gradient(145deg,rgba(13,54,112,.54),rgba(2,14,39,.3)); box-shadow: 0 19px 45px rgba(0,15,53,.3), inset 0 1px rgba(255,255,255,.1); backdrop-filter: blur(8px); transform-style: preserve-3d; }
.hero-glass-panel span { color: #74ccff; font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.hero-glass-panel strong { color: #fff; font-family: var(--heading); font-size: 13px; letter-spacing: .06em; }
.hero-glass-panel--one { right: 9%; top: 16%; animation: panelFloat 6s ease-in-out infinite; }
.hero-glass-panel--two { left: 43%; bottom: 18%; animation: panelFloat 7.4s ease-in-out infinite -2s; }
.visual-stage { animation: stageIdle 7s ease-in-out infinite; }
.visual-stage__floor { animation: floorPulse 5s ease-in-out infinite; }
.logo-sphere { animation: logoFloatV3 5.4s ease-in-out infinite; }
.logo-sphere img { clip-path: circle(49.35% at 50% 50%); background: transparent; }
.poster-card { animation: posterIdle 7.8s ease-in-out infinite; }
.floating-chip { animation-name: chipFloatV3 !important; animation-timing-function: ease-in-out !important; animation-iteration-count: infinite !important; }
.floating-chip--top { animation-duration: 4.2s !important; }
.floating-chip--bottom { animation-duration: 5s !important; }
.floating-chip--side { animation-duration: 5.8s !important; }
.orb--one { animation: orbTravelOne 8s ease-in-out infinite; }
.orb--two { animation: orbTravelTwo 6.7s ease-in-out infinite; }
.orb--three { animation: orbTravelThree 10s ease-in-out infinite; }
.route-pin--one { animation: pinTravelOne 6s ease-in-out infinite; }
.route-pin--two { animation: pinTravelTwo 7s ease-in-out infinite; }
.flight-path path { stroke-dasharray: 8 15; animation: flightDash 2.4s linear infinite; }

@keyframes heroWorldBreath { to { scale: 1.025; filter: brightness(1.08); } }
@keyframes gridTravel { from { background-position: 0 0; } to { background-position: 0 72px; } }
@keyframes tunnelFloat { 50% { translate: -35px 24px; rotate: 5deg; } }
@keyframes tunnelSpin { to { rotate: 360deg; } }
@keyframes tunnelCore { 50% { transform: scale(1.2); filter: brightness(1.35); } }
@keyframes planeFlight { 0% { transform: translate3d(-260px,180px,-140px) rotateZ(-10deg) rotateY(-24deg) scale(.42); opacity: 0; } 12% { opacity: .82; } 52% { transform: translate3d(110px,-75px,120px) rotateZ(4deg) rotateY(10deg) scale(1); opacity: .9; } 88% { opacity: .72; } 100% { transform: translate3d(610px,-260px,-80px) rotateZ(12deg) rotateY(30deg) scale(.58); opacity: 0; } }
@keyframes panelFloat { 50% { transform: translate3d(0,-18px,80px) rotateY(8deg) rotateX(-4deg); } }
@keyframes stageIdle { 0%,100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -10px; rotate: .5deg; } }
@keyframes floorPulse { 50% { transform: rotateX(74deg) scale(1.08); opacity: .82; } }
@keyframes logoFloatV3 { 0%,100% { transform: translateZ(110px) translateY(0) rotateY(-3deg); } 50% { transform: translateZ(145px) translateY(-21px) rotateY(8deg) rotateZ(2deg); } }
@keyframes posterIdle { 0%,100% { translate: 0 0; rotate: 0deg; } 50% { translate: -7px -12px; rotate: -.7deg; } }
@keyframes chipFloatV3 { 0%,100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -14px; rotate: 1.4deg; } }
@keyframes orbTravelOne { 50% { transform: translate3d(55px,-50px,100px) scale(1.12); } }
@keyframes orbTravelTwo { 50% { transform: translate3d(-45px,35px,80px) scale(.88); } }
@keyframes orbTravelThree { 50% { transform: translate3d(-80px,-35px,120px) rotate(14deg); } }
@keyframes pinTravelOne { 50% { transform: translate3d(35px,-35px,90px) rotateY(14deg); } }
@keyframes pinTravelTwo { 50% { transform: translate3d(-28px,42px,110px) rotateY(-12deg); } }
@keyframes flightDash { to { stroke-dashoffset: -46; } }

/* MARQUEE: CSS fallback + JavaScript engine. Never pauses on hover. */
.route-strip {
  bottom: 10px;
  transform: rotate(-1.25deg) perspective(900px) rotateX(4deg);
  background: linear-gradient(90deg, rgba(3,18,49,.96), rgba(7,91,204,.9) 37%, rgba(9,67,158,.92) 63%, rgba(3,18,49,.96));
  box-shadow: 0 21px 60px rgba(0,23,78,.34), inset 0 1px rgba(255,255,255,.14), inset 0 -1px rgba(2,9,28,.8);
}
.route-strip__track { animation: routeMarqueeFallback 18s linear infinite; transform: translate3d(0,0,0); will-change: transform; }
.route-strip__track.is-js-marquee { animation: none !important; transform: translate3d(var(--marquee-x, 0px),0,0); }
.route-strip:hover .route-strip__track { animation-play-state: running !important; }
.route-strip__group { gap: 36px; padding: 18px 20px; }
.route-strip span { font-family: var(--heading); font-size: 12px; font-weight: 750; letter-spacing: .17em; animation: routeWordGlow 2.8s ease-in-out infinite alternate; }
.route-strip span:nth-of-type(2n) { animation-delay: -1.1s; }
.route-strip i { animation: diamondPulse 1.5s ease-in-out infinite; }
.route-strip__beam { position: absolute; z-index: 4; top: 0; bottom: 0; left: -10%; width: 17%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.24),rgba(94,210,255,.22),transparent); transform: skewX(-24deg); filter: blur(3px); animation: stripBeam 4.8s linear infinite; pointer-events: none; }
@keyframes routeMarqueeFallback { to { transform: translate3d(-50%,0,0); } }
@keyframes routeWordGlow { to { color: #fff; text-shadow: 0 0 14px rgba(117,218,255,.6), 0 4px 14px rgba(0,15,50,.6); } }
@keyframes diamondPulse { 50% { transform: scale(1.6) rotate(45deg); filter: drop-shadow(0 0 13px #7fe8ff); } }
@keyframes stripBeam { from { left: -20%; } to { left: 120%; } }

/* SERVICES V3 */
.services-v3 { overflow: hidden; padding-top: 135px; }
.services-v3::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(8,111,255,.14), transparent 34%), linear-gradient(180deg, rgba(3,12,31,.35), rgba(2,8,23,.88)); pointer-events: none; }
.services-bg__ring--c { width: 390px; height: 390px; left: 42%; top: 17%; border-style: dotted; animation-duration: 15s; animation-direction: reverse; }
.services-bg__beam { position: absolute; left: -25%; top: 45%; width: 150%; height: 2px; background: linear-gradient(90deg,transparent,rgba(50,179,255,.38),transparent); box-shadow: 0 0 35px rgba(23,148,255,.35); transform: rotate(-8deg); animation: serviceBeamTravel 8s ease-in-out infinite alternate; }
.services-showcase { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; perspective: 1500px; }
.services-showcase::before { content: ""; position: absolute; left: 50%; top: -22px; bottom: -22px; width: 1px; background: linear-gradient(transparent,rgba(91,184,255,.2),transparent); }
.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-z: 0px;
  grid-template-columns: .92fr 1.08fr;
  min-height: 470px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at var(--mx,24%) var(--my,22%), rgba(59,177,255,.2), transparent 32%),
    linear-gradient(145deg, rgba(11,47,105,.86), rgba(4,18,47,.97) 58%, rgba(2,9,27,.99));
  box-shadow: 0 34px 100px rgba(0,14,50,.48), inset 0 1px rgba(255,255,255,.09);
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(var(--lift-z));
  transition: transform .16s ease-out, border-color .35s ease, box-shadow .35s ease;
}
.service-card:hover { --lift-z: 18px; box-shadow: 0 46px 125px rgba(0,25,84,.62), inset 0 1px rgba(255,255,255,.12); }
.service-card__scan { position: absolute; z-index: 1; left: 0; right: 0; top: -35%; height: 38%; background: linear-gradient(180deg,transparent,rgba(98,209,255,.11),transparent); transform: skewY(-8deg); animation: cardScan 6.2s ease-in-out infinite; pointer-events: none; }
.service-card:nth-child(2) .service-card__scan { animation-delay: -1.5s; }
.service-card:nth-child(3) .service-card__scan { animation-delay: -3s; }
.service-card:nth-child(4) .service-card__scan { animation-delay: -4.5s; }
.service-card__depth-grid { position: absolute; z-index: 0; left: -12%; right: 42%; bottom: -19%; height: 60%; opacity: .18; background-image: linear-gradient(rgba(85,184,255,.35) 1px,transparent 1px),linear-gradient(90deg,rgba(85,184,255,.35) 1px,transparent 1px); background-size: 28px 28px; transform: perspective(600px) rotateX(66deg); mask-image: linear-gradient(to top,#000,transparent); animation: serviceGridMove 5s linear infinite; }
.service-card__visual { min-height: 350px; overflow: visible; perspective: 1000px; }
.service-model { position: relative; z-index: 3; width: min(310px,112%); aspect-ratio: 1; display: grid; place-items: center; transform-style: preserve-3d; animation: modelFloat 5.6s ease-in-out infinite; }
.service-card:nth-child(2) .service-model { animation-delay: -1.4s; }
.service-card:nth-child(3) .service-model { animation-delay: -2.8s; }
.service-card:nth-child(4) .service-model { animation-delay: -4.2s; }
.service-model img { position: relative; z-index: 4; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 34px 34px rgba(0,13,48,.58)); transform: translateZ(72px) rotateY(var(--model-ry,0deg)) rotateX(var(--model-rx,0deg)); transition: transform .22s ease-out, filter .3s ease; }
.service-card:hover .service-model img { filter: drop-shadow(0 44px 40px rgba(0,18,65,.75)); }
.service-model__reflection { position: absolute; z-index: 1; left: 17%; right: 17%; bottom: 7%; height: 17%; border-radius: 50%; background: radial-gradient(ellipse,rgba(17,137,255,.44),rgba(6,71,178,.08) 45%,transparent 72%); filter: blur(19px); animation: reflectionPulse 3.8s ease-in-out infinite; }
.service-model__halo { position: absolute; inset: 12%; z-index: 0; border-radius: 50%; background: radial-gradient(circle,rgba(59,188,255,.22),transparent 65%); filter: blur(8px); animation: haloPulse 4.2s ease-in-out infinite; }
.service-model__orbit { position: absolute; z-index: 2; border: 1px solid rgba(119,217,255,.29); border-radius: 50%; }
.service-model__orbit--a { inset: 15%; transform: rotateX(72deg); animation: modelOrbit 9s linear infinite; }
.service-model__orbit--b { inset: 28%; transform: rotateY(68deg); border-style: dashed; animation: modelOrbitB 7s linear infinite reverse; }
.service-model__orbit::after { content: ""; position: absolute; left: 50%; top: -5px; width: 9px; height: 9px; border-radius: 50%; background: #e9fbff; box-shadow: 0 0 16px #3ac1ff; }
.service-model--airport { width: min(330px,118%); animation-name: airportModelFloat; }
.service-model--bus { width: min(310px,112%); animation-name: busModelFloat; }
.service-model--hotel { width: min(300px,108%); animation-name: hotelModelFloat; }
.service-model--tour { width: min(315px,114%); animation-name: tourModelFloat; }
.service-model__road { position: absolute; z-index: 1; left: 5%; right: 5%; bottom: 12%; height: 28%; border-radius: 50%; background: linear-gradient(145deg,rgba(10,68,161,.48),rgba(2,15,45,.2)); transform: rotateX(69deg) rotateZ(-7deg); border: 1px solid rgba(104,204,255,.18); overflow: hidden; }
.service-model__road span { position: absolute; left: -30%; top: 49%; width: 160%; height: 5px; background: repeating-linear-gradient(90deg,transparent 0 34px,#e8fbff 34px 63px,transparent 63px 95px); animation: roadMove 1.8s linear infinite; opacity: .8; }
.service-model__skyline { position: absolute; z-index: 1; left: 5%; right: 5%; bottom: 13%; height: 45%; display: flex; align-items: end; justify-content: center; gap: 8px; opacity: .18; transform: translateZ(-50px); }
.service-model__skyline i { width: 13%; border: 1px solid rgba(93,195,255,.4); background: linear-gradient(rgba(29,134,255,.18),rgba(3,29,78,.06)); animation: skylinePulse 3.5s ease-in-out infinite; }
.service-model__skyline i:nth-child(1){height:42%}.service-model__skyline i:nth-child(2){height:76%;animation-delay:-.8s}.service-model__skyline i:nth-child(3){height:58%;animation-delay:-1.6s}.service-model__skyline i:nth-child(4){height:90%;animation-delay:-2.4s}
.service-model__sun { position: absolute; z-index: 1; right: 13%; top: 13%; width: 58px; height: 58px; border-radius: 50%; background: radial-gradient(circle at 30% 28%,#fff,#a6edff 24%,#1594ff 57%,#05317f 100%); box-shadow: 0 0 45px rgba(49,181,255,.45); animation: sunPulse 4s ease-in-out infinite; }
.service-model__wave { position: absolute; z-index: 2; left: 8%; right: 8%; bottom: 13%; height: 20%; overflow: hidden; transform: rotateX(66deg); opacity: .32; }
.service-model__wave span { position: absolute; left: -20%; width: 140%; height: 40px; border: 3px solid rgba(99,215,255,.6); border-color: rgba(99,215,255,.6) transparent transparent; border-radius: 50%; animation: waveTravel 3s linear infinite; }
.service-model__wave span:nth-child(2){top:20px;animation-delay:-1.5s}
.service-status { position: absolute; z-index: 6; left: 9px; bottom: 14px; display: grid; gap: 3px; padding: 10px 12px; border: 1px solid rgba(126,210,255,.18); border-radius: 12px; background: rgba(3,17,45,.67); backdrop-filter: blur(9px); transform: translateZ(90px); animation: statusFloat 4.6s ease-in-out infinite; }
.service-status span { color: #78d3ff; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.service-status b { color: #fff; font-family: var(--heading); font-size: 10px; letter-spacing: .08em; }
.service-particles i { position: absolute; z-index: 2; width: 5px; height: 5px; border-radius: 50%; background: #b9efff; box-shadow: 0 0 13px #2db6ff; animation: serviceParticle 4s ease-in-out infinite; }
.service-particles i:nth-child(1){left:12%;top:22%}.service-particles i:nth-child(2){right:13%;top:30%;animation-delay:-1s}.service-particles i:nth-child(3){left:22%;bottom:19%;animation-delay:-2s}.service-particles i:nth-child(4){right:20%;bottom:28%;animation-delay:-3s}
.service-card__content { padding: 20px 4px 20px 18px; transform: translateZ(45px); }
.service-card h3 { font-size: clamp(30px,3vw,39px); font-weight: 750; letter-spacing: -.045em; }
.service-card p { font-size: 13px; line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 21px 0 26px; }
.service-tags span { padding: 8px 10px; border: 1px solid rgba(119,201,255,.13); border-radius: 999px; color: #bed2ec; background: rgba(255,255,255,.035); font-size: 9px; font-weight: 700; }
.service-card button { position: relative; padding: 11px 0; }
.service-card button::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 34%; height: 1px; background: linear-gradient(90deg,#57c7ff,transparent); transition: width .3s ease; }
.service-card button:hover::after { width: 100%; }
.service-card--airport { --card-glow:#1bb7ff; }
.service-card--bus { --card-glow:#0e6fff; }
.service-card--hotel { --card-glow:#76dfff; }
.service-card--tour { --card-glow:#17cfe4; }
.service-card--airport::after { box-shadow: inset 0 0 80px rgba(24,166,255,.025); }
.service-card--bus::after { box-shadow: inset 0 0 80px rgba(10,88,255,.035); }
.service-card--hotel::after { box-shadow: inset 0 0 80px rgba(120,225,255,.025); }
.service-card--tour::after { box-shadow: inset 0 0 80px rgba(25,210,228,.025); }

@keyframes serviceBeamTravel { to { translate: 0 -180px; rotate: 4deg; } }
@keyframes cardScan { 0%,15% { top:-45%;opacity:0 } 45% { opacity:1 } 75%,100% { top:115%;opacity:0 } }
@keyframes serviceGridMove { to { background-position: 0 56px; } }
@keyframes modelFloat { 50% { transform: translate3d(0,-14px,35px) rotateY(5deg); } }
@keyframes airportModelFloat { 0%,100% { transform: translate3d(0,0,25px) rotateY(-5deg) rotateX(2deg); } 50% { transform: translate3d(5px,-18px,70px) rotateY(7deg) rotateX(-3deg); } }
@keyframes busModelFloat { 0%,100% { transform: translate3d(0,0,20px) rotateY(5deg) rotateX(-1deg); } 50% { transform: translate3d(-7px,-12px,58px) rotateY(-8deg) rotateX(3deg); } }
@keyframes hotelModelFloat { 0%,100% { transform: translate3d(0,0,25px) rotateY(-4deg); } 50% { transform: translate3d(4px,-16px,68px) rotateY(6deg) rotateX(-2deg); } }
@keyframes tourModelFloat { 0%,100% { transform: translate3d(0,0,22px) rotateY(4deg) rotateZ(-1deg); } 50% { transform: translate3d(-4px,-15px,65px) rotateY(-7deg) rotateZ(2deg); } }
@keyframes modelOrbit { to { transform: rotateX(72deg) rotateZ(360deg); } }
@keyframes modelOrbitB { to { transform: rotateY(68deg) rotateZ(360deg); } }
@keyframes reflectionPulse { 50% { transform: scaleX(1.18); opacity: .65; } }
@keyframes haloPulse { 50% { transform: scale(1.16); opacity: .75; } }
@keyframes roadMove { to { transform: translateX(95px); } }
@keyframes skylinePulse { 50% { filter: brightness(1.8); transform: translateY(-6px); } }
@keyframes sunPulse { 50% { transform: scale(1.14); filter: brightness(1.2); } }
@keyframes waveTravel { to { translate: 70px 0; } }
@keyframes statusFloat { 50% { transform: translate3d(0,-9px,110px) rotateY(5deg); } }
@keyframes serviceParticle { 50% { transform: translate3d(12px,-18px,80px) scale(1.7); opacity: .35; } }

/* Responsive V3 */
@media (max-width: 1080px) {
  .services-showcase { grid-template-columns: 1fr; }
  .services-showcase::before { display: none; }
  .service-card { grid-template-columns: .85fr 1.15fr; }
  .motion-torus--two { opacity: .2; }
}
@media (max-width: 900px) {
  .motion-universe { opacity: .55; }
  .hero-plane-3d { width: 145px; }
  .hero-glass-panel { opacity: .6; }
  .route-strip { bottom: 2px; }
}
@media (max-width: 620px) {
  .motion-universe { opacity: .38; }
  .motion-prism--one,.motion-torus--two,.hero-glass-panel--two { display:none; }
  .hero { min-height: auto; }
  .hero-plane-3d { width: 110px; top: 28%; }
  .route-strip { transform: rotate(-1deg); }
  .route-strip__group { gap: 24px; padding: 15px 12px; }
  .route-strip span { font-size: 9px; letter-spacing: .14em; }
  .service-card { grid-template-columns: 1fr; min-height: auto; padding: 24px; }
  .service-card__visual { min-height: 300px; }
  .service-card__content { padding: 0 2px 12px; }
  .service-model { width: min(300px,100%); }
  .service-card h3 { font-size: 33px; }
}
@media (prefers-reduced-motion: reduce) {
  .motion-universe { opacity: .25; }
  .route-strip__track { animation-duration: 45s !important; }
}


/* =========================================================
   V4 • Conteúdo alinhado à empresa + hero somente com logo
   ========================================================= */
.hero::before {
  background:
    radial-gradient(circle at 73% 40%, rgba(0, 126, 255, .20), transparent 25%),
    radial-gradient(circle at 86% 58%, rgba(82, 210, 255, .10), transparent 22%),
    linear-gradient(90deg, rgba(2, 8, 23, .99) 0%, rgba(3, 13, 34, .96) 46%, rgba(4, 19, 51, .82) 100%);
  opacity: 1;
}
.hero__grid { grid-template-columns: 1.08fr .92fr; }
.hero__visual { min-height: 660px; }
.visual-stage {
  width: min(500px, 42vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.visual-stage__floor {
  width: 92%;
  height: 22%;
  left: 4%;
  bottom: 2%;
  opacity: .72;
}
.logo-sphere {
  position: relative;
  inset: auto;
  width: 78%;
  transform: translateZ(120px);
  animation: logoFloatV4 5.2s ease-in-out infinite;
}
.logo-sphere img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 42px 45px rgba(0, 18, 64, .64)) drop-shadow(0 0 30px rgba(17, 145, 255, .26));
}
.logo-sphere__disc {
  inset: 4%;
  background: radial-gradient(circle at 38% 28%, rgba(255,255,255,.17), rgba(8, 76, 177, .05) 42%, rgba(0, 9, 34, .08) 70%);
  box-shadow: inset 0 0 55px rgba(76, 183, 255, .11), 0 0 70px rgba(0, 111, 255, .12);
}
.logo-sphere__halo { inset: -5%; opacity: .45; filter: blur(42px); }
.visual-orbit--outer { width: 104%; }
.visual-orbit--middle { width: 87%; }
.visual-orbit--inner { width: 66%; }
@keyframes logoFloatV4 {
  0%,100% { transform: translateZ(120px) translateY(6px) rotateY(-5deg) rotateX(2deg); }
  50% { transform: translateZ(155px) translateY(-24px) rotateY(8deg) rotateX(-3deg); }
}
.service-status span { font-size: 8px; letter-spacing: .10em; }
.service-status b { font-size: 9px; letter-spacing: .08em; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .visual-stage { width: min(520px, 88vw); }
  .logo-sphere { width: 72%; }
}
@media (max-width: 620px) {
  .hero__visual { min-height: 470px; }
  .visual-stage { width: 94vw; }
  .logo-sphere { width: 70%; }
}
