/* ============================================
   ChartRace3D Landing Page - Vanilla CSS
   ============================================ */

/* CSS Variables */
:root {
  --brand-lime: #BCFF00;
  --brand-cyan: #00F0FF;
  --brand-purple: #7000FF;
  --brand-bg: #0A0A0A;
  --brand-bg-elevated: #141414;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-faint: rgba(255, 255, 255, 0.3);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);
  --red: #FF0000;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--brand-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(188, 255, 0, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(188, 255, 0, 0.4);
}

/* Selection */
::selection {
  background: rgba(188, 255, 0, 0.3);
  color: white;
}

/* Typography Utilities */
.text-lime { color: var(--brand-lime); }
.text-cyan { color: var(--brand-cyan); }
.text-purple { color: var(--brand-purple); }
.text-red { color: var(--red); }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 700px;
}

.section-border {
  border-top: 1px solid var(--border-color);
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--brand-lime);
  color: var(--brand-bg);
}

.btn-primary:hover {
  background: #d4ff4d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-xlarge {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  height: 3.5rem;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  box-shadow: 0 0 40px rgba(188, 255, 0, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 60px rgba(188, 255, 0, 0.6);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

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

/* ============================================
   Background Effects
   ============================================ */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: pulse-slow 10s ease-in-out infinite;
}

.bg-blob-purple {
  top: 0;
  left: 25%;
  width: 1000px;
  height: 800px;
  background: rgba(112, 0, 255, 0.15);
}

.bg-blob-lime {
  top: 160px;
  right: 0;
  width: 800px;
  height: 600px;
  background: rgba(188, 255, 0, 0.08);
  animation-delay: 2s;
}

.bg-blob-cyan {
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(0, 240, 255, 0.08);
  animation-delay: 4s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--brand-lime) 1px, transparent 1px),
    linear-gradient(90deg, var(--brand-lime) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.02;
}

/* ============================================
   Live Activity Notification
   ============================================ */
.live-activity {
  position: fixed;
  bottom: 6rem;
  left: 1.5rem;
  z-index: 50;
  transition: all 0.5s ease;
}

.live-activity.hidden {
  transform: translateX(-100%);
  opacity: 0;
}

.live-activity.visible {
  transform: translateX(0);
  opacity: 1;
}

.live-activity-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-lime);
  animation: pulse 2s infinite;
}

.live-text {
  font-size: 0.875rem;
}

.live-name {
  color: var(--text-primary);
  font-weight: 500;
}

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

.live-time {
  color: var(--text-faint);
  font-size: 0.75rem;
}

/* ============================================
   Mobile CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  background: linear-gradient(to top, var(--brand-bg), rgba(10, 10, 10, 0.95), transparent);
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}

.mobile-spacer {
  display: none;
  height: 6rem;
}

@media (max-width: 768px) {
  .mobile-spacer {
    display: block;
  }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon-wrapper {
  position: relative;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: var(--brand-lime);
  border-radius: 0.5rem;
  filter: blur(12px);
  opacity: 0.4;
}

.logo-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: var(--brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand-bg);
}

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

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav-cta {
  display: none;
  box-shadow: 0 0 20px rgba(188, 255, 0, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(188, 255, 0, 0.5);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 7rem 1.5rem 4rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero {
    padding: 9rem 1.5rem 6rem;
  }
}

.hero .container {
  max-width: 1200px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
}

.avatar-stack {
  display: flex;
  margin-left: -0.25rem;
}

.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(188, 255, 0, 0.3), rgba(0, 240, 255, 0.3));
  border: 2px solid var(--brand-bg);
  margin-left: -4px;
}

.avatar:first-child {
  margin-left: 0;
}

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

.trust-text strong {
  color: var(--text-primary);
}

.main-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(188, 255, 0, 0.1);
  border: 1px solid rgba(188, 255, 0, 0.3);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.main-badge .icon {
  color: var(--brand-lime);
}

.hero-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text-wrapper {
  position: relative;
  display: inline-block;
}

.gradient-text-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-lime), var(--brand-cyan), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(32px);
  opacity: 0.6;
}

.gradient-text {
  position: relative;
  background: linear-gradient(90deg, var(--brand-lime), var(--brand-cyan), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.micro-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-faint);
}

.micro-text .icon {
  color: var(--brand-lime);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .stats-bar {
    gap: 3rem;
  }
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

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

/* Hero Video */
.hero-video-wrapper {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, rgba(188, 255, 0, 0.4), rgba(0, 240, 255, 0.4), rgba(112, 0, 255, 0.4));
  border-radius: 1rem;
  filter: blur(32px);
  opacity: 0.5;
}

.video-border {
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, rgba(188, 255, 0, 0.5), rgba(0, 240, 255, 0.5), rgba(112, 0, 255, 0.5));
  border-radius: 0.75rem;
  opacity: 0.3;
}

.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-hover);
  background: var(--brand-bg);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.floating-badge {
  display: none;
  position: absolute;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
  .floating-badge {
    display: flex;
  }
}

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

.badge-left {
  left: -1rem;
  bottom: 3rem;
}

/* Platform Badges */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Comparison Section
   ============================================ */
.comparison {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.comparison-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.comparison-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-positive {
  position: relative;
  border-color: rgba(188, 255, 0, 0.3);
  background: rgba(188, 255, 0, 0.05);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(188, 255, 0, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.comparison-negative .comparison-header {
  color: var(--text-secondary);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.comparison-list li .icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.comparison-negative .comparison-list li {
  color: var(--text-muted);
}

.comparison-negative .comparison-list li .icon {
  color: rgba(239, 68, 68, 0.5);
}

.comparison-positive .comparison-list li {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   How it Works Section
   ============================================ */
.how-it-works {
  position: relative;
  padding: 5rem 1.5rem;
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(112, 0, 255, 0.05), transparent);
  pointer-events: none;
}

.section-bg-lime {
  background: linear-gradient(to bottom, transparent, rgba(188, 255, 0, 0.03), transparent);
}

.section-bg-purple {
  background: linear-gradient(to bottom, transparent, rgba(112, 0, 255, 0.05), transparent);
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-size: 0.75rem;
  color: var(--brand-cyan);
  margin-bottom: 1rem;
}

.time-badge .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.step-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-hover);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.download-link:hover {
  color: var(--brand-lime);
  border-color: rgba(188, 255, 0, 0.3);
}

.download-link-cyan:hover {
  color: var(--brand-cyan);
  border-color: rgba(0, 240, 255, 0.3);
}

/* ============================================
   Demo Section
   ============================================ */
.demo {
  padding: 5rem 1.5rem;
}

.demo-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .demo-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.use-cases {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.use-case-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: default;
}

.use-case-item:hover {
  border-color: rgba(188, 255, 0, 0.3);
  background: rgba(188, 255, 0, 0.05);
}

.use-case-emoji {
  font-size: 1.25rem;
}

.use-case-item span:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.demo-video-wrapper {
  position: relative;
}

.demo-video-glow {
  position: absolute;
  inset: -8px;
  background: linear-gradient(90deg, rgba(112, 0, 255, 0.2), rgba(0, 240, 255, 0.2), rgba(188, 255, 0, 0.2));
  border-radius: 1rem;
  filter: blur(32px);
  opacity: 0.5;
}

.demo-video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: black;
}

.demo-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  position: relative;
  padding: 5rem 1.5rem;
}

.features-grid {
  display: grid;
  gap: 1rem;
}

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

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

.feature-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.5);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
  padding: 5rem 1.5rem;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.pricing-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background: rgba(10, 10, 10, 0.5);
}

.pricing-card-featured {
  position: relative;
  border-width: 2px;
  border-color: rgba(188, 255, 0, 0.5);
  background: rgba(188, 255, 0, 0.05);
}

.pricing-glow {
  position: absolute;
  inset: -1px;
  background: linear-gradient(to bottom, rgba(188, 255, 0, 0.2), transparent);
  border-radius: 1rem;
  filter: blur(20px);
  z-index: -1;
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--brand-lime);
  color: var(--brand-bg);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-tier {
  color: var(--brand-lime);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-period-inline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.pricing-features li .icon {
  color: var(--text-faint);
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card-featured .pricing-features li .icon {
  color: var(--brand-lime);
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonial {
  position: relative;
  padding: 5rem 1.5rem;
}

.testimonial-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-lime);
}

.testimonial blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .testimonial blockquote {
    font-size: 1.5rem;
  }
}

.testimonial cite {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: 5rem 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--brand-lime);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

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

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(188, 255, 0, 0.1);
  border-radius: 50%;
  filter: blur(200px);
}

.final-cta .container {
  position: relative;
  max-width: 48rem;
}

.final-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-cta h2 {
    font-size: 3rem;
  }
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.logo-icon-small {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-small svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-bg);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-lime);
}

/* ============================================
   Animations
   ============================================ */
@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02);
  }
}

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

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-lime);
  outline-offset: 2px;
}

/* Responsive font size */
@media (max-width: 640px) {
  html {
    font-size: 14px;
  }
}
