/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:      #07070f;
  --bg2:     #0a0a14;
  --bg3:     #0c0c18;
  --surface: #111120;
  --border:  rgba(255,255,255,0.07);
  --text:    #f0f0f8;
  --muted:   rgba(240,240,248,0.5);
  --faint:   rgba(240,240,248,0.2);
  --studios: #00e5ff;
  --jax:     #d4af6e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  cursor: none; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; }

/* ─── CURSOR ─────────────────────────────────────────────────── */
#cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--studios); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: transform 0.15s;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,229,255,0.5); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--studios), rgba(0,229,255,0.4));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; color: #000; font-weight: 900;
}
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.08em; color: var(--text);
}
.nav-logo-text span { color: var(--studios); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 0.6rem 1.4rem; border-radius: 100px;
  border: 1px solid rgba(0,229,255,0.35);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--studios); transition: all 0.2s;
}
.nav-cta:hover { background: rgba(0,229,255,0.08); border-color: var(--studios); }
.nav-burger {
  display: none; background: none; border: none; color: var(--text);
  width: 36px; height: 36px; align-items: center; justify-content: center;
}
.nav-burger svg { width: 22px; height: 22px; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0.5rem;
  padding: 1.5rem 2rem; background: rgba(7,7,15,0.97);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.mobile-link {
  padding: 0.75rem 0; font-size: 0.9rem; color: var(--muted);
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-link:hover { color: var(--text); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  background: var(--studios); color: #000;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.2s; box-shadow: 0 4px 28px rgba(0,229,255,0.3);
}
.btn-primary svg { width: 16px; height: 16px; }
.btn-primary:hover { background: #fff; box-shadow: 0 8px 40px rgba(0,229,255,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  border: 1px solid var(--border); color: var(--muted);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--studios); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--studios);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95; letter-spacing: 0.02em; color: var(--text);
  margin-bottom: 1.5rem;
}

/* ─── HERO ───────────────────────────────────────────────────── */
#inicio {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 8rem 0 4rem;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow-1 {
  position: absolute; top: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid rgba(0,229,255,0.25);
  background: rgba(0,229,255,0.05);
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--studios); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--studios);
  box-shadow: 0 0 8px var(--studios);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--text);
  margin-bottom: 2rem;
}
.accent-cyan { color: var(--studios); }
.accent-gold { color: var(--jax); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 560px; margin-bottom: 2.5rem;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--text); letter-spacing: 0.04em;
}
.hero-stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about { padding: 8rem 0; background: var(--bg2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.about-text strong { color: var(--text); }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card {
  padding: 1.75rem; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.about-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.about-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.about-card-icon svg { width: 20px; height: 20px; }
.about-card-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.25rem; }
.about-card-sub { font-size: 0.78rem; color: var(--muted); }

/* ─── TICKER ─────────────────────────────────────────────────── */
.divider-strip {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg3); padding: 1rem 0;
}
.divider-ticker {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.15em;
  color: var(--faint); flex-shrink: 0;
}
.ticker-item.cyan { color: rgba(0,229,255,0.5); }
.ticker-item.gold { color: rgba(212,175,110,0.5); }
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--faint); flex-shrink: 0; align-self: center;
}

/* ─── HIGH STUDIOS SECTION ───────────────────────────────────── */
#studios {
  padding: 8rem 0; background: var(--bg); position: relative; overflow: hidden;
}
.studios-glow {
  position: absolute; top: -20%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.studios-big-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem); line-height: 0.85;
  color: rgba(0,229,255,0.03);
  position: absolute; top: -1rem; right: -1rem;
  pointer-events: none; user-select: none;
}
.studios-inner { position: relative; z-index: 1; }
.studios-header {
  display: grid; grid-template-columns: auto 1fr; align-items: end;
  gap: 2rem; margin-bottom: 3rem;
}
.studios-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.06);
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--studios); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.studios-badge svg { width: 12px; height: 12px; }
.studios-h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--text);
}
.studios-h2 span { color: var(--studios); }
.studios-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-bottom: 3rem;
}
.service-card {
  padding: 2rem; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(0,229,255,0.2); }
.service-num {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--studios); margin-bottom: 1.25rem; opacity: 0.7;
}
.service-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 20px; height: 20px; color: var(--studios); }
.service-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.studios-cta-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem 2.5rem; border-radius: 16px;
  border: 1px solid rgba(0,229,255,0.2);
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, transparent 100%);
  flex-wrap: wrap; margin-top: 2rem;
}
.studios-cta-text h4 { font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.studios-cta-text p { font-size: 0.85rem; color: var(--muted); }
.btn-studios {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 100px;
  background: var(--studios); color: #000;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,229,255,0.35);
}
.btn-studios svg { width: 14px; height: 14px; }
.btn-studios:hover { background: #fff; box-shadow: 0 8px 40px rgba(0,229,255,0.5); }

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery-section { margin-bottom: 3rem; }
.gallery-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--studios); margin-bottom: 1.25rem;
}
.gallery-label.gold { color: var(--jax); }
.gallery-label svg { width: 14px; height: 14px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
}
.jax-gallery-grid { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; cursor: none;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.gallery-item:hover { transform: scale(1.02); border-color: rgba(0,229,255,0.3); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,229,255,0.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-overlay.gold-overlay { background: rgba(212,175,110,0.12); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 24px; height: 24px; color: #fff; }

/* ─── JAX SECTION ────────────────────────────────────────────── */
#jax { padding: 8rem 0; background: var(--bg3); position: relative; overflow: hidden; }
.jax-glow {
  position: absolute; bottom: -20%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.jax-big-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem); line-height: 0.85;
  color: rgba(212,175,110,0.04);
  position: absolute; top: -1rem; left: -1rem;
  pointer-events: none; user-select: none;
}
.jax-inner { position: relative; z-index: 1; }
.jax-header {
  display: grid; grid-template-columns: auto 1fr; align-items: end;
  gap: 2rem; margin-bottom: 3rem;
}
.jax-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid rgba(212,175,110,0.3);
  background: rgba(212,175,110,0.06);
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--jax); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.jax-h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--text);
}
.jax-h2 span { color: var(--jax); }
.jax-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
.jax-method {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem 2rem; border-radius: 16px;
  border: 1px solid rgba(212,175,110,0.2);
  background: rgba(212,175,110,0.04);
  margin-bottom: 3rem;
}
.jax-method-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(212,175,110,0.12); border: 1px solid rgba(212,175,110,0.25);
  display: flex; align-items: center; justify-content: center;
}
.jax-method-icon svg { width: 18px; height: 18px; color: var(--jax); }
.jax-method-title { font-weight: 700; color: var(--text); margin-bottom: 0.3rem; font-size: 0.95rem; }
.jax-method-text { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.jax-method-text strong { color: var(--jax); font-weight: 600; }
.catalog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.catalog-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; border-radius: 14px;
  background: rgba(212,175,110,0.02);
  border: 1px solid rgba(212,175,110,0.1);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.catalog-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--jax), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.catalog-item:hover { border-color: rgba(212,175,110,0.3); background: rgba(212,175,110,0.05); transform: translateY(-2px); }
.catalog-item:hover::after { opacity: 1; }
.catalog-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: rgba(212,175,110,0.08); border: 1px solid rgba(212,175,110,0.18);
  display: flex; align-items: center; justify-content: center;
}
.catalog-icon svg { width: 18px; height: 18px; color: var(--jax); }
.catalog-label { font-weight: 700; font-size: 0.88rem; color: var(--text); margin-bottom: 0.15rem; }
.catalog-sub { font-size: 0.75rem; color: var(--muted); }
.jax-cta-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem 2.5rem; border-radius: 16px;
  border: 1px solid rgba(212,175,110,0.2);
  background: linear-gradient(135deg, rgba(212,175,110,0.06) 0%, transparent 100%);
  flex-wrap: wrap; margin-top: 2rem;
}
.btn-jax {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 100px;
  background: var(--jax); color: #000;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(212,175,110,0.35);
}
.btn-jax svg { width: 14px; height: 14px; }
.btn-jax:hover { background: #fff; box-shadow: 0 8px 40px rgba(212,175,110,0.5); }

/* ─── POR QUÉ ────────────────────────────────────────────────── */
#porque { padding: 8rem 0; background: var(--bg); position: relative; overflow: hidden; }
.porque-header { text-align: center; margin-bottom: 5rem; }
.porque-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.02em; color: var(--text); margin-bottom: 1rem;
}
.porque-sub { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.reason-card {
  padding: 2.5rem 2rem; border-radius: 20px;
  background: var(--surface); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.35s, border-color 0.3s;
}
.reason-card:hover { transform: translateY(-6px); }
.reason-card.cyan:hover { border-color: rgba(0,229,255,0.35); }
.reason-card.gold:hover { border-color: rgba(212,175,110,0.35); }
.reason-corner {
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px; border-radius: 0 20px 0 100%;
  opacity: 0.12; transition: opacity 0.3s;
}
.reason-card:hover .reason-corner { opacity: 0.22; }
.reason-card.cyan .reason-corner { background: var(--studios); }
.reason-card.gold .reason-corner { background: var(--jax); }
.reason-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 2rem;
}
.cyan .reason-icon { background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2); }
.gold .reason-icon { background: rgba(212,175,110,0.08); border: 1px solid rgba(212,175,110,0.2); }
.cyan .reason-icon svg { width: 24px; height: 24px; color: var(--studios); }
.gold .reason-icon svg { width: 24px; height: 24px; color: var(--jax); }
.reason-title { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 0.75rem; }
.reason-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ─── CONTACT ────────────────────────────────────────────────── */
#contacto { padding: 8rem 0; background: var(--bg2); position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-header { text-align: center; margin-bottom: 5rem; }
.contact-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.02em; color: var(--text); margin-bottom: 1rem;
}
.contact-sub { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }
.contact-inner { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
.contact-form-box {
  padding: 3rem; border-radius: 24px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.6rem; font-family: var(--font-mono);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, background 0.2s; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--faint); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,229,255,0.4); background: rgba(0,229,255,0.03);
}
.form-select option { background: #0c0c16; color: var(--text); }
.form-textarea { resize: none; min-height: 130px; }
.btn-submit {
  width: 100%; padding: 1.1rem; border-radius: 14px;
  background: var(--studios); color: #000; border: none; cursor: none;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  box-shadow: 0 4px 32px rgba(0,229,255,0.35); transition: all 0.25s;
}
.btn-submit:hover { background: #fff; box-shadow: 0 8px 48px rgba(0,229,255,0.55); transform: translateY(-2px); }
.btn-submit svg { width: 18px; height: 18px; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-title { font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; }
.contact-entry {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-entry:hover { border-color: rgba(255,255,255,0.15); }
.contact-entry-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-entry-icon svg { width: 16px; height: 16px; }
.contact-entry-lbl { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.15rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-entry-val { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.78rem; color: var(--muted); transition: all 0.2s;
}
.social-btn svg { width: 14px; height: 14px; }
.social-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--studios); margin: 0 auto 1.5rem; display: block; }
.form-success h3 { font-weight: 800; color: var(--text); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: #050508; border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.72rem; color: var(--faint); }

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; cursor: none;
}
#lightbox.open { display: flex; flex-direction: column; gap: 1rem; }
#lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: 12px; object-fit: contain; }
#lightbox-caption { font-size: 0.8rem; color: var(--muted); font-family: var(--font-mono); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); cursor: none; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-close svg { width: 18px; height: 18px; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--faint); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .studios-header { grid-template-columns: 1fr; }
  .studios-desc { text-align: left; max-width: 100%; }
  .jax-header { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .jax-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.75rem; }
  .studios-cta-bar, .jax-cta-bar { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
