/* Additional styles for index page */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .feature-card {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid #FFD400;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 212, 0, 0.15);
  }
  
  .feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
  }
  
  .stats-section {
    background: #0a0a0a;
    padding: 80px 20px;
    text-align: center;
    margin: 80px 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 48px;
    color: #FFD400;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .stat-label {
    color: #aaa;
    font-size: 16px;
  }
  
  .testimonials {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .testimonial-card {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid #FFD400;
  }
  
  .testimonial-text {
    color: #aaa;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    background: #FFD400;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
  }
  
  .author-info h4 {
    color: #fff;
    margin-bottom: 5px;
  }
  
  .author-info p {
    color: #FFD400;
    font-size: 14px;
  }
  
  .cta-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 100px 20px;
    text-align: center;
    margin: 80px 0;
  }
  
  .cta-title {
    font-size: 42px;
    color: #FFD400;
    margin-bottom: 20px;
  }
  
  .cta-subtitle {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 40px;
  }
  
  .download-badges {
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .download-badges img {
    height: 60px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .download-badges img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    
    .stat-number {
      font-size: 36px;
    }
    
    .cta-title {
      font-size: 32px;
    }
    
    .download-badges {
      flex-direction: column;
      align-items: center;
    }
    
    .download-badges img {
      height: 50px;
    }
  }