/* ============ WASETCO — Futuristic Space Theme ============ */
:root {
  --bg: #020309;
  --bg-soft: #060a16;
  --white: #f4f7ff;
  --muted: #8b94ad;
  --blue: #1f7bff;
  --cyan: #4fd8ff;
  --blue-dim: rgba(31, 123, 255, 0.35);
  --card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blue); color: #fff; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  width: 220px; mix-blend-mode: screen;
  animation: pulse-logo 1.4s ease-in-out infinite;
}
@keyframes pulse-logo {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}
.preloader-bar {
  width: 180px; height: 2px; margin: 18px auto 0;
  background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: load-slide 1s ease-in-out infinite;
}
@keyframes load-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(450%); }
}

/* ============ BACKGROUND ============ */
#stars {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.nebula {
  position: fixed; border-radius: 50%; z-index: 0;
  filter: blur(120px); pointer-events: none; opacity: 0.5;
}
.nebula-1 {
  width: 55vw; height: 55vw; top: -20vw; right: -15vw;
  background: radial-gradient(circle, rgba(31,123,255,0.22), transparent 65%);
  animation: drift 24s ease-in-out infinite alternate;
}
.nebula-2 {
  width: 45vw; height: 45vw; bottom: -15vw; left: -12vw;
  background: radial-gradient(circle, rgba(79,216,255,0.13), transparent 65%);
  animation: drift 30s ease-in-out infinite alternate-reverse;
}
.nebula-3 {
  width: 30vw; height: 30vw; top: 45%; left: 55%;
  background: radial-gradient(circle, rgba(100,60,255,0.1), transparent 65%);
  animation: drift 20s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4vw, 3vw) scale(1.12); }
}

main, .footer { position: relative; z-index: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(2, 3, 9, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 5vw;
  border-bottom-color: var(--border);
}
.nav-logo img {
  height: 64px; display: block;
  mix-blend-mode: screen;
  transition: transform 0.3s;
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 15px;
  font-weight: 500; letter-spacing: 0.04em;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-burger span {
  width: 24px; height: 2px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(2, 3, 9, 0.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 26px; font-weight: 600;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0f5cd6);
  box-shadow: 0 0 24px var(--blue-dim), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 44px rgba(31, 123, 255, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-ghost {
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(31, 123, 255, 0.08);
  transform: translateY(-2px);
}
.btn-big { padding: 17px 34px; font-size: 16px; }
.btn-huge { padding: 20px 44px; font-size: 18px; }
.btn-nav { padding: 11px 22px; font-size: 14px; }
.play-ico { font-size: 11px; color: var(--cyan); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding: 120px 5vw 80px;
}

.hero-orbit {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(31, 123, 255, 0.12);
}
.ring-1 { width: 42vw; height: 42vw; animation: spin 40s linear infinite; border-style: dashed; }
.ring-2 { width: 60vw; height: 60vw; animation: spin 70s linear infinite reverse; }
.ring-3 { width: 80vw; height: 80vw; animation: spin 100s linear infinite; opacity: 0.5; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
}
.dot-1 { animation: orbit-1 40s linear infinite; }
.dot-2 { animation: orbit-2 70s linear infinite reverse; }
@keyframes orbit-1 {
  from { transform: rotate(0deg) translateX(21vw); }
  to { transform: rotate(360deg) translateX(21vw); }
}
@keyframes orbit-2 {
  from { transform: rotate(120deg) translateX(30vw); }
  to { transform: rotate(480deg) translateX(30vw); }
}

.hero-content { max-width: 950px; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 34px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79, 216, 255, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(79, 216, 255, 0); }
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(44px, 7.4vw, 96px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.line:nth-child(1) .word:nth-child(1) { animation-delay: 0.55s; }
.line:nth-child(1) .word:nth-child(2) { animation-delay: 0.65s; }
.line:nth-child(1) .word:nth-child(3) { animation-delay: 0.75s; }
.line:nth-child(2) .word:nth-child(1) { animation-delay: 0.9s; }
.line:nth-child(2) .word:nth-child(2) { animation-delay: 1.0s; }
@keyframes word-up { to { transform: translateY(0); } }

.grad {
  background: linear-gradient(100deg, var(--blue) 10%, var(--cyan) 55%, #a8ecff 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted); max-width: 620px;
  margin: 0 auto 44px; font-weight: 300;
}

.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; opacity: 0.55; transition: opacity 0.3s;
}
.scroll-hint:hover { opacity: 1; }
.mouse {
  width: 24px; height: 38px; border: 1.5px solid var(--muted);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 7px;
}
.wheel {
  width: 3px; height: 7px; background: var(--cyan); border-radius: 3px;
  animation: wheel-drop 1.8s ease-in-out infinite;
}
@keyframes wheel-drop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.scroll-text {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244, 247, 255, 0.4);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS SHARED ============ */
section { padding: 130px 5vw; }
.section-head { text-align: center; margin-bottom: 70px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.12;
}
.section-sub {
  margin-top: 16px; color: var(--muted);
  font-size: 16px; font-weight: 300;
}

/* ============ SHOWREEL ============ */
.showreel { padding-top: 110px; }
.video-frame {
  position: relative; max-width: 1080px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-glow {
  position: absolute; inset: -3px; border-radius: 22px; z-index: -1;
  background: linear-gradient(135deg, var(--blue), transparent 40%, transparent 60%, var(--cyan));
  filter: blur(26px); opacity: 0.5;
  animation: glow-shift 6s ease-in-out infinite alternate;
}
@keyframes glow-shift {
  from { opacity: 0.35; }
  to { opacity: 0.7; }
}
.video-frame video {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(2, 3, 9, 0.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, opacity 0.4s, visibility 0.4s;
}
.video-play:hover { transform: scale(1.1); }
.video-play.hidden { opacity: 0; visibility: hidden; }
.play-ring {
  position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.5); opacity: 0; }
}
.play-triangle { color: var(--white); font-size: 26px; margin-left: 5px; }
.video-sound {
  position: absolute; bottom: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(2, 3, 9, 0.6); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--white); font-size: 16px; cursor: pointer;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
}
.video-sound:hover { transform: scale(1.1); }
.video-sound.visible { opacity: 1; visibility: visible; }

/* ============ REELS ============ */
.reels-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; max-width: 1180px; margin: 0 auto;
}
.reel-card { text-align: center; }
.reel-card h3 {
  margin-top: 18px; font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
}
.reel-card > p {
  color: var(--muted); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}
.reel-phone {
  position: relative; aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border);
  background: #000; cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s, box-shadow 0.45s;
}
.reel-phone::after {
  content: '';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 14px; border-radius: 8px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 3; pointer-events: none;
}
.reel-phone:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(31, 123, 255, 0.5);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6), 0 0 34px rgba(31, 123, 255, 0.18);
}
.reel-phone video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reel-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(2,3,9,0.05), rgba(2,3,9,0.35));
  transition: opacity 0.35s;
}
.reel-phone.playing .reel-overlay { opacity: 0; }
.reel-play {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(2, 3, 9, 0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white); font-size: 16px; padding-left: 4px;
  transition: transform 0.3s;
}
.reel-phone:hover .reel-play { transform: scale(1.12); }
.reel-badge {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(2, 3, 9, 0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  font-size: 12px; color: var(--white); letter-spacing: 0.06em;
}

/* ============ STATS ============ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 26px; max-width: 1080px; margin: 0 auto;
  padding-top: 40px; padding-bottom: 40px;
}
.stat {
  text-align: center; padding: 38px 18px;
  border: 1px solid var(--border); border-radius: 18px;
  background: var(--card);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.stat:hover {
  border-color: var(--blue-dim);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(31, 123, 255, 0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 50px); font-weight: 700;
  background: linear-gradient(120deg, var(--white), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  margin-top: 8px; color: var(--muted);
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; max-width: 1180px; margin: 0 auto;
}
.card {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--card);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s, box-shadow 0.45s;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 50%), rgba(31, 123, 255, 0.12), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 123, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(31, 123, 255, 0.08);
}
.card-ico {
  font-size: 34px; margin-bottom: 22px;
  width: 68px; height: 68px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(31,123,255,0.14), rgba(79,216,255,0.05));
  border: 1px solid rgba(31, 123, 255, 0.25);
}
.card h3 {
  font-size: 21px; font-weight: 600; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card p { color: var(--muted); font-size: 15px; font-weight: 300; }

/* ============ PROCESS ============ */
.process-steps {
  display: flex; align-items: stretch; justify-content: center;
  gap: 22px; max-width: 1100px; margin: 0 auto;
}
.step {
  flex: 1; text-align: center; padding: 44px 26px;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--card);
  transition: transform 0.4s, border-color 0.4s;
}
.step:hover { transform: translateY(-6px); border-color: var(--blue-dim); }
.step-num {
  font-family: var(--font-display);
  font-size: 15px; letter-spacing: 0.25em;
  color: var(--cyan); margin-bottom: 20px;
}
.step h3 { font-size: 21px; margin-bottom: 12px; font-weight: 600; }
.step p { color: var(--muted); font-size: 15px; font-weight: 300; }
.step-line {
  align-self: center; width: 60px; height: 1px; flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; max-width: 1180px; margin: 0 auto;
}
.testimonial {
  padding: 38px 32px;
  border: 1px solid var(--border); border-radius: 20px;
  background: var(--card);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--blue-dim);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.testimonial-stars {
  color: var(--cyan); font-size: 15px; letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(79, 216, 255, 0.5);
}
.testimonial blockquote {
  color: var(--white); font-size: 16px; font-weight: 300;
  line-height: 1.7; flex: 1;
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, rgba(31,123,255,0.35), rgba(79,216,255,0.15));
  border: 1px solid rgba(31, 123, 255, 0.4);
}
.testimonial figcaption strong { display: block; font-size: 15px; }
.testimonial figcaption div span { color: var(--muted); font-size: 13px; }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 16px;
  background: var(--card); margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq-item.open { border-color: rgba(31, 123, 255, 0.45); background: rgba(31, 123, 255, 0.04); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 22px 26px;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-family: var(--font-body);
  font-size: 17px; font-weight: 600; text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--cyan); font-size: 17px; font-weight: 400;
  transition: transform 0.35s, border-color 0.35s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 26px 24px;
  color: var(--muted); font-size: 15px; font-weight: 300;
}
.faq-a a { color: var(--cyan); }

/* ============ CTA ============ */
.cta { padding-bottom: 150px; }
.cta-inner {
  position: relative;
  max-width: 900px; margin: 0 auto;
  text-align: center;
  padding: 90px 6vw;
  border: 1px solid var(--border); border-radius: 30px;
  background: linear-gradient(180deg, rgba(31, 123, 255, 0.07), rgba(2, 3, 9, 0.4));
  overflow: hidden;
}
.cta-planet {
  position: absolute; top: -140px; right: -140px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(79, 216, 255, 0.35), rgba(31, 123, 255, 0.12) 45%, transparent 70%);
  filter: blur(4px);
  animation: drift 16s ease-in-out infinite alternate;
}
.cta-inner h2 {
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 16px 0 18px;
}
.cta-inner p { color: var(--muted); margin-bottom: 40px; font-size: 17px; }
.cta-note {
  margin-top: 22px; font-size: 13px; color: var(--muted);
  letter-spacing: 0.08em;
}
.cta-ig {
  color: var(--cyan); text-decoration: none;
  border-bottom: 1px solid rgba(79, 216, 255, 0.35);
  transition: color 0.3s, border-color 0.3s;
}
.cta-ig:hover { color: var(--white); border-color: var(--white); }

/* ============ FOOTER ============ */
.footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 80px 5vw 30px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(31, 123, 255, 0.04));
}
.footer-watermark {
  position: absolute; bottom: -0.28em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(120px, 22vw, 340px);
  line-height: 1; letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31, 123, 255, 0.09);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  max-width: 1180px; margin: 0 auto 60px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 22px;
}
.footer-col > a:not(.btn) {
  display: block;
  color: var(--muted); text-decoration: none;
  font-size: 15px; padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
}
.footer-col > a:not(.btn):hover { color: var(--white); transform: translateX(5px); }
.footer-brand .footer-logo { height: 58px; mix-blend-mode: screen; margin: -8px 0 14px -6px; }
.footer-brand p {
  color: var(--muted); font-size: 15px; font-weight: 300;
  max-width: 300px; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.footer-socials a:hover {
  color: var(--white); border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(31, 123, 255, 0.25);
}
.footer-contact p {
  color: var(--muted); font-size: 14px; font-weight: 300;
  margin-bottom: 20px; max-width: 280px;
}
.footer-contact .btn { margin-bottom: 18px; }
.footer-mail {
  display: block;
  color: var(--white); text-decoration: none;
  font-size: 15px; margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-mail:hover { color: var(--cyan); }
.footer-response {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 13px;
}
.footer-bottom {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: rgba(139, 148, 173, 0.55); font-size: 13px;
}
.to-top {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 20px;
  color: var(--muted); font-family: var(--font-body); font-size: 13px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.to-top:hover { color: var(--white); border-color: var(--blue); transform: translateY(-3px); }
.to-top span { color: var(--cyan); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* stagger children in grids */
.services-grid .card:nth-child(2), .process-steps .step:nth-child(3), .stats .stat:nth-child(2) { transition-delay: 0.12s; }
.services-grid .card:nth-child(3), .process-steps .step:nth-child(5), .stats .stat:nth-child(3) { transition-delay: 0.24s; }
.services-grid .card:nth-child(4), .stats .stat:nth-child(4) { transition-delay: 0.1s; }
.services-grid .card:nth-child(5) { transition-delay: 0.22s; }
.services-grid .card:nth-child(6) { transition-delay: 0.34s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-line { width: 1px; height: 44px; background: linear-gradient(180deg, transparent, var(--blue), transparent); }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 560px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; }
}
@media (max-width: 720px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 90px 6vw; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }
  .cta-inner { padding: 64px 8vw; }
  .btn-huge { padding: 17px 26px; font-size: 15px; }
  .reels-grid { gap: 16px; }
  .reel-card h3 { font-size: 15px; }
  .faq-q { font-size: 15px; padding: 18px 20px; }
  .faq-a p { padding: 0 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial { padding: 30px 24px; }
}
@media (max-width: 400px) {
  .reels-grid { grid-template-columns: 1fr; max-width: 260px; }
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
