/* ============================================
   TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-circles {
    width: 500px;
    height: 500px;
    right: -15%;
  }

  .process-track {
    flex-direction: column;
  }
}

/* ============================================
   MOBILE LANDSCAPE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-section: 4rem;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  /* Hero */
  .hero {
    text-align: center;
    min-height: 90vh;
  }

  .hero-content {
    max-width: 100%;
        border-radius: 15px;
        background: rgba(0, 0, 0, 0.60);
  }

  .section-label{border-radius: 8px;}

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-circles {
    width: 350px;
    height: 350px;
    right: -25%;
    top: 20%;
  }

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

  /* Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Service detail */
  .service-hero {
    padding: 120px 0 60px;
    text-align: center;
  }

  .service-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .service-step {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Quote section */
  .quote-section blockquote {
    font-size: var(--text-2xl);
  }

  /* Section headers */
  .section-header h2 {
    font-size: var(--text-3xl);
  }

  /* Process steps */
  .process-step {
    flex-direction: column;
    text-align: center;
  }

  /* Tailored section */
  .tailored-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* Modal */
  .modal {
    width: 95%;
    padding: var(--space-xl);
  }

  /* Toast */
  .toast-container {
    left: var(--space-md);
    right: var(--space-md);
    top: var(--space-md);
  }

  .toast {
    min-width: auto;
    width: 100%;
  }
}

/* ============================================
   MOBILE PORTRAIT (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {


  :root {
    --space-section: 3rem;
  }

  h2 {
    font-size: var(--text-2xl);
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
.hero-title{font-size: 3.5rem;}
  .hero-circles {
    display: none;
  }
}

/* ============================================
   LARGE SCREENS (min-width: 1440px)
   ============================================ */
@media (min-width: 1440px) {
  .hero-circles {
    width: 900px;
    height: 900px;
    right: -5%;
  }
}
