/* ===== Tablet: 768px ===== */
@media (max-width: 768px) {
  :root {
    --section-padding-y: 3.5rem;
  }

  /* Navbar */
  .navbar__nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--color-gray-200);
    gap: var(--space-4);
  }

  .navbar__nav--open {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    flex-direction: column;
    gap: var(--space-1);
    width: 100%;
  }

  .navbar__link {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
  }

  .navbar__link:hover {
    background: var(--color-gray-50);
  }

  .navbar__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-12));
    padding-bottom: var(--space-12);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title {
    font-size: var(--font-size-4xl);
    max-width: none;
  }

  .hero__subtitle {
    max-width: none;
    margin-inline: auto;
  }

  .hero__cta-wrapper {
    justify-content: center;
  }

  .hero__media {
    justify-content: center;
  }

  /* Carousel */
  .carousel__slide {
    grid-template-columns: 1fr;
  }

  .carousel__phone {
    display: none;
  }

  /* Features */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  /* How It Works */
  .flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
  }

  .flow__connector {
    display: none;
  }

  .flow__step {
    flex: 0 0 calc(25% - var(--space-4));
    min-width: 100px;
  }

  .how-it-works__details {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section__actions {
    flex-direction: column;
  }

  /* Section headers */
  .section-header__title {
    font-size: var(--font-size-3xl);
  }
}

/* ===== Mobile: 480px ===== */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --section-padding-y: 2.5rem;
  }

  .hero__title {
    font-size: var(--font-size-3xl);
  }

  .hero__subtitle {
    font-size: var(--font-size-base);
  }

  .section-header__title {
    font-size: var(--font-size-2xl);
  }

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

  .flow__step {
    flex: 0 0 calc(50% - var(--space-4));
  }

  .case-card {
    min-height: 350px;
  }

  .case-card__title {
    font-size: var(--font-size-xl);
  }

  .cta-section__title {
    font-size: var(--font-size-2xl);
  }

  .hero__cta-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
