/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .stats {
    position: static;
    margin-top: 3rem;
    border-radius: var(--border-radius);
    width: 100%;
    justify-content: center;
  }
  
  .info-card {
    grid-template-columns: 1fr;
  }
  
  .info-card.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .btn-quote-link {
    display: none;
  }
  
  .hero {
    margin-top: 80px;
    padding: 2rem 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .stat-divider {
    width: 60px;
    height: 2px;
  }
}
