/* ClippingStars Global Styles */

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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --accent-blue: #00A3FF;
  --accent-purple: #7B2FFF;
  --gradient-main: linear-gradient(135deg, #00A3FF, #7B2FFF);
  --glow-blue: 0 0 30px rgba(0, 163, 255, 0.3);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

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

/* Gradient text */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--text-primary);
  box-shadow: var(--glow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 163, 255, 0.5);
  color: var(--text-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass);
  border-color: var(--accent-blue);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-blue);
  font-weight: 500;
  transition: var(--transition-fast);
}

.link-arrow:hover {
  gap: 1rem;
  color: var(--text-primary);
}

/* Hero link - high visibility on dark backgrounds */
.link-arrow-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.link-arrow-hero:hover {
  gap: 1rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 163, 255, 0.6), 0 0 40px rgba(0, 163, 255, 0.3);
}

.link-arrow-hero span {
  transition: var(--transition-fast);
}

.link-arrow-hero:hover span {
  transform: translateX(4px);
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: var(--border-subtle);
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-star {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}

.logo-star svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-blue);
  filter: drop-shadow(0 0 4px rgba(0, 163, 255, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: var(--transition-medium);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.mobile-menu a.active {
  color: var(--accent-blue);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.4) 100%);
  z-index: -1;
}

/* Hero with gradient background (no image) */
.hero-gradient {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0d1117 50%, var(--bg-primary) 100%);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 163, 255, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(123, 47, 255, 0.06) 0%, transparent 40%);
  z-index: 0;
}

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero proof card */
.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), var(--glow-blue);
  transition: var(--transition-medium);
  max-width: 450px;
}

.proof-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 163, 255, 0.3);
}

.proof-card img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-label {
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding-top: 6rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: var(--border-subtle);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Page hero (smaller) */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  margin: 0 auto;
  max-width: 600px;
}

/* ==================== DASHBOARD HERO ==================== */
.hero-dashboard {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 0;
  /* Performance: contain layout, style, and paint within this element */
  contain: layout style paint;
}

/* Animated Gradient Mesh Background (optimized - 2 colors, 30s, will-change) */
.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 50, 120, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(60, 0, 100, 0.3) 0%, transparent 50%);
  z-index: 0;
  animation: meshShift 35s linear infinite;
  will-change: background;
}

@keyframes meshShift {
  0%, 100% {
    background:
      radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 50, 120, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 60%, rgba(60, 0, 100, 0.3) 0%, transparent 50%);
  }
  50% {
    background:
      radial-gradient(ellipse 70% 60% at 70% 50%, rgba(0, 60, 130, 0.35) 0%, transparent 50%),
      radial-gradient(ellipse 80% 50% at 30% 70%, rgba(80, 0, 120, 0.3) 0%, transparent 50%);
  }
}

/* Glowing Orbs (optimized - 3 orbs, radial-gradient blur, transform only) */
.glowing-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  /* Use radial-gradient for soft blur effect instead of filter:blur */
  will-change: transform;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.35) 0%, rgba(0, 163, 255, 0) 70%);
  top: 10%;
  left: 10%;
  animation: orbFloat1 30s linear infinite;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(123, 47, 255, 0.3) 0%, rgba(123, 47, 255, 0) 70%);
  top: 60%;
  right: 15%;
  animation: orbFloat2 35s linear infinite;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 100, 200, 0.25) 0%, rgba(0, 100, 200, 0) 70%);
  bottom: 20%;
  left: 30%;
  animation: orbFloat3 28s linear infinite;
}

/* Hide 4th orb for performance */
.orb-4 {
  display: none;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(50px, 30px); }
  50% { transform: translate(20px, 60px); }
  75% { transform: translate(-30px, 20px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-40px, -20px); }
  50% { transform: translate(-60px, 30px); }
  75% { transform: translate(-20px, -40px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(60px, -20px); }
  75% { transform: translate(20px, 30px); }
}

/* Scan Lines Overlay */
.scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  z-index: 2;
  pointer-events: none;
}

/* Constellation Lines (optimized - static, no animation) */
.constellation-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.constellation-line {
  opacity: 0.05;
  stroke-dasharray: 5 10;
  /* No animation for performance */
}

/* Grid Pattern Background */
.dashboard-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 3;
}

/* Animated Growth Line */
.growth-line {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  opacity: 0.4;
}

.growth-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 6s linear infinite;
  opacity: 0.8;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 2000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Floating Proof Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 160px;
  transform: rotate(var(--rotate));
  opacity: 0.5;
  animation: float var(--float-speed, 6s) linear infinite;
  animation-delay: var(--delay);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 163, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  will-change: transform;
}

/* Different card sizes */
.floating-card.card-featured {
  width: 450px;
  opacity: 0.85;
  border: 2px solid rgba(0, 163, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(0, 163, 255, 0.25);
  z-index: 10;
}

.floating-card.card-featured-secondary {
  width: 380px;
  opacity: 0.75;
  border: 2px solid rgba(123, 47, 255, 0.4);
  box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 30px rgba(123, 47, 255, 0.2);
  z-index: 9;
}

.floating-card.card-lg {
  width: 220px;
  opacity: 0.5;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.floating-card.card-md {
  width: 160px;
  opacity: 0.4;
}

.floating-card.card-sm {
  width: 120px;
  opacity: 0.35;
}

.floating-card img {
  width: 100%;
  height: auto;
  display: block;
}

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

/* Floating Stat Bubbles */
.stat-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.stat-bubble {
  position: absolute;
  top: var(--y);
  left: var(--start-x);
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  opacity: 0.6;
  animation: drift var(--duration) linear infinite;
  white-space: nowrap;
  /* Removed backdrop-filter for performance */
}

.stat-bubble.viral {
  background: rgba(0,163,255,0.1);
  border-color: rgba(0,163,255,0.3);
  color: var(--accent-blue);
}

/* Optimized drift animation - no opacity changes for better performance */
@keyframes drift {
  0% {
    left: var(--start-x);
  }
  100% {
    left: var(--end-x);
  }
}

/* Dashboard Main Content */
.dashboard-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

/* Live Counter */
.live-counter {
  margin-bottom: 2rem;
}

.counter-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 30px rgba(0, 163, 255, 0.4));
}

.counter-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* Dashboard Headline */
.hero-dashboard h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-dashboard .hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Scroll Indicator for Dashboard */
.hero-dashboard .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  animation: scrollPulse 2s linear infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.2);
  }
}

/* Dashboard Hero Mobile */
@media (max-width: 768px) {
  .hero-dashboard {
    min-height: 100vh;
    padding: 6rem 0 2rem;
  }

  /* Floating cards as visible background decoration */
  .floating-cards {
    z-index: 1;
    pointer-events: none;
  }

  /* Hide all floating cards by default on mobile */
  .floating-card {
    display: none !important;
  }

  /* Mobile: Show 5 screenshots - 2 top, 1 middle-right, 2 bottom */
  /* Top Left */
  .floating-card.card-featured {
    display: block !important;
    position: absolute;
    width: 220px !important;
    opacity: 0.5 !important;
    top: 4% !important;
    left: -10px !important;
    right: auto !important;
    transform: rotate(-5deg) !important;
    z-index: 1;
    animation: none !important;
    border: 1px solid rgba(0, 163, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0, 163, 255, 0.15) !important;
  }

  /* Top Right */
  .floating-card.card-featured-secondary {
    display: block !important;
    position: absolute;
    width: 130px !important;
    opacity: 0.45 !important;
    top: 8% !important;
    left: auto !important;
    right: -10px !important;
    bottom: auto !important;
    transform: rotate(6deg) !important;
    z-index: 1;
    animation: none !important;
    border: 1px solid rgba(123, 47, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(123, 47, 255, 0.15) !important;
  }

  /* Middle Right - fills the dark gap between top cards (3rd child - ig_88m_spike) */
  .floating-card:nth-child(3) {
    display: block !important;
    position: absolute;
    width: 100px !important;
    opacity: 0.35 !important;
    top: 22% !important;
    bottom: auto !important;
    left: auto !important;
    right: 15% !important;
    transform: rotate(-8deg) !important;
    z-index: 1;
    animation: none !important;
    border: 1px solid rgba(0, 163, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 15px rgba(0, 163, 255, 0.1) !important;
  }

  /* Bottom Left - moved LOWER to avoid text overlap (4th card - tiktok_17m_viral) */
  .floating-card:nth-child(4) {
    display: block !important;
    position: absolute;
    width: 110px !important;
    opacity: 0.25 !important;
    top: auto !important;
    bottom: 4% !important;
    left: -10px !important;
    right: auto !important;
    transform: rotate(5deg) !important;
    z-index: 1;
    animation: none !important;
    border: 1px solid rgba(0, 163, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 15px rgba(0, 163, 255, 0.1) !important;
  }

  /* Bottom Right - moved LOWER to avoid text overlap (5th card - ig_27m_reel) */
  .floating-card:nth-child(5) {
    display: block !important;
    position: absolute;
    width: 100px !important;
    opacity: 0.25 !important;
    top: auto !important;
    bottom: 2% !important;
    left: auto !important;
    right: -5px !important;
    transform: rotate(-6deg) !important;
    z-index: 1;
    animation: none !important;
    border: 1px solid rgba(123, 47, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 15px rgba(123, 47, 255, 0.1) !important;
  }

  /* Hide ALL stat bubbles on mobile - they overlap text */
  .stat-bubbles {
    display: none !important;
  }

  /* Hide all orbs on mobile for performance */
  .glowing-orbs {
    display: none;
  }

  /* Hide scan lines on mobile */
  .scan-lines {
    display: none;
  }

  /* Hide constellation lines on mobile */
  .constellation-lines {
    display: none;
  }

  /* Hide scroll indicator on mobile - bottom nav is there */
  .hero-dashboard .scroll-indicator {
    display: none;
  }

  /* Dark spotlight gradient behind text for readability */
  .dashboard-content {
    position: relative;
    z-index: 10;
  }

  .dashboard-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
  }

  /* Counter with enhanced readability */
  .live-counter {
    position: relative;
    z-index: 10;
  }

  .counter-number {
    font-size: 2.2rem;
    text-shadow: 0 0 30px rgba(0, 163, 255, 0.5), 0 0 60px rgba(0, 163, 255, 0.3);
  }

  .counter-label {
    font-size: 0.85rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  }

  /* Headline with text shadow for readability */
  .hero-dashboard h1 {
    font-size: 1.8rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 4px 40px rgba(0, 0, 0, 0.7);
  }

  /* Subtitle with text shadow */
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
  }

  .hero-cta {
    position: relative;
    z-index: 10;
  }

  /* Full width Apply button on mobile */
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* See Our Results link - ensure readability */
  .hero-cta .link-arrow-hero {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  }
}

/* Floating cards always visible - no scroll fade */

/* ==================== MARQUEE CAROUSEL SYSTEM ==================== */
/* Single animation keyframe - used by all carousels */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Base marquee container */
.marquee {
  overflow: hidden;
  width: 100%;
}

/* Inner track that animates */
.marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee-scroll var(--duration) linear infinite;
  will-change: transform;
}

/* Reverse direction */
.marquee-inner.reverse {
  animation-direction: reverse;
}

/* Content wrapper - holds items, duplicated for seamless loop */
.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
}

/* ==================== TICKER SECTION ==================== */
.ticker-section {
  background: var(--bg-secondary);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
  padding: 0.75rem 0;
}

.ticker-section .marquee-content {
  gap: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--accent-blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0 1.5rem;
}

.ticker-item::after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent-blue);
  border-radius: 50%;
  margin-left: 1.5rem;
  flex-shrink: 0;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 3rem 0;
}

/* Specific tight sections */
.ticker-section {
  padding: 0.75rem 0;
}

.results-marquee {
  padding: 1rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin: 0 auto;
}

/* ==================== CLIENT CARDS ==================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.client-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
}

.client-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.client-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.client-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-medium);
}

.client-card:hover .client-card-image img {
  transform: scale(1.05);
}

.client-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}

.client-card-content {
  padding: 1.5rem;
}

.client-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.client-card .client-title {
  color: var(--accent-blue);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.client-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.stats-pill {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

/* Center crop for specific clients (Iman, Samuel) - revert to original */
.client-card.client-card-center .client-card-image img {
  object-position: center center;
}

/* Logo cards (for Dropship, Kirgo) */
.client-card.logo-card .client-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  padding: 2rem;
}

.client-card.logo-card .client-card-image img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

/* ==================== CLIENT PHOTO CAROUSEL ==================== */
.clients-carousel-section {
  padding: 3rem 0;
  background: var(--bg-primary);
}

.clients-carousel-section .section-header {
  margin-bottom: 2rem;
}

.clients-content {
  gap: 0;
}

.client-photo-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-right: 20px;
}

.client-photo-frame {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--glass-border);
}

.client-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Logo frames for Dropship, Kirgo - fill card completely like photos */
.client-photo-frame.logo-frame {
  padding: 0;
}

.client-photo-frame.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.client-photo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* Mobile client carousel */
@media (max-width: 768px) {
  .clients-carousel-section {
    padding: 2rem 0;
  }

  .client-photo-frame {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
  }


  .client-photo-card {
    margin-right: 16px;
  }

  .client-photo-name {
    font-size: 0.75rem;
  }
}

/* ==================== ABOUT PREVIEW ==================== */
.about-preview {
  padding: 80px 0;
  background: #0a0a0a;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-preview-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 1.5rem;
}

.about-preview-link {
  display: inline-block;
  color: #00A3FF;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.about-preview-link:hover {
  opacity: 0.8;
}

.about-preview-photo img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 0 40px rgba(0, 163, 255, 0.1);
}

@media (max-width: 768px) {
  .about-preview {
    padding: 60px 0;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-text h2 {
    font-size: 2rem;
  }

  .about-preview-photo img {
    max-width: 100%;
  }
}

/* ==================== RESULTS CAROUSEL ==================== */
.results-section {
  padding: 40px 0;
  overflow: hidden;
  background: #050505;
}

.results-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.results-carousel {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.results-carousel + .results-carousel {
  margin-top: 40px;
}

.results-track {
  display: flex;
  width: max-content;
  animation: resultsScroll 80s linear infinite;
}

.results-track.reverse {
  animation-direction: reverse;
}

.result-card {
  width: 180px;
  height: auto;
  margin-right: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.result-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@keyframes resultsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.see-all-link {
  display: block;
  text-align: center;
  color: #00A3FF;
  font-size: 16px;
  margin-top: 30px;
  text-decoration: none;
}

.see-all-link:hover {
  text-decoration: underline;
}

/* ==================== RESULTS GALLERY (Full page) ==================== */
.results-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-item.visible {
  /* Visible class no longer needed - elements show by default */
}

.result-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.result-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  transition: var(--transition-medium);
}

.result-item.landscape .result-image img {
  max-height: 400px;
}

.result-image:hover img {
  transform: scale(1.02);
}

.result-text h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
  font-size: 1.1rem;
}

.result-text p {
  font-size: 0.95rem;
}

/* ==================== KEY STATS SECTION ==================== */
.key-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}

.key-stat {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition-medium);
}

.key-stat:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.key-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.key-stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==================== SYSTEM TIMELINE ==================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple));
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 2rem;
}

.timeline-item.visible {
  /* Visible class no longer needed - elements show by default */
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--gradient-main);
  border-radius: 50%;
  box-shadow: var(--glow-blue);
}

.timeline-number {
  display: none;
}

.timeline-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline-item h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.timeline-item p {
  max-width: 100%;
}

/* ==================== ABOUT SECTION ==================== */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-text {
  padding-right: 2rem;
}

.founder-text blockquote {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-blue);
}

.founder-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.founder-image img {
  width: 100%;
  height: auto;
}

/* Lifestyle section */
.lifestyle-section {
  padding: 4rem 0;
}

.lifestyle-image {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lifestyle-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Social proof grid */
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-proof-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
}

.social-proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.social-proof-item:hover img {
  transform: scale(1.05);
}

.social-proof-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--text-primary);
  font-size: 0.9rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-section .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  z-index: -1;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin: 0 auto 2rem;
}

.cta-section .cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* CTA with gradient background (no image) */
.cta-section.cta-gradient {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%);
}

/* Stats pill row */
.stats-pills {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-secondary);
  border-top: var(--border-subtle);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--accent-blue);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 auto;
}

/* ==================== FADE IN ANIMATIONS ==================== */
/* All elements visible by default - no opacity animations that could hide content */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays removed - not needed without animations */
.stagger-1, .stagger-2, .stagger-3, .stagger-4, .stagger-5, .stagger-6 { }

/* ==================== VIEW ALL LINK ==================== */
.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1199px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-proof {
    order: -1;
  }

  .proof-card {
    max-width: 350px;
  }

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

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

  .result-item {
    grid-template-columns: 1fr;
  }

  .result-item:nth-child(even) {
    direction: ltr;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* Mobile */
@media (max-width: 768px) {
  /* Body padding for fixed nav at top and bottom nav at bottom */
  body {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  /* Fixed navbar at top - always visible */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0a0a0a;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar.scrolled {
    background: #0a0a0a;
    padding: 0.75rem 0;
  }

  section {
    padding: 2.5rem 0;
  }

  .ticker-row {
    padding: 0.3rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Hide hamburger, show bottom nav instead */
  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  /* Hero fonts smaller */
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .proof-card {
    max-width: 280px;
  }

  .proof-label {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }

  /* Faster carousels on mobile */
  .results-marquee .marquee-inner {
    --duration: 20s;
  }

  .clients-carousel-section .marquee-inner {
    --duration: 18s;
  }

  .ticker-section .marquee-inner {
    --duration: 15s;
  }

  .hero-content {
    padding-top: 0;
  }

  /* Stats 2x2 grid with smaller numbers */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* Client cards smaller and centered */
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .client-card {
    max-width: 280px;
    margin: 0 auto;
  }

  .client-card-image {
    height: 200px;
  }

  /* Faster results carousel on mobile */
  .results-track {
    animation-duration: 40s;
  }

  /* Results carousel smaller on mobile */
  .result-card {
    width: 140px;
    margin-right: 12px;
  }

  .results-section h2 {
    font-size: 24px;
  }

  /* Results page 1 column on mobile */
  .results-gallery-section .results-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .results-gallery-section .result-image,
  .results-gallery-section .result-image img {
    max-height: 250px;
    max-width: 250px;
    margin: 0 auto;
  }

  .results-gallery-section .result-item.landscape .result-image,
  .results-gallery-section .result-item.landscape .result-image img {
    max-height: none;
    max-width: 100%;
  }

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

  .key-stat {
    padding: 1.5rem 1rem;
  }

  .key-stat-number {
    font-size: 1.5rem;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item::before {
    left: -38px;
    width: 16px;
    height: 16px;
  }

  .timeline-number {
    display: none;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .stats-pills {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer needs extra bottom padding for fixed bottom nav */
  .footer {
    padding-bottom: 6rem;
  }

  .btn {
    padding: 0.875rem 2rem;
  }

  .btn-large {
    padding: 1rem 2.5rem;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .cta-section {
    padding: 5rem 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stats-bar {
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  /* Smaller result cards on small mobile */
  .result-card {
    width: 120px;
    margin-right: 10px;
  }

  .client-card {
    max-width: 260px;
  }

  .bottom-nav-item {
    font-size: 0.6rem;
  }

  .bottom-nav-item svg {
    width: 20px;
    height: 20px;
  }

  .bottom-nav-item.bottom-nav-cta svg {
    width: 28px;
    height: 28px;
    padding: 5px;
  }
}

/* ==================== MOBILE BOTTOM NAVIGATION ==================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  z-index: 9999;
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
}

/* Show bottom nav on mobile */
@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  transition: var(--transition-fast);
}

.bottom-nav-item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--accent-blue);
}

.bottom-nav-item.active svg,
.bottom-nav-item:hover svg {
  stroke: var(--accent-blue);
}

.bottom-nav-item.bottom-nav-cta {
  position: relative;
}

.bottom-nav-item.bottom-nav-cta svg {
  background: var(--gradient-main);
  border-radius: 50%;
  padding: 6px;
  width: 32px;
  height: 32px;
  stroke: white;
  box-shadow: var(--glow-blue);
}

.bottom-nav-item.bottom-nav-cta span {
  color: var(--accent-blue);
}


/* ==================== CASE STUDY PAGES ==================== */

/* Full Viewport Hero */
.case-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -2;
}

.case-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.4) 30%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.95) 85%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: -1;
}

.case-hero-content {
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 1000px;
}

.case-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.case-study-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

/* Hero Stats Row */
.case-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.case-hero-stat {
  text-align: center;
}

.case-hero-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(0, 163, 255, 0.4));
}

.case-hero-stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Story Section */
.case-story {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.case-story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.case-story-content .lead {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.case-story-content p {
  font-size: 1.1rem;
  max-width: 100%;
  margin: 0 auto;
}

/* Proof Section - Clean Grid */
.case-proof {
  padding: 5rem 0 6rem;
  background: var(--bg-primary);
}

.case-proof h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.case-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.case-proof-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.case-proof-item {
  margin: 0;
}

.case-proof-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}

.case-proof-item figcaption {
  padding: 1rem 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

/* ==================== SOCIAL PROOF SECTION (About Page) ==================== */
.social-proof-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.social-proof-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.social-proof-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.social-proof-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.social-proof-item figcaption {
  padding: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 320px;
  }

  .social-proof-item img {
    aspect-ratio: 4 / 3;
  }

  .social-proof-item figcaption {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
}

/* Case study button on client cards */
.client-card .btn-case-study {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--accent-blue);
  border-radius: 50px;
  color: var(--accent-blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: 0.75rem;
}

.client-card .btn-case-study:hover {
  background: var(--accent-blue);
  color: var(--text-primary);
}

/* Case study responsive */
@media (max-width: 768px) {
  .case-hero {
    min-height: 100vh;
  }

  .case-hero-content {
    padding: 6rem 1.5rem 3rem;
  }

  .case-hero h1 {
    font-size: 26px;
    margin-bottom: 2rem;
  }

  .case-hero-stats {
    gap: 1.5rem;
  }

  .case-hero-stat-number {
    font-size: 2rem;
  }

  .case-hero-stat-label {
    font-size: 0.75rem;
  }

  .case-story {
    padding: 3rem 0;
  }

  .case-story-content .lead {
    font-size: 1.2rem;
  }

  .case-proof {
    padding: 3rem 0 4rem;
  }

  .case-proof-grid,
  .case-proof-grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }
}

/* Images - native lazy loading, no custom opacity handling needed */

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: 80px 20px;
  background: #0a0a0a;
  text-align: center;
}

.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-top: 35px;
}

/* Glowing connecting line behind all steps */
.steps-line {
  position: absolute;
  top: 70px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, #00A3FF, #7B2FFF, #00A3FF);
  border-radius: 2px;
  z-index: 0;
  box-shadow: 0 0 12px rgba(0, 163, 255, 0.4), 0 0 30px rgba(0, 163, 255, 0.15);
}

.step {
  flex: 1;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  padding: 40px 24px;
  background: #111;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin: 0 10px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:hover {
  border-color: rgba(0, 163, 255, 0.3);
  box-shadow: 0 8px 40px rgba(0, 163, 255, 0.1), 0 0 60px rgba(0, 163, 255, 0.05);
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  background: linear-gradient(135deg, #00A3FF, #7B2FFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 25px rgba(0, 163, 255, 0.4);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  max-width: 100%;
}

@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 0;
  }

  .steps-line {
    display: none;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }
}

/* ==================== FAQ ==================== */
.faq-section {
  padding: 80px 20px;
  background: #050505;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

.faq-toggle {
  font-size: 24px;
  color: #00A3FF;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 24px;
  color: #888;
  line-height: 1.6;
}

.faq-platforms {
  display: flex;
  gap: 24px;
  padding: 0 0 24px;
}

.faq-platform-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

.faq-platform-icon svg {
  color: #00A3FF;
  opacity: 0.7;
}

/* ==================== FAQ PAGE ==================== */
.faq-page-section {
  padding-top: 40px;
}

.faq-page-section .faq-container {
  max-width: 800px;
}

.faq-category-heading {
  font-size: 24px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 163, 255, 0.3);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-category-heading:first-child {
  margin-top: 0;
}

.faq-page-section .faq-question h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.faq-section .see-all-link {
  display: block;
  text-align: center;
  margin-top: 32px;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.faq-section .see-all-link:hover {
  opacity: 0.8;
}

/* ==================== APPLY MODAL ==================== */
.apply-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.apply-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.apply-card {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  z-index: 1;
}

.apply-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color var(--transition-fast);
}

.apply-close:hover {
  color: var(--text-primary);
}

.apply-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.apply-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

#applyForm input,
#applyForm textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

#applyForm input::placeholder,
#applyForm textarea::placeholder {
  color: var(--text-secondary);
}

#applyForm input:focus,
#applyForm textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

#applyForm textarea {
  resize: vertical;
  min-height: 100px;
}

#applyForm button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--gradient-main);
  border: none;
  border-radius: 50px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--glow-blue);
}

#applyForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 163, 255, 0.4);
}

.apply-success {
  text-align: center;
  padding: 20px 0;
}

.apply-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
}

.apply-success p {
  color: var(--text-secondary);
  margin: 0 auto;
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
  .apply-card {
    padding: 30px 24px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .apply-card h2 {
    font-size: 1.5rem;
  }
}
