/* ==========================================================================
   Tan Physics Sales Page — styles.css
   Mobile-first, responsive, PageSpeed-optimized
   REBUILT: clean from scratch, section by section
   ========================================================================== */

/* ---------- 1. Custom Properties ---------- */
:root {
  --black: #000;
  --white: #fff;
  --gold: #c48a3c;
  --light-gold: #e6caa7;
  --orange: #d86c4a;
  --orange-hover: #c45e3e;
  --green: #00b67a;
  --brown: #3b2a23;
  --crystal-cut: #f9f4ec;
  --page-bg: #f9f6f2;
  --text-primary: #2b2b2b;
  --text-secondary: #4a4a4a;
  --text-muted: #777;
  --border-light: #e8e4df;
  --star-color: #f5a623;
  --check-green: #2e7d32;
  --cross-red: #c62828;
  --card-bg: #fff;
  --section-alt: #faf8f5;
  --content-padding: 16px;
  --max-width: 1300px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --transition: .25s ease;
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

h1 { font-size: 28px; font-weight: 700; }
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 18px; font-weight: 600; }

/* ---------- 3. Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--brown);
  color: var(--white);
  font-size: 14px;
}
.skip-link:focus { left: 16px; top: 16px; }

.section-heading {
  text-align: center;
  margin-bottom: 12px;
  font-size: 26px;
}

.section-subheading {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.stars {
  color: var(--star-color);
  font-size: 18px;
  letter-spacing: 2px;
}
.star--empty { color: #ddd; }

.verified-badge {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.check { color: var(--check-green); font-weight: 700; margin-right: 4px; }
.cross { color: var(--cross-red); font-weight: 700; margin-right: 4px; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  letter-spacing: .5px;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  font-size: 16px;
}
.btn--primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 50px;
}
.btn--dark:hover {
  background: #222;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 17px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--wide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 56px;
  margin: 0 auto;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .2);
}

/* ---------- 5. Header ---------- */
.site-header__promo {
  background: var(--brown);
  color: var(--light-gold);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
}

.site-header__bar {
  background: #c9934b;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--content-padding);
  position: relative;
}

.site-header__hamburger {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 60px 24px 24px;
}
.mobile-menu--open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.mobile-menu__cta {
  margin-top: 12px;
  font-weight: 700;
  border-bottom: none !important;
}

.site-header__hamburger[aria-expanded="true"] {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 1000;
  color: var(--text);
  font-size: 28px;
}

.site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-header__logo img {
  width: 48px;
  height: auto;
}

.site-header__links {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-header__links a { color: var(--white); }
.site-header__links a:hover { color: var(--light-gold); }

.site-header__cta {
  white-space: nowrap;
  display: none;
}

/* ---------- 6. Hero ---------- */
.hero {
  background: linear-gradient(180deg, #f1cdb3, #fff 86.46%);
  padding: 0 0 35px;
  overflow: hidden;
}
.hero .container { max-width: 1280px; }

.hero__grid {
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero__grid::after {
  content: '';
  position: absolute;
  right: 0;
  width: 50%;
  height: 1px;
  background: var(--white);
  top: 290px;
  z-index: 0;
}
.hero__right-col { z-index: 1; }

.hero__content { text-align: left; }

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  padding: 10px 10px 10px;
}
.hero__rating .stars { font-size: 16px; color: var(--gold); }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 10px;
}

.hero__pillars {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 5px;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--white);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.pill {
  display: inline-block;
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  position: relative;
  padding-right: 8px;
}

.pill-divider {
  display: block;
  width: 1px;
  height: 12px;
  background: var(--black);
  margin-right: 8px;
}

.hero__benefits {
  text-align: left;
  margin-bottom: 28px;
  padding-left: 0;
  padding-right: 100px;
  position: relative;
  z-index: 2;
}
.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: var(--black);
  border-bottom: 1px solid #e5dbe2;
}
.hero__benefits li:last-child { border-bottom: none; }

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  object-fit: contain;
}

.hero__cta-row {
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 16px;
  box-sizing: border-box;
}
.hero__cta-row .btn--wide { max-width: 100%; }

.hero__guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.hero__guarantee-badge img { width: 24px; height: auto; }

.hero__right-col {
  position: absolute;
  right: -47px;
  top: 165px;
  width: 187px;
}

.hero__media {
  position: relative;
  text-align: center;
  max-width: 187px;
}
.hero__bottle { width: 100%; }
.hero__badge {
  position: absolute;
  top: calc(50% + 75px);
  left: 20px;
  transform: translateY(-50%);
  width: 100px;
  height: auto;
  display: none;
}

.hero__sold-bar {
  width: 100%;
  text-align: center;
  background: linear-gradient(to right, rgb(196, 138, 60), rgba(196, 138, 60, 0.7) 59%, rgb(241, 205, 179));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 7px 15px;
  margin-bottom: 12px;
}

.hero__testimonial { display: none; }

.hero__testimonial-photo {
  border-radius: var(--radius);
  width: 100%;
  max-width: 240px;
}

.hero__testimonial-quote {
  position: relative;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  padding-top: 5px;
  margin: 12px 0;
}
.hero__testimonial-quote .quote-mark { display: none; }
.hero__testimonial-quote::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/quote-open.svg) no-repeat center/contain;
  position: absolute;
  top: -18px;
  left: 0;
}
.hero__testimonial-quote::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/quote-close.svg) no-repeat center/contain;
  vertical-align: -8px;
  margin-left: 4px;
}
.hero__testimonial-quote p { display: inline; }

.hero__testimonial-author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.hero__testimonial-author strong {
  position: relative;
  padding-right: 10px;
}
.author-divider {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--black);
  margin-right: 4px;
}
.verified-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.verified-text {
  font-weight: 400;
  margin-left: 2px;
}

/* Mobile testimonial section — shown on mobile/tablet, hidden on desktop */
.testimonial-featured--mobile { display: block; }

/* ---------- 7. Featured Testimonial ---------- */
.testimonial-featured {
  background: var(--crystal-cut);
  padding: 48px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.testimonial-featured__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.testimonial-featured__photo img {
  width: 180px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.testimonial-featured__content .stars {
  margin-bottom: 12px;
}

.testimonial-featured blockquote {
  font-family: 'Bitter', serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-featured__author {
  font-size: 14px;
  color: var(--text-secondary);
}
.testimonial-featured__author strong {
  color: var(--text-primary);
  margin-right: 8px;
}

/* ==========================================================================
   SECTIONS BELOW HERO — rebuilt fresh
   ========================================================================== */

/* ---------- 8. Problem Section ---------- */
.problem {
  padding: 0 0 180px;
  background: var(--white);
}

.problem .section-heading {
  font-size: 29px;
  line-height: 36px;
  font-weight: 700;
  color: var(--black);
  max-width: 19ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.problem__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.problem__image {
  position: relative;
  padding-bottom: 67%;
  width: 100%;
}

.problem__image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 30px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.problem__dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  background: #d32f2f;
  border-radius: 50%;
  position: relative;
}
.problem__dot::after {
  content: '✕';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.problem__item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
  margin-left: 20px;
  color: var(--black);
}

.problem__item p {
  font-size: 16px;
  color: var(--black);
  line-height: 24px;
  letter-spacing: 0.3px;
  padding-left: 40px;
  padding-top: 6px;
  padding-bottom: 8px;
}

/* Mobile-only: testimonial side-by-side, no gold borders */
@media (max-width: 479px) {
  .testimonial-featured {
    background: transparent;
    border-top: none;
    border-bottom: none;
    padding: 24px 0;
  }
  .testimonial-featured__grid {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-featured__photo {
    flex: 0 0 45%;
  }
  .testimonial-featured__photo img {
    width: 100%;
    border-radius: 6px;
  }
  .testimonial-featured__content {
    flex: 1;
  }
  .testimonial-featured__content .stars {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .testimonial-featured blockquote {
    font-size: 14px;
    line-height: 1.4;
  }
  .testimonial-featured__author {
    font-size: 13px;
  }

}

.problem__closing {
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--black);
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 18px;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 9. Solution / Introducing ---------- */
.solution {
  background: #f1cdb3;
  padding: 0 0 20px;
  position: relative;
}

/* Angled slope at top — tan on sides, white V center (matches original BG.png) */
.solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90px;
  background-image: url(../img/bg-slope.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.solution .container {
  padding-right: 10px;
  padding-left: 10px;
}

.solution__product-pullup {
  margin-top: -180px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.solution__product-pullup img {
  width: 153px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(196, 138, 60, 0.5)) drop-shadow(0 0 80px rgba(241, 205, 179, 0.6));
}

.solution__main-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 25px;
  padding-bottom: 0;
  gap: 0;
}

.solution .section-heading {
  font-size: 29px;
  line-height: 36px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}

.solution .section-subheading {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  letter-spacing: 0.3px;
  padding-top: 15px;
  margin-bottom: 25px;
  text-align: center;
  max-width: none;
}

.solution .section-subheading strong {
  font-weight: 700;
}

.solution__highlights {
  display: none;
}

.solution__highlight {
  background: linear-gradient(90deg, #ffd4b3, #fbd9bb 56%, #fff);
  padding: 13px 20px 15px;
  border-radius: 6px;
}

.solution__highlight-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
}

.solution__highlight-number {
  font-size: 46px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution__highlight-text {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.3px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.solution__aside-col {
  display: flex;
  justify-content: center;
}

.solution__aside-image img {
  border: 2px solid var(--black);
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

/* ---------- 10. Features ---------- */
.features {
  padding: 30px 0 35px;
}

.features .container {
  /* uses default --max-width container */
}

.features__header {
  text-align: center;
  padding-bottom: 0;
}

.features .section-heading {
  font-size: 29px;
  line-height: 36px;
  color: var(--black);
  text-align: center;
  padding-right: 10px;
  padding-left: 10px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.features__subtitle {
  font-size: 16px;
  color: var(--black);
  text-align: center;
  padding: 15px 10px 16px;
}

.features__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding-top: 20px;
}

.features__product-col {
  display: none; /* Hidden on mobile, shown on tablet+ */
}

.features__product-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.features__list {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.features__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  overflow: visible;
}

.features__item-icon {
  align-self: flex-start;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.features__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Connector lines between icons (visible on desktop) */
.features__item-icon::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  display: none; /* shown on desktop */
}

/* Line pattern: up-angle, horizontal, down-angle, up-angle, horizontal, down-angle */
/* Dot on right end of each line = the bullet point for each feature */
/* line2.png: 191x119, dot at top-right corner */
/* line1.png: 195x13, dot at right, vertically centered */
/* line2-1.png: 191x119, dot at bottom-right corner */
/* Icon is 60x60 on desktop, dot should align near vertical center (~25px from top) */

.features__item:nth-child(1) .features__item-icon::before {
  background-image: url('../img/line2.png');
  width: 191px;
  height: 119px;
  right: 145px;
  top: 26px;
}

.features__item:nth-child(2) .features__item-icon::before {
  background-image: url('../img/line1.png');
  width: 195px;
  height: 13px;
  right: 145px;
  top: 24px;
}

.features__item:nth-child(3) .features__item-icon::before {
  background-image: url('../img/line2-1.png');
  width: 191px;
  height: 119px;
  right: 145px;
  top: -74px;
}

.features__item:nth-child(4) .features__item-icon::before {
  background-image: url('../img/line2.png');
  width: 191px;
  height: 119px;
  right: 145px;
  top: 35px;
}

.features__item:nth-child(5) .features__item-icon::before {
  background-image: url('../img/line1.png');
  width: 195px;
  height: 13px;
  right: 145px;
  top: 24px;
}

.features__item:nth-child(6) .features__item-icon::before {
  background-image: url('../img/line2-1.png');
  width: 191px;
  height: 119px;
  right: 145px;
  top: -84px;
}

.features__item-content h3 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: var(--black);
}

.features__item-content p {
  font-size: 14px;
  line-height: 22px;
  color: var(--black);
  padding-top: 15px;
  padding-bottom: 14px;
}

.features__cta-wrapper {
  padding-top: 30px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}

.features__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 56px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .2);
  transition: background 0.25s ease, transform 0.25s ease;
}
.features__cta-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.features__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 15px;
  column-gap: 5px;
}

.features__guarantee img {
  max-width: 16px;
}

.features__guarantee-text {
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- 11. Stats ---------- */
.stats {
  background: #f1cdb3;
  padding-bottom: 35px;
  margin-top: -20px;
}

.stats .container {
  /* uses default --max-width container */
}

.stats__heading {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: var(--black);
  text-align: center;
  max-width: 300px;
  margin: 20px auto;
}

.stats__carousel {
  padding-top: 25px;
  padding-bottom: 25px;
  overflow: hidden;
  /* Full-width: break out of container */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

.stats__scroll-track {
  display: flex;
  gap: 7px;
  overflow-x: scroll;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 0;
}

.stats__scroll-track::-webkit-scrollbar {
  display: none;
}

.stats__scroll-track:active {
  cursor: grabbing;
}

.stats__scroll-track img {
  flex-shrink: 0;
  width: auto;
  height: 340px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}

.stats__highlights {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.stats__highlight {
  background: linear-gradient(90deg, #ffd4b3, #fbd9bb 56%, #fff);
  padding: 10px 20px;
  border-radius: 6px;
}

.stats__highlight-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  line-height: 26px;
}

.stats__highlight-number {
  font-size: 46px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__highlight-text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.3px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 26px;
}

.stats__cta-wrapper {
  padding: 0 10px;
}

.stats__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  height: 56px;
  width: 100%;
  max-width: 600px;
  margin: 30px auto 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .2);
  transition: background 0.25s ease, transform 0.25s ease;
}
.stats__cta-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.stats__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 13px;
  column-gap: 5px;
}

.stats__guarantee img { max-width: 16px; }

.stats__guarantee-text {
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- 12. Customer Gallery ---------- */
.gallery {
  padding: 30px 0 35px;
  background: linear-gradient(180deg, rgba(196, 138, 60, 1), rgba(196, 138, 60, 0.702) 59%, #f1cdb3);
}

.gallery .container {
  /* uses default --max-width container */
}

.gallery .section-heading {
  color: var(--white);
  font-size: 30px;
  line-height: 40px;
  padding: 0 10px;
}

.gallery__carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0 0;
  position: relative;
}

.gallery__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--black);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: background .2s, transform .2s;
  z-index: 3;
}

.gallery__arrow:hover {
  background: #fff;
  transform: scale(1.1);
}

.gallery__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  flex: 1;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__slide {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(50% - 8px); /* 2 visible on mobile */
  cursor: pointer;
}

.gallery__slide video {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  box-shadow: 0 5px 9px 4px rgba(0, 0, 0, .3);
  display: block;
}

.gallery__slide img.gallery__poster {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  box-shadow: 0 5px 9px 4px rgba(0, 0, 0, .3);
  display: block;
}

.gallery__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.gallery__play-btn svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

/* Video hidden by default, poster shown instead */
.gallery__slide video {
  display: none;
}

/* When playing: hide poster + play btn, show video */
.gallery__slide.is-playing .gallery__play-btn {
  display: none;
}
.gallery__slide.is-playing .gallery__poster {
  display: none;
}
.gallery__slide.is-playing video {
  display: block;
}

.gallery__cta {
  text-align: center;
  margin-top: 10px;
  padding: 0 10px;
}

.gallery__cta .btn--dark {
  font-size: 18px;
  text-transform: uppercase;
  height: 56px;
  font-weight: 500;
}

.gallery__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 15px;
  column-gap: 5px;
}

.gallery__guarantee img { max-width: 16px; }

.gallery__guarantee span {
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
}

/* ---------- 13. Comparison ---------- */
.comparison {
  padding: 35px 0;
  background: linear-gradient(180deg, rgba(196, 138, 60, 1), rgba(196, 138, 60, 0.702) 59%, #f1cdb3);
}

.comparison .section-heading {
  font-size: 29px;
  line-height: 36px;
  color: var(--black);
}

.comparison__header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 32px 0 24px;
}

.comparison__header-row h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.comparison__vs {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.comparison__card {
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.comparison__card--tp {
  background: rgba(80, 70, 45, 0.35);
  border: 1px solid rgba(80, 70, 45, 0.25);
}

.comparison__card--other {
  background: rgba(220, 190, 140, 0.45);
  border: 1px solid rgba(220, 190, 140, 0.35);
}

.comparison__card img {
  width: 80px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.comparison__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.comparison__checklist li {
  padding: 4px 0;
  padding-left: 32px;
  position: relative;
  font-weight: 600;
}

.comparison__checklist--good li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--check-green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.comparison__checklist--bad li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cross-red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- 14. Ingredients ---------- */
.ingredients {
  padding: 30px 0 0;
  background: var(--white);
}

.ingredients .section-heading {
  font-size: 29px;
  line-height: 36px;
  color: var(--black);
}

.ingredients .section-subheading {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  padding-top: 15px;
  padding-bottom: 45px;
}

/* Ingredient showcase: 3 items with product center */
.ingredients__showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
}

.ingredients__showcase-item {
  text-align: center;
}

.ingredients__showcase-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 8px 0 6px;
}

.ingredients__showcase-item p {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

.ingredients__round-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.ingredients__showcase-center img {
  max-height: 350px;
  width: auto;
}

.ingredients__showcase-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Ingredient detail cards — centered grid */
.ingredients__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.ingredient-slide {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid #eee;
}

.ingredient-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ingredient-slide__label {
  display: inline-block;
  margin: 12px 16px 0;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--gold);
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.ingredient-slide h4 {
  padding: 8px 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.ingredient-slide ul {
  padding: 8px 16px 20px;
  margin: 0;
  list-style: none;
}

.ingredient-slide ul li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.ingredient-slide ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--check-green);
  font-weight: 700;
}

.ingredients__cta {
  padding-top: 50px;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}

.ingredients__cta .btn--dark {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  height: 56px;
  max-width: 100%;
}

.ingredients__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 15px;
  column-gap: 5px;
}

.ingredients__guarantee img { max-width: 16px; }

.ingredients__guarantee span {
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- 14b. Your Perfect Glow ---------- */
.perfect-glow {
  padding: 40px 0;
  background: #f1cdb3;
}

.perfect-glow__layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.perfect-glow .section-heading {
  font-size: 29px;
  line-height: 36px;
  color: var(--black);
  text-align: left;
}

.perfect-glow__content {
  text-align: left;
}

.perfect-glow__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.perfect-glow__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.perfect-glow__cta {
  margin-top: 28px;
}

.perfect-glow__cta .btn--dark {
  max-width: 360px;
}

.perfect-glow__guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
}

.perfect-glow__guarantee img { max-width: 20px; }

/* ---------- 15. How To Use ---------- */
.how-to {
  padding: 30px 0 35px;
  background: var(--white);
}

.how-to .container {
  padding-right: 15px;
  padding-left: 15px;
}

.how-to .section-heading {
  font-size: 30px;
  line-height: 40px;
  color: var(--black);
}

.how-to .section-subheading {
  color: var(--black);
  font-size: 16px;
  max-width: 350px;
  margin: 0 auto;
}

.how-to__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 20px;
}

.how-to__step {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  position: relative;
}

.how-to__step-img {
  width: 170px;
  flex-shrink: 0;
}

.how-to__step-img img {
  width: 100%;
  border-radius: 0;
}

.how-to__step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-to__step-header {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}

.how-to__number {
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  flex-shrink: 0;
}

.how-to__step-name {
  color: var(--black);
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.how-to__step p {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: var(--black);
  padding-top: 8px;
  padding-bottom: 14px;
  max-width: 244px;
}

.how-to__cta {
  padding-top: 20px;
  text-align: center;
}

.how-to__cta .btn--dark {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 500;
  height: 56px;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.how-to__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 15px;
  column-gap: 5px;
}

.how-to__guarantee img { max-width: 16px; }

.how-to__guarantee span {
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- 17. Guarantee ---------- */
.guarantee {
  padding: 30px 15px 0;
  background: #f1cdb3;
}

.guarantee .container {
  max-width: 970px;
  background: linear-gradient(180deg, #c48a3c, rgba(196, 138, 60, 0.702) 59%, #f1cdb3);
  border-radius: 0;
  padding: 30px 15px 0;
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 0;
}

.guarantee__badge {
  width: 100px;
  height: auto;
  display: block;
}

.guarantee__content h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: var(--white);
  text-align: left;
}

.guarantee__content p {
  font-size: 16px;
  color: var(--white);
  line-height: 24px;
  font-weight: 400;
  padding-top: 15px;
  padding-bottom: 20px;
  text-align: left;
}

.guarantee__cta {
  text-align: center;
  padding-bottom: 30px;
}

.guarantee__cta .btn--dark {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 500;
  height: 56px;
  max-width: 100%;
}

.guarantee__cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  column-gap: 5px;
}
.guarantee__cta-guarantee img { max-width: 16px; }
.guarantee__cta-guarantee span {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

/* ---------- 18. Testimonials ---------- */
.testimonials {
  padding: 30px 0;
  background: var(--white);
}

.testimonials .section-heading {
  font-size: 30px;
  line-height: 40px;
  color: var(--black);
}

.testimonials__wrapper {
  position: relative;
  margin-top: 24px;
}

.testimonials__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.testimonials__carousel::-webkit-scrollbar { display: none; }

.testimonials__carousel .testimonial-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
}

.testimonials__arrow:hover { background: rgba(0, 0, 0, 0.7); }

.testimonials__arrow--prev { left: 8px; }
.testimonials__arrow--next { right: 8px; }

.testimonials__cta {
  margin-top: 40px;
  text-align: center;
}

.testimonials__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
}

.testimonials__guarantee img { max-width: 20px; }

.testimonial-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.testimonial-card__body {
  padding: 35px 20px 30px;
}

.testimonial-card__body .stars { margin-bottom: 8px; }

.testimonial-card__body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  color: var(--black);
  font-weight: 700;
}

.testimonial-card__body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
  margin-bottom: 12px;
  padding-top: 7px;
  padding-bottom: 18px;
}

.testimonial-card__author {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.testimonial-card__author em {
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
}

/* ---------- 19. Pricing ---------- */
.pricing {
  padding: 30px 0 35px;
  background: linear-gradient(180deg, rgba(196, 138, 60, 1), rgba(196, 138, 60, 0.702) 59%, #f1cdb3);
}

.pricing .section-heading {
  font-size: 30px;
  line-height: 60px;
  color: var(--white);
}

.pricing .section-subheading {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  padding-top: 15px;
  padding-bottom: 16px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--black);
  position: relative;
  padding: 20px 10px;
}

.pricing-card--popular { border-color: var(--black); }
.pricing-card--best { border-color: var(--black); }

.pricing-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  z-index: 1;
}

.pricing-card__header {
  background: transparent;
  padding: 0;
  text-align: center;
  position: relative;
  padding-bottom: 50%;
  width: 100%;
}
.pricing-card__header img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}

.pricing-card--best .pricing-card__header,
.pricing-card--popular .pricing-card__header {
  margin-top: 30px;
}

.pricing-card__body {
  padding: 10px 10px 20px;
  text-align: center;
}

.pricing-card__body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  margin-bottom: 4px;
  color: var(--black);
}

.pricing-card__frequency {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

.pricing-card__prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.pricing-card__msrp {
  text-decoration: line-through;
  font-family: 'Open Sans', sans-serif;
  color: #6f6f6f;
  font-size: 18px;
}

.pricing-card__sale {
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
}

.pricing-card__per-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.pricing-card__shipping {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-card__shipping--free {
  color: var(--green);
  font-weight: 600;
}

.pricing-card__bonus {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  background: #E6CBA8;
  border-radius: 8px;
  padding: 10px;
}
.pricing-card__bonus img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.pricing-card__savings {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.pricing-card__free-deal {
  background: #c8e442;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.pricing-card__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-card__guarantee img { max-width: 16px; }

.pricing-card .btn--dark,
.pricing-card .btn--primary {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-sm);
}
.pricing-card .btn--dark:hover,
.pricing-card .btn--primary:hover {
  background: #222;
}

/* ---------- 20. Reviews ---------- */
.reviews {
  padding: 0 0 20px;
  background: var(--white);
}

.reviews__aggregate {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  margin: 0 0 24px;
  padding: 15px 15px 0;
  background: var(--white);
}

.reviews__score {
  text-align: center;
  padding-top: 25px;
}

.reviews__number {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
}

.reviews__score .stars {
  font-size: 24px;
  margin: 8px 0;
}

.reviews__count {
  font-size: 14px;
  color: rgba(0,0,0,0.75);
}

.reviews__bars { flex: 1; }

.review-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-bar__label {
  font-size: 13px;
  color: rgba(0,0,0,0.75);
  width: 70px;
  text-align: right;
  flex-shrink: 0;
}

.review-bar__track {
  flex: 1;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 5px;
}

.review-bar__pct {
  font-size: 13px;
  color: rgba(0,0,0,0.75);
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-card__date {
  font-size: 13px;
  color: rgba(0,0,0,0.75);
}

.review-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 10px;
}

.review-card__author {
  font-size: 14px;
  color: rgba(0,0,0,0.75);
}

/* ---------- 21. FAQ ---------- */
.faq {
  padding: 30px 0 35px;
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.faq__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq .section-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 12px;
}

.faq__cta-block {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  max-width: 409px;
  padding-top: 20px;
}

.faq__cta-block .btn--wide {
  max-width: 409px;
  width: 100%;
  height: 64px;
  font-size: 22px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .2);
}

.faq__cta-block .faq__guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
  column-gap: 5px;
}

.faq__cta-block .faq__guarantee img { max-width: 16px; }

.faq__cta-block .faq__guarantee span {
  color: var(--black);
  font-weight: 500;
}

.faq__list {
  max-width: none;
  margin: 0;
}

.faq__item {
  border-bottom: 1px dashed var(--black);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 25px 17px 0;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  position: relative;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '\276F';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  font-weight: 400;
  color: var(--black);
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__answer {
  padding: 15px 0;
}

.faq__answer p {
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

.faq__bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.faq__bottom-cta .faq__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  width: 100%;
}

.faq__bottom-cta .btn--wide {
  max-width: 100%;
  width: 100%;
  height: 54px;
  font-size: 22px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .2);
}

.faq__bottom-cta .faq__guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 15px;
  column-gap: 5px;
  width: 100%;
}

.faq__bottom-cta .faq__guarantee img { max-width: 16px; }

.faq__bottom-cta .faq__guarantee span {
  color: var(--black);
  font-weight: 600;
  font-size: 12px;
}

/* ---------- 22. Footer ---------- */
.site-footer {
  background: var(--white);
  color: var(--black);
  padding: 45px 0 100px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--black);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  text-align: center;
}

.site-footer__logo {
  width: 60px;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 12px;
  gap: 0;
}

.footer-links li {
  font-size: 14px;
  color: var(--black);
}

.footer-links li a {
  color: var(--black);
  font-size: 14px;
}
.footer-links li a:hover {
  text-decoration: underline;
}

.footer-links li:first-child a { padding-right: 10px; }

.footer-links li:nth-child(2) {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
.footer-links li:nth-child(2)::before {
  content: "";
  width: 1px;
  background-color: var(--black);
  position: absolute;
  top: 5px;
  left: 0;
  height: 15px;
}
.footer-links li:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 15px;
  position: absolute;
  background-color: var(--black);
  top: 5px;
  right: 0;
}

.footer-links li:last-child { margin-left: 10px; }

.footer-copyright {
  font-size: 16px;
  color: var(--black);
}

/* ---------- 23. Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--white);
  padding: 10px var(--content-padding);
  text-align: center;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  box-shadow: 0 -2px 8px rgba(0,0,0,.1);
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .btn {
  width: 100%;
  max-width: 400px;
}

/* ==========================================================================
   TABLET (768px+)
   ========================================================================== */
@media (min-width: 480px) {
  :root { --content-padding: 24px; }

  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .section-heading { font-size: 32px; }

  /* Header */
  .mobile-menu { display: none !important; }
  .site-header__hamburger { display: none; }
  .site-header__logo { position: static; transform: none; }
  .site-header__links { display: flex; }
  .site-header__cta { display: inline-block; }
  .site-header__logo img { width: 72px; }

  /* Hero */
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 42px; line-height: 50px; font-weight: 500; padding: 0; }

  .hero__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: nowrap;
    position: static;
  }
  .hero__grid::after { display: none; }
  .hero__content { flex: 1.2; }
  .hero__right-col { position: static; width: auto; flex: 0 0 260px; }
  .hero__media { max-width: none; }
  .hero__badge { display: block; width: 110px; left: 15px; }
  .hero__benefits { padding-right: 0; }
  .hero__sold-bar { display: none; }
  .hero__benefits li { font-size: 16px; line-height: 22px; padding: 10px 20px 12px 10px; }
  .pill { font-size: 16px; padding-right: 10px; }
  .pill-divider { height: 18px; margin-right: 10px; }
  .hero__pillars { padding: 8px 20px; width: auto; position: static; left: auto; transform: none; }
  .hero__rating { font-size: 14px; }
  .hero__cta-row { width: auto; position: static; left: auto; transform: none; padding: 0; }
  .hero__cta-row .btn--wide { max-width: 409px; }
  .btn--wide { max-width: 409px; height: 64px; font-size: 22px; }

  .testimonial-featured__grid {
    flex-direction: row;
    text-align: left;
  }

  /* Problem */
  .problem {
    padding-top: 0;
    padding-bottom: 70px;
  }
  .problem .section-heading {
    font-size: 30px;
    max-width: 100%;
    padding-bottom: 25px;
  }
  .problem__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
  /* Solution */
  .solution__main-grid {
    padding-top: 30px;
    padding-bottom: 70px;
  }
  .solution .section-heading {
    font-size: 30px;
  }

  /* Features */
  .features__layout { grid-template-columns: 1fr 2fr; }
  .features__product-col { display: flex; }
  .features .section-heading { font-size: 30px; line-height: 40px; }
  .features__item-icon { width: 60px; height: 60px; }
  .features__item-content h3 { font-size: 18px; }

  /* Stats */
  .stats { margin-top: -35px; }
  .stats__heading {
    font-size: 30px;
    max-width: none;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .stats__scroll-track { gap: 10px; }
  .stats__scroll-track img {
    width: auto;
    height: 340px;
  }

  /* Gallery */
  .gallery .section-heading { font-size: 30px; line-height: 40px; }
  .gallery__slide { flex: 0 0 calc(25% - 12px); } /* 4 visible on tablet+ */
  .gallery__cta .btn--dark { font-size: 22px; height: 64px; max-width: 600px; }

  /* Comparison */
  .comparison .section-heading { font-size: 30px; line-height: 40px; }

  /* Ingredients */
  .ingredients .section-heading { font-size: 30px; line-height: 40px; }
  .ingredients__showcase {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .ingredients__showcase > .ingredients__showcase-item { max-width: 220px; }
  .ingredients__showcase-right { flex-direction: column; gap: 30px; max-width: 260px; }
  .ingredients__showcase-center img { max-height: 380px; }
  .ingredients__cards { grid-template-columns: repeat(2, 1fr); }
  .ingredients__cta .btn--dark { font-size: 22px; height: 64px; max-width: 600px; }

  /* How To */
  .how-to .section-heading { font-size: 30px; line-height: 40px; }
  .how-to__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .how-to__step {
    flex-direction: column;
    text-align: center;
  }
  .how-to__step-img { width: 100%; margin-bottom: 14px; }
  .how-to__step-content { align-items: center; }
  .how-to__step-name { font-size: 24px; font-weight: 500; }
  .how-to__step p {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    max-width: 234px;
    padding-top: 15px;
    padding-bottom: 18px;
  }
  .how-to__cta .btn--dark { font-size: 22px; height: 64px; max-width: 600px; }

  /* Guarantee */
  .guarantee .container {
    border-radius: 10px;
    padding: 14px;
  }
  .guarantee__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 40px 30px;
    border: 1px solid var(--white);
    border-radius: 5px;
  }
  .guarantee__badge { display: block; width: auto; }
  .guarantee__content h2 { font-size: 50px; line-height: 54px; }
  .guarantee__content p { font-size: 18px; }

  /* Testimonials */
  .testimonials .section-heading { font-size: 30px; line-height: 40px; }
  .testimonials__carousel .testimonial-card { flex: 0 0 calc(50% - 10px); }

  /* Pricing */
  .pricing .section-heading { font-size: 30px; }
  .pricing__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }

  /* Reviews */
  .reviews { padding: 30px 0; }
  .reviews__aggregate {
    flex-direction: row;
    align-items: center;
    row-gap: 0;
  }
  .reviews__score {
    flex-shrink: 0;
    padding-right: 32px;
    border-right: 1px solid var(--border-light);
  }

  /* Footer */
  .footer-links li a { font-size: 18px; }
  .footer-links li:nth-child(2)::before,
  .footer-links li:nth-child(2)::after { top: 8px; }
  .footer-copyright { font-size: 18px; }
}

/* ==========================================================================
   DESKTOP (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  :root { --content-padding: 20px; }

  h1 { font-size: 42px; }
  .section-heading { font-size: 36px; }

  /* Hero */
  .hero { padding: 70px 0; }
  .hero .container { max-width: 1320px; }
  .hero h1 { font-size: 55px; line-height: 62px; }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .hero__right-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .hero__media { max-width: none; }
  .hero__badge { width: 120px; left: 10px; }

  .hero__testimonial {
    display: block;
    padding-top: 150px;
  }

  .testimonial-featured--mobile { display: none; }

  .hero__benefits li { font-size: 20px; line-height: 26px; padding: 10px 40px 12px 10px; }
  .benefit-icon { width: 26px; height: 26px; }
  .hero__rating { font-size: 16px; }
  .pill { font-size: 18px; padding-right: 18px; }
  .pill-divider { height: 20px; margin-right: 18px; }

  /* Problem */
  .problem {
    padding-top: 70px;
    padding-bottom: 126px;
  }
  .problem .section-heading {
    font-size: 50px;
    line-height: 1.2;
    max-width: 20ch;
    padding-bottom: 40px;
  }
  .problem__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
  .problem__item h3 { font-size: 24px; line-height: 30px; }
  .problem__item p { font-size: 18px; line-height: 24px; }
  .problem__closing { font-size: 22px; padding-top: 45px; padding-bottom: 22px; }

  /* Solution */
  .solution__product-pullup { margin-top: -126px; }
  .solution__main-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 70px;
    gap: 50px;
  }
  .solution .section-heading {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    max-width: 14ch;
    text-align: left;
  }
  .solution .section-subheading {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .solution__highlights {
    display: flex;
    flex-direction: column;
    padding-top: 23px;
    row-gap: 23px;
  }

  /* Features */
  .features { padding: 70px 0; }
  .features .section-heading {
    font-size: 50px;
    line-height: 60px;
    max-width: none;
  }
  .features__subtitle { font-size: 18px; }
  .features__layout { grid-template-columns: 1fr 2fr; }
  .features__product-col { display: flex; align-items: flex-start; }
  .features__product-col img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
  }
  .features__list { row-gap: 45px; padding-left: 60px; overflow: visible; }
  .features__item-icon { width: 60px; height: 60px; }
  .features__item-icon::before { display: block; } /* Show connector lines on desktop */
  .features__item-content h3 { font-size: 24px; }
  .features__item-content p { font-size: 18px; }
  .features__cta-btn { font-size: 22px; height: 64px; max-width: 500px; }

  /* Stats */
  .stats { padding-bottom: 70px; margin-top: -50px; }
  .stats__heading {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: none;
  }
  .stats__highlights { display: none; }
  .stats__scroll-track img {
    width: auto;
    height: 340px;
  }
  .stats__cta-btn { font-size: 22px; height: 64px; max-width: 600px; }

  /* Gallery */
  .gallery { padding: 70px 0; }
  .gallery .section-heading {
    font-size: 50px;
    line-height: 1.2;
    max-width: 784px;
    margin: 0 auto 12px;
    padding: 0;
  }
  .gallery__slide { flex: 0 0 calc(25% - 12px); }
  .gallery__arrow { width: 48px; height: 48px; font-size: 26px; }
  .gallery__cta .btn--dark { font-size: 22px; height: 64px; max-width: 600px; }

  /* Comparison */
  .comparison { padding: 70px 0; }
  .comparison .section-heading {
    font-size: 50px;
    line-height: 60px;
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
  }
  .comparison__header-row { gap: 40px; margin: 40px 0 28px; }
  .comparison__header-row h3 { font-size: 24px; }
  .comparison__vs { width: 48px; height: 48px; font-size: 16px; }
  .comparison__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    justify-content: center;
  }
  .comparison__card {
    flex: 0 1 420px;
    padding: 32px;
  }
  .comparison__card img { width: 110px; }
  .comparison__checklist { font-size: 16px; }
  .comparison__checklist li { padding: 8px 0; padding-left: 34px; }

  /* Ingredients */
  .ingredients { padding: 70px 0 30px; }
  .ingredients .section-heading { font-size: 50px; line-height: 60px; }
  .ingredients .section-subheading { font-size: 18px; padding-bottom: 40px; }
  .ingredients__showcase {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  .ingredients__showcase > .ingredients__showcase-item { max-width: 280px; }
  .ingredients__showcase-item h3 { font-size: 22px; }
  .ingredients__showcase-center img { max-height: 420px; }
  .ingredients__showcase-right { max-width: 300px; }
  .ingredients__showcase-item .ingredients__round-img { width: 120px; height: 120px; }
  .ingredients__cards { grid-template-columns: repeat(4, 1fr); }
  .ingredient-slide img { height: 190px; }
  .ingredients__cta .btn--dark { font-size: 22px; height: 64px; max-width: 600px; }

  /* Perfect Glow */
  .perfect-glow { padding: 70px 0; }
  .perfect-glow__layout {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .perfect-glow__content { flex: 1; }
  .perfect-glow__image { flex: 0 0 420px; }
  .perfect-glow .section-heading { font-size: 40px; line-height: 48px; }
  .perfect-glow__content p { font-size: 16px; }

  /* How To */
  .how-to { padding: 70px 0; }
  .how-to .section-heading { font-size: 50px; line-height: 60px; }
  .how-to .section-subheading { margin-top: 20px; margin-bottom: 20px; }
  .how-to__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-top: 60px;
    margin-bottom: 25px;
  }
  .how-to__step {
    flex-direction: column;
    text-align: center;
  }
  .how-to__step-img { width: 100%; margin-bottom: 14px; }
  .how-to__step-content { align-items: center; }
  .how-to__number { font-size: 15px; }
  .how-to__step-name { font-size: 24px; font-weight: 500; }
  .how-to__step p {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    max-width: 234px;
    padding-top: 15px;
    padding-bottom: 18px;
  }
  .how-to__step::after {
    content: "";
    width: 70px;
    position: absolute;
    top: 120px;
    right: -74px;
    border-top: 2px dotted var(--gold);
  }
  .how-to__step:last-child::after { display: none; }
  .how-to__cta .btn--dark { font-size: 22px; height: 64px; max-width: 600px; }

  /* Testimonials */
  .testimonials { padding: 70px 0 20px; }
  .testimonials .section-heading { font-size: 50px; line-height: 60px; }
  .testimonials__carousel .testimonial-card { flex: 0 0 calc(33.333% - 14px); }

  /* Pricing */
  .pricing { padding: 70px 0; }
  .pricing .section-heading { font-size: 50px; line-height: 60px; }
  .pricing .section-subheading { font-size: 18px; }
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* Guarantee */
  .guarantee { padding: 0; }
  .guarantee .container {
    max-width: 970px;
    border-radius: 10px;
    padding: 14px;
  }
  .guarantee__inner { padding: 40px 30px; }
  .guarantee__content h2 { font-size: 50px; line-height: 54px; }
  .guarantee__content p { font-size: 18px; }

  /* FAQ */
  .faq { padding-top: 70px; }
  .faq__grid {
    grid-template-columns: 1.3fr 2fr;
    gap: 2.7rem;
    padding-bottom: 70px;
  }
  .faq__left { align-items: flex-start; text-align: left; }
  .faq .section-heading {
    font-size: 50px;
    max-width: 13ch;
    text-align: left;
  }
  .faq__cta-block { display: flex; }
  .faq__answer p { font-size: 18px; line-height: 1.5; }
  .faq__bottom-cta { display: none; }

  /* Footer */
  .site-footer { padding-bottom: 80px; }
  .footer-links li a { font-size: 18px; }
  .footer-copyright { font-size: 18px; }
}

/* ==========================================================================
   MOBILE OVERRIDES (must be last to beat cascade)
   ========================================================================== */
@media (max-width: 479px) {
  .stats__scroll-track img {
    height: 90px;
  }
  .stats__highlights {
    padding: 0;
  }
  .stats__highlight {
    padding: 8px 12px;
  }
  .stats__highlight-number {
    font-size: 40px;
  }
  .stats__highlight-text {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  /* Features: full-width single column, hide bottle */
  .features__layout {
    grid-template-columns: 1fr;
  }

  /* Ingredients: hide round images + center product, text cards only */
  .ingredients__round-img {
    display: none;
  }
  .ingredients__showcase-center {
    display: none;
  }
  .ingredients__showcase {
    flex-direction: column;
    gap: 0;
  }
  .ingredients__showcase-right {
    width: 100%;
    gap: 0;
  }
  .ingredients__showcase-item {
    text-align: left;
    background: var(--crystal-cut);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .ingredients__showcase-item h3 {
    margin-top: 0;
    font-size: 18px;
  }
  .ingredients__showcase-item p {
    max-width: 100%;
    margin: 0;
  }

  /* Ingredient cards: horizontal scroll carousel (infinite via JS) */
  .ingredients__cards {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .ingredients__cards::-webkit-scrollbar {
    display: none;
  }
  .ingredient-slide {
    flex: 0 0 85%;
    min-width: 0;
  }

  /* Pricing cards: reorder to 5-bottle, 3-bottle, 1-bottle on mobile */
  .pricing__grid {
    display: flex;
    flex-direction: column;
  }
  .pricing-card--best { order: -2; }
  .pricing-card--popular { order: -1; }
}
