/* ============================================
   Taxi Go Gabon — Responsive Styles
   ============================================ */

@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .hero__grid {
    gap: 48px;
  }

  .drivers__content {
    gap: 48px;
  }

  .contact__wrapper {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  /* Header mobile */
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-elevated);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px 32px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .nav__link {
    font-size: 1.125rem;
  }

  .nav__cta {
    margin-left: 0;
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
  }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    margin-bottom: 16px;
  }

  .hero__card {
    padding: 24px;
  }

  .hero__stats {
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    white-space: nowrap;
  }

  /* Drivers */
  .drivers__content {
    grid-template-columns: 1fr;
  }

  .drivers__visual {
    order: -1;
  }

  /* Benefits */
  .benefits__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Requirements */
  .requirements__grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn--large {
    padding: 16px 28px;
  }

  .hero__card img {
    max-width: 280px;
  }

  .drivers__image-card {
    padding: 32px 24px;
  }

  .drivers__image-card .emoji {
    font-size: 3.5rem;
  }

  .step-card__number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .requirement-item {
    padding: 18px;
  }

  .faq__question {
    padding: 18px 20px;
    font-size: 0.9375rem;
  }

  .faq__answer-inner {
    padding: 0 20px 18px;
  }
}
