/* ==========================================================
   CUNIQUE GmbH - Responsive Layout Breakpoints
   ========================================================== */

/* Laptop & Medium Screens */
@media (max-width: 1200px) {
  .ecosystem-canvas-wrapper {
    width: 50vw;
  }

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

/* Tablets (Portrait & Landscape) */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    gap: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 8rem 0 6rem;
  }

  .ecosystem-canvas-wrapper {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 400px;
    margin-top: 3rem;
  }

  .brand-showcase, .brand-showcase.reverse {
    flex-direction: column;
    gap: 2.5rem;
  }

  .brand-media {
    width: 100%;
    height: 300px;
  }

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

/* Mobile Devices */
@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 5rem 0;
  }

  .display-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

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

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

  .contact-container {
    padding: 2rem 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}
