/* ==========================================================================
   VIVEK RAUNEKAR - ULTRA PREMIUM VIDEO EDITOR PORTFOLIO DESIGN SYSTEM
   Dark Luxury Theme: Apple + Awwwards + Framer + Linear + Stripe + Adobe
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME SETUP
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #050505;
  --bg-secondary: #0B0B0B;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(18, 18, 24, 0.6);

  /* Accents */
  --accent-cyan: #00F5FF;
  --accent-purple: #7B61FF;
  --accent-pink: #FF3CAC;
  --accent-amber: #FFB800;
  
  /* Gradient Combinations */
  --gradient-primary: linear-gradient(135deg, #00F5FF 0%, #7B61FF 50%, #FF3CAC 100%);
  --gradient-secondary: linear-gradient(135deg, #7B61FF 0%, #FF3CAC 100%);
  --gradient-cyan-purple: linear-gradient(135deg, #00F5FF 0%, #7B61FF 100%);
  --gradient-dark-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --gradient-glow: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 245, 255, 0.15) 0%, rgba(123, 97, 255, 0.05) 50%, transparent 80%);

  /* Text Colors */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 245, 255, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(0, 245, 255, 0.2);
  --shadow-purple-glow: 0 0 40px rgba(123, 97, 255, 0.25);
  --shadow-pink-glow: 0 0 40px rgba(255, 60, 172, 0.25);

  /* Layout Constants */
  --container-max: 1320px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Selection Highlight */
::selection {
  background: var(--accent-cyan);
  color: #000;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. HANDCRAFTED CUSTOM CURSOR & CANVAS BG
   -------------------------------------------------------------------------- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.custom-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px var(--accent-cyan);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 245, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  backdrop-filter: blur(1px);
}

/* Cursor States */
body.hovered .cursor-dot {
  width: 16px;
  height: 16px;
  background: var(--accent-pink);
}

body.hovered .cursor-follower {
  width: 65px;
  height: 65px;
  border-color: rgba(255, 60, 172, 0.6);
  background: rgba(255, 60, 172, 0.08);
}

body.cursor-play .cursor-follower {
  width: 70px;
  height: 70px;
  background: rgba(0, 245, 255, 0.2);
  border-color: var(--accent-cyan);
}

/* Floating Ambient Blobs */
.ambient-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: floatBlob 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-purple);
  top: 40%;
  right: -150px;
  animation-delay: -6s;
}

.blob-3 {
  width: 550px;
  height: 550px;
  background: var(--accent-pink);
  bottom: -100px;
  left: 30%;
  animation-delay: -12s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, 60px) scale(1.15);
  }
  100% {
    transform: translate(-60px, 100px) scale(0.9);
  }
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY & REUSABLE UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding {
  padding: 140px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.badge-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulseDot 2s infinite;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Glassmorphism Base Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  border-color: rgba(0, 245, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 245, 255, 0.15);
}

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

/* 3D Tilt Card Base */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

.glare-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.tilt-card:hover .glare-overlay {
  opacity: 1;
}

/* Buttons System */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gradient-primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 245, 255, 0.6), 0 0 50px rgba(123, 97, 255, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.2);
  transform: translateY(-3px);
}

/* Ripple Element */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, var(--container-max));
  z-index: 100;
  transition: all var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-symbol {
  width: 34px;
  height: 34px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.3s, opacity 0.3s;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION & VIDEO EDITOR MOCKUP CONSOLE
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: 170px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.dynamic-typewriter {
  color: var(--accent-cyan);
  border-right: 3px solid var(--accent-pink);
  animation: blinkCursor 0.8s infinite;
  white-space: nowrap;
}

@keyframes blinkCursor {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--accent-pink); }
}

.hero-subhead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--accent-cyan);
}

/* Interactive Premiere/DaVinci Style Editor Mockup */
.editor-console {
  background: rgba(12, 12, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(123, 97, 255, 0.15);
  backdrop-filter: blur(25px);
  position: relative;
  z-index: 2;
}

.console-header {
  background: rgba(20, 20, 30, 0.9);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dots .red { background: #FF5F56; }
.window-dots .yellow { background: #FFBD2E; }
.window-dots .green { background: #27C93F; }

.console-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-badge {
  background: rgba(0, 245, 255, 0.15);
  color: var(--accent-cyan);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.7rem;
}

/* Console Screen & Timeline */
.console-body {
  padding: 20px;
}

.preview-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.preview-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.5s ease;
}

.preview-screen:hover img {
  transform: scale(1.03);
}

.preview-overlay-info {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 10px;
}

.rec-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 0, 80, 0.8);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.rec-badge .rec-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulseDot 1s infinite;
}

.timecode {
  font-family: var(--font-mono);
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

.play-trigger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 245, 255, 0.2);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.play-trigger-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--accent-cyan);
  color: #000;
}

/* Editing Tracks Layout */
.timeline-track-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-track {
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.track-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  width: 40px;
  color: var(--text-dim);
}

.track-clips {
  flex: 1;
  height: 24px;
  position: relative;
}

.clip-block {
  position: absolute;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.clip-v1 { left: 5%; width: 55%; background: rgba(0, 245, 255, 0.25); border: 1px solid var(--accent-cyan); }
.clip-v2 { left: 62%; width: 33%; background: rgba(123, 97, 255, 0.25); border: 1px solid var(--accent-purple); }
.clip-a1 { left: 0%; width: 95%; background: rgba(255, 60, 172, 0.25); border: 1px solid var(--accent-pink); }

.audio-equalizer {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 16px;
  margin-left: auto;
}

.eq-bar {
  width: 3px;
  background: var(--accent-pink);
  border-radius: 2px;
  animation: eqAnim 0.8s ease-in-out infinite alternate;
}

@keyframes eqAnim {
  0% { height: 4px; }
  100% { height: 18px; }
}

.playhead-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-cyan);
  left: 35%;
  z-index: 5;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: scrubPlayhead 6s linear infinite;
}

@keyframes scrubPlayhead {
  0% { left: 0%; }
  100% { left: 100%; }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION (VIVEK RAUNEKAR BIO & STATS)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 245, 255, 0.15);
}

.about-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.6s ease;
}

.about-frame:hover img {
  transform: scale(1.04);
}

.floating-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(12, 12, 20, 0.9);
  border: 1px solid var(--accent-cyan);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 245, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-cyan);
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Stats Counter Bar */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  padding: 24px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-purple);
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION (12 CARDS)
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
  transform: scale(1.1) rotate(4deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features-list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.service-feature-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE BEFORE/AFTER COLOR GRADING COMPARISON SLIDER
   -------------------------------------------------------------------------- */
.color-grade-showcase {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.split-slider-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  border: 1px solid var(--border-light);
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-img.raw-before {
  filter: grayscale(0.7) contrast(0.85) brightness(0.9);
}

.slider-img.graded-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  filter: contrast(1.2) saturate(1.3) brightness(1.05);
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.8);
}

.slider-badge {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--border-light);
  z-index: 8;
}

.badge-before { left: 20px; color: var(--text-muted); }
.badge-after { right: 20px; color: var(--accent-cyan); }

/* --------------------------------------------------------------------------
   10. WHO I WORK WITH (7 EXACT CATEGORIES)
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.audience-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.audience-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.audience-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.audience-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.audience-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(123, 97, 255, 0.15);
  color: var(--accent-purple);
  border: 1px solid rgba(123, 97, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE ME & MY PROCESS
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 245, 255, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card:hover .why-icon {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 20px var(--accent-cyan);
}

.why-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Animated Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border-light);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-node {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: rgba(12, 12, 20, 0.95);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-muted);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  transition: all var(--transition-smooth);
}

.process-step:hover .step-node {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
  transform: scale(1.15);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. PORTFOLIO SHOWCASE & CATEGORY FILTERS
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-primary);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.portfolio-grid {
  columns: 3 340px;
  column-gap: 30px;
  width: 100%;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: rgba(12, 12, 18, 0.8);
  aspect-ratio: 16 / 10;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), opacity var(--transition-smooth);
}

.portfolio-card.portrait {
  aspect-ratio: 9 / 13.5;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    columns: 2 300px;
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    columns: 1 100%;
  }
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.portfolio-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.portfolio-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-badge {
  background: rgba(0, 245, 255, 0.2);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.portfolio-play-icon {
  width: 54px;
  height: 54px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  align-self: center;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-play-icon {
  transform: scale(1.15);
}

.portfolio-meta {
  margin-top: auto;
}

.portfolio-category-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-pink);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   13. LIGHTBOX VIDEO MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  width: min(900px, 95vw);
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 245, 255, 0.2);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.lightbox-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close-btn:hover {
  background: var(--accent-pink);
}

.lightbox-body {
  padding: 24px;
}

.lightbox-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS & FAQ ACCORDION
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.client-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
  object-fit: cover;
}

.client-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.client-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rating-stars {
  color: var(--accent-amber);
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-style: italic;
}

.metric-highlight {
  display: inline-block;
  margin-top: 18px;
  padding: 4px 12px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

/* FAQ Accordion */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--accent-cyan);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  padding: 0 30px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 30px 24px 30px;
}

/* --------------------------------------------------------------------------
   15. CONTACT SECTION & FOOTER
   -------------------------------------------------------------------------- */
.contact-card-main {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 245, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-channels {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: all var(--transition-fast);
}

.channel-btn:hover {
  background: var(--gradient-primary);
  color: #000;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

/* Site Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 100px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 80px;
    left: 5%;
    right: 5%;
    background: rgba(12, 12, 20, 0.95);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .section-padding {
    padding: 90px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .split-slider-wrapper {
    height: 320px;
  }

  .contact-card-main {
    padding: 40px 24px;
  }
}
