/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 3rem;
  }
  
  .hero-grid {
    gap: var(--spacing-md);
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .process-timeline::before {
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  
  .process-step {
    width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 20px;
  }
  
  .step-number {
    margin: 0;
    flex-shrink: 0;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--header-height) + 2rem);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .sub-headline {
    margin: 0 auto var(--spacing-md);
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split-half {
    min-width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .stats-grid,
  .services-grid,
  .blog-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}
