/* ============================================
   Get Zara AI — Responsive Breakpoints
   ============================================ */

/* --- Tablet (max 991px) --- */
@media (max-width: 991px) {
  :root {
    --section-padding: 70px 0;
  }

  .gz-h1 { font-size: 42px; }
  .gz-h2 { font-size: 32px; }
  .gz-h3 { font-size: 22px; }
  .gz-body-lg { font-size: 18px; }

  /* Navbar */
  .gz-navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--zara-glass-border);
  }

  .gz-navbar-nav.open {
    display: flex;
  }

  .gz-navbar-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .gz-navbar-nav li:last-child {
    border-bottom: none;
    padding-top: 16px;
  }

  .gz-navbar-toggle {
    display: block;
  }

  /* Hero */
  .gz-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .gz-hero-bg {
    position: absolute;
    top: 0;
    right: -20%;
    width: 400px;
    height: 400px;
    opacity: 0.3;
  }

  .gz-persona-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .gz-persona-hero h1 {
    font-size: 38px;
  }

  /* Comparison */
  .gz-compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Process steps */
  .gz-process-step,
  .gz-process-step:nth-child(even) {
    flex-direction: column;
    gap: 24px;
  }

  /* Footer */
  .gz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gz-footer-brand {
    grid-column: 1 / -1;
  }

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

/* --- Mobile (max 767px) --- */
@media (max-width: 767px) {
  :root {
    --section-padding: 50px 0;
  }

  .gz-h1 { font-size: 34px; }
  .gz-h2 { font-size: 28px; }
  .gz-h3 { font-size: 20px; }
  .gz-body-lg { font-size: 17px; }
  .gz-body { font-size: 16px; }

  .gz-section-header {
    margin-bottom: 40px;
  }

  /* Hero */
  .gz-hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .gz-hero .gz-body-lg {
    max-width: 100%;
  }

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

  .gz-hero-bg {
    top: 10%;
    right: -30%;
    width: 300px;
    height: 300px;
  }

  .gz-persona-hero {
    text-align: center;
    padding: 100px 0 50px;
  }

  .gz-persona-hero h1 {
    font-size: 32px;
  }

  /* Cards */
  .gz-glass-card {
    padding: 24px;
  }

  .gz-pain-card {
    padding: 24px;
  }

  .gz-persona-card {
    padding: 28px;
  }

  /* Waitlist */
  .gz-waitlist-form,
  .gz-waitlist-inline {
    flex-direction: column;
    max-width: 100%;
  }

  .gz-waitlist-btn {
    width: 100%;
  }

  /* Buttons */
  .gz-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .gz-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
  }

  /* Authority badges */
  .gz-authority-badges {
    justify-content: center;
    gap: 12px;
  }

  .gz-badge {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Footer */
  .gz-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Benefit items */
  .gz-benefit-item {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }

  /* Step connector hide on mobile */
  .gz-step-connector {
    display: none;
  }

  /* Guide section text center */
  .gz-guide-section {
    text-align: center;
  }

  .gz-guide-section .gz-authority-badges {
    justify-content: center;
  }

  /* Comparison section */
  .gz-compare-col {
    padding: 24px;
  }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
  .gz-h1 { font-size: 28px; }
  .gz-h2 { font-size: 24px; }

  .gz-hero {
    padding: 90px 0 50px;
  }

  .gz-navbar-brand {
    font-size: 18px;
  }

  .gz-navbar-brand svg {
    width: 28px;
    height: 28px;
  }
}
