/* ============================================
   DESQIT - Glassmorphism Dark Theme
   Premium, modern, confident design
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors - Dark Theme */
  --color-bg-start: #0a0a1a;
  --color-bg-end: #0d1b2a;
  --color-white: #ffffff;
  --color-text: #ffffff;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;

  /* Accent Colors */
  --color-teal: #00d4b4;
  --color-teal-glow: rgba(0, 212, 180, 0.4);
  --color-teal-subtle: rgba(0, 212, 180, 0.15);
  --color-purple: #7c3aed;
  --color-purple-glow: rgba(124, 58, 237, 0.4);

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(12px);
  --glass-blur-heavy: blur(20px);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;
  --font-size-7xl: 5.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --glow-teal: 0 0 20px var(--color-teal-glow);
  --glow-teal-strong: 0 0 40px var(--color-teal-glow);
  --glow-card: 0 0 30px var(--color-teal-subtle);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Header height */
  --header-height: 80px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Animated Gradient Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 180, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 80%, rgba(0, 212, 180, 0.08) 0%, transparent 50%);
  animation: gradientShift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% {
    background:
      radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 180, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 50% 30% at 50% 80%, rgba(0, 212, 180, 0.08) 0%, transparent 50%);
  }
  33% {
    background:
      radial-gradient(ellipse 70% 45% at 30% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 65% 50% at 70% 40%, rgba(0, 212, 180, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 55% 35% at 40% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  }
  66% {
    background:
      radial-gradient(ellipse 75% 55% at 60% 30%, rgba(0, 212, 180, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 55% 45% at 25% 70%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 75% 50%, rgba(0, 212, 180, 0.08) 0%, transparent 50%);
  }
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-teal {
  color: var(--color-teal);
}

.text-center {
  text-align: center;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 30px var(--color-teal-glow);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-6xl);
  }

  h2 {
    font-size: var(--font-size-5xl);
  }

  h3 {
    font-size: var(--font-size-3xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-7xl);
  }
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.container-wide {
  max-width: var(--max-width-wide);
}

section {
  padding: var(--space-20) 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-32) 0;
  }
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav-desktop a {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-desktop a:hover {
  color: var(--color-teal);
}

.nav-desktop a.active {
  color: var(--color-teal);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  box-shadow: var(--glow-teal);
}

.header-cta {
  display: none;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  border-radius: var(--radius-full);
}

.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(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 26, 0.98);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  padding: var(--space-8);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 999;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--glass-border);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-teal);
}

.nav-mobile .btn {
  margin-top: var(--space-8);
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-bg-start);
  box-shadow: var(--glow-teal);
}

.btn-primary:hover {
  background: #00e5c3;
  box-shadow: var(--glow-teal-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-teal);
  box-shadow: 0 0 10px var(--color-teal-subtle);
}

.btn-secondary:hover {
  background: var(--color-teal-subtle);
  box-shadow: var(--glow-teal);
  transform: translateY(-2px);
}

.btn-text {
  padding: 0;
  color: var(--color-text-muted);
  font-weight: 500;
}

.btn-text:hover {
  color: var(--color-teal);
}

.btn-text .arrow {
  transition: transform var(--transition-fast);
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--font-size-base);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-bg-start);
}

.btn-white:hover {
  background: var(--color-teal);
  box-shadow: var(--glow-teal-strong);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--color-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hero Animated Orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 15s ease-in-out infinite;
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 180, 0.3) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -7.5s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

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

.hero h1 {
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 650px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + var(--space-24));
    padding-bottom: var(--space-24);
  }

  .hero-subtitle {
    font-size: var(--font-size-xl);
  }
}

/* Page Hero (internal pages) */
.page-hero {
  padding-top: calc(var(--header-height) + var(--space-20));
  padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 180, 0.2) 0%, transparent 70%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.page-hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: calc(var(--header-height) + var(--space-32));
    padding-bottom: var(--space-20);
  }

  .page-hero-subtitle {
    font-size: var(--font-size-xl);
  }
}

/* ============================================
   Section Styles
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

/* Accent Line */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  margin: var(--space-6) auto 0;
  border-radius: var(--radius-full);
  box-shadow: var(--glow-teal);
}

/* ============================================
   Glass Cards
   ============================================ */

.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glow-card);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-teal-subtle), rgba(124, 58, 237, 0.1));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-teal);
  box-shadow: 0 0 20px var(--color-teal-subtle);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.card p {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: 1.7;
}

/* Pain Point Cards */
.pain-card {
  text-align: center;
  padding: var(--space-6);
}

.pain-card .pain-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-teal);
}

.pain-card .pain-icon svg {
  width: 40px;
  height: 40px;
}

.pain-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.pain-card p {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

.pain-card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 25px var(--color-teal-subtle), inset 0 0 20px rgba(0, 212, 180, 0.03);
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Stats Section
   ============================================ */

.stats-section {
  padding: var(--space-16) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.stat-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: var(--space-2);
  text-shadow: 0 0 30px var(--color-teal-glow);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .stat-number {
    font-size: var(--font-size-4xl);
  }
}

/* ============================================
   Problem Section
   ============================================ */

.problem-content {
  max-width: 750px;
  margin: 0 auto;
}

.problem-content h2 {
  margin-bottom: var(--space-10);
  text-align: center;
}

.problem-content p {
  font-size: var(--font-size-lg);
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* ============================================
   Solution Cards
   ============================================ */

.solution-card {
  text-align: center;
}

.solution-card .card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
}

.solution-card .card-icon svg {
  width: 36px;
  height: 36px;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-card {
  padding: var(--space-8);
}

.testimonial-quote {
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  border-radius: var(--radius-full);
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-white);
}

.testimonial-business {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 180, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 180, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

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

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

/* ============================================
   Final CTA
   ============================================ */

.final-cta {
  text-align: center;
  padding: var(--space-24) 0;
}

.final-cta h2 {
  margin-bottom: var(--space-4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

/* ============================================
   Timeline / Process Steps
   ============================================ */

.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: var(--space-6);
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-purple));
  opacity: 0.3;
}

.timeline-number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  color: var(--color-bg-start);
  font-weight: 700;
  font-size: var(--font-size-lg);
  border-radius: var(--radius-full);
  box-shadow: var(--glow-teal);
}

.timeline-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.timeline-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   Channel Grid
   ============================================ */

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .channel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .channel-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.channel-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.channel-item:hover {
  border-color: var(--color-teal);
  box-shadow: var(--glow-card);
  transform: translateY(-4px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-3);
  color: var(--color-teal);
}

.channel-icon svg {
  width: 100%;
  height: 100%;
}

.channel-item span {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ============================================
   Vertical Cards (Who It's For)
   ============================================ */

.vertical-card {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-8);
}

.vertical-card .card-icon {
  flex-shrink: 0;
}

.vertical-card-content h3 {
  margin-bottom: var(--space-3);
}

/* ============================================
   Profile Section
   ============================================ */

.profile-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.profile-content h2 {
  margin-bottom: var(--space-10);
}

.profile-content p {
  font-size: var(--font-size-lg);
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  text-align: left;
}

/* ============================================
   About Page
   ============================================ */

.story-content {
  max-width: 750px;
  margin: 0 auto;
}

.story-content p {
  font-size: var(--font-size-lg);
  line-height: 1.9;
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
}

.principles-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.principle-card {
  text-align: center;
}

.principle-card h3 {
  color: var(--color-teal);
  margin-bottom: var(--space-4);
  text-shadow: 0 0 20px var(--color-teal-subtle);
}

/* ============================================
   Contact Page
   ============================================ */

.contact-content {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.calendly-placeholder {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-16);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calendly-placeholder p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.contact-info h3 {
  margin-bottom: var(--space-4);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-teal);
  font-weight: 500;
  margin-bottom: var(--space-8);
  transition: all var(--transition-fast);
}

.contact-email:hover {
  text-shadow: 0 0 20px var(--color-teal-glow);
}

.expect-list {
  margin-top: var(--space-8);
}

.expect-list h4 {
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.expect-list ul {
  list-style: none;
  padding-left: 0;
}

.expect-list li {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
  padding-left: var(--space-6);
  position: relative;
}

.expect-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--color-teal-glow);
}

.no-pressure {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  font-style: italic;
}

/* ============================================
   Scorecard
   ============================================ */

.scorecard-container {
  max-width: 650px;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  min-height: 100vh;
}

.scorecard-intro {
  text-align: center;
  margin-bottom: var(--space-12);
}

.scorecard-intro h1 {
  margin-bottom: var(--space-6);
}

.scorecard-intro p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

/* Progress Bar */
.progress-bar {
  height: 4px;
  background: var(--glass-bg);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-10);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
  box-shadow: var(--glow-teal);
}

/* Question */
.question-container {
  display: none;
}

.question-container.active {
  display: block;
  animation: fadeSlideIn 0.4s ease-out;
}

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

.question-number {
  font-size: var(--font-size-sm);
  color: var(--color-teal);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.question-text {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-8);
  color: var(--color-white);
  line-height: 1.3;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.answer-option {
  padding: var(--space-5) var(--space-6);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.answer-option:hover {
  border-color: var(--color-teal);
  background: var(--glass-bg-hover);
  color: var(--color-white);
  box-shadow: 0 0 20px var(--color-teal-subtle);
}

.answer-option.selected {
  border-color: var(--color-teal);
  background: var(--color-teal);
  color: var(--color-bg-start);
  box-shadow: var(--glow-teal);
}

/* Results */
.results-container {
  display: none;
  text-align: center;
}

.results-container.active {
  display: block;
  animation: fadeSlideIn 0.5s ease-out;
}

.score-ring {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-8);
  position: relative;
}

.score-ring svg {
  transform: rotate(-90deg);
}

.score-ring-bg {
  fill: none;
  stroke: var(--glass-bg);
  stroke-width: 8;
}

.score-ring-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s ease-out;
  filter: drop-shadow(0 0 10px var(--color-teal-glow));
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--color-white);
}

.score-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  display: block;
  margin-top: var(--space-1);
}

.rating-label {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.rating-excellent {
  color: var(--color-teal);
  text-shadow: 0 0 30px var(--color-teal-glow);
}
.rating-good {
  color: #22c55e;
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}
.rating-needs-work {
  color: #f59e0b;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}
.rating-critical {
  color: #ef4444;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.results-feedback {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.results-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}

.stat-card .stat-value {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-teal);
  text-shadow: 0 0 20px var(--color-teal-glow);
}

.stat-card .stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.results-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

/* Lead Capture Form */
.form-container {
  display: none;
}

.form-container.active {
  display: block;
  animation: fadeSlideIn 0.5s ease-out;
}

.lead-form-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
}

.lead-form-card h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-3);
}

.form-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-5);
  text-align: left;
}

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.form-group .optional {
  font-weight: 400;
  color: var(--color-text-dim);
}

.form-group input {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--color-text-dim);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(0, 212, 180, 0.05);
  box-shadow: 0 0 15px var(--color-teal-subtle);
}

.form-group input.input-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-group input.input-error:focus {
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.error-message {
  display: block;
  font-size: var(--font-size-xs);
  color: #ef4444;
  margin-top: var(--space-2);
  min-height: 1em;
}

.btn-full {
  width: 100%;
  margin-top: var(--space-4);
}

.form-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-text-dim);
  margin-top: var(--space-6);
  margin-bottom: 0;
}

/* Results Personalization */
.results-greeting {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.email-confirmation {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

/* ============================================
   Privacy Policy
   ============================================ */

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.policy-content ul {
  list-style: none;
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
}

.policy-content ul li {
  position: relative;
  padding-left: var(--space-4);
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-teal);
  border-radius: var(--radius-full);
}

.policy-content a {
  color: var(--color-teal);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.policy-content a:hover {
  text-shadow: 0 0 15px var(--color-teal-glow);
}

.policy-date {
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
  margin-bottom: var(--space-10);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
  opacity: 0.5;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer-nav a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-teal);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--glass-border);
  font-size: var(--font-size-sm);
  color: var(--color-text-dim);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  color: var(--color-text-dim);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-teal);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   Scroll Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children animations */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 100ms; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 200ms; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 300ms; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 400ms; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   Utility Classes
   ============================================ */

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

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
