/* Landing Page Responsive Breakpoints - BEM Convention */

/* Mobile Portrait (max-width: 767px) */
@media (max-width: 767px) {
  .landing-title {
    font-size: 2rem;
  }

  .landing-subtitle {
    font-size: 1.2rem;
    margin-top: 1.8rem;
  }

  .landing-list {
    font-size: 1.2rem;
  }

  .trial-cta {
    margin-top: 1.5rem;
  }

  .trial-subtext {
    font-size: 1rem;
    margin-top: 0.6rem;
  }

  .landing-features {
    flex-direction: column;
    gap: 1rem;
  }

  .landing-features__item {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .landing-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .landing-section {
    padding: 3rem 1rem;
  }

  .landing-section__title {
    font-size: 2rem;
  }

  .landing-cta__content {
    padding: 0 1rem;
  }

  .landing-user-types__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .landing-how-it-works__steps {
    gap: 1rem;
  }

  .landing-how-it-works__title {
    margin-top: 0.2rem;
  }

  /* Carousel Mobile Responsive */
  .landing-carousel {
    max-width: 100%;
    gap: 0;
    padding: 0;
  }

  .landing-carousel__wrapper {
    height: 300px;
    border-radius: 0;
    width: 100%;
  }

  .landing-carousel__track {
    width: 100%;
  }

  .landing-carousel__slide {
    width: 100%;
    min-width: 100%;
  }

  .landing-carousel__btn {
    display: none;
  }

  .landing-examples {
    padding: 0.8rem 0 2rem 0;
  }

  .landing-examples__title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
    padding: 0 1rem;
  }

  .landing-carousel__dots {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  /* Increase fade height on mobile */
  .landing-expandable::after {
    height: 250px;
  }

  .landing-expandable--musicians::after {
    height: 100px;
  }
}

/* Carousel Full Width for Tablets and Below (≤ 1200px) */
@media (max-width: 1200px) {
  .landing-carousel {
    max-width: 100%;
    gap: 0;
    padding: 0;
  }

  .landing-carousel__wrapper {
    border-radius: 0;
    width: 100%;
  }

  .landing-carousel__track {
    width: 100%;
  }

  .landing-carousel__slide {
    width: 100%;
    min-width: 100%;
  }

  .landing-carousel__btn {
    display: none;
  }

  .landing-carousel__dots {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .landing-title {
    font-size: 2.3rem;
  }

  .landing-subtitle {
    font-size: 1.2rem;
  }

  .landing-list {
    font-size: 1.2rem;
  }

  .landing-features {
    gap: 1.5rem;
  }

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

  /* Carousel Tablet Height */
  .landing-carousel__wrapper {
    height: 400px;
  }

  .landing-examples {
    padding: 1.5rem 0 3rem 0;
  }

  .landing-examples__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
}
