/**
 * @file
 * MLT Landing Pages - Responsive Styles
 */

/* ============================================
   TABLET (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
  :root {
    --mlt-section-padding: 80px;
  }
  
  .mlt-lp__hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mlt-lp__hero-visual {
    order: -1;
  }
  
  .mlt-lp__pathway-grid {
    grid-template-columns: 1fr;
  }
  
  .mlt-lp__block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .mlt-lp__block--reversed {
    direction: ltr;
  }
  
  .mlt-lp__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mlt-lp__services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mlt-lp__testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --mlt-section-padding: 60px;
  }
  
  .mlt-lp__hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  
  .mlt-lp__hero-image img {
    height: 300px;
  }
  
  .mlt-lp__hero-buttons {
    flex-direction: column;
  }
  
  .mlt-lp__hero-buttons .field__items {
    flex-direction: column;
    width: 100%;
  }
  
  .mlt-lp__hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  
  .mlt-lp__hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .mlt-lp__floating-card {
    display: none;
  }
  
  .mlt-lp__trust-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .mlt-lp__trust-logo img {
    height: 60px;
  }
  
  .mlt-lp__pathway-card {
    padding: 32px 24px;
  }
  
  .mlt-lp__pathway-icon {
    width: 60px;
    height: 60px;
  }
  
  .mlt-lp__pathway-icon i {
    font-size: 28px;
  }
  
  .mlt-lp__block {
    gap: 32px;
  }
  
  .mlt-lp__experience-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 24px;
    display: inline-block;
  }
  
  .mlt-lp__stat-value {
    font-size: 2.5rem;
  }
  
  .mlt-lp__cta-contact {
    flex-direction: column;
    gap: 20px;
  }
  
  .mlt-lp__section-header {
    margin-bottom: 40px;
  }
  
  .mlt-lp__section-label::before,
  .mlt-lp__section-label::after {
    width: 16px;
  }
}

/* ============================================
   SMALL MOBILE (max-width: 575px)
   ============================================ */
@media (max-width: 575px) {
  .mlt-lp__container {
    padding: 0 16px;
  }
  
  .mlt-lp__hero-inner {
    padding: 0 16px;
  }
  
  .mlt-lp__stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .mlt-lp__services-grid {
    grid-template-columns: 1fr;
  }
  
  .mlt-lp__service-card {
    padding: 24px;
  }
  
  .mlt-lp__testimonial-card {
    padding: 28px;
  }
  
  .mlt-lp__pathway-features {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   LARGE SCREENS (min-width: 1400px)
   ============================================ */
@media (min-width: 1400px) {
  .mlt-lp__container {
    max-width: 1320px;
  }
  
  .mlt-lp__hero-inner {
    max-width: 1320px;
  }
  
  .mlt-lp__pathway-grid {
    max-width: 1320px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .mlt-animate {
    animation: none !important;
    opacity: 1 !important;
  }
  
  .mlt-lp__floating-card {
    animation: none !important;
  }
  
  * {
    transition-duration: 0.01ms !important;
  }
}
