/* ========================================
   Responsive Breakpoints (global tweaks)
   Section-specific responsives live in their own files.
   ======================================== */

/* --- 1280px: Below container max --- */
@media (max-width: 1280px) {
  :root {
    --container-max: 100%;
  }
}

/* --- 1100px: Hero stacks --- */
@media (max-width: 1100px) {
  :root {
    --section-padding: 6rem 0;
  }
}

/* --- 768px: Nav breakpoint --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 5rem 0;
  }

  .container,
  .header-container {
    padding: 0 24px;
  }

  /* Header */
  .header-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

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

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

  .phone-group {
    flex-direction: column;
  }

  .phone-code-select {
    width: 100%;
  }

  /* Modal full-screen on mobile */
  .modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .modal-container {
    max-height: 100vh;
    max-width: 100%;
    border-radius: 0;
    height: 100%;
  }
}

/* --- 480px: Small phones --- */
@media (max-width: 480px) {
  :root {
    --section-padding: 4rem 0;
  }

  .container,
  .header-container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .modal-container {
    padding: 20px 16px;
  }

  .btn-xl {
    padding: 18px 32px;
    font-size: 1rem;
  }
}
