:root {
  --bg: #f0f2f1;
  --white: #ffffff;
  --text: #1f1f1f;
  --muted: #4f4f4f;
  --line: #d9d9d9;
  --red: #f3452f;
  --yellow: #f4ca3e;
  --blue: #8ec7ea;
  --blue-dark: #2e587a;
  --green: #7fc38c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.09);
  --radius: 22px;
  --content-width: 1240px;
  --content-gutter: 320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

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

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

section {
  width: 100%;
}

.container {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  margin: 0 auto;
}

.narrow {
  width: min(980px, calc(100% - 28px));
}

.notice-bar {
  background: var(--white);
  padding-top: 0;
}

.notice-inner {
  width: min(var(--content-width), calc(100% - var(--content-gutter)));
  margin: 0 auto;
  padding: 6px 20px 9px;
  border-radius: 0 0 16px 16px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #ececec;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  color: #3d3d3d;
  letter-spacing: 0.02em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: "Varela Round", sans-serif;
  font-size: 18px;
}

.order-pill {
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 700;
}

.hero {
  background: #edf3ee;
  padding: 34px 0 22px;
}

.hero-grid,
.story-grid,
.signs-grid,
.tech-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 8px;
  align-items: center;
}

.hero-media {
  padding: 34px 0 0 34px;
}

.hero-media img {
  max-width: 520px;
  margin: 0;
}

.hero-copy {
  max-width: 920px;
  padding-left: 112px;
}

.rating-line {
  margin-bottom: 18px;
  color: #f2ae00;
  font-size: 16px;
  font-weight: 700;
}

.rating-line span {
  color: #111;
}

h1,
h2,
h3 {
  margin: 0;
  color: #212121;
}

h1 {
  max-width: 18ch;
  font-size: clamp(34px, 2.85vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 800;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.hero-points,
.signs-list,
.bonus-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.hero-divider {
  width: 58px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: #3f9851;
}

.hero-points li,
.signs-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #202020;
}

@media (min-width: 1280px) {
  .hero-copy {
    padding-right: 0;
    padding-left: 130px;
  }

  h1 {
    max-width: 17.5ch;
    font-size: 50px;
  }
}

.hero-points li::before,
.signs-list li::before {
  content: "⊚";
  position: absolute;
  left: 0;
  top: 0;
  color: #d35d49;
  font-size: 18px;
  font-weight: 700;
}

.pain-stats {
  padding: 52px 0 40px;
  background: var(--bg);
}

.pain-stats h2 {
  text-align: left;
}

.results-title h2 {
  text-align: center;
}

.benefits-block h2,
.ingredients-block h2,
.technology-block h2,
.review-anchor h2 {
  text-align: left;
}

.pain-divider {
  width: 126px;
  height: 5px;
  margin: 22px 0 34px 0;
  background: #3f7c48;
}

.stats-grid,
.ingredients-grid,
.offer-grid,
.feature-list,
.seal-row {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  gap: 40px;
  align-items: start;
}

.stat-card {
  text-align: left;
}

.stat-card img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 22px;
}

.stat-card strong {
  display: block;
  color: #89cdf5;
  font-family: "Montserrat", sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #111;
}

.blue-banner {
  background: var(--blue);
  padding: 18px 0;
}

.blue-banner p {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  font-size: clamp(22px, 3.5vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.story-block,
.signs-block,
.technology-block {
  padding: 40px 0;
  background: var(--bg);
}

.story-media img,
.signs-media img,
.tech-image img {
  width: 100%;
  border-radius: 8px;
}

.story-copy,
.signs-copy {
  display: grid;
  gap: 14px;
}

.signs-block {
  background: var(--bg);
  padding-top: 44px;
  padding-bottom: 44px;
}

.signs-list {
  display: grid;
  gap: 18px;
}

.benefits-block {
  padding: 42px 0;
  background: var(--bg);
}

.benefits-block .benefit-divider {
  width: 126px;
  height: 5px;
  margin: 22px 0 20px 0;
  background: #3f7c48;
}

.benefits-block .benefit-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.benefit-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.benefit-items article {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfcfc;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.review-anchor {
  padding: 40px 0 10px;
  background: var(--bg);
}

.review-anchor .review-subtitle {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.review-anchor .review-divider {
  width: 126px;
  height: 5px;
  margin: 18px 0 10px 0;
  background: #3f7c48;
}

.review-anchor .review-note {
  margin-top: 14px;
  font-style: italic;
  font-size: 14px;
  color: #666;
}

.review-anchor .review-count {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

/* Facebook-style comments */
.comments-section {
  padding: 10px 0 30px;
  background: var(--bg);
}

.comment-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.comment-name {
  font-weight: 700;
  color: #3b5998;
  font-size: 15px;
  font-style: italic;
}

.comment-text {
  margin-top: 2px;
  font-size: 14px;
  color: #111;
  line-height: 1.4;
}

.comment-actions {
  margin-top: 8px;
  font-size: 13px;
  color: #3b5998;
  font-weight: 600;
}

.comment-actions span {
  margin-right: 16px;
}

.comment-login {
  text-align: right;
  margin-top: 14px;
  font-size: 14px;
  color: #3b5998;
  font-style: italic;
  text-decoration: underline;
}

/* Rival statement section */
.rival-statement {
  padding: 50px 0;
  background: var(--white);
  text-align: center;
}

.rival-statement h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto;
}

.ingredients-anchor {
  height: 8px;
  background: var(--white);
}

.ingredients-block {
  padding: 40px 0 46px;
  background: linear-gradient(180deg, #a8d4f0 0%, #bdddf5 100%);
  color: var(--white);
}

.ingredients-block h2 {
  color: var(--white);
}

.ingredients-block .ingredients-subtitle {
  margin-top: 14px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  max-width: 800px;
}

.ingredients-block .ingredients-divider {
  width: 126px;
  height: 5px;
  margin: 18px 0 30px 0;
  background: #2c5b7b;
}

.ingredients-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px 0 10px;
}

.ingredients-cta p {
  font-size: 20px;
  font-style: italic;
  color: rgba(0,0,0,0.75);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.ingredients-cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 18px 50px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e8d86e 0%, #c9b83e 100%);
  border: 2px solid #a09030;
  box-shadow: 0 8px 14px rgba(160,144,48,0.18);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.ingredients-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.ingredient-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fafafa;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.ingredient-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ingredient-card h3 {
  padding: 14px;
  font-size: 20px;
}

/* Comparison table section */
.comparison-block {
  padding: 40px 0;
  background: var(--bg);
}

.comparison-block h2 {
  text-align: left;
}

.comparison-block .comparison-divider {
  width: 126px;
  height: 5px;
  margin: 22px 0 30px 0;
  background: #3f7c48;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.comparison-col .col-header-img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}

.comparison-col .col-title {
  display: block;
  padding: 14px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  border-radius: 8px;
  margin-bottom: 16px;
}

.comparison-col .col-title.green {
  background: #3f7c48;
}

.comparison-col .col-title.red {
  background: #d33;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #222;
  line-height: 1.4;
}

.comparison-list .icon-check {
  color: #3f7c48;
  font-size: 18px;
  flex-shrink: 0;
}

.comparison-list .icon-x {
  color: #d33;
  font-size: 18px;
  flex-shrink: 0;
}

.product-highlight {
  padding: 8px 0 28px;
  background: var(--bg);
}

.product-highlight-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.product-stack {
  padding: 8px;
  border-radius: 0;
  background: transparent;
}

.product-stack img {
  max-width: 360px;
  margin: 0 auto;
}

.tech-card {
  padding: 18px 20px;
  border-radius: 14px;
  background: #2c5b7b;
  color: var(--white);
}

.tech-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.92);
}

.results-title {
  padding: 30px 0 10px;
  background: var(--bg);
}

.results-title .results-divider {
  width: 126px;
  height: 5px;
  margin: 22px auto 0;
  background: #3f7c48;
}

/* Results testimonial cards */
.results-testimonials {
  padding: 20px 0 30px;
  background: var(--bg);
}

.results-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.results-testimonials .testimonial-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.results-testimonials .testimonial-card .testimonial-name {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
}

.results-testimonials .testimonial-card .testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.results-spacer {
  height: 18px;
  background: var(--bg);
}

.seal-row-block {
  padding: 10px 0 30px;
  background: var(--bg);
}

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

.seal-card {
  display: grid;
  place-items: center;
  max-width: 170px;
  margin: 0 auto;
}

.seal-card img {
  width: 100%;
}

.bonuses-block {
  padding: 42px 0;
  background: #f6f9fb;
}

.bonuses-heading {
  margin-bottom: 26px;
  text-align: center;
}

.bonuses-heading p {
  margin-top: 8px;
  font-size: 26px;
  color: #222;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bonus-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.bonus-card img {
  width: 100%;
}

.bonus-copy {
  padding: 18px;
}

.bonus-copy h3 {
  margin-bottom: 14px;
}

.bonus-copy p,
.bonus-copy li {
  font-size: 14px;
}

.bonus-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.bonus-copy li {
  position: relative;
  padding-left: 18px;
}

.bonus-copy li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.price-line {
  margin-top: 16px;
  color: #111;
  font-weight: 700;
}

.shipping-block {
  padding: 36px 0;
  background: #1a2332;
  color: var(--white);
}

.shipping-inner h2 {
  color: #e8c34a;
}

.shipping-inner p {
  color: rgba(255,255,255,0.85);
}

.shipping-inner,
.guarantee-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}

.shipping-inner img,
.guarantee-inner img {
  width: 150px;
  margin: 0 auto;
}

.shipping-inner p {
  margin-top: 8px;
  font-weight: 700;
}

.offer-block {
  padding: 46px 0;
  background: linear-gradient(180deg, #eaf1f5 0%, #ffffff 100%);
}

.offer-heading {
  margin-bottom: 34px;
  text-align: center;
}

.offer-heading p {
  margin-top: 14px;
}

.offer-heading strong {
  font-size: 22px;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 14px;
}

.offer-reviews {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 24px;
  text-align: center;
}

.offer-reviews p {
  color: #222;
  font-size: 18px;
  font-weight: 500;
}

.offer-reviews img {
  width: 160px;
}

.offer-reviews strong {
  font-size: 22px;
}

.offer-card {
  padding: 18px 14px 8px;
  border: 2px solid #d9d9d9;
  border-radius: 12px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.offer-card.featured {
  border-color: var(--green);
  transform: translateY(-6px);
}

.offer-card:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: #f1bf2f;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
}

.offer-card.featured:hover {
  transform: translateY(-18px) scale(1.025);
}

.offer-subtitle {
  margin-top: 6px;
  font-size: 14px;
}

.offer-card img {
  height: 210px;
  margin: 10px auto;
  object-fit: contain;
}

.offer-price {
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.offer-price span {
  font-size: 20px;
  font-weight: 700;
}

.offer-save,
.offer-guarantee,
.offer-bonus,
.offer-total,
.offer-shipping {
  margin-top: 6px;
  font-weight: 700;
}

.offer-timer-label {
  margin-top: 2px;
  color: #7a7a7a;
  font-size: 12px;
  font-weight: 600;
}

.offer-timer {
  margin-top: 0;
  color: #d81919;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  min-height: 52px;
  margin: 12px auto 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffe363 0%, #f5bf1d 100%);
  border: 2px solid #c89400;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.7), 0 8px 14px rgba(201, 148, 0, 0.18);
  color: #1d1d1d;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cards-image {
  width: 100%;
  max-width: 240px;
  height: auto;
  max-height: 44px;
  margin: 2px auto 0;
  object-fit: contain;
}

.offer-bonus,
.offer-shipping.free {
  color: #17864c;
}

.technology-block {
  background: var(--bg);
}

.technology-block .tech-divider {
  width: 126px;
  height: 5px;
  margin: 22px 0 0 0;
  background: #2c5b7b;
}

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

.features-block {
  padding: 28px 0 36px;
  background: var(--bg);
}

.feature-list article {
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 12px;
  background: #f5f7f8;
}

.feature-list article img {
  width: 100%;
  max-width: 170px;
}

.guarantee-block {
  padding: 28px 0 34px;
  background: var(--bg);
}

.guarantee-inner h2 {
  margin-top: 6px;
}

.guarantee-inner p {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.site-footer {
  padding: 26px 0 22px;
  background: var(--white);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.support-text {
  text-align: center;
  font-size: 13px;
  color: #111;
}

.disclaimer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: #666;
  font-size: 14px;
  font-weight: 700;
}

.copyright {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .signs-grid,
  .tech-grid,
  .product-highlight-inner,
  .bonuses-grid,
  .offer-grid,
  .ingredients-grid,
  .stats-grid,
  .benefit-items,
  .feature-list,
  .seal-row,
  .comparison-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shipping-inner,
  .guarantee-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --content-gutter: 32px;
  }

  .header-inner,
  .site-nav,
  .hero-grid,
  .story-grid,
  .signs-grid,
  .tech-grid,
  .product-highlight-inner,
  .bonuses-grid,
  .offer-grid,
  .ingredients-grid,
  .stats-grid,
  .benefit-items,
  .feature-list,
  .seal-row,
  .comparison-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 12px;
    padding: 16px 0;
    min-height: auto;
  }

  .site-nav {
    justify-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  h1 {
    max-width: 100%;
  }

  .brand {
    font-size: 44px;
  }

  .site-nav {
    gap: 14px;
    font-size: 17px;
  }

  .order-pill {
    padding: 14px 24px;
  }

  .hero-media img {
    max-width: 360px;
  }

  .hero-points li {
    font-size: 16px;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .offer-card.featured {
    transform: none;
  }

  .blue-banner p {
    max-width: 12ch;
  }
}
