/* Collagen Review LP — My Way Up 2026 */

@font-face {
  font-family: "ABC Social";
  src: url("../assets/fonts/ABCSocial-Regular-Trial.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Social";
  src: url("../assets/fonts/ABCSocial-Medium-Trial.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Social";
  src: url("../assets/fonts/ABCSocial-Bold-Trial.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Social";
  src: url("../assets/fonts/ABCSocial-Bold-Trial.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Social Mono";
  src: url("../assets/fonts/ABCSocialMono-Regular-Trial.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Social Mono";
  src: url("../assets/fonts/ABCSocialMono-Medium-Trial.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Social Mono";
  src: url("../assets/fonts/ABCSocialMono-Bold-Trial.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbf9f5;
  --peach: #f9ede2;
  --accent: #f4b7a2;
  --hero: #d3b29b;
  --hero-mobile: #f9ede2;
  --header-border: #dfd2c9;
  --sand: #e7ded3;
  --table-head: #f7f6f4;
  --text: #1a1a1a;
  --text-nav: #242424;
  --muted: #686868;
  --trust-note: #4e4e4e;
  --border: #e6e6e6;
  --white: #ffffff;
  --black: #000000;
  --nav-hover: rgba(222, 212, 202, 0.4);
  --shadow-nav: 0 4px 8px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.16);
  --shadow-img: 0 7px 25px rgba(0, 0, 0, 0.22);
  --font-sans: "ABC Social", system-ui, sans-serif;
  --font-mono: "ABC Social Mono", ui-monospace, monospace;
  --font-brand: "Montserrat", "ABC Social", system-ui, sans-serif;
  --font-cta: "ABC Social", system-ui, sans-serif;
  --header-h: 96px;
  --content-max: 874px;
  --sidebar-w: 250px;
  --page-pad-l: 338px;
  --page-pad-r: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  letter-spacing: 0.17px;
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 64px;
  background: var(--white);
  border-bottom: 1px solid var(--header-border);
}

.site-header__brand {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--black);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  opacity: 0.88;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--header {
  font-family: var(--font-cta);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  padding: 12px 22px;
  letter-spacing: 0;
}

.btn--header img {
  width: 14px;
  height: 14px;
}

.btn--primary {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  padding: 10px 40px;
  letter-spacing: 0;
  white-space: nowrap;
}

/* —— Layout shell —— */
.page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  background: var(--bg);
}

.page__main {
  width: 100%;
}

.content-rail {
  padding-left: var(--page-pad-l);
  padding-right: var(--page-pad-r);
}

.content-inner {
  width: 100%;
  max-width: var(--content-max);
}

/* —— Sticky TOC —— */
.toc {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + 40px);
  left: max(38px, calc(50% - 640px + 38px));
  width: var(--sidebar-w);
  z-index: 50;
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow-nav);
  flex-direction: column;
  gap: 16px;
}

.toc__title {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-nav);
  line-height: 1.5;
  letter-spacing: 0;
}

.toc__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc__link {
  display: block;
  width: 100%;
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.17px;
  text-transform: uppercase;
  color: var(--text-nav);
  line-height: 1.5;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.toc__link:hover,
.toc__link:focus-visible,
.toc__link.is-active {
  background: var(--nav-hover);
  outline: none;
}

.toc__divider {
  height: 0;
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  height: 506px;
  background: var(--hero);
  overflow: hidden;
}

.hero__img {
  position: absolute;
  top: -5px;
  left: calc(50% + 101.5px);
  transform: translateX(-50%);
  width: 1070px;
  height: 511px;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero__blur {
  position: absolute;
  left: 104px;
  top: 0;
  width: 268px;
  height: 506px;
  background: linear-gradient(
    to left,
    rgba(225, 197, 174, 0.2),
    rgba(211, 178, 155, 0.2)
  );
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero__copy {
  position: absolute;
  left: 332px;
  top: 64px;
  width: 437px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.hero__title {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text);
}

.hero__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

.hero .toc--inline {
  display: none;
}

/* —— Intro —— */
.intro {
  padding: 80px var(--page-pad-r) 80px var(--page-pad-l);
  background: var(--bg);
}

.intro__inner {
  max-width: var(--content-max);
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.intro__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
  max-width: 563px;
}

.intro__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

.intro__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  width: 100%;
}

.intro__cols p {
  font-size: 16px;
  line-height: 1.5;
}

/* —— Guide —— */
.guide {
  padding: 80px var(--page-pad-r) 80px var(--page-pad-l);
  background: #ffffff;
}

.guide__inner {
  max-width: var(--content-max);
}

.guide__top {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  margin-bottom: 84px;
  max-width: var(--content-max);
}

.guide__media {
  flex-shrink: 0;
  width: 326px;
  height: 435px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.guide__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.guide__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.guide__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.check-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.guide__note {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
  color: #686868;
}

/* —— Comparison table —— */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.cmp-table {
  width: 100%;
  min-width: 874px;
  border-collapse: collapse;
  font-size: 14px;
}

.cmp-table th {
  background: var(--table-head);
  font-weight: 500;
  text-align: center;
  padding: 13.5px 0;
  color: var(--text);
}

.cmp-table th:first-child,
.cmp-table td:first-child {
  text-align: left;
  padding-left: 24px;
  width: 186px;
}

.cmp-table td {
  text-align: center;
  padding: 4px 0;
  height: 40px;
  vertical-align: middle;
  border-bottom: 1px solid transparent;
}

.cmp-table tbody tr:not(.is-winner) td {
  border-bottom: 1px solid var(--border);
}

.cmp-table .is-winner {
  background: var(--peach);
}

.cmp-table .is-winner td {
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.cmp-table .is-winner td:first-child {
  border-left: 2px solid var(--accent);
  border-radius: 4px 0 0 4px;
}

.cmp-table .is-winner td:last-child {
  border-right: 2px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.table-scroll-hint {
  display: none !important;
}

/* —— #1 Pick —— */
.pick {
  padding: 80px var(--page-pad-r) 80px var(--page-pad-l);
  background: var(--bg);
}

.pick__grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.pick__copy {
  flex: 1;
  max-width: 456px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pick__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  letter-spacing: 0;
}

.pick__eyebrow {
  display: block;
  font-weight: 900;
  font-size: 36px;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: 0;
}

.pick__name {
  display: block;
  font-weight: 500;
  font-size: 32px;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0;
}

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

.pick__callout {
  border-left: 2px solid var(--accent);
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pick__callout p {
  margin: 0;
}

.pick__callout strong {
  font-weight: 700;
}

.pick__media {
  width: 360px;
  height: 507px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.pick__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* —— Trust —— */
.trust {
  padding: 80px var(--page-pad-r) 80px var(--page-pad-l);
  background: var(--bg);
}

.trust__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trust__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 521px;
  margin: 0 auto;
}

.trust__title {
  font-weight: 900;
  font-size: 44px;
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: 0;
}

.trust__intro {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
}

.trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  justify-content: center;
}

.trust-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  width: 221px;
  min-height: 264px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-card__icon {
  width: 68px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trust-card__text {
  font-size: 14px;
  line-height: 1.5;
  width: 189px;
}

.trust-card__text strong {
  font-weight: 900;
  display: block;
  margin-bottom: 0;
}

.trust__footer {
  border-left: 2px solid var(--accent);
  background: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--trust-note);
  line-height: 1.5;
}

/* —— Why choose —— */
.why {
  background: var(--peach);
  padding: 100px var(--page-pad-r) 100px var(--page-pad-l);
}

.why__grid {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.why__media {
  width: 396px;
  height: 522px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  position: relative;
}

.why__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.why__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  max-width: 438px;
  align-self: stretch;
}

.why__copy-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.why__text {
  font-size: 16px;
  line-height: 1.5;
}

.why__box {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why__lead {
  background: var(--peach);
  border-left: 2px solid var(--accent);
  padding: 4px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

/* —— Science —— */
.science {
  padding: 80px var(--page-pad-r) 80px var(--page-pad-l);
  background: var(--bg);
}

.science__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.science__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.science__intro {
  font-size: 16px;
  margin-top: 8px;
}

.science__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  text-align: left;
}

.science__col {
  border-left: 2px solid var(--accent);
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.5;
}

.science__close {
  font-size: 16px;
  width: 486px;
  max-width: 100%;
  line-height: 1.5;
  text-align: center;
}

/* —— Reviews —— */
.reviews {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px var(--page-pad-r) 80px var(--page-pad-l);
}

.review--white {
  background: var(--white);
}

.review--cream {
  background: var(--bg);
}

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.review__meta {
  flex: 1;
  max-width: 456px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.review__labels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
}

.review__rank {
  font-size: 24px;
  line-height: 1.2;
}

.review__headline {
  font-size: 36px;
  line-height: 1.2;
}

.review__scores {
  border-left: 2px solid var(--accent);
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review__product {
  font-weight: 700;
  font-size: 14px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  padding-bottom: 2px;
}

.review__media {
  width: 360px;
  min-height: 266px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  align-self: stretch;
}

.review__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.review__proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: stretch;
}

.pc-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

.review--cream .pc-box {
  background: var(--white);
}

.review--white .pc-box {
  background: var(--bg);
}

.pc-box__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
}

.pc-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pc-item img[src*="cancel"] {
  width: 24px;
  height: 24px;
  margin-top: 0;
}

.review__summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  max-width: 874px;
}

.review__body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bottom-line {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.bottom-line p {
  margin: 0;
  max-width: 100%;
}

.bottom-line strong {
  font-weight: 900;
}

.review__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

/* —— Best overall —— */
.best {
  background: var(--peach);
  padding: 100px 64px;
}

.best__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.best__media {
  width: 449px;
  height: 703px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.best__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.best__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  max-width: 642px;
  padding-top: 0;
}

.best__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.best__panel {
  background: var(--bg);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.best__label {
  display: block;
  background: var(--sand);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 16px;
  box-sizing: border-box;
  margin: -24px -24px 0;
  width: calc(100% + 48px);
  border-radius: 8px 8px 0 0;
}

.best__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.best__cta {
  display: flex;
  width: 100%;
}

.best__cta .btn {
  width: 100%;
}

.site-footer {
  padding: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  border-top: 1px solid var(--header-border);
}

/* —— Desktop sticky TOC —— */
@media (min-width: 1100px) {
  .toc {
    display: flex;
  }
}

/* —— Tablet —— */
@media (max-width: 1099px) {
  :root {
    --page-pad-l: 40px;
    --page-pad-r: 40px;
  }

  .site-header {
    padding: 20px 24px;
  }

  .hero {
    height: auto;
    min-height: 420px;
  }

  .hero__img {
    left: 50%;
    width: 100%;
    height: 100%;
    top: 0;
  }

  .hero__blur {
    left: 0;
    width: 45%;
  }

  .hero__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    max-width: 480px;
    padding: 64px 40px;
  }

  .intro__cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide__top {
    flex-direction: column;
    gap: 32px;
  }

  .pick__grid,
  .why__grid,
  .best__grid,
  .review__top {
    flex-direction: column;
    align-items: stretch;
  }

  .pick__media,
  .why__media,
  .best__media,
  .review__media,
  .guide__media {
    width: 100%;
    max-width: 396px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
  }

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

  .review__proscons {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-card {
    width: calc(50% - 12px);
    min-width: 160px;
  }
}

/* —— Mobile (Figma 360) —— */
@media (max-width: 749px) {
  :root {
    --page-pad-l: 16px;
    --page-pad-r: 16px;
    --header-h: 64px;
  }

  .toc {
    display: none !important;
  }

  .site-header {
    padding: 12px 16px;
  }

  .site-header__brand {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .btn--header {
    font-size: 12px;
    padding: 10px 14px;
  }

  .btn--primary {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 10px 24px;
  }

  /* Hero: image on top, left-aligned copy */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    background: var(--hero-mobile);
  }

  .hero__img {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 229px;
    order: 1;
  }

  .hero__img img {
    object-fit: cover;
    object-position: center center;
  }

  .hero__blur {
    display: none;
  }

  .hero__copy {
    order: 2;
    padding: 24px 26px 40px;
    width: 100%;
    max-width: none;
    background: var(--hero-mobile);
    text-align: left;
    align-items: flex-start;
  }

  .hero__title {
    font-size: 32px;
    text-align: left;
    width: 100%;
  }

  .hero__text {
    text-align: left;
    width: 100%;
  }

  .hero .btn--primary {
    width: 100%;
  }

  /* Intro: left-aligned title + stacked paragraphs */
  .intro {
    padding: 32px 16px;
  }

  .intro__inner {
    align-items: flex-start;
    gap: 24px;
  }

  .intro__title {
    font-size: 24px;
    text-align: left;
    max-width: none;
    width: 100%;
  }

  .intro__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro__cols p {
    text-align: left;
  }

  /* Guide: image first, left title, scrollable table */
  .guide {
    padding: 32px 16px;
    background: #ffffff;
    overflow-x: clip;
  }

  .guide__inner {
    max-width: none;
    overflow-x: clip;
  }

  .guide__top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    max-width: none;
  }

  .guide__media {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0;
    border-radius: 8px;
    box-shadow: none;
    background: transparent;
  }

  .guide__title {
    font-size: 24px;
    text-align: left;
  }

  .guide__copy {
    gap: 16px;
  }

  .table-wrap {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cmp-table {
    min-width: 720px;
  }

  /* #1 Pick: image first, left titles */
  .pick {
    padding: 32px 16px;
  }

  .pick__grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .pick__media {
    order: -1;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    aspect-ratio: 3 / 4;
  }

  .pick__copy {
    max-width: none;
    gap: 24px;
  }

  .pick__heading {
    text-align: left;
  }

  .pick__eyebrow {
    font-size: 24px;
    text-align: left;
  }

  .pick__name {
    font-size: 24px;
    text-align: left;
  }

  .pick__callout {
    text-align: left;
  }

  /* Trust: left-aligned header (not centered on mobile) */
  .trust {
    padding: 32px 16px;
  }

  .trust__header {
    align-items: flex-start;
    text-align: left;
    max-width: none;
    margin: 0;
    gap: 16px;
  }

  .trust__title {
    font-size: 24px;
    text-align: left;
    width: 100%;
  }

  .trust__intro {
    text-align: left;
    font-size: 14px;
  }

  .trust__grid {
    gap: 24px 10px;
    justify-content: space-between;
  }

  .trust-card {
    width: calc(50% - 5px);
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 12px 8px;
  }

  .trust-card__text {
    width: 100%;
    font-size: 12px;
  }

  .trust-card__icon {
    width: 48px;
    height: 48px;
  }

  .trust__footer {
    text-align: left;
  }

  /* Why Choose: image first, left title */
  .why {
    padding: 32px 16px;
  }

  .why__grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .why__media {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    aspect-ratio: 3 / 4;
    box-shadow: none;
    background: transparent;
  }

  .why__copy {
    max-width: none;
    justify-content: flex-start;
    gap: 24px;
  }

  .why__title {
    font-size: 24px;
    text-align: left;
  }

  .why__title br {
    display: none;
  }

  .why__text {
    text-align: left;
  }

  /* Science: left-aligned (not centered) */
  .science {
    padding: 32px 16px;
  }

  .science__inner {
    align-items: flex-start;
    text-align: left;
    gap: 32px;
  }

  .science__title {
    font-size: 28px;
    text-align: left;
  }

  .science__intro {
    text-align: left;
  }

  .science__cols {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .science__close {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  /* Reviews: image first, left titles, stacked pros/cons */
  .reviews {
    gap: 0;
  }

  .review {
    padding: 32px 16px;
    gap: 32px;
  }

  .review__top {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .review__media {
    order: -1;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0;
  }

  .review__meta {
    max-width: none;
    gap: 24px;
  }

  .review__labels {
    text-align: left;
  }

  .review__rank {
    font-size: 20px;
    text-align: left;
  }

  .review__headline {
    font-size: 24px;
    text-align: left;
  }

  .review__proscons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-box {
    height: auto;
    min-height: 0;
  }

  .pc-box__title {
    font-size: 28px;
    text-align: left;
  }

  .review__summary {
    max-width: none;
  }

  .review__body {
    text-align: left;
  }

  .bottom-line {
    text-align: left;
  }

  /* Best Overall: image first, left title, full-width CTA */
  .best {
    padding: 32px 16px;
  }

  .best__grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .best__media {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0;
  }

  .best__copy {
    max-width: none;
    gap: 16px;
  }

  .best__title {
    font-size: 24px;
    text-align: left;
  }

  .best__cta .btn {
    width: 100%;
  }
}
