/* ===== Responsive ===== */

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .header-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-header {
    max-width: calc(100% - 32px);
  }

  .hero {
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 16px;
  }

  .hero-content {
    max-width: 90%;
  }

  .section-screenshots,
  .section-outreach,
  .section-testimonial,
  .section-cta {
    padding: 48px 0;
  }

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

  .snippet-table {
    min-width: 600px;
  }

  .snippet-csv {
    overflow-x: auto;
  }

  .social-proof-header {
    flex-direction: column;
  }

  .social-proof-rating {
    align-items: center;
  }

  .social-proof-text {
    text-align: center;
  }

  .social-proof-avatar {
    width: 36px;
    height: 36px;
  }

  .cta-content .btn-lg {
    width: 100%;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-inner {
    gap: 64px;
  }

  .footer-logo {
    height: 36px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

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

  main {
    border-radius: 0 0 24px 24px;
  }
}

/* Tablet (768px – 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    padding-bottom: 32px;
  }

  .section-screenshots,
  .section-outreach,
  .section-testimonial,
  .section-cta {
    padding: 64px 0;
  }

  .outreach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop (≥ 1200px) */
@media (min-width: 1200px) {
  .section-screenshots,
  .section-outreach,
  .section-testimonial,
  .section-cta {
    padding: 100px 0;
  }

}
