/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --header-height: 96px;
  }

  .container {
    padding: 0 24px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .logo,
  .header-controls {
    flex: 1 1 50%;
  }

  .header-controls {
    justify-content: flex-end;
  }

  .nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    gap: 1.25rem;
  }

  .hero {
    padding: 80px 0 70px;
    background-position: center top;
    background-size: min(420px, 75vw);
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
    max-width: 90vw;
  }

  .hero-subtitle {
    font-size: 16px;
    max-width: 90vw;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .mission-vision .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

