
:root {
    --gradient-future: linear-gradient(90deg, #000000 0%, #00B3FF 100%);
    --gradient-ai-video: linear-gradient(110deg, #FF66C1 0%, #88FF96 18.75%, #45FF45 70.89%, #5EC6FA 100%);
  }
  
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  * {
    box-sizing: border-box;
  }




.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    overflow: hidden;
    
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: auto;
    width: 100%;
  }
  
  .top-badge-wrapper {
    margin-bottom: 25px;
  }
  
  .top-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #02121a;
    border-radius: 44px;
    padding: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
  }
  
  .badge-highlight {
    background-color: #23feb1;
    color: #000000;
    padding: 5px 16px;
    border-radius: 44px;
    margin-right: 16px;
  }
  
  .badge-text {
    color: #000000;
    padding-right: 16px;
  }
  
  .trustpilot-wrapper {
    margin-bottom: 28px;
   
  }
  
  .trustpilot-img {
    max-width: 300px;
    height: auto;
  }
  
  .pre-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 29px;
    color: #000000;
    margin: 0 0 8px 0;
  }
  
  .main-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: -2.1px;
    margin: 0 0 31px 0;
  }
  
  .main-heading .gradient-text-future {
    font-weight: 700;
    background: var(--gradient-future);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .main-heading .gradient-text-ai {
    font-weight: 900;
    background: var(--gradient-future);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.18px;
    color: #000000;
    max-width: auto;
    margin: 0 0 29px 0;
  }
  
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
  }
  
  .btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .btn-hero:hover {
      transform: translateY(-2px);
  }
  
  .btn-primary-hero {
    background-color: #02121a;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    box-shadow: 0px 10px 30px rgba(20, 34, 244, 0.14);
  }
  
  .btn-primary-hero img {
    width: 32px;
    height: 18px;
  }
  
  .btn-secondary-hero {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    border: 2px solid #000000;
    padding: 15px 42px;
  }
  
  .btn-secondary-hero img {
      width: 12px;
      height: 24px;
  }
  
  .access-note {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 29px;
    letter-spacing: -0.14px;
    color: #000000;
    margin: 0 0 33px 0;
  }
  
  .reviews-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
  .user-avatars {
    width: 213px;
    height: 67px;
  }
  
  .review-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .stars-group {
    display: flex;
    gap: 4px;
  }
  
  .stars-group img {
    width: 24px;
    height: 24px;
  }
  
  .rating-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 29px;
    color: #000000;
  }
  
  .review-count {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    color: #000000;
    margin: 0;
    padding-left: 5px; /* Visual alignment */
  }
  
  @media (max-width: 768px) {
    .main-heading {
      font-size: 48px;
    }
    .description {
      font-size: 16px;
    }
    .cta-buttons {
      flex-direction: row;
      width: 100%;
    }
    .btn {
      
      max-width: 250px;
    }
  }
  
  @media (max-width: 480px) {
    .main-heading {
      font-size: 30px;
    }
    .description {
      font-size: 12px;
    }
    .top-badge {
      font-size: 10px;
    }
    .badge-highlight {
      padding: 2px 10px;
    }
    .reviews-section {
      flex-direction: column;
    }
    .cta-buttons {
      flex-direction: row;
      width: 100%;
    }
    .review-details {
      align-items: center;
    }
  }