/* =================================================================
   BULKUP.US — Responsive breakpoints
   ================================================================= */

/* ---------- ≤1024px ---------- */
@media (max-width: 1024px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }

  .strip__inner { grid-template-columns: 1fr; gap: 28px; }
  .strip__title {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding-bottom: 20px;
  }
  .strip__title .strip__line { display: inline; }
  .strip__items { grid-template-columns: repeat(2, 1fr); }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .benefit:nth-child(3) { border-left: 0; }

  .quality__row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .qbadge:nth-child(4) { border-left: 0; }
}

/* ---------- ≤880px ---------- */
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  /* text first on mobile — headline and CTA stay above the fold,
     photo follows as a full-bleed band */
  .hero__media {
    position: static;
    order: 2;
    height: 300px;
    width: calc(100% + var(--gutter) * 2);
    margin-inline: calc(var(--gutter) * -1);
    margin-top: 8px;
  }
  .hero__media::before { display: none; }
  .hero__img { height: 100%; object-fit: cover; object-position: 62% top; width: 100%; }
  .hero__content { display: contents; }
  .hero__content > * { order: 1; }
  .hero__content > .hero__badges {
    grid-template-columns: repeat(2, 1fr);
    order: 3;
    margin-top: 0;
    padding-top: 22px;
  }
  /* fluid title so the nowrap lines never exceed the viewport */
  .hero__title { font-size: clamp(1.35rem, 6.9vw, 2.7rem); }
  .strip__title { font-size: 1rem; }

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

  .feature__grid { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { min-height: 260px; }

  .band { min-height: 260px; }

  .how__steps { grid-template-columns: 1fr; }
  .edu__grid { grid-template-columns: 1fr; gap: 22px; }

  .mobilecta { display: block; }
  /* keep the support bubble clear of the sticky CTA bar */
  .support { bottom: calc(76px + env(safe-area-inset-bottom)); }

  .cta__media {
    position: relative;
    width: 100%;
    height: 220px;
  }
  .cta__media::after {
    background: linear-gradient(180deg, transparent 40%, var(--black) 96%);
  }
  .cta__inner { justify-content: flex-start; padding-top: 28px; }
}

/* ---------- ≤560px ---------- */
@media (max-width: 560px) {
  .pgrid { grid-template-columns: 1fr; }

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

  .benefits__grid { grid-template-columns: 1fr; }
  .benefit { border-left: 0; padding-inline: 0; }

  .quality__row { grid-template-columns: repeat(2, 1fr); }
  .qbadge { border-left: 0; }

  .calc__row { flex-direction: column; }
  .calc__units { justify-content: stretch; }
  .calc__unit { flex: 1; }

  .cta__points { flex-direction: column; gap: 12px; }

  .ifields { grid-template-columns: 1fr; }
  .ichoices { grid-template-columns: 1fr; }
  .ichoices--row { grid-template-columns: 1fr; }
  .providers { grid-template-columns: 1fr; }
}
