:root {
  --black: #000000;
  --white: #ffffff;
  --neon-green: #afff00;
  --acid-pink: #ff00ff;
  --electric-blue: #0066ff;
  --chrome: #c8d4e8;
  --pink: #ff2d78;
  --pink2: #ff69b4;
  --blue: #0066ff;
  --purple: #8800ff;
  --gold: #ffd060;
  --dim: rgba(255, 255, 255, 0.55);
  --glass: rgba(0, 0, 0, 0.6);
  --border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .8s cubic-bezier(0.8, 0, 0.2, 1), transform .8s cubic-bezier(0.8, 0, 0.2, 1);
}

#loader.loaded {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5vh);
}

.loader-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white);
  animation: neonFlicker 3s infinite;
}

.loader-text .dot {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.loader-bar-bg {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--pink);
  box-shadow: 0 0 15px var(--pink);
  animation: loadScan 1s ease-in-out infinite alternate;
}

@keyframes loadScan {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(150%);
  }
}

/* Pause animations until loaded */
body:not(.ready) .hero *,
body:not(.ready) .hero-eyebrow,
body:not(.ready) .hero-h1,
body:not(.ready) .hero-sub,
body:not(.ready) .hero-btns,
body:not(.ready) .hero-stats,
body:not(.ready) .hero-badge {
  animation: none !important;
}

/* ── NOISE + SCANLINES ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 800;
  opacity: .7;
  animation: grainShift .3s steps(3) infinite;
  animation-play-state: var(--grain-state, running);
}

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

  25% {
    transform: translate(-2%, -3%);
  }

  50% {
    transform: translate(3%, 1%);
  }

  75% {
    transform: translate(-1%, 2%);
  }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .06) 2px, rgba(0, 0, 0, .06) 4px);
  pointer-events: none;
  z-index: 799;
}

/* ── GRID + STREET ART BG ── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(175, 255, 0, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 255, 0, .03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.street-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('street_art_overlay.png');
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
  background: var(--glass);
  transition: all .4s;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .dot {
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--dim);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  transition: all .3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--neon-green);
}

.nav-cta {
  background: var(--neon-green) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  font-weight: 700 !important;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.nav-cta:hover {
  background: var(--white) !important;
  transform: scale(1.05);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .bar {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.mobile-menu.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.32s; }

.mobile-nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s, transform 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  color: var(--neon-green);
  transform: scale(1.05);
}

.mobile-nav-links .nav-cta {
  background: var(--neon-green) !important;
  color: var(--black) !important;
  padding: 12px 32px;
  margin-top: 16px;
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  z-index: 1;
  overflow: hidden;
}

/* animated gradient blob bg */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
  animation: blobMove 12s ease-in-out infinite alternate;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: var(--pink);
  top: -100px;
  right: -150px;
  animation-delay: 0s;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  bottom: -50px;
  left: -100px;
  animation-delay: -4s;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes blobMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(.95);
  }

  100% {
    transform: translate(10px, 10px) scale(1.02);
  }
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--pink);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s .2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--pink);
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeUp .8s .35s forwards;
  z-index: 2;
}

.hero-h1 .line-outline {
  -webkit-text-stroke: 1px var(--dim);
  color: transparent;
  display: block;
}

.hero-h1 .line-chrome {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, #afff00 40%, #0066ff 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(175, 255, 0, 0.3));
}

.hero-h1 .line-chrome::before,
.hero-h1 .line-chrome::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-h1 .line-chrome::before {
  background-image:
    radial-gradient(circle at 2% 40%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 31% 88%, #fff 2px, transparent 3px),
    radial-gradient(circle at 38% 12%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 74% 82%, #fff 1px, transparent 2px),
    radial-gradient(circle at 98% 18%, #fff 2px, transparent 3px);
  background-size: auto;
  background-repeat: no-repeat;
  animation: paillette 1.2s infinite alternate;
}

.hero-h1 .line-chrome::after {
  background-image:
    radial-gradient(circle at 15% 18%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 29% 22%, #fff 2px, transparent 3px),
    radial-gradient(circle at 57% 85%, #fff 1px, transparent 2px),
    radial-gradient(circle at 85% 50%, #fff 1.5px, transparent 2px),
    radial-gradient(circle at 99% 88%, #fff 2px, transparent 3px);
  background-size: auto;
  background-repeat: no-repeat;
  animation: paillette 1.5s infinite alternate-reverse;
}

@keyframes paillette {
  0% {
    opacity: 0;
    filter: brightness(0.5);
  }

  100% {
    opacity: 1;
    filter: brightness(2) drop-shadow(0 0 5px #fff);
  }
}

.hero-h1 .line-pink {
  color: var(--acid-pink);
  display: block;
  font-size: clamp(50px, 7.5vw, 110px);
  white-space: nowrap;
  text-shadow: 0 0 10px var(--acid-pink), 0 0 20px var(--acid-pink), 0 0 40px var(--acid-pink);
  animation: neonFlicker 3s infinite;
}

@keyframes neonFlicker {

  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    text-shadow: 0 0 10px var(--acid-pink), 0 0 20px var(--acid-pink), 0 0 40px var(--acid-pink);
    opacity: 1;
  }

  20%,
  24%,
  55% {
    text-shadow: none;
    opacity: 0.5;
  }
}

.hero-sub {
  margin-top: 32px;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 235, .5);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp .8s .65s forwards;
}

.btn-main {
  background: var(--neon-green);
  color: var(--black);
  padding: 16px 40px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.btn-main:hover {
  background: var(--white);
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--neon-green);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--white);
  padding: 16px 40px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: scale(1.05);
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

.stat-n {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.stat-n em {
  color: var(--neon-green);
  font-style: normal;
}

.stat-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}

/* floating diamond badge */
.hero-badge {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1.2s .6s forwards;
}

.badge-diamond {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(175, 255, 0, 0.1) 50%, transparent 100%);
  border: 1px solid var(--neon-green);
  transform: rotate(45deg);
  position: relative;
  animation: diamondFloat 5s ease-in-out infinite, diamondGlow 3s ease-in-out infinite alternate;
  backdrop-filter: blur(4px);
}

.badge-diamond::before {
  content: '';
  position: absolute;
  inset: 20%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .7) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes diamondFloat {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(-14px);
  }
}

@keyframes diamondGlow {
  0% {
    box-shadow: 0 0 30px rgba(77, 159, 255, .2), inset 0 0 20px rgba(255, 255, 255, .05);
  }

  100% {
    box-shadow: 0 0 60px rgba(255, 45, 120, .25), inset 0 0 30px rgba(255, 255, 255, .1);
  }
}

.badge-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, .3);
  text-align: center;
  margin-top: 12px;
}

/* floating tags */
.ftag {
  position: absolute;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, .45);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 2, 4, .5);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: floatY 4s ease-in-out infinite;
}

.ftag:nth-child(1) {
  top: 22%;
  right: 28%;
  animation-delay: 0s;
}

.ftag:nth-child(2) {
  top: 38%;
  right: 22%;
  animation-delay: 1.4s;
}

.ftag:nth-child(3) {
  top: 55%;
  right: 30%;
  animation-delay: 2.8s;
}

@keyframes floatY {

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

  50% {
    transform: translateY(-9px);
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 15px 0;
  background: var(--glass);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--dim);
}

.mitem {
  display: flex;
  align-items: center;
  gap: 64px;
  color: var(--white);
}

.mdot {
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--neon-green);
}

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

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

/* ── SECTION BASE ── */
.section {
  padding: 120px 48px;
  position: relative;
  z-index: 1;
}

.sec-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -1px;
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.sec-desc {
  max-width: 340px;
  font-size: 13px;
  color: rgba(245, 240, 235, .42);
  line-height: 1.8;
  font-weight: 300;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, .05);
}

.svc-card {
  background: var(--black);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .4s;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 120, .07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card:hover {
  background: rgba(255, 45, 120, .025);
}

/* big card — full width */
.svc-card.big {
  grid-column: 1/-1;
}

.svc-card.big .svc-name {
  font-size: 80px;
}

.svc-card.big .svc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--neon-green);
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: .8;
}

.svc-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--neon-green));
}

.svc-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--white);
}

.svc-text {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
  font-weight: 300;
  max-width: 360px;
}

.svc-arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dim);
  transition: all .3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.svc-card:hover .svc-arrow {
  border-color: var(--neon-green);
  color: var(--black);
  background: var(--neon-green);
  transform: rotate(45deg);
}

/* COMING SOON badge */
.coming-soon-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}

/* ── PROCESS ── */
.process-section {
  background: rgba(255, 255, 255, .012);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 120, .2), transparent);
  pointer-events: none;
}

.step {
  padding: 60px 36px;
  border-right: 1px solid rgba(255, 255, 255, .05);
  position: relative;
}

.step:last-child {
  border-right: none;
}

.step-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: rgba(255, 45, 120, .06);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-text {
  font-size: 13px;
  color: rgba(245, 240, 235, .4);
  line-height: 1.8;
  font-weight: 300;
}

.step-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  border: 2px solid var(--black);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, .25);
}

/* ── GALLERY ── */
.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #090909;
}

.gal-item:first-child {
  grid-row: 1/3;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, transparent 55%);
  transition: background .4s;
}

.gal-item:hover .gal-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .3) 80%);
}

.gal-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gal-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
}

.gal-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  opacity: .08;
  transition: transform .5s, opacity .5s;
  filter: grayscale(1);
}

.gal-item:hover .gal-bg {
  transform: scale(1.06);
  opacity: .15;
}

.gal-item:nth-child(1) {
  background: linear-gradient(135deg, #050510, #0a1020);
}

.gal-item:nth-child(2) {
  background: linear-gradient(135deg, #100508, #0d0510);
}

.gal-item:nth-child(3) {
  background: linear-gradient(135deg, #050a10, #0a0d10);
}

.gal-item:nth-child(4) {
  background: linear-gradient(135deg, #100510, #0d0508);
}

.gal-item:nth-child(5) {
  background: linear-gradient(135deg, #05100a, #080d05);
}

/* glitch overlay on hover */
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 45, 120, .03) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
  animation: glitch 8s infinite;
}

.gal-item:hover::after {
  opacity: 1;
}

@keyframes glitch {

  0%,
  95%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }

  96% {
    transform: translateX(-4px);
    opacity: .6;
  }

  97% {
    transform: translateX(4px);
    opacity: .6;
  }

  98% {
    transform: translateX(0);
    opacity: 0;
  }
}

/* ── TESTIMONIAL ── */
.testi-section {
  text-align: center;
  padding: 120px 48px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.testi-section::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px;
  color: rgba(255, 45, 120, .04);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testi-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: 2px;
  max-width: 860px;
  margin: 0 auto 48px;
}

.testi-quote .hl {
  background: linear-gradient(90deg, var(--pink), var(--pink2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testi-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
}

.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--neon-green);
  background: radial-gradient(circle at 35% 35%, var(--neon-green), var(--electric-blue));
}

.stars {
  color: var(--neon-green);
  letter-spacing: 2px;
  font-size: 11px;
  text-shadow: 0 0 5px var(--neon-green);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-card {
  border: 1px solid var(--border);
  padding: 48px 36px;
  position: relative;
  transition: all .3s;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.p-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(175, 255, 0, 0.1);
}

.p-card.feat {
  border-color: var(--neon-green);
  background: rgba(175, 255, 0, 0.05);
}

.p-badge {
  position: absolute;
  top: -1px;
  left: 36px;
  background: var(--neon-green);
  color: var(--black);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
}

.p-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.p-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}

.p-price span {
  font-size: 20px;
  color: var(--dim);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
}

.p-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  margin-bottom: 36px;
}

.p-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.p-feats li {
  font-size: 13px;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}

.p-feats li::before {
  content: '//';
  color: var(--neon-green);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.btn-p {
  width: 100%;
  padding: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all .3s;
  font-family: 'JetBrains Mono', sans-serif;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-p:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.p-card.feat .btn-p {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--black);
}

.p-card.feat .btn-p:hover {
  background: var(--white);
}

/* coming soon card */
.p-card.coming {
  opacity: .55;
  pointer-events: none;
  border-color: rgba(255, 208, 96, .2);
  background: rgba(255, 208, 96, .01);
}

.p-card.coming .p-name {
  color: var(--gold);
}

/* ── CONTACT ── */
.contact-section {
  background: rgba(255, 255, 255, .012);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-big {
  font-family: 'Syne', sans-serif;
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.ci-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(245, 240, 235, .3);
  text-transform: uppercase;
}

.ci-val {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  margin-top: 2px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 80px;
}

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

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fl {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(245, 240, 235, .3);
  text-transform: uppercase;
}

.fi,
.ft {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'JetBrains Mono', sans-serif;
  outline: none;
  transition: all .3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.fi:focus,
.ft:focus {
  border-color: var(--neon-green);
  background: rgba(175, 255, 0, 0.02);
}

.ft {
  resize: none;
  height: 110px;
}

.btn-send {
  background: var(--white);
  color: var(--black);
  padding: 16px 44px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  align-self: flex-start;
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.btn-send:hover {
  background: var(--pink);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-send::after {
  content: '↗';
  font-size: 16px;
}

/* ── FOOTER ── */
footer {
  padding: 56px 48px 36px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  z-index: 1;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
}

.ft-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 6px;
  color: rgba(245, 240, 235, .12);
}

.ft-logo em {
  color: rgba(255, 45, 120, .25);
  font-style: normal;
}

.ft-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.ft-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, .3);
  text-decoration: none;
  transition: color .3s;
}

.ft-links a:hover {
  color: var(--white);
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(245, 240, 235, .18);
  letter-spacing: 2px;
}

/* ── REVEAL SYSTEM ── */
.reveal-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-item.on {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger reveals */
.hero-h1 span:nth-child(1) {
  transition-delay: 0.1s;
}

.hero-h1 span:nth-child(2) {
  transition-delay: 0.2s;
}

.hero-h1 span:nth-child(3) {
  transition-delay: 0.3s;
}

.hero-h1 span:nth-child(4) {
  transition-delay: 0.4s;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 45, 120, .3);
}

/* ── RESPONSIVE & MOBILE ADAPTATIONS ── */
@media (hover: none) {

  /* Active states for tactile feedback */
  .btn-main:active,
  .btn-ghost:active,
  .btn-send:active,
  .btn-p:active {
    transform: scale(0.95);
  }

  .svc-card:active,
  .p-card:active:not(.coming),
  .gal-item:active {
    transform: scale(0.98);
    background: rgba(255, 45, 120, .05);
  }
}

@media(max-width:900px) {
  .marquee-track {
    animation-duration: 10s;
  }

  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 20px 60px;
    overflow-x: hidden;
    width: 100%;
  }

  .hero-h1 {
    font-size: clamp(28px, 9vw, 65px);
    line-height: 0.9;
    letter-spacing: -1px;
  }

  .hero-h1 .line-pink {
    font-size: clamp(14px, 6vw, 55px);
    white-space: nowrap;
    letter-spacing: -2px;
  }

  .hero-sub {
    font-size: 14px;
    margin-top: 24px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 36px;
  }

  .btn-main,
  .btn-ghost {
    text-align: center;
    padding: 14px 20px;
  }

  .hero-badge,
  .ftag {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px;
  }

  .stat-n {
    font-size: 28px;
  }

  .stat-l {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .section {
    padding: 60px 20px;
    overflow-x: hidden;
  }

  .sec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .sec-title {
    font-size: clamp(32px, 10vw, 60px);
    word-break: break-word;
    letter-spacing: -1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    background: transparent;
  }

  .svc-card {
    padding: 36px 24px;
    border: 1px solid rgba(255, 255, 255, .05);
  }

  .svc-card.big .svc-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-card.big .svc-name {
    font-size: 40px;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 40px 20px;
  }

  .step:last-child {
    border-bottom: none;
  }

  .step-dot {
    display: none;
  }

  .step-n {
    font-size: 60px;
  }

  /* Swipeable Horizontal Scroll for Mobile */
  .gal-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gal-grid::-webkit-scrollbar {
    display: none;
  }

  .gal-item {
    flex: 0 0 85%;
    height: 320px;
    scroll-snap-align: center;
  }

  .gal-item:first-child {
    flex: 0 0 85%;
  }

  .testi-quote {
    font-size: clamp(22px, 6vw, 32px);
  }

  .testi-google-header {
    flex-direction: column;
    gap: 12px;
  }

  .testi-google-score {
    font-size: 22px;
  }

  .testi-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .testi-section {
    padding: 60px 20px;
  }

  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .p-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .p-price {
    font-size: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    overflow-x: hidden;
  }

  .contact-big {
    font-size: clamp(32px, 11vw, 60px);
    word-break: break-word;
    letter-spacing: -1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-send {
    width: 100%;
    justify-content: center;
  }

  footer {
    padding: 60px 20px 40px;
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  }

  .ft-top {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .ft-links {
    flex-direction: column;
    gap: 16px;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════
   IMPROVEMENTS — UX & ANIMATIONS
   ═══════════════════════════════════════════ */

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
  display: none;
}

body.has-cursor .cursor-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px var(--neon-green), 0 0 20px rgba(175, 255, 0, .3);
}

body.has-cursor .cursor-ring {
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(175, 255, 0, .4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: width .2s ease-out, height .2s ease-out, border-color .2s, background .2s, margin .2s ease-out;
}

body.has-cursor .cursor-ring.hover {
  width: 50px;
  height: 50px;
  margin-left: -7px;
  margin-top: -7px;
  border-color: var(--neon-green);
  background: rgba(175, 255, 0, .06);
}

body.has-cursor * {
  cursor: none !important;
}

/* ── SECTION DIVIDERS ── */
.section-divider {
  height: 1px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  box-shadow: 0 0 15px var(--neon-green), 0 0 30px rgba(175, 255, 0, .2);
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), left 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-divider.on::after {
  width: 100%;
  left: 0;
}

/* ── CTA PULSE ── */
.btn-pulse {
  animation: ctaPulse 2.5s ease-in-out infinite !important;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(175, 255, 0, .5);
  }

  50% {
    box-shadow: 0 0 25px 8px rgba(175, 255, 0, .15);
  }
}

/* ── STEP HOVER EFFECTS ── */
.step-n,
.step-title,
.step-dot {
  transition: all .3s;
}

.step:hover {
  background: rgba(175, 255, 0, .02);
  transition: background .3s;
}

.step:hover .step-n {
  color: rgba(175, 255, 0, .15);
}

.step:hover .step-title {
  color: var(--neon-green);
}

.step:hover .step-dot {
  box-shadow: 0 0 0 3px rgba(175, 255, 0, .3), 0 0 20px rgba(175, 255, 0, .4);
  background: var(--neon-green);
}

/* ── MARQUEE HOVER PAUSE ── */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* ── CRT SCAN ON PRICING CARDS ── */
.p-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 200%;
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 45%,
      rgba(175, 255, 0, .03) 48%,
      rgba(175, 255, 0, .08) 50%,
      rgba(175, 255, 0, .03) 52%,
      transparent 55%,
      transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}

.p-card:hover::after {
  opacity: 1;
  animation: crtScan 2s linear infinite;
}

.p-card.coming::after {
  display: none;
}

@keyframes crtScan {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(50%);
  }
}

/* ── STAGGER REVEALS ── */
.services-grid .svc-card:nth-child(2) {
  transition-delay: .15s;
}

.services-grid .svc-card:nth-child(3) {
  transition-delay: .3s;
}

.steps-grid .step:nth-child(2) {
  transition-delay: .15s;
}

.steps-grid .step:nth-child(3) {
  transition-delay: .3s;
}

.steps-grid .step:nth-child(4) {
  transition-delay: .45s;
}

.pricing-grid .p-card:nth-child(2) {
  transition-delay: .15s;
}

.pricing-grid .p-card:nth-child(3) {
  transition-delay: .3s;
}

/* ── GOOGLE REVIEWS HEADER ── */
.testi-google-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.testi-google-logo {
  opacity: .7;
  flex-shrink: 0;
}

.testi-google-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-google-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.testi-google-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--dim);
}

.testi-google-link {
  display: block;
  text-align: center;
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s;
}

.testi-google-link:hover {
  color: var(--neon-green);
}

/* ── TESTIMONIAL META (restructured) ── */
.testi-meta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
}

.testi-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .3);
}

.testi-av-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--neon-green);
  object-fit: cover;
}

/* ── TESTIMONIAL CAROUSEL ── */
.testi-carousel {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.testi-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity .6s ease, transform .6s ease;
  transform: translateY(20px);
  pointer-events: none;
}

.testi-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.testi-dot:hover {
  border-color: var(--neon-green);
}

.testi-dot.active {
  background: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

/* ── GALLERY DOTS ── */
.gal-dots {
  display: none;
}

/* ── CONTACT LINKS ── */
.ci-link {
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.ci-link:hover {
  color: var(--neon-green);
}

/* ── FORM SUCCESS ── */
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--neon-green);
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
  pointer-events: none;
  margin-top: 8px;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.form-success-icon {
  text-shadow: 0 0 10px var(--neon-green);
}

/* ── btn-p AS ANCHOR ── */
a.btn-p {
  text-decoration: none;
  display: block;
  text-align: center;
}

/* ── CONTRAST IMPROVEMENTS ── */
.ci-label,
.fl {
  color: rgba(245, 240, 235, .5);
}

.sec-desc {
  color: rgba(245, 240, 235, .55);
}

.step-text,
.svc-text {
  color: rgba(255, 255, 255, .55);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .01);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: all .3s;
  letter-spacing: 0.5px;
}

.faq-q:hover {
  background: rgba(175, 255, 0, .02);
  color: var(--neon-green);
}

.faq-icon {
  font-size: 20px;
  color: var(--neon-green);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 20px;
  font-family: 'JetBrains Mono', monospace;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.2, 0.8, 0.2, 1), padding .4s;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-a p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  font-weight: 300;
  border-left: 2px solid var(--neon-green);
  padding-left: 16px;
}

/* ── FOOTER WIDGETS ── */
.ft-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  margin-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.ft-widget-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}

.ft-wt-accent {
  color: var(--neon-green);
}

.ft-widget-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Instagram grid */
.ft-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 14px;
}

.ft-insta-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  filter: grayscale(30%);
}

.ft-insta-item span {
  position: relative;
  z-index: 2;
}

.ft-insta-item:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.ft-insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  transition: opacity .3s;
}

.ft-insta-item:hover::after {
  opacity: 0;
}

.ft-insta-follow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--dim);
  text-decoration: none;
  transition: color .3s;
}

.ft-insta-follow:hover {
  color: var(--neon-green);
}

.ft-insta-at {
  color: var(--neon-green);
}

/* Newsletter */
.ft-newsletter {
  display: flex;
}

.ft-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 12px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  outline: none;
  transition: border-color .3s;
}

.ft-newsletter-input:focus {
  border-color: var(--neon-green);
}

.ft-newsletter-btn {
  background: var(--neon-green);
  border: 1px solid var(--neon-green);
  color: var(--black);
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all .3s;
}

.ft-newsletter-btn:hover {
  background: var(--white);
  border-color: var(--white);
}

.ft-newsletter-success {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 2px;
  margin-top: 10px;
  opacity: 0;
  transition: opacity .4s;
}

.ft-newsletter-success.show {
  opacity: 1;
}

/* Trust badges */
.ft-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.ft-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
}

.ft-trust-icon {
  color: var(--neon-green);
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 0 8px var(--neon-green);
}

.ft-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ft-pay-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
}

/* ── PARALLAX BACKGROUND TEXT ── */
.parallax-bg-text {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: 'Syne', sans-serif;
  font-size: clamp(100px, 18vw, 250px);
  font-weight: 800;
  color: var(--white);
  opacity: .018;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  user-select: none;
  will-change: transform;
  letter-spacing: -4px;
}

/* ── CRT SCAN SWEEP ── */
.scan-sweep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green), 0 0 40px rgba(175, 255, 0, .2);
  z-index: 10;
  pointer-events: none;
  animation: scanSweep .8s linear forwards;
  opacity: .4;
}

@keyframes scanSweep {
  from {
    top: 0;
    opacity: .4;
  }

  to {
    top: 100%;
    opacity: 0;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {

  .parallax-bg-text,
  .scan-sweep {
    display: none !important;
  }

  body::before {
    animation: none !important;
  }

  .btn-pulse {
    animation: none !important;
  }
}

/* ── SOCIAL PROOF TOAST ── */
.social-proof {
  position: fixed;
  bottom: 90px;
  left: 24px;
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 400;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: 0.5px;
  transform: translateY(20px);
  opacity: 0;
  transition: all .5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  max-width: 380px;
}

.social-proof.show {
  opacity: 1;
  transform: translateY(0);
}

.social-proof strong {
  color: var(--white);
  font-weight: 700;
}

.social-proof em {
  color: var(--neon-green);
  font-style: normal;
}

.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  flex-shrink: 0;
  animation: spPulse 1.5s ease-in-out infinite;
}

@keyframes spPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 400;
  transition: all .3s;
  opacity: 0;
  transform: scale(0);
}

.wa-float.visible {
  opacity: 1;
  transform: scale(1);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, .4);
}

.wa-float-icon {
  font-size: 24px;
  position: relative;
  z-index: 2;
}

.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .3);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  gap: 10px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-wa {
  flex: 1;
  padding: 14px;
  border: 1px solid rgba(37, 211, 102, .3);
  color: #25d366;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
}

.mobile-cta-wa:active {
  background: rgba(37, 211, 102, .15);
  transform: scale(0.95);
}

.mobile-cta-btn {
  flex: 2;
  padding: 14px;
  background: var(--neon-green);
  color: var(--black);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: all .3s;
}

.mobile-cta-btn:active {
  background: var(--white);
  transform: scale(0.95);
}

/* ── MOBILE SOCIAL MENU ── */
.mobile-social {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.38s, transform 0.3s ease 0.38s;
}

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

.mobile-social a {
  color: var(--dim);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .3s;
}

.mobile-social a::before {
  content: '→ ';
  color: var(--neon-green);
}

.mobile-social a:active {
  color: var(--neon-green);
}

/* ── RESPONSIVE — NEW ELEMENTS ── */
@media (max-width: 900px) {
  .mobile-cta-bar {
    display: flex;
  }

  .gal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
  }

  .gal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: none;
    padding: 8px;
    background-clip: content-box;
    transition: all .3s;
    cursor: pointer;
  }

  .gal-dot.active {
    background: var(--neon-green);
    background-clip: content-box;
    box-shadow: 0 0 8px var(--neon-green);
  }

  .testi-dot {
    width: 12px;
    height: 12px;
    padding: 8px;
    background-clip: content-box;
  }

  .testi-dot.active {
    background: var(--neon-green);
    background-clip: content-box;
  }

  .section-divider {
    margin: 0 20px;
  }

  .step:hover {
    background: transparent;
  }

  .map-widget iframe {
    filter: grayscale(30%) contrast(1.1) !important;
  }

  .mobile-nav-links a {
    padding: 8px 16px;
    display: inline-block;
  }

  .ft-widgets {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .social-proof {
    bottom: auto;
    top: 70px;
    left: 16px;
    right: 16px;
    max-width: none;
    font-size: 10px;
  }

  .wa-float {
    display: none;
  }

  .parallax-bg-text {
    display: none;
  }

  .faq-q {
    padding: 20px 24px;
    font-size: 13px;
  }

  .faq-a {
    padding: 0 24px;
  }

  .faq-item.open .faq-a {
    padding: 0 24px 20px;
  }
}

/* ── EXTRA SMALL SCREENS ── */
@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 40px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: clamp(24px, 10vw, 50px);
  }

  .hero-h1 .line-pink {
    font-size: clamp(12px, 5.5vw, 40px);
  }

  .hero-sub {
    font-size: 13px;
    margin-top: 20px;
  }

  .hero-btns {
    margin-top: 24px;
  }

  .stat-n {
    font-size: 22px;
  }

  .section {
    padding: 44px 16px;
  }

  .testi-section {
    padding: 44px 16px;
  }

  .svc-card.big .svc-name {
    font-size: 32px;
  }

  .svc-name {
    font-size: 28px;
  }

  .sec-title {
    font-size: clamp(28px, 10vw, 50px);
  }

  .contact-big {
    font-size: clamp(28px, 11vw, 50px);
  }

  .p-price {
    font-size: 40px;
  }

  .gal-item {
    flex: 0 0 90%;
    height: 280px;
  }

  .p-card {
    flex: 0 0 90%;
    padding: 36px 24px;
  }

  .testi-quote {
    font-size: clamp(18px, 5.5vw, 26px);
  }

  .step-n {
    font-size: 48px;
  }

  .step {
    padding: 30px 16px;
  }

  .marquee-track {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .mobile-cta-bar {
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .svc-card {
    padding: 28px 20px;
  }

  .sec-header {
    margin-bottom: 28px;
  }

  .faq-q {
    padding: 16px 16px;
    font-size: 12px;
  }

  .faq-icon {
    font-size: 16px;
  }

  .faq-a {
    padding: 0 16px;
  }

  .faq-item.open .faq-a {
    padding: 0 16px 16px;
  }

  .faq-a p {
    font-size: 12px;
  }

  .ft-insta-item {
    font-size: 14px;
  }

  .social-proof {
    font-size: 9px;
    padding: 10px 14px;
  }
}

/* ── LUMA 3D SHOWROOM ── */
.luma-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.luma-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .4s, transform .4s;
}

.luma-card:hover {
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-4px);
}

.luma-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--black);
  overflow: hidden;
}

.luma-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
}

/* Placeholder shown when no Luma URL is set yet */
.luma-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(175, 255, 0, 0.03) 0%, transparent 70%);
}

.luma-iframe:not([src="about:blank"]) ~ .luma-placeholder {
  display: none;
}

.luma-placeholder-icon {
  font-size: 48px;
  filter: drop-shadow(0 0 20px rgba(175, 255, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

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

.luma-placeholder-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(245, 240, 235, .5);
  letter-spacing: 1px;
}

.luma-placeholder-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, .2);
}

.luma-info {
  padding: 24px;
}

.luma-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 8px;
}

.luma-desc {
  font-size: 13px;
  color: rgba(245, 240, 235, .45);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .luma-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .luma-embed-wrap {
    aspect-ratio: 16 / 10;
  }

  .luma-info {
    padding: 20px;
  }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  transform: translateY(100%);
  animation: cookieSlideUp .6s .5s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.hidden {
  animation: cookieSlideDown .4s forwards cubic-bezier(0.55, 0, 1, 0.45);
}

@keyframes cookieSlideUp {
  to { transform: translateY(0); }
}

@keyframes cookieSlideDown {
  to { transform: translateY(100%); opacity: 0; }
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-green);
  display: block;
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 13px;
  color: rgba(245, 240, 235, .55);
  line-height: 1.6;
  max-width: 550px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s;
}

.cookie-accept {
  background: var(--neon-green);
  color: var(--black);
  border-color: var(--neon-green);
}

.cookie-accept:hover {
  background: #fff;
  border-color: #fff;
}

.cookie-refuse {
  background: transparent;
  color: rgba(245, 240, 235, .5);
}

.cookie-refuse:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.cookie-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 235, .3);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color .3s;
  white-space: nowrap;
}

.cookie-link:hover {
  color: var(--neon-green);
}

.ft-legal-link {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}

.ft-legal-link:hover {
  color: rgba(245, 240, 235, .5);
}

@media (max-width: 900px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }
}

/* ── MENTIONS LÉGALES ── */
.legal-page {
  min-height: 100vh;
  padding: 140px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-green);
  text-decoration: none;
  margin-bottom: 48px;
  transition: opacity .3s;
}

.legal-back:hover {
  opacity: .7;
}

.legal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.legal-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 235, .3);
  margin-bottom: 64px;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 16px;
}

.legal-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.legal-section p,
.legal-section li {
  font-size: 13px;
  color: rgba(245, 240, 235, .55);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none;
  padding: 0;
}

.legal-section li::before {
  content: '→ ';
  color: var(--neon-green);
}

.legal-placeholder {
  display: inline-block;
  background: rgba(175, 255, 0, 0.08);
  border: 1px dashed rgba(175, 255, 0, 0.25);
  padding: 2px 10px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--neon-green);
}

@media (max-width: 900px) {
  .legal-page {
    padding: 120px 20px 60px;
  }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY & UX IMPROVEMENTS
   ═══════════════════════════════════════════ */

/* ── TEXT SELECTION ── */
::selection {
  background: rgba(175, 255, 0, 0.25);
  color: var(--white);
}

::-moz-selection {
  background: rgba(175, 255, 0, 0.25);
  color: var(--white);
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 99999;
  padding: 12px 24px;
  background: var(--neon-green);
  color: var(--black);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
}

/* ── SR-ONLY (screen reader only) ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── FOCUS VISIBLE — Global ── */
*:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
}

.fi:focus-visible,
.ft:focus-visible {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 2px rgba(175, 255, 0, 0.15);
}

.btn-main:focus-visible,
.btn-ghost:focus-visible,
.btn-send:focus-visible,
.btn-p:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
  box-shadow: 0 0 15px rgba(175, 255, 0, 0.2);
}

.faq-q:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: -2px;
}

.hamburger:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 4px;
}

/* ── FORM ERROR STATES ── */
.field-error {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--pink);
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s, min-height 0.3s;
}

.field-error.visible {
  opacity: 1;
  min-height: 16px;
}

.fi.error,
.ft.error {
  border-color: var(--pink);
  background: rgba(255, 45, 120, 0.03);
}

.form-error-global {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--pink);
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: 8px;
}

.form-error-global.visible {
  opacity: 1;
}

/* ── BUTTON LOADING STATE ── */
.btn-send.loading .btn-send-text {
  opacity: 0;
}

.btn-send-loader {
  display: none;
}

.btn-send.loading .btn-send-loader {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

.btn-send.loading {
  pointer-events: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-send.loading::after {
  display: none;
}

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

/* ── GALLERY IMAGE FIT ── */
.gal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
}

/* ── SCROLL SNAP — GALLERY MOBILE ── */
@media (max-width: 900px) {
  .gal-grid {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gal-item {
    scroll-snap-align: center;
  }

  .pricing-grid {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .p-card {
    scroll-snap-align: center;
  }

  .back-to-top {
    display: none;
  }
}

/* ── TABLET BREAKPOINT (768px) ── */
@media (max-width: 768px) and (min-width: 481px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form {
    padding-top: 0;
  }

  .sec-header {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stats {
    gap: 24px;
  }

  .ft-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ft-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

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

/* ── HAMBURGER AS BUTTON RESET ── */
.hamburger {
  background: none;
  border: none;
  padding: 8px;
}