/* Mobile Layout */
@media (max-width: 900px) {
  .nav-container {
    position: relative;
  }
  .options-btns {
      button {
          width: 55px;
          height: 55px;
          border-radius: 50%;
          font-size: 12px;
          font-weight: 600;
      }
  }
  /* Hide links on mobile */
  .nav-links {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    backdrop-filter: blur(25px);
    flex-direction: column;
    gap: 1.8rem;
    border-bottom: 1px solid #ffffff22;
    display: none;
    animation: slideDown 0.6s ease forwards;
    display: flex;
    align-items: center;
    padding: 100px 0;
    border-top: 1px solid var(--white);
    li {
      display: flex;
      width: 70%;
    }
    a {
      display: flex;
      width: 100%;
      justify-content: center;
      padding: 15px;
      font-size: 20px;
      background: #ffffff;
      border-radius: 50px;
      margin: 10px;
      color: var(--black);
      gap: 15px;
      align-items: center;
    }
  }

  /* Show when active */
  .nav-links.active {
    display: flex;
  }

  /* CTA Hidden and moved inside menu */
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Slide down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 9rem 0 0rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
