/* ============================================
   Responsive Design - Mobile First
   ============================================ */

/* ===== Tablet (768px) ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-title {
    font-size: var(--font-size-5xl);
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-container {
    grid-template-columns: 1fr;
  }

  .review-form-wrapper {
    position: static;
  }
}

/* ===== Mobile (640px) ===== */
@media (max-width: 768px) {
  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }

  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-12) 0;
  }

  /* Navbar Mobile */
  .navbar-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-6);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
    gap: var(--space-2);
    overflow-y: auto;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-link {
    width: 100%;
    padding: var(--space-3) var(--space-4);
  }

  .navbar-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-2);
  }

  .navbar-actions .btn {
    width: 100%;
  }

  .navbar-toggle {
    display: flex;
  }

  /* Hero Mobile */
  .hero {
    padding: var(--space-12) 0;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== Small Mobile (480px) ===== */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-base);
  }
}

/* ===== Print Styles ===== */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }

  body {
    color: black;
    background: white;
  }
}