/* Responsive Adjustments */

@media screen and (max-width: 1024px) {
  :root {
    --spacing-xl: 5rem; /* 80px */
  }

  .about-preview {
    gap: 2rem;
  }
  
  .about-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .contact-grid {
    gap: 2rem;
  }
}

@media screen and (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .hero-overlay {
    background: linear-gradient(to right, rgba(250,250,247,0.95) 0%, rgba(250,250,247,0.85) 100%);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --spacing-xl: 3.75rem; /* 60px */
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  /* Mobile Nav Logic */
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    gap: 1.5rem;
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.5s ease-in-out;
  }

  #nav-checkbox:checked ~ .nav-menu {
    clip-path: circle(150% at 100% 0);
  }

  #nav-checkbox:checked ~ .mobile-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #nav-checkbox:checked ~ .mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  #nav-checkbox:checked ~ .mobile-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-overlay {
    background: rgba(250,250,247,0.9);
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .about-preview {
    grid-template-columns: 1fr;
  }

  .about-preview .about-image {
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
    margin: var(--spacing-md) 1rem;
  }
}