/* Components */

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f8f8ff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 10000;
  transition: box-shadow 0.2s ease;
  will-change: box-shadow;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all var(--transition-normal);
}

.brand-container:hover {
  transform: scale(1.02);
}

.main-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  transition: all var(--transition-normal);
  object-fit: contain;
  transform: scale(1);
  transform-origin: left center;
}

/* Modern Features Section */
.modern-features {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 25%, #f8fafc 50%, #f1f5f9 75%, #e2e8f0 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.modern-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.015) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  width: fit-content;
  transition: all 0.3s ease;
}

.status-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.status-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
}

.status-icon {
  color: #3b82f6;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Features Header */
.features-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a202c;
  letter-spacing: -0.02em;
}

.features-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4a5568;
  font-weight: 400;
  max-width: 540px;
}

/* Feature Blocks */
.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.feature-block:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid;
}

.feature-icon.blue {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.feature-icon.purple {
  background: #ddd6fe;
  border-color: #c4b5fd;
  color: #6d28d9;
}

.feature-icon.green {
  background: #bbf7d0;
  border-color: #86efac;
  color: #047857;
}

.feature-icon.orange {
  background: #fed7aa;
  border-color: #fdba74;
  color: #c2410c;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.4;
}

.feature-bar {
  width: 64px;
  height: 12px;
  border-radius: 6px;
  opacity: 0.7;
}

.feature-bar.blue {
  background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
}

.feature-bar.purple {
  background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%);
}

.feature-bar.green {
  background: linear-gradient(90deg, #10b981 0%, #047857 100%);
}

.feature-bar.orange {
  background: linear-gradient(90deg, #f59e0b 0%, #c2410c 100%);
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.metric-card {
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  border: 1px solid;
}

.metric-icon.blue {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.metric-icon.green {
  background: #bbf7d0;
  border-color: #86efac;
  color: #047857;
}

.metric-icon.purple {
  background: #ddd6fe;
  border-color: #c4b5fd;
  color: #6d28d9;
}

.metric-icon.orange {
  background: #fed7aa;
  border-color: #fdba74;
  color: #c2410c;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.metric-bar {
  height: 8px;
  border-radius: 4px;
}

.metric-bar.blue {
  background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
}

.metric-bar.green {
  background: linear-gradient(90deg, #10b981 0%, #047857 100%);
}

.metric-bar.purple {
  background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%);
}

.metric-bar.orange {
  background: linear-gradient(90deg, #f59e0b 0%, #c2410c 100%);
}

/* Features CTA */
.features-cta {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.cta-button {
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cta-secondary {
  background: white;
  color: #4a5568;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.cta-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Features Visual */
.features-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  color: #3b82f6;
  transition: all 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.floating-badge.top-right {
  top: 2rem;
  right: 2rem;
}

.floating-badge.bottom-left {
  bottom: 2rem;
  left: 2rem;
  color: #7c3aed;
}

.visual-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #bae6fd 50%, #7dd3fc 75%, #38bdf8 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.visual-inner {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.visual-center {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  color: #1e40af;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .features-title {
    font-size: 2.5rem;
  }
  
  .features-visual {
    height: 400px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  
  .metric-card {
    padding: 0.75rem;
  }
  
  .metric-label {
    font-size: 0.7rem;
  }
  
  /* Hero Responsive */
  .hero-layout {
    max-width: 800px;
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .hero-visual {
    height: 350px;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modern-features {
    padding: 3rem 0;
  }
  
  .features-layout {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
  }
  
  .feature-block {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-cta {
    flex-direction: column;
  }
  
  .features-visual {
    height: 300px;
  }
  
  /* Hero Mobile */
  .modern-hero {
    padding: 3rem 0 1rem;
  }
  
  .hero-layout {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.875rem;
    line-height: 1.1;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-trust {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .hero-visual {
    height: 300px;
    margin-top: 1.5rem;
  }
  
  .visual-card {
    padding: 1.5rem;
    max-width: 350px;
  }
  
  .floating-element {
    width: 40px;
    height: 40px;
  }
}

/* Modern Hero Section */
.modern-hero {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 25%, #f8fafc 50%, #f1f5f9 75%, #e2e8f0 100%);
  padding: 4rem 0;
  padding-bottom: 0;
  margin-bottom: -7.2rem;
  position: relative;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(6, 182, 212, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  width: fit-content;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ea580c;
}

.badge-icon {
  color: #f59e0b;
}

/* Hero Header */
.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a202c;
  letter-spacing: -0.02em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 400;
  max-width: 600px;
  text-align: center;
}

/* Hero Analysis */
.hero-analysis {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Shiny Orange Text */
.shiny-orange {
  background: linear-gradient(135deg, #ff8c00 0%, #ffb366 40%, #ff7f50 60%, #ff934d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.2));
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.trust-item {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* Audio Wave Animation */
.audio-wave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 80px;
}

.audio-wave {
  width: 6px;
  background: linear-gradient(to top, #ff934d, #4a90e2);
  border-radius: 3px;
  animation: audioWave 1.5s ease-in-out infinite;
}

.audio-wave.wave-1 { height: 20px; animation-delay: 0s; }
.audio-wave.wave-2 { height: 35px; animation-delay: 0.1s; }
.audio-wave.wave-3 { height: 50px; animation-delay: 0.2s; }
.audio-wave.wave-4 { height: 65px; animation-delay: 0.3s; }
.audio-wave.wave-5 { height: 80px; animation-delay: 0.4s; }
.audio-wave.wave-6 { height: 80px; animation-delay: 0.5s; }
.audio-wave.wave-7 { height: 65px; animation-delay: 0.6s; }
.audio-wave.wave-8 { height: 50px; animation-delay: 0.7s; }
.audio-wave.wave-9 { height: 35px; animation-delay: 0.8s; }
.audio-wave.wave-10 { height: 20px; animation-delay: 0.9s; }

@keyframes audioWave {
  0%, 100% {
    transform: scaleY(0.5);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.floating-element {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  color: #3b82f6;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.floating-element:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.floating-element.top {
  top: -1rem;
  right: -1rem;
  animation-delay: 0s;
}

.floating-element.bottom {
  bottom: -3rem;
  left: -3rem;
  color: #7c3aed;
  animation-delay: 1.5s;
}

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

.hero-visual-main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.visual-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-part.orange {
  color: #ea580c;
}

.logo-part.blue {
  color: #2563eb;
}

.visual-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  animation: pulse 2s infinite;
}

.analysis-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.analysis-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.analysis-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  min-width: 80px;
}

.analysis-bar {
  flex: 1;
  height: 8px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 4px;
  transition: width 2s ease-in-out;
  animation: fillBar 2s ease-in-out;
}

.bar-fill.green {
  background: #059669;
}

.bar-fill.orange {
  background: #ea580c;
}

@keyframes fillBar {
  from {
    width: 0%;
  }
}

.analysis-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f2937;
  min-width: 35px;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .visual-card {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    padding: 4rem 0 1rem;
  }
  
  .hero-layout {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .visual-card {
    padding: 1.5rem;
  }
  
  .floating-element {
    width: 48px;
    height: 48px;
  }
}

.logo-image {
  height: 32px;
  width: auto;
  transition: all var(--transition-normal);
}

.nav-separator {
  color: var(--text-tertiary);
  font-size: 1.25rem;
  margin: 0 var(--spacing-xs);
}

.tagline {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: italic;
  opacity: 0.8;
  max-width: 350px;
  line-height: 1.3;
  margin-left: calc(var(--spacing-xs) - 2rem);
}

.nav-links {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

/* Buttons */
.cta-button,
.secondary-button {
  display: inline-block;
  padding: var(--spacing-lg) var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.cta-button {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border: none;
}

.cta-button:hover {
  background: var(--gradient-cta);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
  color: white;
}

.cta-orange {
  background: linear-gradient(135deg, #ff934d 0%, #ff7f50 100%) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(255, 147, 77, 0.3) !important;
}

.cta-orange:hover {
  background: linear-gradient(135deg, #ff7f50 0%, #ff6b35 100%) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(255, 147, 77, 0.4) !important;
  color: white !important;
}

/* Header specific button styling */
.nav-links .cta-button {
  background: transparent;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: none;
  border: none;
}

.nav-links .cta-button:hover {
  background: linear-gradient(
    135deg,
    var(--accent-dark) 0%,
    var(--accent-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-1px);
  box-shadow: none;
}

.secondary-button {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
  padding: 1rem 2.5rem;
}

.secondary-button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.cta-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  border: 2px solid white;
}

.cta-white:hover {
  background: var(--bg-light);
  color: var(--primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 10rem 0 8rem;
  background: transparent !important;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORCE BACKGROUND ELEMENTS TO BE TRANSPARENT */
.hero-content,
.hero-logo,
.hero-description,
.hero-description p,
.container {
  background: transparent !important;
  background-color: transparent !important;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 248, 255, 0.95) 0%,
    rgba(74, 144, 226, 0.08) 20%,
    rgba(255, 147, 77, 0.05) 40%,
    rgba(248, 248, 255, 0.98) 60%,
    rgba(74, 144, 226, 0.06) 80%,
    rgba(248, 248, 255, 1) 100%
  );
  background-size: 400% 400%;
  animation: gradientFlow 20s ease-in-out infinite;
  z-index: 1;
  will-change: background-position;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 998;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Hero Logo */
.hero-logo {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.hero-logo-text {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  animation: logoFloat 4s ease-in-out infinite;
  position: relative;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.orange-text {
  background: linear-gradient(
    145deg,
    #ff934d 0%,
    #ffb366 30%,
    #ff7f50 60%,
    #ff934d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 147, 77, 0.3));
  position: relative;
}

.orange-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s ease-in-out infinite;
}

.blue-text {
  background: linear-gradient(
    145deg,
    #4a90e2 0%,
    #6bb6ff 30%,
    #4f94e8 60%,
    #4a90e2 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.3));
  position: relative;
}

.blue-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s ease-in-out infinite 1.5s;
}

@keyframes shine {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  50% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Homepage navigation branding with shimmer effect */
.header .logo-image {
  display: none;
}

.header .brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header .nav-brand-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.header .nav-orange {
  background: linear-gradient(
    145deg,
    #ff934d 0%,
    #ffb366 30%,
    #ff7f50 60%,
    #ff934d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 147, 77, 0.3));
}

.header .nav-blue {
  background: linear-gradient(
    145deg,
    #4a90e2 0%,
    #6bb6ff 30%,
    #4f94e8 60%,
    #4a90e2 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.3));
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-logo-image:hover {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 12px 24px rgba(74, 144, 226, 0.3))
    drop-shadow(0 6px 12px rgba(255, 147, 77, 0.2));
}

.hero-title {
  margin-bottom: var(--spacing-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title.shiny-orange {
  background: linear-gradient(135deg, #ff8c00 0%, #ffb366 40%, #ff7f50 60%, #ff934d 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 0, 0.2)) !important;
}

.hero-description {
  font-size: clamp(var(--font-size-lg), 2vw, var(--font-size-2xl));
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: var(--text-secondary);
}

/* Subtle orange text effect for dance quote */
.highlight-orange-shine {
  background: linear-gradient(
    145deg,
    #ff934d 0%,
    #ffb366 30%,
    #ff7f50 60%,
    #ff934d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(255, 147, 77, 0.3));
}

/* Hero text highlights to make key phrases pop */
.highlight-brand {
  background: linear-gradient(145deg, #ff934d 0%, #4a90e2 50%, #ff934d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.highlight-mission {
  position: relative;
  font-weight: 600;
  color: #1e293b;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(59, 130, 246, 0.15) 60%
  );
  padding: 0 2px;
}

.highlight-bold {
  font-weight: 700;
  color: #e11d48;
  font-size: 1.2rem;
  display: inline-block;
  transform: skew(-2deg);
  padding: 0 4px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(225, 29, 72, 0.05) 50%,
    transparent 100%
  );
  border-radius: 4px;
  text-shadow: 0 0 10px rgba(225, 29, 72, 0.2);
}

.highlight-dance {
  position: relative;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 4px;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.highlight-dance::before {
  content: "✨";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  animation: sparkle 2s ease-in-out infinite;
}

.highlight-dance::after {
  content: "✨";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  animation: sparkle 2s ease-in-out infinite 0.5s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--spacing-3xl);
  animation: ctaSlideUp 1s ease-out 0.8s both;
}

@keyframes ctaSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta .cta-button {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 147, 77, 0.3);
}

.hero-cta .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.hero-cta .cta-button:hover::before {
  left: 100%;
}

.hero-cta .login-button-hero {
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  border-width: 3px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

/* Features Section */
.features {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  opacity: 0.8;
}

.section-title {
  background: linear-gradient(
    145deg,
    #4a90e2 0%,
    #6bb6ff 30%,
    #5da7ff 60%,
    #4a90e2 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.2));
}

.section-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-xl);
  max-width: 600px;
  margin: 0 auto;
}

.pricing .section-subtitle {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
  line-height: 1.8;
  font-size: 1.125rem;
}

/* Coaching Cards */
.coaching-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}

.coaching-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.2s ease, transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.coaching-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--transition-base);
}

.coaching-card[data-style="casual"]::before {
  background: var(--gradient-1);
}

.coaching-card[data-style="formal"]::before {
  background: var(--gradient-2);
}

.coaching-card[data-style="sales"]::before {
  background: var(--gradient-3);
}

.coaching-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.coaching-card:hover::before {
  height: 8px;
}

.coaching-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-3xl);
}

.coaching-card[data-style="casual"] .coaching-icon {
  background: linear-gradient(135deg, #667eea20, #764ba220);
  color: #667eea;
}

.coaching-card[data-style="formal"] .coaching-icon {
  background: linear-gradient(135deg, #f093fb20, #f5576c20);
  color: #f093fb;
}

.coaching-card[data-style="sales"] .coaching-icon {
  background: linear-gradient(135deg, #4facfe20, #00f2fe20);
  color: #4facfe;
}

.coaching-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

/* Benefits Section */
.benefits {
  background: var(--bg-light);
  padding: var(--spacing-3xl);
  margin-top: var(--spacing-3xl);
  border-radius: var(--radius-xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-3xl);
  box-shadow: var(--shadow-sm);
}

.benefit-item h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
  padding: var(--spacing-3xl) 0;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-background-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Login Button Styles */
.login-button {
  background: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all var(--transition-normal);
}

.login-button:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-1px);
}

.login-button-hero {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
  margin-left: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.login-button-hero:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Hero Enhancements */
.hero-subtitle {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #ff7f50 30%,
    #ffb366 60%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: textShimmer 8s ease-in-out infinite;
  position: relative;
  z-index: 1000;
  background-color: transparent;
}

@keyframes textShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradientShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  text-align: center;
  position: relative;
  z-index: 1000;
  background: none;
}

.hero-description p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.9;
  background: none;
}

/* Go Beyond Section */
.go-beyond {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-light);
}

.section-description {
  max-width: 700px;
  margin: 0 auto var(--spacing-2xl);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
}

.beyond-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.feature-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

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

/* Upload Section */
.upload-section {
  padding: var(--spacing-2xl) 0;
  background: white;
}

.upload-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.upload-card {
  background: var(--bg-light);
  padding: var(--spacing-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  border: 2px solid transparent;
}

.upload-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.upload-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
}

.upload-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.upload-card p {
  margin-bottom: var(--spacing-xl);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.footer p {
  opacity: 0.8;
}

/* How It Works Section */
.how-it-works {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.step-item {
  text-align: center;
  padding: var(--spacing-xl);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto var(--spacing-lg);
}

.step-item h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

/* Premium Testimonials Section */
.testimonials {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.premium-testimonials {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%, 
    rgba(255, 255, 255, 0.95) 25%, 
    rgba(248, 250, 252, 0.9) 50%, 
    rgba(241, 245, 249, 0.8) 75%, 
    rgba(226, 232, 240, 0.6) 100%);
}

.premium-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 147, 77, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Premium Header */
.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.badge-icon {
  width: 18px;
  height: 18px;
}

.header-content {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.title-emphasis {
  display: block;
  color: var(--text-primary);
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.2));
}

.section-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Stats Section */
.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Premium Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-2xl);
  position: relative;
  z-index: 2;
}

.premium-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

/* Hero Testimonial */
.hero-testimonial {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.15);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, rgba(255, 147, 77, 0.02) 100%);
  backdrop-filter: blur(1px);
}

.hero-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero-testimonial:hover .hero-glow {
  opacity: 0.05;
}

.rating-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.premium-stars {
  display: flex;
  gap: 0.25rem;
}

.premium-stars .star {
  width: 24px;
  height: 24px;
  color: #FFD700;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.featured-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 2rem;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  color: var(--primary);
  opacity: 0.1;
}

.hero-text {
  font-size: 1.375rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
  margin-left: 2rem;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.premium-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(74, 144, 226, 0.1);
  flex-shrink: 0;
}

.premium-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.author-metrics {
  display: flex;
  gap: 1rem;
}

.metric {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.verification-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.verification-badge svg {
  width: 16px;
  height: 16px;
}

/* Professional Cards */
.professional-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.professional-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-border-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-border-glow::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: inherit;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.95);
}

.professional-card:hover .card-border-glow {
  opacity: 0.1;
}

.purple-border {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.orange-border {
  background: linear-gradient(135deg, var(--accent) 0%, #dc2626 100%);
}

.green-border {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-category {
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: auto;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(74, 144, 226, 0.1);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-logo {
  margin-top: 0.25rem;
}

.company-logo span {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* CTA Section */
.testimonials-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(74, 144, 226, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.testimonials-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, rgba(255, 147, 77, 0.02) 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 144, 226, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-badge svg {
  width: 16px;
  height: 16px;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.cta-primary svg {
  width: 20px;
  height: 20px;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(74, 144, 226, 0.05);
  transform: translateY(-2px);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .testimonials-stats {
    gap: 2rem;
  }
  
  .premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-testimonial {
    grid-column: 1;
    padding: 2rem;
  }
  
  .hero-text {
    font-size: 1.125rem;
    margin-left: 0;
  }
  
  .testimonials-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.875rem;
  }
}

/* Enhanced FAQ Section */
.enhanced-faq {
  background: var(--bg-secondary);
  padding: var(--spacing-2xl) 0;
}

/* FAQ Badge */
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(74, 144, 226, 0.1);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

/* Enhanced FAQ Grid */
.enhanced-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Enhanced FAQ Items */
.enhanced-faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.enhanced-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.enhanced-faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* FAQ Summary */
.faq-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

/* FAQ Icon Wrapper */
.faq-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

.icon-blue {
  background: linear-gradient(135deg, var(--primary) 0%, #357ABD 100%);
}

.icon-orange {
  background: linear-gradient(135deg, var(--accent) 0%, #E67E3C 100%);
}

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.icon-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* FAQ Icon */
.faq-icon {
  width: 24px;
  height: 24px;
}

/* FAQ Content */
.faq-content {
  flex: 1;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.faq-summary:hover .faq-question {
  color: var(--primary);
}

.faq-category {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* Chevron */
.chevron {
  width: 24px;
  height: 24px;
  color: var(--text-tertiary);
  margin-left: 1rem;
}

/* FAQ Answer */
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  margin-left: 4rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Floating Animation */

/* FAQ Responsive */
@media (max-width: 768px) {
  .enhanced-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-answer {
    margin-left: 0;
  }
  
  .faq-summary {
    padding: 1rem;
  }
  
  .faq-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .faq-question {
    font-size: 1rem;
  }
}

/* Pricing Section */
.pricing {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-light);
}

/* Personalization Highlight */
.personalization-highlight {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(255, 147, 77, 0.1) 100%
  );
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
}

.personalization-highlight h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
}

.personalization-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}

.personalization-benefits .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-normal);
  text-align: center;
  min-height: 80px;
  justify-content: center;
}

.personalization-benefits .benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.personalization-benefits .benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.personalization-benefits .benefit-text {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.8rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .personalization-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .personalization-benefits .benefit-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .personalization-benefits {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-2xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-dark);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  gap: 0.25rem;
}

.currency {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}

.period {
  color: var(--text-secondary);
}

.features-list {
  list-style: none;
  margin-bottom: var(--spacing-xl);
}

.features-list li {
  padding: var(--spacing-sm) 0;
  color: var(--text-secondary);
  text-align: left;
}

/* New Pricing Plan Elements */
.plan-description {
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.plan-description p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-insight {
  margin: var(--spacing-lg) 0;
  text-align: center;
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
}

.plan-insight p {
  margin: 0;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9rem;
}

.pricing-note {
  margin: var(--spacing-md) 0;
  text-align: center;
  background: var(--accent);
  color: white;
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
}

.pricing-note p {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Enhanced Pricing Breakdown */
.pricing-breakdown {
  display: flex;
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
  justify-content: center;
}

.onboarding-fee,
.monthly-fee {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  flex: 1;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.onboarding-fee:hover,
.monthly-fee:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.fee-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  text-align: center;
}

.fee-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  line-height: 1;
}

.monthly-fee {
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.15) 0%,
    rgba(74, 144, 226, 0.08) 100%
  );
  border: 2px solid rgba(74, 144, 226, 0.3);
}

.monthly-fee .fee-amount {
  color: var(--primary);
}

.onboarding-fee {
  background: linear-gradient(
    135deg,
    rgba(255, 147, 77, 0.15) 0%,
    rgba(255, 147, 77, 0.08) 100%
  );
  border: 2px solid rgba(255, 147, 77, 0.3);
}

.onboarding-fee .fee-amount {
  color: #ea580c;
}

/* Enhanced CTA Section */
.cta-section {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.cta-icon svg {
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2xl);
  margin: var(--spacing-2xl) 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

.cta-primary-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xl) var(--spacing-3xl);
  font-size: 1.25rem;
  border-radius: var(--border-radius-full);
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  transition: all var(--transition-normal);
}

.cta-primary-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.button-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.button-subtext {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}

.trust-indicators {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-shadow: none;
}

/* FAQ Section */
.faq {
  padding: var(--spacing-2xl) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.faq-item {
  padding: var(--spacing-lg);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Transform Your Voice Section */
.transform-voice-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    #fafbfc 0%, 
    rgba(255, 255, 255, 0.95) 25%, 
    rgba(248, 250, 252, 0.98) 50%, 
    rgba(241, 245, 249, 0.95) 75%, 
    #e2e8f0 100%
  );
  overflow: hidden;
}

.transform-voice-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 147, 77, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(139, 92, 246, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Background Pattern */
.transform-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.floating-orb.orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  animation-delay: 0s;
}

.floating-orb.orb-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  background: radial-gradient(circle, rgba(255, 147, 77, 0.08) 0%, transparent 70%);
  animation-delay: 2s;
}

.floating-orb.orb-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 60%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  animation-delay: 4s;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(74, 144, 226, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 226, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Main Content */
.transform-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Transform Badge */
.transform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 144, 226, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.12);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.transform-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #4a90e2;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.transform-badge svg {
  color: #4a90e2;
  width: 16px;
  height: 16px;
}

.transform-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.025em;
}

/* Transform Header */
.transform-header {
  text-align: center;
  margin-bottom: 4rem;
}

.transform-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.title-highlight {
  display: block;
  color: #ff934d;
  position: relative;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.transform-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Value Cards */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(255, 147, 77, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.15);
  border-color: rgba(74, 144, 226, 0.3);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.value-icon svg {
  color: white;
  width: 24px;
  height: 24px;
}

.value-content {
  position: relative;
  z-index: 1;
}

.value-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.value-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Journey Map */
.journey-map {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.journey-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(74, 144, 226, 0.02) 0%, 
    rgba(255, 147, 77, 0.02) 50%, 
    rgba(139, 92, 246, 0.02) 100%
  );
  pointer-events: none;
}

.journey-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.journey-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.journey-header p {
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.6;
}

.journey-path {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.journey-step:hover {
  transform: translateY(-4px);
}

.step-indicator {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #64748b;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.journey-step.active .step-number {
  background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
  border-color: #4a90e2;
  color: white;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.journey-step:hover .step-number {
  border-color: #4a90e2;
  color: #4a90e2;
}

.step-connection {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 2rem;
  height: 2px;
  background: #e2e8f0;
  transform: translateY(-50%);
  z-index: 1;
}

.journey-step:last-child .step-connection {
  display: none;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.step-content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.step-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.step-tag.featured {
  background: linear-gradient(135deg, #ff934d 0%, #ea580c 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 147, 77, 0.3);
}

.journey-step:hover .step-tag {
  background: #e2e8f0;
  color: #334155;
}

.journey-step:hover .step-tag.featured {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  color: white;
}

/* Transform CTA */
.transform-cta {
  text-align: center;
}

.cta-content {
  margin-bottom: 3rem;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.cta-content p {
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4a90e2 0%, #2563eb 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74, 144, 226, 0.4);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #4a90e2;
  padding: 1rem 2rem;
  border: 2px solid #4a90e2;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: #4a90e2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

/* Transform Trust */
.transform-trust {
  display: flex;
  justify-content: center;
}

.trust-stats {
  display: flex;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .transform-voice-section {
    padding: 4rem 0;
  }
  
  .transform-content {
    padding: 0 1.5rem;
  }
  
  .transform-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .value-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .journey-path {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-map {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .transform-voice-section {
    padding: 3rem 0;
  }
  
  .transform-content {
    padding: 0 1rem;
  }
  
  .transform-header {
    margin-bottom: 3rem;
  }
  
  .transform-subtitle {
    font-size: 1.125rem;
  }
  
  .journey-path {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .step-connection {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}
