/* ============================================================
   STELLERDOOM PRODUCTIONS — STYLESHEET
   Aesthetics: Pixels & Pulse Inspired Dark Luxury Cinema
   Colors: Midnight Indigo Base + Crimson Red + Electric Violet + Cyan + Hot Pink + Amber
   ============================================================ */

:root {
  --bg-black: #05060E;
  --bg-deep: #0B0D1F;
  --surface: #12152E;
  --surface-hover: #181C3D;
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Cyber Color Palette */
  --red: #FF0A26;
  --red-glow: rgba(255, 10, 38, 0.6);
  --violet: #8B2FF8;
  --violet-bright: #B026FF;
  --violet-glow: rgba(176, 38, 255, 0.55);
  --cyan: #22E4FF;
  --cyan-glow: rgba(34, 228, 255, 0.55);
  --pink: #FF3D8A;
  --pink-glow: rgba(255, 61, 138, 0.55);
  --amber: #FFB534;
  --amber-glow: rgba(255, 181, 52, 0.55);
  --lavender: #C9A9FF;
  --white: #FFFFFF;
  --grey: #97A0C3;
  --grey-dark: #626A8B;

  /* Gradients */
  --grad-hot: linear-gradient(135deg, #8B2FF8 0%, #B026FF 45%, #FF3D8A 100%);
  --grad-red-violet: linear-gradient(135deg, #FF0A26 0%, #B026FF 50%, #22E4FF 100%);
  --grad-cyan-pink: linear-gradient(135deg, #22E4FF 0%, #B026FF 50%, #FF3D8A 100%);

  /* Typography */
  --font-display: 'Anton', 'Syne', sans-serif;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-tech: 'JetBrains Mono', monospace;

  --radius: 20px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-black);
  color: var(--white);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.65;
}

::selection {
  background: var(--violet);
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ------------------------------------------------------------
   FILM GRAIN & AMBIENT GLOW ORBS
   ------------------------------------------------------------ */
.grain {
  position: fixed;
  inset: -100px;
  z-index: 300;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.8s steps(4) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-30px, 20px);
  }

  50% {
    transform: translate(20px, -25px);
  }

  75% {
    transform: translate(-10px, -10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.decor--orb {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.decor--ring {
  border-radius: 50%;
  border: 1px solid rgba(34, 228, 255, 0.2);
  box-shadow: 0 0 50px rgba(34, 228, 255, 0.06) inset;
}

.decor--plus {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(151, 160, 195, 0.25);
  font-size: 20px;
  letter-spacing: 24px;
  line-height: 2.2;
  white-space: pre;
  user-select: none;
}

/* ------------------------------------------------------------
   CUSTOM CURSOR
   ------------------------------------------------------------ */
@media (hover: hover) and (pointer: fine) {

  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor input,
  body.has-cursor select {
    cursor: none;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 4000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(176, 38, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s, background 0.35s;
}

.cursor-ring__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0;
  color: var(--white);
  transition: opacity 0.25s;
}

.cursor-ring.is-action {
  width: 88px;
  height: 88px;
  border-color: var(--cyan);
  background: rgba(11, 13, 31, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(34, 228, 255, 0.4);
}

.cursor-ring.is-action .cursor-ring__label {
  opacity: 1;
}

.cursor-ring.is-link {
  width: 62px;
  height: 62px;
  border-color: var(--pink);
  background: rgba(255, 61, 138, 0.1);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--violet-bright), var(--pink), var(--cyan));
  box-shadow: 0 0 14px var(--violet-bright);
  z-index: 3000;
}

/* ------------------------------------------------------------
   3D OPENING LOGO LOADER
   ------------------------------------------------------------ */
.loader {
  position: fixed;
  inset: 0;
  background: #03040A;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader__stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  perspective: 1000px;
}

.loader__emblem-wrap {
  position: relative;
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transform-style: preserve-3d;
}

.loader__emblem {
  max-width: 170px;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 10, 38, 0.85)) drop-shadow(0 0 60px rgba(176, 38, 255, 0.6));
  animation: emblemFloat 3s ease-in-out infinite alternate;
}

@keyframes emblemFloat {
  0% {
    transform: translateY(0) scale(1) rotateY(-5deg);
  }

  100% {
    transform: translateY(-10px) scale(1.06) rotateY(5deg);
  }
}

.loader__shockwave {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1.5px solid var(--violet-bright);
  opacity: 0;
  animation: shockwaveExpand 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.loader__shockwave:nth-child(2) {
  border-color: var(--cyan);
  animation-delay: 0.75s;
}

@keyframes shockwaveExpand {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
    box-shadow: 0 0 20px var(--violet-bright);
  }

  100% {
    transform: scale(3.2);
    opacity: 0;
    box-shadow: 0 0 50px transparent;
  }
}

.loader__wordmark {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.loader__part-steller {
  background: linear-gradient(135deg, #FFFFFF 0%, #D1D5DB 50%, #9CA3AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.loader__part-doom {
  background: linear-gradient(135deg, #FF3D8A 0%, #FF0A26 50%, #B026FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 10, 38, 0.8);
}

.loader__productions {
  font-family: var(--font-tech);
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  letter-spacing: 0.6em;
  color: var(--grey);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.loader__tagline {
  font-family: var(--font-tech);
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  letter-spacing: 0.4em;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}

.loader__tagline span {
  opacity: 0;
  transform: translateY(10px);
  animation: tagReveal 0.6s var(--ease) forwards;
}

.loader__tagline span:nth-child(1) {
  animation-delay: 0.4s;
}

.loader__tagline span:nth-child(2) {
  animation-delay: 0.7s;
}

.loader__tagline span:nth-child(3) {
  animation-delay: 1.0s;
}

@keyframes tagReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader__progress-bar {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.loader__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--violet-bright), var(--cyan));
  box-shadow: 0 0 14px var(--cyan);
  transition: width 0.08s linear;
}

.loader__percent {
  margin-top: 12px;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--grey);
}

.loader__skip {
  position: absolute;
  bottom: 34px;
  border: 1px solid rgba(34, 228, 255, 0.3);
  background: rgba(34, 228, 255, 0.06);
  color: var(--cyan);
  padding: 8px 22px;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.loader__skip:hover {
  background: rgba(34, 228, 255, 0.2);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: 0 0 20px rgba(34, 228, 255, 0.4);
}

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4vw;
  z-index: 200;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(5, 6, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(139, 47, 248, 0.2);
  padding: 14px 4vw;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease), filter 0.3s;
}

.nav__brand:hover .nav__logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(255, 10, 38, 0.8));
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav__brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-silver {
  background: linear-gradient(135deg, #FFFFFF 0%, #D1D5DB 60%, #9CA3AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.brand-red {
  background: linear-gradient(135deg, #FF3D8A 0%, #FF0A26 55%, #B026FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 10, 38, 0.7));
}

.nav__brand-sub {
  font-family: var(--font-tech);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--grey);
  font-weight: 600;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--red), var(--violet-bright), var(--cyan));
  transition: width 0.3s var(--ease);
  box-shadow: 0 0 8px var(--violet-bright);
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__burger {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 14, 0.98);
  backdrop-filter: blur(25px);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

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

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.25s, transform 0.25s;
}

.mobile-menu a:hover {
  color: var(--cyan);
  transform: scale(1.05);
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--solid {
  background: var(--grad-hot);
  color: var(--white);
  box-shadow: 0 0 26px rgba(255, 61, 138, 0.35), 0 0 26px rgba(139, 47, 248, 0.3);
}

.btn--solid::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}

.btn--solid:hover::after {
  left: 130%;
}

.btn--solid:hover {
  box-shadow: 0 0 46px rgba(255, 61, 138, 0.6), 0 0 46px rgba(139, 47, 248, 0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid rgba(34, 228, 255, 0.45);
  color: var(--white);
  background: rgba(34, 228, 255, 0.05);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  background: rgba(34, 228, 255, 0.15);
  box-shadow: 0 0 26px rgba(34, 228, 255, 0.35);
  transform: translateY(-2px);
}

.btn--pill {
  padding: 10px 22px;
  font-size: 13.5px;
}

.btn__arrow {
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

/* ------------------------------------------------------------
   SECTION HEADERS & SPLIT-LINE ANIMATION
   ------------------------------------------------------------ */
.section {
  padding: 120px 24px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.section--wide {
  max-width: 1400px;
}

.section__head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent, var(--lavender));
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 34px;
  height: 1.5px;
  background: var(--accent, var(--lavender));
  box-shadow: 0 0 10px var(--accent, var(--lavender));
}

.section__head h2,
.contact__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h2 em,
h3 em {
  font-style: normal;
  color: var(--accent, var(--violet-bright));
  text-shadow: 0 0 30px var(--accent, rgba(176, 38, 255, 0.5));
}

/* Split-line word animation */
.splitline .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.splitline .wi {
  display: inline-block;
  will-change: transform;
  transform: translateY(110%);
  transition: transform 0.85s var(--ease);
}

.splitline.is-visible .wi {
  transform: translateY(0);
}

.hero__h1.reveal {
  opacity: 1 !important;
  visibility: visible;
  transform: none !important;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   HERO SECTION WITH PARALLAX 3D HUD SHAPES
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 4vw 90px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: contrast(1.15) saturate(1.2);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(5, 6, 14, 0.25) 0%, rgba(5, 6, 14, 0.92) 80%),
    linear-gradient(to bottom, rgba(5, 6, 14, 0.5) 0%, transparent 20%, transparent 80%, var(--bg-black) 100%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Floating 3D Geometric shapes */
.hero__shape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  color: var(--violet-bright);
  filter: drop-shadow(0 0 14px rgba(176, 38, 255, 0.4));
  transition: transform 0.15s linear;
}

.hero__shape--cyan {
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(34, 228, 255, 0.4));
}

.hero__shape--pink {
  color: var(--pink);
  filter: drop-shadow(0 0 14px rgba(255, 61, 138, 0.4));
}

.hero__shape--amber {
  color: var(--amber);
  filter: drop-shadow(0 0 14px rgba(255, 181, 52, 0.4));
}

/* HUD Corner Telemetry */
.hero__hud {
  position: absolute;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--grey);
  opacity: 0.65;
  z-index: 3;
}

.hero__hud--tl {
  top: 100px;
  left: 4vw;
}

.hero__hud--br {
  bottom: 32px;
  right: 4vw;
}

.hero__inner {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(176, 38, 255, 0.35);
  color: var(--lavender);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero__badge i {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
}

.hero__display {
  font-family: var(--font-display);
  font-size: clamp(48px, 9.5vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__line--1 {
  display: block;
  background: linear-gradient(90deg, #FFFFFF 0%, #D1D5DB 40%, #FFFFFF 70%, #9CA3AF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(255, 255, 255, 0.25);
  animation: shineLine 4s linear infinite;
}

.hero__line--2 {
  display: block;
  background: linear-gradient(135deg, #FF0A26 0%, #FF3D8A 30%, #B026FF 65%, #22E4FF 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(255, 61, 138, 0.55));
  animation: chromaticFlow 5s ease-in-out infinite alternate;
}

@keyframes shineLine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes chromaticFlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 30px rgba(255, 10, 38, 0.6));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 45px rgba(176, 38, 255, 0.7));
  }

  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 35px rgba(34, 228, 255, 0.6));
  }
}

.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.7vw, 30px);
  font-weight: 500;
  color: var(--grey);
  max-width: 860px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero__h1 strong.glow-text {
  color: #fff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.hero__h1 strong.glow-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--violet-bright), var(--cyan));
  box-shadow: 0 0 10px var(--violet-bright);
}

.hero__h1 .highlight-cyan {
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(34, 228, 255, 0.6);
  display: inline-block;
  animation: pulseScale 3s ease-in-out infinite;
}

@keyframes pulseScale {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero__ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__ctas.reveal {
  opacity: 1 !important;
  visibility: visible;
  transform: none !important;
}

.hero__ctas.reveal .btn {
  opacity: 1 !important;
  visibility: visible;
}

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(19, 22, 48, 0.7);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  font-size: 14.5px;
  color: var(--grey);
  margin-bottom: 30px;
}

.hero__proof b {
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  margin-right: 4px;
}

.hero__proof i {
  color: var(--pink);
  font-size: 8px;
  font-style: normal;
}

/* ECG Pulse Line */
.hero__pulse {
  width: 100%;
  max-width: 900px;
  height: 50px;
}

/* ------------------------------------------------------------
   CLIENTS MARQUEE
   ------------------------------------------------------------ */
.clients {
  padding: 40px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.clients__label {
  text-align: center;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeLoop 30s linear infinite;
}

@keyframes marqueeLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.client-badge:hover {
  border-color: var(--violet-bright);
  background: rgba(176, 38, 255, 0.08);
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.25);
}

.client-badge__pill {
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--cyan);
  background: rgba(34, 228, 255, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   SHOWREEL (PINNED SCALE + INTERACTIVE PLAYER)
   ------------------------------------------------------------ */
.showreel {
  position: relative;
  padding: 90px 4vw;
  background: var(--bg-black);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showreel__kicker {
  font-family: var(--font-tech);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}

.showreel__frame {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(176, 38, 255, 0.4);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(176, 38, 255, 0.2);
  background: #000;
  cursor: pointer;
}

.showreel__video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.showreel__video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
  pointer-events: none;
}

.showreel__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.showreel__mute-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 13, 31, 0.85);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(10px);
}

.showreel__mute-toggle:hover {
  background: var(--grad-hot);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255, 61, 138, 0.5);
  transform: scale(1.04);
}

.showreel__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.showreel__frame:hover .showreel__poster {
  transform: scale(1.03);
}

.showreel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 14, 0.3) 0%, rgba(5, 6, 14, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  transition: opacity 0.3s var(--ease);
}

.showreel__play-center {
  align-self: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--grad-hot);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 0 35px rgba(255, 61, 138, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.showreel__frame:hover .showreel__play-center {
  transform: scale(1.12);
  box-shadow: 0 0 60px rgba(255, 61, 138, 0.95);
}

.showreel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showreel__title-box h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
}

.showreel__title-box p {
  color: var(--grey);
  font-size: 0.95rem;
}

@keyframes showreelTextReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showreel__title-box.showreel-text-reveal h3,
.showreel__title-box.showreel-text-reveal p {
  animation: showreelTextReveal 0.75s var(--ease) both;
}

.showreel__title-box.showreel-text-reveal p {
  animation-delay: 0.12s;
}

/* Big Marquee Scrub */
.bigmarquee {
  overflow: hidden;
  padding: 30px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  user-select: none;
}

.bigmarquee__track {
  display: flex;
  white-space: nowrap;
  gap: 30px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  text-transform: uppercase;
  color: rgba(151, 160, 195, 0.15);
  animation: bigMarqueeScroll 25s linear infinite;
}

@keyframes bigMarqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.bigmarquee__track span.bm-a {
  color: var(--violet-bright);
  opacity: 0.4;
}

.bigmarquee__track span.bm-b {
  color: var(--pink);
  opacity: 0.4;
}

.bigmarquee__track span.bm-c {
  color: var(--cyan);
  opacity: 0.4;
}

/* ------------------------------------------------------------
   WORK / SHOWCASE GRID
   ------------------------------------------------------------ */
.work-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.work-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--grey);
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.work-tab:hover,
.work-tab.active {
  background: var(--grad-hot);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.work-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 38, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(176, 38, 255, 0.2);
}

.work-card--span-8 {
  grid-column: span 8;
}

.work-card--span-4 {
  grid-column: span 4;
}

.work-card--span-6 {
  grid-column: span 6;
}

.work-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-card:hover .work-card__img {
  transform: scale(1.06);
}

.work-card__hover-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 1;
}

.work-card.is-hover-playing .work-card__hover-player {
  opacity: 1;
}

.work-card.is-hover-playing .work-card__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.work-card__hover-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.work-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-hot);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(255, 61, 138, 0.8);
  transition: transform 0.3s var(--ease);
}

.work-card:hover .work-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.work-card__badge-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 6, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: var(--cyan);
  font-family: var(--font-tech);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.work-card__meta {
  padding: 24px 28px;
}

.work-card__meta h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.work-card__meta p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.5;
}

/* Vertical Shorts Grid */
.shorts-wrap {
  margin-top: 70px;
  border-top: 1px solid var(--border-glass);
  padding-top: 60px;
}

.shorts-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.hero__proof.reveal {
  opacity: 1 !important;
  visibility: visible;
  transform: none !important;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.short-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.short-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--pink);
  box-shadow: 0 16px 36px rgba(255, 61, 138, 0.35);
}

.short-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.short-card:hover .short-card__thumb {
  transform: scale(1.08);
}

.short-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 6, 14, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.short-card__tag {
  align-self: flex-start;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-tech);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.short-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ------------------------------------------------------------
   NUMBERS / PROOF SECTION
   ------------------------------------------------------------ */
.numbers {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.numbers__item {
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-glass);
  text-align: center;
  transition: all 0.3s;
}

.numbers__item:hover {
  transform: translateY(-6px);
  border-color: var(--violet-bright);
}

.numbers__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 68px);
  line-height: 1;
  margin-bottom: 12px;
  color: var(--violet-bright);
}

.numbers__item--cyan .numbers__value {
  color: var(--cyan);
}

.numbers__item--pink .numbers__value {
  color: var(--pink);
}

.numbers__item--amber .numbers__value {
  color: var(--amber);
}

.numbers__label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.numbers__punch {
  text-align: center;
  font-size: 1.15rem;
  color: var(--grey);
  margin-top: 48px;
}

/* ------------------------------------------------------------
   SERVICES SECTION (MATCHING SCREENSHOT 1)
   ------------------------------------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  border: 1.5px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.service-card__num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-head);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(176, 38, 255, 0.4);
  user-select: none;
  pointer-events: none;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(176, 38, 255, 0.08);
  border: 1.5px solid var(--violet-bright);
  color: var(--violet-bright);
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.35);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-card__price {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--violet-bright);
  color: var(--lavender);
  background: rgba(176, 38, 255, 0.1);
  box-shadow: 0 0 15px rgba(176, 38, 255, 0.2);
}

/* 02 Cyan Variation */
.service-card--cyan {
  border-color: rgba(34, 228, 255, 0.15);
}

.service-card--cyan .service-card__num {
  -webkit-text-stroke: 1.5px rgba(34, 228, 255, 0.4);
}

.service-card--cyan .service-card__icon {
  background: rgba(34, 228, 255, 0.08);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 228, 255, 0.35);
}

.service-card--cyan .service-card__price {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34, 228, 255, 0.1);
  box-shadow: 0 0 15px rgba(34, 228, 255, 0.2);
}

/* 03 Pink Variation */
.service-card--pink {
  border-color: rgba(255, 61, 138, 0.15);
}

.service-card--pink .service-card__num {
  -webkit-text-stroke: 1.5px rgba(255, 61, 138, 0.4);
}

.service-card--pink .service-card__icon {
  background: rgba(255, 61, 138, 0.08);
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 61, 138, 0.35);
}

.service-card--pink .service-card__price {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 61, 138, 0.1);
  box-shadow: 0 0 15px rgba(255, 61, 138, 0.2);
}

/* 04 Amber Variation */
.service-card--amber {
  border-color: rgba(255, 181, 52, 0.15);
}

.service-card--amber .service-card__num {
  -webkit-text-stroke: 1.5px rgba(255, 181, 52, 0.4);
}

.service-card--amber .service-card__icon {
  background: rgba(255, 181, 52, 0.08);
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 20px rgba(255, 181, 52, 0.35);
}

.service-card--amber .service-card__price {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(255, 181, 52, 0.1);
  box-shadow: 0 0 15px rgba(255, 181, 52, 0.2);
}

/* Agency Strip */
.whitelabel {
  margin-top: 56px;
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139, 47, 248, 0.15) 0%, var(--surface) 60%);
  border: 1.5px solid rgba(176, 38, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.whitelabel__text h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.whitelabel__text p {
  color: var(--grey);
  font-size: 1rem;
}

/* ------------------------------------------------------------
   PACKAGES SECTION (MATCHING SCREENSHOT 2)
   ------------------------------------------------------------ */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 44px 34px 38px;
  border: 1.5px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.package:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 228, 255, 0.4);
}

.package h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.package__price {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.package__desc {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 28px;
}

.package ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.package li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--grey);
}

.package li::before {
  content: '⚡';
  color: var(--amber);
  font-size: 14px;
}

/* Growth / Most Picked Card */
.package--featured {
  border-color: var(--violet-bright);
  box-shadow: 0 0 45px rgba(176, 38, 255, 0.25);
  background: linear-gradient(180deg, rgba(176, 38, 255, 0.08) 0%, var(--surface) 100%);
  transform: scale(1.03);
}

.package--featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 0 60px rgba(176, 38, 255, 0.45);
}

.package__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-hot);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 61, 138, 0.7);
  white-space: nowrap;
}

/* ------------------------------------------------------------
   PROCESS SECTION
   ------------------------------------------------------------ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process__step {
  padding: 38px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-glass);
  position: relative;
  transition: all 0.3s;
}

.process__step:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
}

.process__num {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.process__step h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process__step p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.process__time {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 11px;
  color: var(--lavender);
  background: rgba(176, 38, 255, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ------------------------------------------------------------
   PROJECT INQUIRY FORM (START A PROJECT)
   ------------------------------------------------------------ */
.inquiry-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  border: 1.5px solid rgba(176, 38, 255, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(176, 38, 255, 0.15);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(5, 6, 14, 0.65);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.25s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 228, 255, 0.3);
  background: rgba(11, 13, 31, 0.95);
}

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

.budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.budget-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--grey);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-head);
  font-weight: 600;
}

.budget-btn:hover,
.budget-btn.active {
  background: rgba(176, 38, 255, 0.15);
  border-color: var(--violet-bright);
  color: #fff;
  box-shadow: 0 0 16px rgba(176, 38, 255, 0.35);
}

.form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn--whatsapp {
  background: #25D366;
  color: #000;
  font-weight: 700;
}

.btn--whatsapp:hover {
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 13, 31, 0.88);
  border: 1.5px solid rgba(37, 211, 102, 0.6);
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 35px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
}

/* ------------------------------------------------------------
   LIGHTBOX VIDEO MODAL
   ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 10, 0.94);
  backdrop-filter: blur(24px);
}

.lightbox__panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(176, 38, 255, 0.5);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(176, 38, 255, 0.35);
}

.lightbox__panel--vertical {
  max-width: 440px;
}

.lightbox__video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.lightbox__panel--vertical .lightbox__video-box {
  aspect-ratio: 9 / 16;
}

.lightbox__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.lightbox__close:hover {
  color: var(--pink);
  transform: rotate(90deg);
}

.lightbox__footer {
  padding: 18px 24px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: #03040A;
  border-top: 1px solid var(--border-glass);
  padding: 80px 4vw 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto 64px;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: var(--grey);
  font-size: 14.5px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  color: var(--grey-dark);
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .packages__grid {
    grid-template-columns: 1fr;
  }

  .package--featured {
    transform: none;
  }

  .package--featured:hover {
    transform: translateY(-8px);
  }

  .work-card--span-8,
  .work-card--span-4,
  .work-card--span-6 {
    grid-column: span 12;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp span.status-txt {
    display: none;
  }
}