/* ============ TABLET (< 900px) ============ */
@media (max-width: 899px) {
  :root {
    --font-size-h1: 36px;
    --font-size-h2: 30px;
    --section-padding: 80px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }


  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content .moving-border-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card {
    width: 100%;
  }

  .features-grid,
  .discovery-grid,
  .best-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ MOBILE (< 600px) ============ */
@media (max-width: 599px) {
  :root {
    --font-size-h1: 28px;
    --font-size-h2: 24px;
    --font-size-body: 15px;
    --section-padding: 60px;
    --container-padding: 16px;
  }

  .navbar {
    padding: 0 12px;
  }

  .navbar-inner {
    padding: 10px 16px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-blue {
    justify-content: center;
  }

  .features-grid,
  .features-grid--4,
  .discovery-grid,
  .best-for-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-section .container {
    padding: 60px 24px;
    border-radius: 16px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .footer-logo-watermark span {
    font-size: 48px !important;
  }
}
