/* ============================================================
   LunaRise Digital — style.css
   Dark cosmic theme | 3D effects | Parallax scroll
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg: #04030a;
  --bg-2: #080714;
  --bg-card: #0d0c1e;
  --accent: #c8a96e;
  --accent-bright: #f0cc88;
  --moon: #e8d5b0;
  --glow: #6b5b9e;
  --glow-blue: #2a5caa;
  --text: #e8e4f0;
  --text-muted: #7a7592;
  --border: rgba(200, 169, 110, 0.15);
  --border-light: rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 60px rgba(107, 91, 158, 0.3);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; outline: none; background: none; }
input, select, textarea { outline: none; font-family: var(--font-body); }

/* ---------- Custom Cursor ---------- */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 16px; height: 16px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; border-color: var(--accent); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(4, 3, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--accent);
  animation: moonSpin 12s linear infinite;
}

@keyframes moonSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  background: var(--accent);
  color: #04030a;
  border-radius: 50px;
  transition: var(--transition);
  cursor: none;
}

.nav-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100vh;
  background: rgba(4, 3, 10, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}

.mobile-link:hover { color: var(--accent); }

/* ---------- Sections / Layout ---------- */
section { position: relative; overflow: hidden; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.section-tag {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #04030a;
  border-radius: 50px;
  transition: var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  transition: var(--transition);
  cursor: none;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 169, 110, 0.05);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 60px 80px;
  overflow: hidden;
}

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

#starCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6b5b9e, transparent);
  top: -100px; right: -100px;
  animation-duration: 10s;
}

.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #2a5caa, transparent);
  bottom: 50px; left: -80px;
  animation-duration: 12s;
  animation-delay: -4s;
}

.orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 40%; left: 40%;
  opacity: 0.15;
  animation-duration: 8s;
  animation-delay: -2s;
}

.orb-4 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6b5b9e, transparent);
  top: -200px; left: -200px;
  opacity: 0.25;
}

.orb-5 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent), transparent);
  bottom: -100px; right: -100px;
  opacity: 0.2;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 800px;
  transform: rotateX(45deg) scale(2);
  transform-origin: 50% 50%;
  top: 20%;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-title .line {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.35s; }
.hero-title .line:nth-child(3) { animation-delay: 0.5s; }

.hero-title .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 50%, #fff8e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.65s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

/* Float cards */
.hero-floating {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.float-card {
  background: rgba(13, 12, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateX(40px);
  transition: var(--transition);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.05);
}

.float-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.float-card.card-1 { animation: slideInRight 0.8s ease 0.9s forwards; }
.float-card.card-2 { animation: slideInRight 0.8s ease 1.1s forwards; }
.float-card.card-3 { animation: slideInRight 0.8s ease 1.3s forwards; }

.float-card:hover {
  border-color: rgba(200, 169, 110, 0.4);
  transform: translateX(-6px) translateY(-3px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(200, 169, 110, 0.1);
}

.card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.card-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.5s forwards;
}

.scroll-hint span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%; height: 100%;
  background: white;
  animation: scanLine 2s ease infinite;
}

@keyframes scanLine {
  to { left: 200%; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.08), rgba(107, 91, 158, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ticker .dot {
  color: var(--accent);
  font-size: 0.7rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 60px;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

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

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: var(--shadow-card), 0 0 40px rgba(200, 169, 110, 0.08);
}

.service-card.featured {
  background: linear-gradient(145deg, #12102a, #0d0c1e);
  border-color: rgba(200, 169, 110, 0.25);
  box-shadow: 0 0 60px rgba(107, 91, 158, 0.2);
}

.card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .card-glow { opacity: 1; }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-list li {
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 0.03em;
}

.card-number {
  position: absolute;
  bottom: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.service-card:hover .card-number { color: rgba(200, 169, 110, 0.06); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}

.about-parallax-bg {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107, 91, 158, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(42, 92, 170, 0.15) 0%, transparent 60%);
  pointer-events: none;
  will-change: transform;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.about-left h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-left p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-left .btn-primary { margin-top: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover { border-color: var(--border); transform: translateY(-4px); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 120px 60px;
  background: var(--bg-2);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(107, 91, 158, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.process-connector {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(200, 169, 110, 0.3), var(--border));
  align-self: center;
  margin-top: -60px;
  flex-shrink: 0;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 30%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: connectorFill 3s ease-in-out infinite alternate;
}

@keyframes connectorFill {
  from { width: 0%; opacity: 0; }
  to { width: 100%; opacity: 1; }
}

.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  transition: var(--transition);
}

.step-circle span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.step-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.15);
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.process-step:hover .step-circle {
  background: rgba(200, 169, 110, 0.1);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(200, 169, 110, 0.2);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   WORK
   ============================================================ */
.work {
  padding: 120px 60px;
  background: var(--bg);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}

.work-card:hover { transform: translateY(-10px); }

.work-img {
  height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-3d-obj {
  font-size: 6rem;
  color: rgba(255,255,255,0.15);
  animation: rotate3D 10s linear infinite;
  user-select: none;
}

@keyframes rotate3D {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1); }
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 10, 0.7);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover .work-overlay { opacity: 1; }

.work-overlay span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 169, 110, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
}

.work-info {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-top: none;
  padding: 24px 28px;
}

.work-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.work-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.work-tag {
  font-size: 0.72rem;
  color: var(--accent);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 50px;
  padding: 3px 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 60px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,91,158,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(42,92,170,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tcard {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 110, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  transform-style: preserve-3d;
  cursor: none;
}

.tcard:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(200, 169, 110, 0.32);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(107,91,158,0.15);
}

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

.tlogo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tlogo em { font-style: normal; }

.tlogo-hulu   { color: #1ce783; }
.tlogo-hbo    { color: var(--text); }
.tlogo-hbo em { color: #a855f7; }
.tlogo-disney { color: #60a5fa; font-style: italic; }
.tlogo-starz  { color: var(--text); letter-spacing: 0.12em; font-size: 0.8rem; }
.tlogo-vix    { color: #fb923c; font-style: italic; font-size: 1.3rem; }
.tlogo-prime  { color: var(--text); font-size: 0.78rem; font-weight: 500; }
.tlogo-prime em { color: #f59e0b; }

.trating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.tstar { color: var(--accent); }

.tquote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.tdivider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.tauthor strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.tauthor span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta-section {
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

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

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(13, 12, 30, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7592' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option { background: #0d0c1e; color: var(--text); }

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(200, 169, 110, 0.4);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.08);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.btn-submit {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #04030a;
  border-radius: 50px;
  border: none;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover::after { opacity: 1; }
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200, 169, 110, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-light);
  padding: 80px 60px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 169, 110, 0.08);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-floating { display: none; }
}

@media (max-width: 900px) {
  .nav { padding: 20px 30px; }
  .nav.scrolled { padding: 14px 30px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 120px 30px 80px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 4rem); }
  .scroll-hint { left: 30px; }

  .services { padding: 80px 30px; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 30px; }
  .about-content { grid-template-columns: 1fr; gap: 50px; }

  .process { padding: 80px 30px; }
  .process-steps { flex-direction: column; align-items: center; gap: 40px; }
  .process-connector { display: none; }

  .work { padding: 80px 30px; }
  .work-grid { grid-template-columns: 1fr; }

  .testimonials { padding: 80px 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 80px 30px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 60px 30px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .section-header h2 { font-size: 1.8rem; }
  .about-stats { grid-template-columns: 1fr; }
}
