/* ═══════════════════════════════════════════
   MOBILE FIRST RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet and below */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--asymmetric { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .hero__title { font-size: var(--text-5xl); }

  .trust-bar {
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-8) var(--container-pad);
  }

  .review-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: clamp(3rem, 6vw, 5rem);
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 90vh;
    padding-top: 100px;
  }

  .hero__title { font-size: var(--text-4xl); }
  .hero__subtitle { font-size: var(--text-base); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .page-hero {
    padding: calc(80px + var(--space-10)) 0 var(--space-10);
  }
  .page-hero__title { font-size: var(--text-4xl); }

  .trust-bar {
    flex-direction: column;
    gap: var(--space-5);
    align-items: center;
  }

  .trust-item {
    flex-direction: row;
    gap: var(--space-4);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .section__title { font-size: var(--text-3xl); }

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

  .review-stats {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }

  .review-stats__divider {
    width: 60px;
    height: 1px;
  }

  .whatsapp-float {
    right: var(--space-4);
    bottom: var(--space-4);
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float__tooltip { display: none; }

  .card { padding: var(--space-6); }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__title { font-size: var(--text-3xl); }
  .page-hero__title { font-size: var(--text-3xl); }
  .btn--lg { font-size: var(--text-sm); padding: 0.85em 1.8em; }
}
