/* Responsive Breakpoints */

@media (max-width: 1024px) {
  .grid--3, .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split {
    gap: var(--space-4);
  }
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  .hero__title { font-size: 3rem; }
  
  .section { padding: var(--space-6) 0; }
  .section--lg { padding: var(--space-7) 0; }
  
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
  
  .split {
    grid-template-columns: 1fr;
  }
  
  .split--reverse .split__content {
    grid-row: 2;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero__title { font-size: 2.5rem; }
  .hero__subtitle { font-size: var(--font-size-base); }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero__buttons .btn {
    width: 100%;
  }
  
  .navbar__menu, .navbar__cta {
    display: none;
  }
  
  .navbar__hamburger {
    display: flex;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .steps {
    flex-direction: column;
    gap: 1rem;
  }
  .step::after {
    display: none;
  }
  
  .hero__scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero__title { font-size: 2rem; }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}


