/* Tablet Adjustments */
@media (max-width: 1024px) {
  :root {
    --spacing-section: 80px;
  }
  
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 120px;
    min-height: auto;
  }
  
  .hero-visual {
    height: 50vh;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-container {
    flex-direction: column;
  }
  
  .showcase-image {
    height: 400px;
  }
  
  .showcase-content {
    padding: 3rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  :root {
    --spacing-section: 60px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
  }
  
  .nav-right {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .glass-panel {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal a {
    margin: 0 0.5rem;
  }
}