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

/* Tablet: <= 991px */
@media screen and (max-width: 991px) {
  :root {
    --padding-global: 1.5rem;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }

  .hero-animation {
    max-width: 400px;
    margin: 0 auto;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .insight-block {
    flex-direction: row;
    align-items: center;
  }

  .insight-text {
    min-height: auto;
    flex: 1;
  }

  .insight-image {
    width: 200px;
    min-width: 200px;
    aspect-ratio: 1;
  }

  .intelligence-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .platform-features {
    grid-template-columns: 1fr;
  }

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

  .studio-content,
  .concierge-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  .heading-h1 {
    font-size: 2.5rem;
  }

  .heading-h2,
  .section-cta h2,
  .intelligence-text h2,
  .platform-header h2,
  .testimonials-header h2,
  .how-teams-header h2 {
    font-size: 2rem;
  }
}

/* Mobile Landscape: <= 767px */
@media screen and (max-width: 767px) {
  .hero-heading {
    font-size: 2rem;
  }

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

  .hero-line-divider {
    display: none;
  }

  .intelligence-cards {
    grid-template-columns: 1fr;
  }

  .insight-block {
    flex-direction: column;
  }

  .insight-image {
    width: 100%;
  }

  .concierge-cards {
    grid-template-columns: 1fr;
  }

  .api-wrapper {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile: <= 479px */
@media screen and (max-width: 479px) {
  :root {
    --padding-global: 1rem;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .section-hero {
    padding-top: 7rem;
  }

  .section-intelligence,
  .section-platform,
  .section-insights,
  .section-testimonials,
  .section-how-teams,
  .section-cta {
    padding: var(--space-3xl) 0;
  }

  .section-transition {
    height: 60px;
  }

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

  .testimonial-quote {
    font-size: var(--text-base);
  }

  .studio-mockup-content {
    grid-template-columns: 1fr;
  }
}
