/* ================================================
   PATHFINDER — Responsive (Mobile-First)
   Breakpoints: 480 / 768 / 1024 / 1200
   ================================================ */

/* ---------- 480px+ (Large Phone) ---------- */
@media (min-width: 480px) {
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }

  .pain__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

/* ---------- 768px+ (Tablet) ---------- */
@media (min-width: 768px) {
  .section__title {
    font-size: 2.2rem;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .hero__stat-value {
    font-size: 2.2rem;
  }

  .hero__symbol svg {
    width: 80px;
    height: 80px;
  }

  /* Pain grid: 4 columns */
  .pain__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  /* Pricing: 2 columns */
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews: 1 card + 80% peek of 2nd */
  .review-card {
    flex: 0 0 calc(70% - var(--space-md));
  }

  /* Contact: 2 column */
  .contact__wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    max-width: 960px;
  }

  /* Process: horizontal */
  .process__timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 0;
  }

  .process__step {
    flex: 0 0 calc(33.333% - var(--space-md));
  }

  .process__connector {
    display: none;
  }

  /* Detail result summary: 4 columns */
  .detail-result__summary {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- 1024px+ (Desktop) ---------- */
@media (min-width: 1024px) {
  /* Show desktop navigation */
  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__hamburger {
    display: none;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  /* Sticky bar: hide on desktop */
  .sticky-bar {
    display: none;
  }

  /* Footer: no extra bottom padding */
  .footer {
    padding-bottom: var(--space-3xl);
  }

  /* Reviews: 2 cards + 80% peek of 3rd */
  .review-card {
    flex: 0 0 calc(42% - var(--space-md));
  }

  /* Process: 6 columns */
  .process__step {
    flex: 0 0 calc(16.666% - var(--space-sm));
  }
}

/* ---------- 1200px+ (Large Desktop) ---------- */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .pain__card {
    padding: var(--space-xl);
  }

  .service-card {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

/* ---------- Print ---------- */
@media print {
  .header,
  .sticky-bar,
  .hero__cta-group,
  .review-card__toggle,
  .reviews__dots,
  .contact__form,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}
