/* ============================================
   RESPONSIVE BREAKPOINTS — Mobile First
   ============================================ */

/* --- Small Mobile: 320px+ (base styles in style.css) --- */

/* --- Large Mobile: 480px+ --- */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__cta.desktop-only {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 80px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero__scroll-indicator {
    bottom: 24px;
  }

  /* Trust */
  .trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Solutions */
  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Spotlight Overlay */
  .spotlight__content {
    margin: 20px 12px;
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pricing-card {
    padding: 18px 14px;
  }

  .pricing-card__price {
    font-size: 1.2rem;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 24px;
  }

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

  /* Process Timeline */
  .process__timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process__timeline::before {
    top: 0;
    left: 35px;
    width: 3px;
    height: 100%;
  }

  .process__line-progress {
    top: 0;
    left: 35px;
    width: 3px !important;
    height: 0;
  }

  .process__step {
    text-align: left;
    padding-left: 90px;
    min-height: 80px;
  }

  .process__step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    margin: 0;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__visual {
    order: -1;
  }

  .about__logo-large {
    max-width: 200px;
  }

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

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  /* Testimonials */
  .testimonial-card__inner {
    padding: 28px 24px;
  }

  .testimonial-card__quote {
    font-size: 1rem;
  }
}

/* --- Tablet: 768px+ --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__links {
    gap: 24px;
  }

  .nav__link {
    font-size: 0.85rem;
  }

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

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

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

  .process__timeline::before {
    display: none;
  }

  .process__line-progress {
    display: none;
  }

  .about__grid {
    gap: 40px;
  }

  .about__logo-large {
    max-width: 260px;
  }

  .spotlight__content {
    margin: 40px 24px;
    padding: 36px 32px;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Small Desktop: 1024px+ --- */
@media (min-width: 1024px) {
  .nav__hamburger {
    display: none;
  }

  .nav__links {
    display: flex;
  }
}

/* --- Large Desktop: 1440px+ --- */
@media (min-width: 1440px) {
  :root {
    --container-width: 1320px;
    --section-padding: 120px 0;
  }

  .hero__content {
    max-width: 900px;
  }
}

/* --- Touch-friendly tap targets --- */
@media (pointer: coarse) {
  .btn {
    min-height: 48px;
    min-width: 48px;
  }

  .nav__link {
    padding: 12px 4px;
  }

  .contact__social,
  .contact__info-icon {
    min-width: 48px;
    min-height: 48px;
  }

  .testimonials__dot {
    width: 14px;
    height: 14px;
  }

  .cursor {
    display: none !important;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
