:root {
  --purple: #5d2a82;
  --teal: #C0271B;
  --gold: #f3c60d;
  --orange: #f26f3f;
  --black: #000;
  --dark: #232323;
  --soft-dark: #303030;
  --white: #fff;
  --text: #2c2c2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 22px;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--purple);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.nav {
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 24px;
}

.logo {
  color: var(--white);
  font-size: 39px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a:not(.btn) {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 12px 25px;
  font-weight: 800;
  text-align: center;
  line-height: 1.12;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-outline {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.24);
}

.btn-danger {
  background: var(--teal);
  color: var(--white);
}

.btn-large {
  font-size: 25px;
  min-height: 62px;
  padding: 14px 28px;
  text-transform: uppercase;
}

.nav-cta {
  min-width: 238px;
  font-size: 24px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--white);
}

.section-white {
  background: var(--white);
  padding: 34px 32px 22px;
}

.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 32px 28px;
}

.split {
  width: min(1210px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: center;
  gap: 30px;
}

.image-wrap {
  display: flex;
  justify-content: center;
}

.image-wrap img {
  width: 100%;
}

.small-product img {
  max-width: 360px;
}

.guarantee-content {
  padding-top: 52px;
}

.guarantee-badge-wrap {
  min-height: 330px;
  align-items: center;
}

.guarantee-badge-image {
  width: min(380px, 90vw);
}

.center-copy {
  text-align: center;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1 {
  color: #202020;
  font-size: 49px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 14px;
}

.product-title {
  color: #202020;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 14px;
}

.hero-subtitle {
  width: min(1050px, 100%);
  margin: 0 auto 24px;
  padding: 0;
  background: transparent;
  color: #202020;
  font-family: "Poppins", "Jost", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 700;
  text-align: center;
}

.hero .image-wrap img {
  max-height: 430px;
  object-fit: contain;
}

.headline-light,
.headline-highlight {
  font-family: inherit;
}

.headline-highlight {
  color: var(--purple);
}

.editor-note {
  background: #f4f4f4;
  padding: 24px 8%;
  text-align: center;
}

.editor-note p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 23px;
}

.summary-box {
  background: #fff;
  padding: 38px 8%;
}

.summary-box h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--purple);
}

.summary-grid {
  max-width: 950px;
  margin: 0 auto;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.summary-grid div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 22px;
}

.summary-grid div:last-child {
  border-bottom: 0;
}

.summary-grid strong {
  color: var(--purple);
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  background: #fff;
  padding: 40px 8%;
}

.pros-card,
.cons-card {
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  padding: 28px;
}

.pros-card h3,
.cons-card h3 {
  color: var(--purple);
  margin-bottom: 18px;
}

.pros-card ul,
.cons-card ul {
  margin: 0;
  padding-left: 24px;
}

.pros-card li,
.cons-card li {
  font-size: 23px;
  margin: 10px 0;
}

.comparison-table-wrap {
  background: #fff;
  padding: 40px 6%;
}

.comparison-table {
  width: min(1080px, 100%);
  margin: 0 auto;
  border-collapse: collapse;
  border: 2px solid #e5e5e5;
  font-size: 23px;
}

.comparison-table th {
  background: var(--purple);
  color: #fff;
  font-size: 26px;
  padding: 18px;
}

.comparison-table td {
  width: 50%;
  padding: 18px 22px;
  border: 1px solid #e5e5e5;
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--purple);
}

h2 {
  font-size: 43px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}

h3 {
  font-size: 29px;
  line-height: 1.12;
  font-weight: 800;
}

.center-copy p {
  font-size: 25px;
  margin-bottom: 28px;
}

.hero .center-copy p {
  font-size: 23px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.hero .check-list {
  margin-bottom: 14px;
}

.hero .check-list li {
  font-size: 22px;
  line-height: 1.35;
}

.offer-line {
  font-weight: 500;
}

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

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  max-width: 680px;
  text-align: left;
}

.check-list li {
  font-size: 24px;
  font-weight: 600;
  margin: 3px 0;
}

.check-icon {
  color: #AAD17C;
  font-weight: 900;
  margin-right: 6px;
}

.button-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.trust-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  margin: 0 auto;
  min-height: 50px;
  padding: 12px 30px;
  border: 2px solid #111;
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.trust-info:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.2);
}

.button-row.single {
  margin-top: 22px;
}

.band {
  text-align: center;
  padding: 18px 18px 20px;
}

.band.purple {
  background: var(--purple);
  color: var(--white);
}

.headline-band {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 16px 8%;
}

.headline-band h2 {
  font-family: "Poppins", "Jost", Arial, sans-serif;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.14;
  font-weight: 700;
}

.section-title {
  background: var(--white);
  color: #202020;
  text-align: center;
  padding: 34px 18px 24px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  color: #202020;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--purple);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 18px;
}

.trust-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 3px;
}

.trust-card .fda-badge {
  width: 100%;
  height: 220px;
  margin: 0 auto;
}

.trust-card h3 {
  margin: 18px 0 8px;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card p {
  font-size: 20px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  background: #f7f7f8;
  padding: 34px 6% 46px;
}

.review-card {
  background: var(--white);
  color: #252525;
  text-align: center;
  padding: 34px 30px 32px;
  min-height: auto;
  border: 1px solid #ece8f1;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(31, 21, 41, 0.1);
}

.review-card img {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f2edf7;
}

.verified {
  color: #4f9d5d;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 10px;
}

.stars {
  color: #f5bd21;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 18px;
}

.review-card strong {
  display: block;
  color: #6f6f76;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.review-card blockquote {
  color: #2c2c2c;
  font-size: 21px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.copy-block {
  padding: 34px 9%;
  background: var(--white);
  text-align: left;
}

.copy-block p,
.copy-block li {
  font-size: 25px;
}

.copy-block h2 {
  font-size: 32px;
  margin: 16px 0 10px;
}

.how-cards {
  background: var(--white);
  padding: 30px 6% 42px;
}

.how-intro,
.how-outro {
  max-width: 980px;
  margin: 0 auto 26px;
  text-align: center;
  font-size: 24px;
  line-height: 1.45;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto 26px;
}

.how-card {
  position: relative;
  padding: 28px 28px 26px;
  border: 1px solid #e8e1ee;
  border-radius: 8px;
  background: #fbf9fd;
  box-shadow: 0 8px 22px rgba(93, 42, 130, 0.08);
}

.how-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-weight: 900;
  font-size: 22px;
}

.how-card h3 {
  color: #202020;
  font-size: 27px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.how-card p {
  font-size: 22px;
  line-height: 1.42;
  margin: 0;
}

.how-outro {
  margin-bottom: 0;
}

.science-section {
  padding-top: 26px;
}

.science-illustration img {
  width: min(560px, 100%);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(50, 19, 71, 0.14);
}

.pricing-heading p {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.25;
  color: #252525;
}

.pricing-heading p:first-of-type {
  color: #c0271b;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 320px));
  justify-content: center;
  gap: 26px;
  background: var(--dark);
  padding: 42px 6%;
  align-items: start;
}

.pricing a {
  display: block;
  width: 100%;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.pricing img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  border-radius: 4px;
}

.pricing-single {
  grid-template-columns: minmax(280px, 720px);
  background: var(--white);
  padding: 26px 6% 40px;
}

.pricing-single a {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-single img {
  max-height: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.pricing-packages {
  grid-template-columns: repeat(3, minmax(220px, 315px));
  background: var(--white);
  gap: 0;
  padding: 26px 6% 40px;
}

.pricing-packages a {
  border-radius: 0;
  max-width: 315px;
  margin: 0 auto;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.pricing-packages img {
  display: block;
  width: 100%;
  max-height: none;
  border-radius: 0;
}

.official-pricing {
  grid-template-columns: repeat(3, minmax(220px, 320px));
  background: var(--white);
  padding: 34px 6% 44px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px 24px;
  background: #fff;
  border: 2px solid #e4e4e4;
  border-radius: 8px;
  color: #202020;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.price-card.featured {
  border-color: var(--purple);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.best-value {
  position: absolute;
  top: -16px;
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.supply {
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.discount {
  color: var(--purple);
  font-size: 21px;
  font-weight: 800;
}

.bottle-price {
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.per-bottle,
.shipping,
.guarantee {
  font-size: 20px;
  font-weight: 700;
}

.total-price {
  font-size: 26px;
  font-weight: 900;
}

.total-price del {
  color: #777;
  margin-right: 8px;
}

.cta-strip {
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 34px 24px 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.cta-strip p {
  font-size: 27px;
  line-height: 1.45;
  font-weight: 500;
  margin: 0 0 14px;
}

.cta-strip .price-lines {
  font-size: 31px;
  line-height: 1.45;
  margin: 16px 0;
}

.cta-strip .price-lines strong {
  font-weight: 800;
  color: #202020;
}

.cta-strip .btn {
  margin: 12px auto 0;
  display: flex;
  width: fit-content;
}

.pricing-trust-line {
  color: #7A7A7A;
  text-align: center;
  font-size: 18px !important;
  line-height: 1.35;
  font-weight: 500 !important;
  margin: 12px 0 0 !important;
}

.page-v2 .btn-primary {
  background: #FFD43B;
  color: #1A1A1A;
  box-shadow: 0 8px 18px rgba(255, 212, 59, 0.28);
}

.page-v2 .btn-primary:hover {
  background: #F2C421;
  color: #1A1A1A;
}

.page-v2 .nav-cta {
  font-size: 15px;
  padding: 16px 24px;
  white-space: nowrap;
}

.page-v2 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.page-v2 h1,
.page-v2 h2,
.page-v2 h3,
.page-v2 .logo {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.015em;
}

.page-v2 h1 {
  font-weight: 700;
  line-height: 1.12;
}

.page-v2 h2,
.page-v2 h3 {
  font-weight: 600;
  line-height: 1.18;
}

.page-v2 p,
.page-v2 li,
.page-v2 td,
.page-v2 th,
.page-v2 blockquote,
.page-v2 .summary-grid span {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.62;
}

.page-v2 strong {
  font-weight: 500;
}

.page-v2 .btn,
.page-v2 .nav-links a {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
}

.page-v2 .btn {
  font-size: 26px;
  letter-spacing: 0;
}

.page-v2 .nav-cta {
  font-size: 21px;
  font-weight: 800;
  min-width: 210px;
  padding-right: 20px;
  padding-left: 20px;
  white-space: nowrap;
}

.page-v2 .button-row .btn-large,
.page-v2 .button-row .trust-info {
  width: min(360px, 100%);
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
}

.page-v2 .button-row {
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
}

.page-v2 .hero-v2 .button-row,
.page-v2 .offer-v2 .button-row,
.page-v2 .routine-steps .button-row,
.page-v2 .ready-v2 .button-row {
  display: flex;
}

.page-v2 .button-row .btn-large + .trust-info {
  margin-top: 0;
}

.page-v2 .button-row .btn-large {
  min-height: 60px;
  padding: 14px 24px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(188, 143, 0, 0.24);
}

.page-v2 .button-row .trust-info {
  min-height: 52px;
  font-size: 17px;
}

.page-v2 .check-list {
  gap: 12px;
}

.page-v2 .check-list li {
  font-weight: 500;
  line-height: 1.45;
}

.page-v2 .summary-box {
  padding-top: 46px;
  padding-bottom: 46px;
}

.page-v2 .summary-box h2,
.page-v2 .section-title h2,
.page-v2 .band h2,
.page-v2 .headline-band h2 {
  font-size: 48px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.page-v2 .summary-grid div {
  padding: 18px 20px;
}

.page-v2 .summary-grid strong {
  margin-bottom: 8px;
  font-weight: 600;
}

.page-v2 .trust-card {
  padding: 8px 18px 18px;
}

.page-v2 .trust-card h3 {
  margin: 22px 0 14px;
  line-height: 1.14;
}

.page-v2 .trust-card p {
  line-height: 1.58;
}

.page-v2 .review-card {
  padding: 40px 34px 38px;
}

.page-v2 .review-card blockquote {
  line-height: 1.66;
  margin-bottom: 28px;
}

.page-v2 .how-card,
.page-v2 .ingredients article {
  padding: 34px 32px;
}

.page-v2 .how-card h3,
.page-v2 .ingredients h3 {
  margin-bottom: 16px;
}

.page-v2 .how-card p,
.page-v2 .ingredients p {
  line-height: 1.6;
}

.formula-v2-title {
  padding-bottom: 24px;
}

.formula-v2 {
  padding: 22px 7% 72px;
  background: #f7f5fa;
}

.formula-v2-intro,
.formula-v2-note {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.formula-v2-intro {
  margin-bottom: 34px;
  font-size: 20px;
  line-height: 1.7;
}

.formula-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.formula-v2-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 30px 28px;
  border: 1px solid #e4dced;
  border-top: 4px solid #60308f;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(45, 28, 66, 0.08);
}

.formula-v2-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid #d9c8e9;
  border-radius: 50%;
  background: #f7f1fc;
  color: #60308f;
}

.formula-v2-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.formula-v2-card h3 {
  margin: 0 0 15px;
  color: #60308f;
  font-size: 24px;
}

.formula-v2-card p {
  margin: 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.65;
}

.formula-v2-note {
  margin-top: 34px;
  color: #303030;
  font-size: 18px;
  line-height: 1.65;
}

.formula-v2-note p + p {
  margin-top: 14px;
  color: #555;
  font-size: 15px;
}

.formula-v2 .button-row {
  margin-top: 30px;
}

.consistency-v2-title {
  padding-bottom: 22px;
}

.page-v2 .pricing-heading,
.page-v2 .pricing-packages,
.page-v2 .cta-strip {
  display: none;
}

.offer-v2-title {
  padding-bottom: 22px;
}

.offer-v2 {
  padding: 22px 7% 70px;
  text-align: center;
  background: #f7f5fa;
}

.offer-v2-intro,
.offer-v2-support {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 19px;
  line-height: 1.65;
}

.offer-v2-intro {
  margin-bottom: 30px;
}

.offer-v2-image {
  display: block;
  width: min(720px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #ded6e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(45, 28, 66, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-v2-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(45, 28, 66, 0.16);
}

.offer-v2-image img {
  display: block;
  width: 100%;
  height: auto;
}

.offer-v2-support {
  margin-top: 26px;
  color: #555;
  font-size: 17px;
}

.offer-v2 .button-row {
  margin-top: 28px;
}

.consistency-v2 {
  padding: 24px 7% 72px;
  background: #fff;
}

.consistency-v2-intro {
  max-width: 940px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
}

.consistency-v2-intro p + p {
  margin-top: 14px;
}

.consistency-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.consistency-v2-card {
  position: relative;
  min-height: 220px;
  padding: 34px 32px 30px 86px;
  border: 1px solid #e7dff0;
  border-radius: 8px;
  background: #faf8fc;
}

.consistency-v2-icon {
  position: absolute;
  top: 32px;
  left: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #60308f;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.consistency-v2-card h3 {
  margin: 0 0 14px;
  color: #28242c;
  font-size: 23px;
}

.consistency-v2-card p {
  margin: 0;
  color: #3f3b43;
  font-size: 17px;
  line-height: 1.65;
}

.consistency-v2-summary {
  max-width: 920px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.consistency-v2 .button-row {
  margin-top: 30px;
}

.standout-v2-title {
  padding-bottom: 22px;
}

.standout-v2 {
  padding: 24px 7% 72px;
  background: #f7f5fa;
}

.standout-v2-intro {
  max-width: 940px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
}

.standout-v2-intro p + p {
  margin-top: 14px;
  font-weight: 500;
}

.standout-v2-table-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
  border: 1px solid #ded6e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(45, 28, 66, 0.08);
}

.standout-v2-table {
  min-width: 680px;
  margin: 0;
}

.page-v2 .standout-v2-table th,
.page-v2 .standout-v2-table td {
  text-align: center;
}

.page-v2 .standout-v2-table th:first-child,
.page-v2 .standout-v2-table td:first-child {
  width: 42%;
  text-align: left;
}

.page-v2 .standout-v2-table td:first-child {
  color: #2c2930;
  font-weight: 600;
}

.standout-check {
  color: #74a942;
  font-size: 22px;
  font-weight: 700;
}

.standout-v2-reasons {
  max-width: 880px;
  margin: 36px auto 0;
  padding: 30px 34px;
  border-left: 5px solid #60308f;
  border-radius: 0 8px 8px 0;
  background: #fff;
}

.standout-v2-reasons h3 {
  margin: 0 0 20px;
  color: #60308f;
  font-size: 25px;
}

.standout-v2-reasons ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standout-v2-reasons li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #333;
  font-size: 17px;
  line-height: 1.55;
}

.standout-v2-closing {
  max-width: 900px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 19px;
  line-height: 1.65;
}

.standout-v2 .button-row {
  margin-top: 30px;
}

.page-v2 .legacy-guarantee-v2 {
  display: none;
}

.confidence-v2-title {
  padding-bottom: 22px;
}

.confidence-v2 {
  padding: 24px 7% 72px;
  background: #fff;
}

.confidence-v2-intro,
.confidence-v2-closing {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 19px;
  line-height: 1.7;
}

.confidence-v2-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 38px;
  border-left: 5px solid #60308f;
  border-radius: 0 8px 8px 0;
  background: #faf8fc;
  color: #38343b;
  font-size: 19px;
  line-height: 1.7;
}

.confidence-v2-copy p {
  margin: 0;
}

.confidence-v2-copy p + p {
  margin-top: 16px;
}

.confidence-v2-intro {
  margin-bottom: 34px;
}

.confidence-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.confidence-v2-card {
  padding: 30px 25px;
  border: 1px solid #e5ddec;
  border-radius: 8px;
  background: #faf8fc;
  text-align: center;
}

.confidence-v2-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: #60308f;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}

.confidence-v2-card h3 {
  margin: 0 0 14px;
  color: #29252d;
  font-size: 22px;
}

.confidence-v2-card p {
  margin: 0;
  color: #444047;
  font-size: 16px;
  line-height: 1.65;
}

.confidence-v2-closing {
  margin-top: 34px;
}

.confidence-v2 .button-row {
  margin-top: 30px;
}

.ready-v2 {
  padding: 58px 7%;
  background: #f7f5fa;
}

.ready-v2-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 42px 48px;
  border: 1px solid #e2d9eb;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(45, 28, 66, 0.08);
}

.ready-v2 h2 {
  margin: 0 0 22px;
  color: #60308f;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
}

.ready-v2-copy {
  max-width: 850px;
  margin: 0 auto;
  color: #38343b;
  font-size: 18px;
  line-height: 1.65;
}

.ready-v2-copy p + p {
  margin-top: 12px;
}

.ready-v2 .button-row {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .confidence-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .formula-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .formula-v2-title {
    padding-bottom: 18px;
  }

  .formula-v2 {
    padding: 18px 20px 52px;
  }

  .formula-v2-intro {
    margin-bottom: 26px;
    font-size: 18px;
    text-align: left;
  }

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

  .formula-v2-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    padding: 25px 22px;
  }

  .formula-v2-icon {
    width: 62px;
    height: 62px;
  }

  .formula-v2-icon svg {
    width: 34px;
    height: 34px;
  }

  .formula-v2-note {
    margin-top: 28px;
    text-align: left;
  }

  .consistency-v2-title {
    padding-bottom: 16px;
  }

  .offer-v2-title {
    padding-bottom: 16px;
  }

  .offer-v2 {
    padding: 18px 16px 50px;
  }

  .offer-v2-intro {
    margin-bottom: 24px;
    padding: 0 4px;
    font-size: 18px;
    text-align: left;
  }

  .offer-v2-image {
    width: 100%;
    border-radius: 6px;
  }

  .offer-v2-support {
    margin-top: 22px;
    padding: 0 4px;
    text-align: left;
  }

  .consistency-v2 {
    padding: 20px 20px 52px;
  }

  .consistency-v2-intro {
    margin-bottom: 26px;
    text-align: left;
    font-size: 18px;
  }

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

  .consistency-v2-card {
    min-height: 0;
    padding: 76px 22px 25px;
  }

  .consistency-v2-icon {
    top: 22px;
    left: 22px;
  }

  .consistency-v2-summary {
    margin-top: 27px;
    text-align: left;
    font-size: 18px;
  }

  .standout-v2-title {
    padding-bottom: 16px;
  }

  .standout-v2 {
    padding: 20px 20px 52px;
  }

  .standout-v2-intro {
    margin-bottom: 26px;
    text-align: left;
    font-size: 18px;
  }

  .standout-v2-reasons {
    margin-top: 28px;
    padding: 25px 20px;
  }

  .standout-v2-closing {
    margin-top: 27px;
    text-align: left;
    font-size: 18px;
  }

  .confidence-v2-title {
    padding-bottom: 16px;
  }

  .confidence-v2 {
    padding: 20px 20px 52px;
  }

  .confidence-v2-intro,
  .confidence-v2-closing {
    text-align: left;
    font-size: 18px;
  }

  .confidence-v2-copy {
    padding: 26px 22px;
    font-size: 18px;
  }

  .confidence-v2-intro {
    margin-bottom: 26px;
  }

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

  .confidence-v2-card {
    padding: 26px 22px;
    text-align: left;
  }

  .confidence-v2-icon {
    margin: 0 0 18px;
  }

  .confidence-v2-closing {
    margin-top: 27px;
  }

  .ready-v2 {
    padding: 42px 16px;
  }

  .ready-v2-inner {
    padding: 32px 20px;
  }

  .ready-v2 h2 {
    margin-bottom: 18px;
    font-size: 29px;
  }

  .ready-v2-copy {
    text-align: left;
    font-size: 17px;
  }
}

.page-v2 .comparison-table th {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-v2 .comparison-table td {
  padding: 22px 24px;
  line-height: 1.55;
}

.page-v2 .faq-item button {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-top: 28px;
  padding-bottom: 28px;
}

.page-v2 .faq-panel p {
  line-height: 1.64;
}

.hero-v2 {
  padding-top: 24px;
  padding-bottom: 28px;
}

.hero-v2 .hero-subtitle {
  width: 100%;
  margin: 0 0 18px;
  text-align: left;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-v2-grid {
  grid-template-columns: 58% 42%;
  gap: 34px;
}

.hero-v2-copy {
  order: 1;
  text-align: left;
}

.hero-v2-image {
  order: 2;
}

.hero-v2-image img {
  max-height: 430px;
  object-fit: contain;
}

.hero-v2-copy > p:nth-of-type(2) {
  display: none;
}

.hero-v2-copy p {
  font-size: 21px;
  line-height: 1.52;
  margin-bottom: 18px;
}

.hero-benefits-panel {
  background: #fbf9fd;
  border: 1px solid #e8e1ee;
  border-radius: 8px;
  padding: 18px 20px 16px;
  margin: 18px 0 18px;
}

.hero-benefits-panel h2 {
  color: var(--purple);
  font-size: 25px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.hero-v2 .check-list {
  gap: 10px;
  margin: 0;
}

.hero-v2 .check-list li {
  font-size: 19px;
  line-height: 1.35;
}

.hero-v2 .button-row {
  align-items: flex-start;
  margin-top: 12px;
}

.about-v2 {
  background: #f7f7f8;
  padding: 54px 6%;
}

.about-v2-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
}

.about-v2-copy {
  background: var(--white);
  border: 1px solid #e8e1ee;
  border-radius: 8px;
  padding: 38px 40px;
  box-shadow: 0 10px 28px rgba(31, 21, 41, 0.08);
}

.about-v2-copy h2 {
  color: var(--purple);
  font-size: 46px;
  margin: 0 0 20px;
}

.about-v2-copy p {
  font-size: 22px;
  line-height: 1.62;
  margin: 0 0 18px;
}

.about-v2-copy .button-row {
  align-items: flex-start;
  margin-top: 24px;
}

.about-v2-points {
  background: #fbf9fd;
  border: 1px solid #e8e1ee;
  border-radius: 8px;
  padding: 34px 32px;
}

.about-v2-points h3 {
  color: #202020;
  font-size: 31px;
  margin: 0 0 20px;
}

.about-v2-points .check-list {
  max-width: none;
  margin: 0;
}

.about-v2-points .check-list li {
  font-size: 21px;
  align-items: flex-start;
}

.why-v2 {
  background: var(--white);
  padding: 28px 6% 54px;
}

.why-v2-intro {
  width: min(980px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.why-v2-intro p {
  font-size: 22px;
  line-height: 1.62;
  margin: 0 0 16px;
}

.why-v2-grid {
  width: min(1120px, 100%);
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-v2 .how-card {
  background: #fbf9fd;
}

.why-v2 .button-row {
  margin-top: 28px;
}

.routine-v2 {
  background: var(--purple);
  color: var(--white);
  padding: 58px 6%;
}

.routine-v2-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.routine-v2-copy h2 {
  color: var(--white);
  font-size: 46px;
  margin: 0 0 22px;
}

.routine-v2-copy p {
  font-size: 23px;
  line-height: 1.62;
  margin: 0 0 18px;
}

.routine-v2-closing {
  font-weight: 500;
}

.routine-v2-list {
  background: var(--white);
  color: #202020;
  border-radius: 8px;
  padding: 36px 34px;
  box-shadow: 0 14px 34px rgba(31, 21, 41, 0.22);
}

.routine-v2-list h3 {
  color: #202020;
  font-size: 30px;
  margin: 0 0 20px;
}

.routine-v2-list .check-list {
  max-width: none;
  margin: 0;
}

.routine-v2-list .check-list li {
  font-size: 21px;
  align-items: flex-start;
}

.routine-steps {
  background: #f7f7f8;
  padding: 28px 6% 56px;
}

.routine-steps-intro {
  width: min(980px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.routine-steps-intro p {
  font-size: 22px;
  line-height: 1.62;
  margin: 0 0 16px;
}

.routine-steps-grid {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.routine-step-card {
  background: var(--white);
  border: 1px solid #e8e1ee;
  border-radius: 8px;
  padding: 30px 24px 28px;
  box-shadow: 0 10px 26px rgba(31, 21, 41, 0.08);
}

.routine-step-card h3 {
  color: #202020;
  font-size: 25px;
  margin: 0 0 14px;
}

.routine-step-card p {
  font-size: 20px;
  line-height: 1.58;
  margin: 0;
}

.routine-steps-summary {
  width: min(900px, 100%);
  margin: 0 auto 26px;
  text-align: center;
  font-size: 23px;
  line-height: 1.58;
  font-weight: 500;
}

.black-text {
  color: var(--black);
}

.rating-image {
  width: min(560px, 100%);
  margin: 8px auto 26px;
  background: #fff;
}

.image-center {
  padding: 38px 24px;
  display: flex;
  justify-content: center;
}

.ingredients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 38px 7%;
}

.ingredients article {
  border: 2px solid #dedede;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  background: #fff;
}

.ingredients p {
  font-size: 21px;
}

.warning {
  padding: 24px 9%;
  text-align: center;
  background: #fff;
}

.warning::before,
.warning::after {
  content: "";
  display: block;
  height: 1px;
  background: #c9c9c9;
}

.warning p {
  font-size: 28px;
  font-weight: 800;
  margin: 22px 0;
}

.faq {
  padding: 34px 8%;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.faq-item button {
  width: 100%;
  padding: 24px 30px;
  border: 0;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 28px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "\2304";
  position: absolute;
  right: 24px;
  top: 23px;
  font-size: 30px;
  transition: transform 0.2s ease;
}

.faq-item.active button::after {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-panel p {
  padding: 0 30px 26px;
  font-size: 22px;
}

.checkout {
  display: flex;
  justify-content: center;
  padding: 22px 24px 42px;
}

.checkout img {
  max-width: 620px;
  width: 100%;
}

.final-offer {
  text-align: center;
  padding: 28px 24px 16px;
}

.final-offer img {
  margin: 0 auto;
  max-width: 370px;
}

.final-offer p {
  font-size: 32px;
  margin-top: 10px;
}

.price-banner {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 36px 20px 42px;
}

.price-banner p {
  font-size: 43px;
  font-weight: 800;
  margin-bottom: 18px;
}

.scientific-references {
  background: #eeeeee;
  padding: 34px 28px 30px;
  text-align: center;
}

.scientific-references h2 {
  color: var(--purple);
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 22px;
}

.research-badges {
  display: grid;
  grid-template-columns: repeat(4, 168px);
  justify-content: center;
  gap: 24px;
  margin: 0 auto 20px;
}

.research-badges img {
  width: 100%;
  max-width: 168px;
  margin: 0 auto;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 520px));
  justify-content: center;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.references-grid p {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #202020;
}

.references-grid a {
  color: #1a0dab;
  text-decoration: underline;
}

.disclaimer {
  background: var(--soft-dark);
  color: var(--white);
  text-align: center;
  padding: 28px 28px 26px;
}

.disclaimer p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  max-width: 1180px;
  margin: 0 auto 16px;
}

.disclaimer a {
  color: var(--white);
  text-decoration: underline;
}

.about-hero {
  background: linear-gradient(180deg, #fbf9fd 0%, #ffffff 100%);
  text-align: center;
  padding: 70px 7% 42px;
}

.about-eyebrow {
  color: var(--purple);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-hero h1 {
  font-family: "Poppins", "Jost", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  color: #202020;
  margin-bottom: 18px;
}

.about-hero p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 1.45;
}

.about-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  background: #f7f7f8;
  width: min(1180px, calc(100% - 48px));
  padding: 52px 0 64px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  border: 1px solid #ece8f1;
  border-radius: 8px;
  padding: 42px 36px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(31, 21, 41, 0.09);
}

.about-card h2 {
  color: var(--purple);
  font-size: 32px;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 22px;
  line-height: 1.48;
  margin-bottom: 14px;
}

.about-profile,
.contact-list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ece8f1;
}

.about-profile p,
.contact-list p {
  margin-bottom: 12px;
}

.contact-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 52px 7% 64px;
}

.contact-main-card {
  min-height: 100%;
}

.legal-page {
  background: #f7f7f8;
}

.legal-hero {
  background: linear-gradient(180deg, #fbf9fd 0%, #ffffff 100%);
  text-align: center;
  padding: 66px 24px 34px;
}

.legal-hero h1 {
  font-family: "Poppins", "Jost", Arial, sans-serif;
  color: #202020;
  font-size: clamp(42px, 5vw, 66px);
  margin-bottom: 14px;
}

.legal-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #5e5e66;
  font-size: 22px;
}

.legal-content {
  max-width: 980px;
  margin: 44px auto 56px;
  padding: 44px 54px 52px;
  background: var(--white);
  border: 1px solid #ece8f1;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(31, 21, 41, 0.09);
}

.legal-content h2 {
  color: var(--purple);
  font-size: 30px;
  margin: 28px 0 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #2f2f35;
  font-size: 21px;
  line-height: 1.58;
  margin-bottom: 18px;
}

.footer {
  background: #222;
  color: var(--white);
  text-align: center;
  padding: 34px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 18px;
}

.footer a {
  color: var(--white);
}

.footer p a {
  color: var(--teal);
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 46px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  body {
    font-size: 20px;
  }

  .nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a:not(.btn) {
    font-size: 21px;
  }

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

  .hero {
    min-height: auto;
  }

  .reviews,
  .pricing,
  .ingredients,
  .pros-cons,
  .how-grid {
    grid-template-columns: 1fr;
  }

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

  .research-badges {
    grid-template-columns: repeat(2, 168px);
  }

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

  .about-page {
    grid-template-columns: 1fr;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero-v2-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2-copy,
  .hero-v2-image {
    order: initial;
  }

  .hero-v2 .hero-subtitle,
  .hero-v2-copy {
    text-align: center;
  }

  .page-v2 .summary-box h2,
  .page-v2 .section-title h2,
  .page-v2 .band h2,
  .page-v2 .headline-band h2 {
    font-size: 36px;
  }

  .hero-v2 .button-row {
    align-items: center;
  }

  .about-v2-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-copy,
  .about-v2-points {
    padding: 30px 24px;
  }

  .about-v2-copy,
  .about-v2-copy .button-row {
    align-items: center;
    text-align: center;
  }

  .why-v2-grid {
    grid-template-columns: 1fr;
  }

  .routine-v2-inner {
    grid-template-columns: 1fr;
  }

  .routine-v2-copy {
    text-align: center;
  }

  .routine-v2-list {
    padding: 30px 24px;
  }

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

  .pricing-packages {
    gap: 18px;
  }

  .pricing-packages a {
    width: min(360px, 100%);
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
  }

  .nav {
    min-height: 72px;
    padding: 0 18px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 35px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 10px;
    width: 100%;
  }

  .section-white {
    padding: 26px 18px;
  }

  .hero {
    padding: 24px 18px 26px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .scientific-references {
    padding: 28px 18px 24px;
  }

  .scientific-references h2 {
    font-size: 32px;
  }

  .research-badges {
    grid-template-columns: repeat(2, minmax(120px, 168px));
    gap: 16px;
  }

  .references-grid p,
  .disclaimer p {
    font-size: 14px;
  }

  .hero-subtitle {
    width: 100%;
    margin: 0 auto 20px;
    padding: 0;
    font-size: 28px;
  }

  .about-hero {
    padding: 46px 24px 32px;
  }

  .about-hero p,
  .about-card p,
  .legal-content p {
    font-size: 20px;
  }

  .about-page {
    width: calc(100% - 32px);
    padding: 34px 0 46px;
  }

  .contact-page {
    padding: 34px 24px 46px;
  }

  .legal-hero {
    padding: 44px 18px 28px;
  }

  .legal-hero p {
    font-size: 19px;
  }

  .legal-content {
    width: calc(100% - 32px);
    margin: 30px auto 44px;
    padding: 30px 24px 38px;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .about-card {
    padding: 30px 24px;
  }

  .center-copy p,
  .copy-block p,
  .copy-block li,
  .how-intro,
  .how-outro,
  .how-card p {
    font-size: 21px;
  }

  .how-card {
    padding: 24px 22px;
  }

  .how-card h3 {
    font-size: 24px;
  }

  .editor-note p,
  .summary-grid div,
  .pros-card li,
  .cons-card li,
  .comparison-table {
    font-size: 20px;
  }

  .summary-grid div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .routine-steps-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .review-card blockquote {
    font-size: 22px;
    margin: 28px 0;
  }

  .faq {
    padding: 24px 18px;
  }

  .faq-item button {
    font-size: 23px;
    padding-right: 54px;
  }

  .price-banner p {
    font-size: 34px;
  }

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