/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════ */

/* ── Tablet (1024px) ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-subtitle {
    margin: 0 auto var(--space-8);
  }

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

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

  .hero-ring-container {
    width: 500px;
    height: 500px;
  }

  .ring-outer { width: 500px; height: 500px; }
  .ring-middle { width: 380px; height: 380px; }
  .ring-inner { width: 260px; height: 260px; }

  .hero-video-shell {
    width: 304px;
    height: 416px;
  }

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

  .included-card-highlight {
    grid-column: span 2;
  }

  .director-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }

  .director-highlights {
    align-items: center;
  }

  .director-badge-card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .director-photo {
    margin: 0 auto;
  }

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

  .video-card-large {
    grid-row: span 1;
  }

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

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

  .pricing-card-popular {
    transform: scale(1);
  }

  .pricing-card-popular:hover {
    transform: translateY(-6px);
  }

  .ads-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ads-visual {
    order: -1;
  }

  .ads-ring-group {
    width: 360px;
    height: 320px;
  }

  .ads-ring-1 { width: 300px; height: 300px; }
  .ads-ring-2 { width: 220px; height: 220px; }
  .ads-ring-3 { width: 150px; height: 150px; }

  .ads-platform-stage {
    transform: scale(0.92);
  }

  .ads-price-card {
    display: block;
  }

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

/* ── Mobile Large (768px) ── */
@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
    --navbar-height: 64px;
  }

  /* Navbar mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
    z-index: 5;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-gray-800);
  }

  .nav-links a::after {
    display: none;
  }

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

  .included-card-highlight {
    grid-column: span 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .testimonial-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-quote-mark {
    font-size: 80px;
    right: var(--space-6);
  }

  .service-item {
    grid-template-columns: 50px 1fr 36px;
    padding: var(--space-5) var(--space-4);
    gap: var(--space-4);
  }

  .service-item:hover {
    padding-left: var(--space-5);
  }

  .service-number {
    font-size: var(--text-2xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

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

  .ads-platform-stage {
    transform: scale(0.78);
  }
}

/* ── Mobile Small (480px) ── */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--navbar-height) + var(--space-8));
    padding-bottom: var(--space-8);
  }

  .hero-ring-container {
    width: 320px;
    height: 320px;
  }

  .ring-outer { width: 320px; height: 320px; }
  .ring-middle { width: 240px; height: 240px; }
  .ring-inner { width: 164px; height: 164px; }

  .hero-video-shell {
    width: 224px;
    height: 304px;
  }

  .play-button {
    width: 44px;
    height: 44px;
  }

  .play-button svg {
    width: 24px;
    height: 24px;
  }

  .hero-stats {
    gap: var(--space-4);
  }

  .stat-number, .stat-suffix {
    font-size: var(--text-2xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-scroll-indicator {
    display: none;
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

  .included-section,
  .examples-section,
  .visuals-section,
  .services-section,
  .pricing-section,
  .ads-section,
  .contact-section {
    padding: var(--space-16) 0;
  }

  .visuals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .contact-form-wrapper {
    padding: var(--space-5);
  }

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

  .whatsapp-tooltip {
    display: none;
  }

  .ads-platform-stage {
    transform: scale(0.64);
  }
}
