/* Updated: 2026-04-30 - Polish: drop `.card-grid.three` to two columns at tablet breakpoint (max-width: 1023px) so the three-up sections (mechanism, alternatives, etc.) stop rendering tiny ~183px-wide cards on iPad-class viewports. Bump cache version to v=20260430c alongside the consolidated /pulserelief-x-2-0-highfi-static/ asset move. Previous: 2026-04-30 - Bump CSS cache version (v=20260430b) so the responsive image / video reflow companion change in index.html and prx20-app.jsx busts the browser cache together. No structural CSS changes; the page already lays out off the existing rules and the new <img width/height/srcset/sizes> attributes simply give the browser intrinsic-aspect hints. Previous: 2026-04-30 - Compact buybox guarantee-line typography to a helper scale and continue overriding global styles.css guarantee-badge sizing on the prx20 SVG seal. */
:root {
  --canvas-white: #F8F9FA;
  --physio-navy: #0A2B4C;
  --therapy-coral: #FF7A59;
  --clinical-blue: #A2C1D9;
  --trust-grey: #EDEFF1;
  --text-muted: #5A6978;
  --paper: #FFFFFF;
  --paper-soft: #F1F6F9;
  --success: #2D8B5F;
  --gold: #FFB800;
  --font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-soft: 0 10px 28px rgba(10, 43, 76, 0.07);
  --shadow-lift: 0 16px 42px rgba(10, 43, 76, 0.1);
  --shadow-hover: 0 20px 50px rgba(10, 43, 76, 0.13);
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-body: 1rem;
  --fs-lead: clamp(1.125rem, 0.7vw + 0.98rem, 1.28rem);
  --fs-card-title: clamp(1.04rem, 0.38vw + 0.96rem, 1.17rem);
  --fs-h2: clamp(1.78rem, 2.35vw, 2.45rem);
  --fs-h1: clamp(2.16rem, 3.45vw, 3rem);
  --section-y: clamp(3.75rem, 6.2vw, 5.25rem);
  --lh-body: 1.58;
  --lh-copy: 1.5;
  --lh-compact: 1.44;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--physio-navy);
  background: var(--canvas-white);
  line-height: var(--lh-body);
  overflow-x: hidden;
  overflow-wrap: break-word;
  font-size: 16px;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

.prx20-alert-bar {
  background: linear-gradient(135deg, var(--physio-navy), #103A60);
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  padding: 0.55rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 249, 250, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 43, 76, 0.08);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand,
.nav nav,
.hero-badges,
.delivery-line,
.payment-row,
.review-head,
.sticky-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--therapy-coral);
  box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.14);
}

.nav nav {
  gap: 28px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav nav a:hover {
  color: var(--physio-navy);
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-full);
  background: var(--therapy-coral);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(255, 122, 89, 0.28);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  justify-self: end;
  padding: 0.75rem 1.15rem;
  font-size: 0.92rem;
}

.btn-primary {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  line-height: 1.18;
  text-align: center;
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: #E86A4A;
  box-shadow: 0 10px 28px rgba(255, 122, 89, 0.36);
}

.btn-primary.inline,
.btn-primary.centered {
  width: auto;
  min-height: 48px;
}

.btn-primary.inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.btn-primary.centered {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

.btn-primary.small {
  width: auto;
  min-height: 44px;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.btn-atc {
  gap: 0.55rem;
}

.btn-atc .atc-price-wrapper {
  display: inline-flex;
  align-items: center;
  margin-left: 0.1rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  opacity: 0.82;
}

.btn-atc .atc-price {
  font-size: 0.92em;
  font-weight: 800;
}

.hero {
  padding: 34px 0 72px;
  background:
    radial-gradient(circle at 10% 0%, rgba(162, 193, 217, 0.34), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(255, 122, 89, 0.08), transparent 32%),
    linear-gradient(180deg, #F2F8FB 0%, #F8FBFC 56%, #FFF9F6 100%);
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 680px);
  justify-content: center;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.hero .container {
  width: min(100% - 48px, 1440px);
}

.hero-media {
  position: sticky;
  top: 96px;
}

.gallery-card,
.buybox,
.hero-accordion,
.info-card,
.review-card,
.skeptic-panel,
.loop-card,
.comparison-table,
.faq-list,
.kit-grid,
.callout,
.trust-strip {
  background: var(--paper);
  border: 1px solid rgba(10, 43, 76, 0.09);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.gallery-card {
  padding: 10px;
  border-color: rgba(10, 43, 76, 0.07);
  box-shadow: var(--shadow-lift);
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: #F7F9FA;
  touch-action: pan-y;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 122, 89, 0.45) transparent;
}

.gallery-thumbs button {
  flex: 0 0 calc((100% - 40px) / 5);
  aspect-ratio: 4 / 5;
  padding: 2px;
  border-radius: 9px;
  border: 2px solid transparent;
  background: #F8FBFC;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
}

.gallery-thumbs button.active {
  border-color: var(--therapy-coral);
  box-shadow: 0 0 0 2px rgba(255, 122, 89, 0.18);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-nav,
.thumbs-nav,
.comment-nav {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(10, 43, 76, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--physio-navy);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(10, 43, 76, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gallery-nav:hover,
.thumbs-nav:hover,
.comment-nav:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 89, 0.45);
  box-shadow: 0 12px 28px rgba(10, 43, 76, 0.14);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.gallery-nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.gallery-nav-prev {
  left: 12px;
}

.gallery-nav-next {
  right: 12px;
}

.gallery-swipe-hint {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(10, 43, 76, 0.08);
}

.gallery-thumbs-shell {
  display: block;
  margin-top: 12px;
}

.gallery-thumbs-shell .gallery-thumbs {
  margin-top: 0;
}

.thumbs-nav {
  display: none;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  box-shadow: none;
}

.comment-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.gallery-dots {
  display: none;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.gallery-dots button,
.comment-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 43, 76, 0.18);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.gallery-dots button.active,
.comment-dots button.active {
  width: 24px;
  background: var(--therapy-coral);
}

.hero-accordion {
  margin-top: 16px;
  overflow: hidden;
  box-shadow: none;
}

.mobile-only {
  display: none;
}

.hero-accordion details + details {
  border-top: 1px solid rgba(10, 43, 76, 0.08);
}

.hero-accordion summary {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

.hero-accordion summary::after {
  content: '+';
  color: var(--therapy-coral);
}

.hero-accordion details[open] summary::after {
  content: '−';
}

.hero-accordion p,
.hero-accordion ul {
  margin: 0;
  padding: 0 20px 18px;
}

.hero-accordion ul,
.hero-checks,
.check-list {
  list-style: none;
}

.hero-jumplinks {
  display: none;
}

.hero-copy h1 {
  margin: 12px 0 14px;
  max-width: 760px;
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--physio-navy);
  text-wrap: balance;
}

.hero-copy h2,
.section h2 {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--physio-navy);
  text-wrap: balance;
}

.section h3,
.hero-copy h3,
.info-card h3,
.kit-copy h3,
.review-title,
.package-title {
  font-weight: 900;
  letter-spacing: 0;
  color: var(--physio-navy);
}

.hero-copy p,
.section p {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-copy);
}

.hero-copy p + p,
.section p + p {
  margin-top: 0.72rem;
}

.hero-copy > p {
  margin: 0 0 10px;
}

.hero-lead {
  color: var(--physio-navy) !important;
  font-size: var(--fs-lead) !important;
  font-weight: 750;
  line-height: 1.38;
  margin-bottom: 6px;
}

mark {
  padding: 0 0.25em;
  border-radius: 0.35em;
  background: rgba(45, 139, 95, 0.16);
  color: var(--physio-navy);
  box-shadow: inset 0 -0.08em 0 rgba(45, 139, 95, 0.16);
}

.hero-badges {
  flex-wrap: nowrap;
  gap: 9px;
  margin-bottom: 8px;
}

.hero-badges > span,
.hero-badges > .hero-rating,
.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-radius: var(--radius-full);
  font-weight: 900;
  white-space: nowrap;
}

.hero-badges > span,
.hero-badges > .hero-rating,
.pill {
  border: 1px solid rgba(10, 43, 76, 0.08);
  background: white;
  color: var(--physio-navy);
  padding: 0.44rem 0.74rem;
  font-size: var(--fs-sm);
}

.hero-badges .hero-badge-new {
  border-color: rgba(255, 122, 89, 0.26);
  background: rgba(255, 122, 89, 0.1);
  color: #D95738;
  white-space: nowrap;
}

.hero-badges .hero-rating {
  text-decoration: none;
  border-color: rgba(255, 184, 0, 0.32);
  background: white;
  box-shadow: 0 8px 20px rgba(10, 43, 76, 0.06);
  flex: 0 0 auto;
}

.hero-badges .hero-rating:hover span:last-child {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-badges .hero-rating > span:last-child {
  color: var(--text-muted);
  font-weight: 800;
  white-space: nowrap;
}

.hero-h2 {
  margin-top: 18px !important;
  font-size: clamp(1.62rem, 1.95vw, 2.05rem) !important;
  letter-spacing: 0 !important;
}

.pill.coral {
  border-color: rgba(255, 122, 89, 0.32);
  background: rgba(255, 122, 89, 0.1);
  color: #D95738;
}

.section .pill {
  min-height: 30px;
  padding: 0.28rem 0.56rem;
  border-radius: var(--radius-md);
  font-size: 0.74rem;
  line-height: 1.15;
}

.eyebrow {
  color: var(--therapy-coral);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
  font-size: 0.96em;
  line-height: 1;
}

.hero-checks,
.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 18px;
}

.hero-checks li,
.check-list li,
.hero-accordion li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--physio-navy);
  font-weight: 750;
}

.hero-accordion li {
  color: var(--text-muted);
  font-weight: 600;
}

.hero-checks li {
  font-weight: 600;
}

.hero-copy {
  background: var(--paper);
  border: 1px solid rgba(10, 43, 76, 0.075);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  padding: clamp(24px, 2.7vw, 34px);
  overflow: hidden;
}

.hero-product-logo {
  display: block;
  width: min(188px, 54vw);
  height: auto;
  margin: 0 0 12px;
  opacity: 0.9;
}

.benefits-label {
  margin: 16px 0 0 !important;
  color: var(--physio-navy) !important;
  font-size: 1rem !important;
  font-weight: 650;
  line-height: 1.36;
}

.checkmark {
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(45, 139, 95, 0.14);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 900;
}

.buybox {
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.buybox-top,
.comparison-head,
.comparison-row,
.kit-row,
.prx20-prototype-footer-grid {
  display: grid;
}

.buybox-top {
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.final-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
    gap: 24px;
  }

}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 14px;
  min-height: 226px;
  border: 1px solid rgba(10, 43, 76, 0.12);
  border-radius: var(--radius-lg);
  background: white;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.package-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.package-card.selected {
  border-color: var(--therapy-coral);
  box-shadow: 0 0 0 2px rgba(255, 122, 89, 0.14), var(--shadow-soft);
}

.package-card.blue.selected {
  border-color: var(--clinical-blue);
  background: #EEF7FB;
  box-shadow: 0 0 0 2px rgba(162, 193, 217, 0.28), var(--shadow-soft);
}

.package-card.accent {
  background: white;
}

.package-card.accent.selected {
  background: #FFF4EF;
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  background: #F7F9FA;
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--therapy-coral);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  white-space: normal;
}

.package-card.blue .package-badge {
  background: var(--clinical-blue);
  color: var(--physio-navy);
}

.package-title {
  margin-top: 3px;
  color: var(--physio-navy);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.16;
}

.package-subtitle,
.package-card small {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.package-card strong {
  color: var(--physio-navy);
  font-size: clamp(1.08rem, 0.6vw + 0.96rem, 1.22rem);
  line-height: 1.15;
}

.package-shipping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: auto -14px -14px;
  padding: 9px 10px;
  width: calc(100% + 28px);
  border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
  background: var(--paper-soft);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.package-shipping::before {
  content: '';
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 auto;
}

.package-shipping--paid::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%236B7280'%3E%3Cpath d='M240-160q-50 0-85-35t-35-85H40v-440q0-33 23.5-56.5T120-800h560v160h120l120 160v200h-80q0 50-35 85t-85 35q-50 0-85-35t-35-85H360q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T280-280q0-17-11.5-28.5T240-320q-17 0-28.5 11.5T200-280q0 17 11.5 28.5T240-240Zm480 0q17 0 28.5-11.5T760-280q0-17-11.5-28.5T720-320q-17 0-28.5 11.5T680-280q0 17 11.5 28.5T720-240ZM120-360h32q17-18 40-29t48-11q25 0 48 11t40 29h272V-720H120v360Zm560 0h12q17-18 40-29t48-11q6 0 12 .5t12 2.5v-57l-60-80h-64v174Z'/%3E%3C/svg%3E");
}

.package-card.blue .package-shipping,
.package-shipping--free {
  background: #E7F8EF;
  color: #238B58;
}

.package-card.blue .package-shipping::before,
.package-shipping--free::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23238B58'%3E%3Cpath d='M240-160q-50 0-85-35t-35-85H40v-440q0-33 23.5-56.5T120-800h560v160h120l120 160v200h-80q0 50-35 85t-85 35q-50 0-85-35t-35-85H360q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T280-280q0-17-11.5-28.5T240-320q-17 0-28.5 11.5T200-280q0 17 11.5 28.5T240-240Zm480 0q17 0 28.5-11.5T760-280q0-17-11.5-28.5T720-320q-17 0-28.5 11.5T680-280q0 17 11.5 28.5T720-240ZM120-360h32q17-18 40-29t48-11q25 0 48 11t40 29h272V-720H120v360Zm560 0h12q17-18 40-29t48-11q6 0 12 .5t12 2.5v-57l-60-80h-64v174Z'/%3E%3C/svg%3E");
}

.device-link {
  margin: 18px 0 22px;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.34;
  text-align: center;
  padding: 0;
  cursor: pointer;
}

.device-link:hover {
  color: var(--physio-navy);
}

.stock-note {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 14px 15px;
  border: 1px solid rgba(10, 43, 76, 0.09);
  border-left: 4px solid var(--clinical-blue);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, white, #F4F8FB);
}

.stock-note p,
.guarantee-line span,
.stock-note strong {
  margin: 0;
}

.stock-note p {
  font-size: 0.92rem;
  line-height: 1.4;
}

.buybox-urgency {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  margin: 2px 0 0 !important;
  padding-top: 8px;
  border-top: 1px solid rgba(10, 43, 76, 0.08);
  color: var(--physio-navy) !important;
  font-size: 0.88rem !important;
  line-height: 1.38;
}

.buybox-urgency strong {
  color: var(--success);
}

.guarantee-line {
  display: block;
  margin: 12px auto 14px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.36;
  text-align: center;
}

.guarantee-line strong {
  color: var(--physio-navy);
}

.delivery-estimator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 7px 9px;
  border: 1px solid rgba(45, 139, 95, 0.12);
  border-radius: 10px;
  background: rgba(45, 139, 95, 0.035);
}

.delivery-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 0;
  color: var(--success);
}

.delivery-estimator .delivery-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.34;
}

.delivery-estimator .delivery-text strong {
  color: var(--success);
  font-weight: 750;
}

.buybox-usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 43, 76, 0.08);
  border-bottom: 1px solid rgba(10, 43, 76, 0.08);
}

.usp-item {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-width: 0;
  text-align: center;
}

.usp-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.usp-item strong,
.usp-item span {
  color: var(--physio-navy);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.usp-item span {
  color: var(--text-muted);
  font-weight: 700;
}

.urgency-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px !important;
  color: var(--physio-navy) !important;
}

.urgency-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--therapy-coral);
  box-shadow: 0 0 0 5px rgba(255, 122, 89, 0.13);
}

.payment-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10, 43, 76, 0.08);
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 30px;
  padding: 0.28rem 0.54rem;
  border: 1px solid rgba(10, 43, 76, 0.1);
  border-radius: 9px;
  background: white;
  color: var(--physio-navy);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 4px 12px rgba(10, 43, 76, 0.04);
}

.payment-icon--mastercard {
  gap: 0;
}

.card-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
}

.card-dot + .card-dot {
  margin-left: -5px;
}

.card-dot-red {
  background: #eb001b;
}

.card-dot-gold {
  background: #f79e1b;
  mix-blend-mode: multiply;
}

.payment-icon--visa strong {
  letter-spacing: 0.03em;
}

.payment-icon--paypal strong {
  color: #123f7a;
}

.payment-icon--gpay strong {
  font-weight: 850;
}

.cod-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(45, 139, 95, 0.12);
  color: var(--success);
  font-weight: 900;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: visible;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2 {
  margin: 8px 0 12px;
  max-width: 760px;
}

.section-head p {
  margin: 0;
  max-width: 680px;
  line-height: var(--lh-copy);
}

.section-head.center p,
.section-head.center h2 {
  margin-right: auto;
  margin-left: auto;
}

.mood-pain {
  background:
    linear-gradient(180deg, #FFF9F6 0%, #FFFFFF 84%);
}

.mood-relief {
  background:
    radial-gradient(circle at 88% 16%, rgba(162, 193, 217, 0.24), transparent 30%),
    linear-gradient(180deg, #F1F8FB 0%, #FFFFFF 100%);
}

.mood-proof {
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 122, 89, 0.06), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF9F6 72%, #FFFFFF 100%);
}

.mood-reviews {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 89, 0.08), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F5FAFC 100%);
}

.mood-mechanism {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F2F8FB 48%, #FFFFFF 100%);
}

.mood-loop {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 122, 89, 0.08), transparent 34%),
    linear-gradient(180deg, #FFF8F4 0%, #FFFFFF 100%);
}

.mood-clarity {
  background: #FFFFFF;
}

.mood-ritual {
  background:
    linear-gradient(180deg, #EEF6FA 0%, #F8FBFC 100%);
}

.mood-evening {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 122, 89, 0.12), transparent 30%),
    linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.evening-headline-image {
  display: none;
}

.mood-use {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.mood-gel {
  background:
    radial-gradient(circle at 82% 12%, rgba(162, 193, 217, 0.22), transparent 32%),
    linear-gradient(180deg, #F8FBFC 0%, #FFFFFF 100%);
}

.mood-kit,
.mood-offer,
.mood-faq {
  background:
    linear-gradient(180deg, #F3F8FB 0%, #F8F9FA 100%);
}

.mood-guarantee {
  background:
    linear-gradient(180deg, #F1FBF5 0%, #FFFFFF 100%);
}

.mood-close {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 89, 0.11), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF8F4 100%);
}

.section.mood-guarantee {
  background:
    linear-gradient(180deg, #F1FBF5 0%, #FFFFFF 100%);
}

.section.mood-offer {
  background:
    linear-gradient(180deg, #F3F8FB 0%, #F8F9FA 100%);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: clamp(16px, 1.6vw, 20px);
}

.info-card h3,
.review-card h3,
.kit-copy h3,
.loop-card h3,
.section h3 {
  margin: 12px 0 8px;
  color: var(--physio-navy);
  font-size: var(--fs-card-title);
  line-height: 1.24;
  text-wrap: balance;
}

.info-card p,
.review-card p,
.kit-copy p,
.loop-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-card small,
.loop-good small {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  background: #F7F9FA;
}

.card-img.square {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: transparent;
}

.card-img.wide,
.info-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  background: #F7F9FA;
}

.band-blue {
  background: linear-gradient(180deg, #F0F7FB, #FFFFFF);
}

.band-warm {
  background: linear-gradient(180deg, #FFF4EF, #FFFFFF);
}

.band-kit {
  background: #F4F8FB;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4.6vw, 56px);
  align-items: center;
}

.rounded-media {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(10, 43, 76, 0.08);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  object-position: center;
  background: #F7F9FA;
}

.rounded-media.wide {
  aspect-ratio: 16 / 9;
}

.step-list {
  display: grid;
  gap: 12px;
}

.step-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid rgba(10, 43, 76, 0.08);
}

.step-row > span,
.kit-row > span {
  color: var(--physio-navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.step-row h3,
.step-row p {
  margin: 0;
}

.step-row p {
  line-height: 1.48;
}

.dark-proof {
  padding: clamp(42px, 5vw, 56px) 0;
  background: linear-gradient(135deg, #082642 0%, var(--physio-navy) 100%);
  color: white;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-row div {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stats-row strong {
  display: block;
  color: white;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.stats-row span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.judge-review-shell {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(10, 43, 76, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.judge-review-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.judge-score {
  display: grid;
  gap: 3px;
}

.judge-score strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--physio-navy);
  font-size: clamp(1.28rem, 1.42vw, 1.52rem);
  line-height: 1;
}

.judge-score small {
  color: var(--text-muted);
  font-size: 0.72em;
  font-weight: 900;
}

.gold-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
}

.judge-copy {
  display: grid;
  gap: 4px;
  color: var(--text-muted);
}

.judge-copy strong {
  color: var(--physio-navy);
}

.review-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: fit-content;
  margin: 22px auto 0;
  padding: 0 18px;
  border: 1px solid rgba(10, 43, 76, 0.16);
  border-radius: 14px;
  background: white;
  color: var(--physio-navy);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(10, 43, 76, 0.05);
  cursor: pointer;
}

.judge-review-grid {
  align-items: stretch;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-grid.judge-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (min-width: 1024px) {
  .review-grid.judge-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.judge-review-loading {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 180px;
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

.judge-review-loading span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(162, 193, 217, 0.5);
  border-top-color: var(--therapy-coral);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.judge-review-empty {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 24px;
  border: 1px dashed rgba(10, 43, 76, 0.18);
  border-radius: 18px;
  background: rgba(248, 251, 252, 0.8);
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ugc-loop {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 22px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ugc-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: ugcScroll 48s linear infinite;
}

.ugc-loop:hover .ugc-track {
  animation-play-state: paused;
}

.ugc-tile {
  width: clamp(142px, 15vw, 212px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 43, 76, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 26px rgba(10, 43, 76, 0.1);
}

.ugc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ugcScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.comment-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 980px) 44px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  max-width: 1110px;
  margin: 0 auto 32px;
}

.comment-carousel-window {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.comment-carousel-window img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.comment-dots {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.judgeme-review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(10, 43, 76, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(10, 43, 76, 0.06);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.review-author-info {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--therapy-coral);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.review-author-details {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.review-author-name {
  color: var(--physio-navy);
  font-weight: 900;
  font-size: 0.93rem;
  line-height: 1.15;
}

.review-date {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-stars {
  display: flex;
  flex: 0 0 auto;
  gap: 2px;
  margin-top: 2px;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(251, 176, 59, 0.2));
}

.review-stars svg.empty {
  fill: #D9E3EA;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  margin-bottom: 12px;
  color: var(--clinical-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.review-verified svg {
  width: 14px;
  height: 14px;
  fill: #2D8B5F;
}

.review-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  flex: 1;
}

.review-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.judgeme-review-card--with-photos .review-card-main {
  grid-template-columns: minmax(0, 1fr) 82px;
}

.review-title {
  margin: 0;
  color: var(--physio-navy);
  font-size: 0.92rem;
  line-height: 1.28;
}

.review-body {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.44;
}

.review-photo-column {
  justify-self: end;
  width: 82px;
}

.review-photo-button {
  position: relative;
  display: block;
  width: 82px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 43, 76, 0.08);
  border-radius: 18px;
  background: #F8FBFC;
  box-shadow: 0 8px 20px rgba(10, 43, 76, 0.08);
  cursor: pointer;
}

.review-photo-count {
  position: absolute;
  right: 6px;
  bottom: 6px;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(10, 43, 76, 0.84);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.review-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skeptic-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 26px;
  margin-top: 30px;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(135deg, #FFF9F6, #FFFFFF);
  border-color: rgba(255, 122, 89, 0.2);
}

.skeptic-photo-frame {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.skeptic-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.mechanism-sub {
  margin-top: 64px;
}

.loop-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 28px;
  padding: clamp(18px, 2.4vw, 24px);
  align-items: stretch;
}

.loop-good {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #EFF8F2;
}

.loop-good img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

.comparison-table {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.comparison-container {
  max-width: 1120px;
}

.comparison-head,
.comparison-row {
  grid-template-columns: 1.05fr 1fr 1fr 1.2fr;
}

.comparison-head > *,
.comparison-row > * {
  padding: 16px;
  border-bottom: 1px solid rgba(10, 43, 76, 0.08);
}

.comparison-head {
  background: #F2F6F8;
}

.comparison-head strong:nth-child(2),
.comparison-head strong:nth-child(3),
.comparison-row span:nth-child(2),
.comparison-row span:nth-child(3) {
  color: #6E7B87;
  background: #F7F8F9;
}

.comparison-row span:nth-child(2)::before,
.comparison-row span:nth-child(3)::before {
  content: '✕';
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: #EEF1F3;
  color: #7D8790;
  font-size: 0.75rem;
  font-weight: 900;
}

.comparison-head strong:last-child,
.comparison-row span:last-child {
  background: #EDF8F1;
  color: var(--physio-navy);
  font-weight: 900;
}

.comparison-row span:last-child::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(45, 139, 95, 0.14);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 900;
}

.product-logo {
  width: min(165px, 100%);
  height: auto;
}

.comparison-close {
  max-width: 680px;
  margin: 24px auto 0;
  text-align: center;
}

.comparison-close p {
  margin: 0 0 8px;
}

.comparison-scroll-hint {
  display: none;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 800;
  font-style: italic;
  text-align: center;
}

.numbered {
  position: relative;
  padding-top: 42px;
}

.numbered > span {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--physio-navy);
  color: white;
  font-weight: 900;
}

.closing-line {
  color: var(--physio-navy) !important;
  font-size: 1.35rem !important;
  font-weight: 900;
}

.use-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.use-card {
  min-width: 200px;
  padding: 12px 12px 16px;
  border: 1px solid rgba(10, 43, 76, 0.09);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 8px 22px rgba(10, 43, 76, 0.05);
}

.use-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

.use-card h3 {
  margin: 12px 0 6px;
  font-size: 1rem;
}

.use-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: var(--lh-compact);
}

.callout {
  margin: 18px 0;
  padding: 18px;
  border-color: rgba(255, 122, 89, 0.22);
  background: #FFF7F3;
  box-shadow: none;
}

.gel-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.gel-compare article {
  padding: 12px;
  border: 1px solid rgba(10, 43, 76, 0.1);
  border-radius: var(--radius-lg);
  background: white;
}

.gel-compare img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.gel-compare strong,
.gel-compare span {
  display: block;
}

.gel-compare strong {
  font-size: 0.84rem;
  line-height: 1.18;
}

.gel-compare span {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.34;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: clamp(24px, 3vw, 34px);
  padding: clamp(20px, 3vw, 30px);
}

.kit-media-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.kit-media-col .pill {
  justify-self: start;
}

.kit-media-col img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.kit-copy {
  align-self: start;
  padding-top: 28px;
}

.kit-row {
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 43, 76, 0.08);
}

.kit-row p {
  margin: 0;
  font-size: 0.92rem;
  line-height: var(--lh-compact);
}

.guarantee-section {
  background: transparent;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  flex-shrink: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  line-height: normal;
  overflow: visible;
}

.guarantee-badge img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 900 / 620;
}

.no-regrets {
  text-align: center;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.mini-grid span {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 43, 76, 0.08);
  border-radius: var(--radius-md);
  background: white;
  font-weight: 900;
  text-align: center;
  line-height: 1.16;
}

.check-list.compact {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.final-offer {
  background: transparent;
}

.final-grid {
  grid-template-columns: repeat(3, 1fr);
}

.final-solo-link {
  display: none;
}

.package-card.compact {
  min-height: unset;
}

.package-card.compact img {
  aspect-ratio: 3 / 2;
}

.package-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  border-radius: var(--radius-full);
  background: var(--physio-navy);
  color: white;
  font-weight: 900;
  pointer-events: none;
}

.package-card.accent .package-card-cta,
.package-card.selected .package-card-cta {
  background: var(--therapy-coral);
}

.trust-strip {
  margin-top: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
}

.faq-list {
  overflow: hidden;
}

.section.faq {
  padding-bottom: calc(var(--section-y) + 96px);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(10, 43, 76, 0.08);
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: white;
  color: var(--physio-navy);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button strong {
  color: var(--therapy-coral);
  font-size: 1.25rem;
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.prx20-prototype-footer {
  padding: 46px 0 96px;
  background: var(--physio-navy);
  color: white;
}

.prx20-prototype-footer-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.prx20-prototype-footer-grid div {
  display: grid;
  gap: 4px;
}

.prx20-prototype-footer-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  justify-content: space-between;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(10, 43, 76, 0.12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta div {
  display: grid;
  line-height: 1.2;
}

.sticky-cta span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1023px) {
  .hero-grid,
  .split,
  .kit-grid,
  .skeptic-panel,
  .loop-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    position: static;
  }

  .hero-accordion.desktop-only {
    display: none;
  }

  .hero-accordion.mobile-only {
    display: block;
  }

  .gallery-main {
    aspect-ratio: 16 / 10;
  }

  .gallery-main img {
    object-fit: contain;
  }

  .card-grid.four,
  .card-grid.three,
  .review-grid,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-grid.judge-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head span,
  .comparison-head strong {
    display: none;
  }

  .comparison-row {
    border-bottom: 1px solid rgba(10, 43, 76, 0.08);
  }

  .comparison-row > * {
    border-bottom: 0;
    padding: 10px 16px;
  }

  .comparison-row strong {
    background: var(--paper-soft);
  }

  .comparison-row span {
    display: grid;
    grid-template-columns: minmax(112px, 0.42fr) 1fr;
    align-items: center;
    gap: 10px;
  }

  .comparison-row span::before {
    content: attr(data-option) !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text-muted) !important;
    font-size: 0.78rem !important;
    font-weight: 900 !important;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .comparison-row span:last-child::before {
    color: var(--success) !important;
  }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .hero .container {
    width: min(100% - 40px, 960px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 20px;
  }

  .hero-media {
    position: sticky;
    top: 86px;
  }

  .gallery-main {
    aspect-ratio: 4 / 5;
  }

  .gallery-main img {
    object-fit: cover;
  }

  .hero-accordion.desktop-only {
    display: block;
  }

  .hero-accordion.mobile-only {
    display: none;
  }

  .hero-copy {
    padding: 22px;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .package-card {
    padding: 10px;
    min-height: 220px;
  }

  .package-shipping {
    margin: auto -10px -10px;
    width: calc(100% + 20px);
  }
}

@media (max-width: 760px) {
  .prx20-alert-bar,
  .nav nav {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .nav {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .nav-cta {
    padding: 0.65rem 0.9rem;
    font-size: 0.84rem;
  }

  .hero {
    padding: 0 0 54px;
  }

  .hero-grid {
    gap: 0;
    width: 100%;
  }

  .hero-media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .gallery-main {
    aspect-ratio: 4 / 5;
    border-radius: 0;
    width: 100vw;
  }

  .gallery-main img {
    object-fit: cover;
  }

  .hero .container {
    width: 100%;
  }

  .gallery-card {
    width: 100vw;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .gallery-dots {
    margin-top: 12px;
  }

  .hero-copy {
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 22px 20px 22px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-badges {
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    width: 100%;
  }

  .hero-badges > span,
  .hero-badges > .hero-rating {
    min-height: 32px;
    padding: 0.3rem 0.36rem;
    font-size: 0.64rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .hero-badges > .hero-rating {
    flex: 0 0 auto;
    gap: 4px;
  }

  .hero-badges > .hero-badge-new {
    flex: 1 1 auto;
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
  }

  .hero-badges .stars {
    font-size: 0.82em;
  }

  .hero-badges .hero-rating > strong {
    padding-right: 5px;
    border-right: 1px solid rgba(10, 43, 76, 0.16);
  }

  .hero-badges .hero-rating > span:last-child {
    color: var(--physio-navy);
    font-weight: 900;
  }

  .hero-product-logo {
    width: min(148px, 48vw);
    margin-bottom: 10px;
  }

  .hero-accordion {
    display: block;
    margin-top: 14px;
    border-radius: 18px;
  }

  .hero-accordion.mobile-only {
    margin-top: 28px;
  }

  .hero-accordion summary {
    padding: 16px;
  }

  .hero-accordion p,
  .hero-accordion ul {
    padding: 0 16px 16px;
  }

  .hero-jumplinks.mobile-only {
    display: grid;
    gap: 7px;
    margin-top: 12px;
    padding: 0;
  }

  .hero-jumplinks-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 750;
  }

  .hero-jumplinks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .hero-jumplink {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.36rem 0.56rem;
    border: 1px solid rgba(10, 43, 76, 0.08);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.62);
    color: var(--physio-navy);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.15;
  }

  .hero-copy h1 {
    font-size: clamp(1.68rem, 6.6vw, 2.04rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .hero-copy h2,
  .section h2 {
    font-size: clamp(1.58rem, 7vw, 2.02rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -0.025em;
  }

  .hero-copy p,
  .section p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-copy p + p,
  .section p + p {
    margin-top: 0.64rem;
  }

  .hero-lead {
    font-weight: 750 !important;
    line-height: 1.38;
  }

  .delivery-estimator {
    gap: 6px;
    margin: 12px 0 13px;
    padding: 7px 9px;
  }

  .delivery-icon {
    width: 15px;
    height: 15px;
    margin-top: 0;
  }

  .delivery-estimator .delivery-text {
    font-size: 0.75rem;
    line-height: 1.32;
  }

  .package-grid,
  .final-grid,
  .card-grid.four,
  .card-grid.three,
  .review-grid,
  .stats-row,
  .mini-grid,
  .gel-compare,
  .prx20-prototype-footer-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .package-card {
    gap: 6px;
    padding: 10px;
    min-height: 260px;
    overflow: hidden;
  }

  .package-shipping {
    margin: auto -10px -10px;
    width: calc(100% + 20px);
    min-height: 34px;
    padding: 7px 6px;
    font-size: 0.68rem;
  }

  .package-card img {
    aspect-ratio: 4 / 3;
  }

  .package-card strong {
    font-size: 0.98rem;
  }

  .package-title {
    font-size: 0.88rem;
  }

  .package-subtitle,
  .package-card small {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .package-badge {
    position: static;
    order: -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 20px);
    max-width: none;
    min-height: 28px;
    margin: -10px -10px 6px;
    padding: 7px 8px;
    border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
    font-size: 0.64rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .device-link {
    margin: 18px 0 22px;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.34;
  }

  .stock-note > strong {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .stock-note > p:not(.buybox-urgency) {
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .stock-note > p:not(.buybox-urgency) strong {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  p.guarantee-line {
    font-size: 0.82rem;
  }

  .buybox-urgency {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding-left: 0;
    font-size: 0.88rem !important;
    line-height: 1.38;
    white-space: nowrap;
  }

  .buybox-urgency .urgency-dot {
    position: static;
    flex: 0 0 9px;
  }

  .buybox-urgency strong {
    display: inline;
    margin-right: 4px;
    white-space: nowrap;
  }

  .gallery-thumbs {
    gap: 8px;
  }

  .gallery-thumbs button {
    flex-basis: calc((100% - 32px) / 5);
  }

  .delivery-line {
    display: grid;
    grid-template-columns: 1fr;
  }

  .buybox-usps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 0;
  }

  .usp-item img {
    width: 34px;
    height: 34px;
  }

  .usp-item strong,
  .usp-item span {
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .payment-row {
    justify-content: center;
    gap: 7px;
  }

  .payment-icon {
    min-width: 48px;
  }

  .comment-strip {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .comment-strip img {
    flex-basis: min(84vw, 340px);
    width: min(84vw, 340px);
  }

  .judge-review-shell {
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 22px;
  }

  .judge-review-summary {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .review-more-btn {
    width: 100%;
    margin-top: 18px;
  }

  .review-grid.judge-review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
  }

  .judge-review-grid .judgeme-review-card {
    flex: initial;
  }

  .judgeme-review-card--with-photos .review-card-main {
    grid-template-columns: 1fr;
  }

  .review-photo-column {
    width: 100%;
    justify-self: stretch;
  }

  .review-photo-button {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .final-grid .package-card {
    min-height: unset;
  }

  .section {
    padding: 52px 0;
  }

  .section.mood-pain {
    padding-top: 28px;
  }

  .dark-proof {
    padding: 28px 0;
  }

  .dark-proof .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dark-proof .stats-row div {
    padding: 11px 8px;
  }

  .dark-proof .stats-row strong {
    font-size: clamp(1.42rem, 6.4vw, 1.95rem);
  }

  .dark-proof .stats-row span {
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .skeptic-panel .btn-primary.inline,
  .mood-gel .btn-primary.inline,
  .guarantee-section .btn-primary.inline {
    margin-top: 22px;
  }

  .skeptic-panel .btn-primary.inline,
  .guarantee-section .btn-primary.inline,
  .no-regrets .btn-primary.centered {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .section .pill {
    min-height: 30px;
    padding: 0.28rem 0.56rem;
    border-radius: var(--radius-md);
    font-size: 0.74rem;
  }

  .mood-gel .btn-primary.inline {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .mood-gel .split {
    align-items: start;
  }

  .mood-evening .split {
    align-items: start;
  }

  .evening-media {
    display: none;
  }

  .evening-headline-image.mobile-only {
    display: block;
    margin: 16px 0 18px;
  }

  .gel-headline-image.mobile-only {
    display: block;
    margin: 16px 0 20px;
  }

  .gel-media > .rounded-media.wide {
    display: none;
  }

  .gel-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gel-compare article {
    padding: 10px;
    border-radius: var(--radius-md);
  }

  .gel-compare strong {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .gel-compare span {
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .guarantee-section .split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .section.guarantee-section {
    padding: 56px 0;
  }

  .guarantee-badge {
    margin: 0;
  }

  .guarantee-badge img {
    max-width: 320px;
    margin: 0 auto;
  }

  .no-regrets {
    text-align: left;
  }

  .no-regrets .section-head.center,
  .no-regrets .section-head.center h2,
  .no-regrets .section-head.center p {
    text-align: left;
    margin-left: 0;
  }

  .no-regrets .check-list.compact {
    margin-left: 0;
  }

  .final-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .final-grid .package-card {
    min-height: 252px;
  }

  .final-grid .package-card.plain {
    display: none;
  }

  .final-grid .package-card.accent {
    order: 1;
  }

  .final-grid .package-card.blue {
    order: 2;
  }

  .final-solo-link {
    display: block;
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    margin: 4px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
  }

  .section-head.center {
    text-align: left;
  }

  .loop-good {
    grid-template-columns: 1fr;
  }

  .loop-good img {
    width: 100%;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    border-radius: var(--radius-lg);
    gap: 10px;
    padding: 10px 10px 10px 14px;
  }

  .sticky-cta div {
    min-width: 0;
  }

  .sticky-cta strong,
  .sticky-cta span {
    overflow-wrap: anywhere;
  }

  .sticky-cta .btn-primary.small {
    min-height: 42px;
    padding: 0.68rem 0.82rem;
    font-size: 0.84rem;
  }

  .sticky-cta span {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .buybox,
  .judge-review-shell,
  .kit-grid {
    padding: 14px;
  }

  .buybox {
    padding: 0;
  }

  .gallery-thumbs button {
    flex-basis: calc((100% - 28px) / 5);
  }

  .package-card {
    padding: 10px;
  }

  .buybox-usps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 12px 0;
    text-align: center;
  }

  .usp-item {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    text-align: center;
  }

  .usp-item img {
    grid-row: auto;
    width: 28px;
    height: 28px;
  }

  .usp-item strong,
  .usp-item span {
    font-size: 0.66rem;
    line-height: 1.13;
  }

  .stock-note {
    gap: 7px;
    padding: 13px 14px;
  }

  .stock-note > strong {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .stock-note > p:not(.buybox-urgency) {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .stock-note > p:not(.buybox-urgency) strong {
    font-size: 0.84rem;
    line-height: 1.26;
  }

  .buybox-urgency {
    align-items: center;
    gap: 6px;
    font-size: 0.79rem !important;
    line-height: 1.2;
  }

  p.guarantee-line {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .package-shipping {
    margin: auto -10px -10px;
    width: calc(100% + 20px);
  }

  .package-card img {
    border-radius: 10px;
  }

  .skeptic-photo-frame,
  .skeptic-panel {
    gap: 10px;
  }

  .mini-grid span {
    min-height: 66px;
    padding: 12px;
    line-height: 1.12;
  }
}

@media (max-width: 340px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .comparison-container {
    max-width: 100%;
  }

  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .comparison-head,
  .comparison-row {
    min-width: 760px;
    grid-template-columns: 155px 1fr 1.05fr 1.24fr;
  }

  .comparison-head span,
  .comparison-head strong {
    display: flex;
    align-items: center;
  }

  .comparison-row > * {
    padding: 15px;
    border-bottom: 1px solid rgba(10, 43, 76, 0.08);
  }

  .comparison-row strong {
    background: var(--paper);
  }

  .comparison-row span {
    display: block;
  }

  .comparison-row span::before {
    content: '✕' !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 8px 0 0 !important;
    border-radius: 50% !important;
    background: #EEF1F3 !important;
    color: #7D8790 !important;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    letter-spacing: 0;
    text-transform: none;
  }

  .comparison-row span:last-child::before {
    content: '✓' !important;
    background: rgba(45, 139, 95, 0.14) !important;
    color: var(--success) !important;
  }

  .comparison-scroll-hint {
    display: block;
  }
}

@media (max-width: 760px) {
  .gallery-nav {
    display: none;
  }

  .gallery-swipe-hint {
    display: inline-flex;
  }

  .gallery-thumbs-shell {
    display: none;
  }

  .gallery-thumbs-shell .thumbs-nav {
    display: none;
  }

  .gallery-thumbs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-dots {
    display: flex;
  }

  .comment-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
    margin-bottom: 28px;
  }

  .comment-carousel-window img {
    border-radius: 14px;
  }

  .comment-nav {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .comment-dots {
    gap: 6px;
  }

  .comment-dots button {
    width: 7px;
    height: 7px;
  }

  .comment-dots button.active {
    width: 22px;
  }

  .comparison-head,
  .comparison-row {
    min-width: 700px;
    grid-template-columns: 142px 1fr 1.05fr 1.24fr;
  }
}
