/* ============================================================
   Harmony Boost — Sales Page (hb-sp-v2)
   Structure: AlphaFuelPro-style direct-response sales page
   Palette: dark blue + white + black ONLY, red CTA, deeper red urgency.
   See DESIGN.md. No amber/gold/orange/green.
   ============================================================ */

:root {
  /* Dark blue — primary authority (also the accent-block color) */
  --navy: #14213D;
  --navy-dark: #0F1830;
  --navy-deep: #0A1124;

  /* Legacy amber/orange/gold tokens remapped to dark blue so every
     former text-accent reads as restrained dark blue, never red. */
  --amber: #14213D;
  --amber-dark: #14213D;
  --amber-deep: #0F1830;
  --orange: #14213D;
  --orange-deep: #0F1830;
  --gold: #FFFFFF;
  --gold-soft: rgba(255,255,255,0.88);

  /* Red — buttons only */
  --cta: #D7282F;
  --cta-hover: #B81F25;
  --cta-deep: #9A1A1F;

  /* Red — urgency / attention only (deeper, distinct shade) */
  --red: #8E1519;
  --red-dark: #6E1014;

  /* Grounds + ink (white / black only) */
  --cream: #FFFFFF;
  --cream-2: #E8E4DA;
  --peach: #FFFFFF;
  --bg: #FFFFFF;
  --text: #0B0B0C;
  --text-dim: rgba(11,11,12,0.64);
  --muted: rgba(11,11,12,0.5);
  --line: rgba(11,11,12,0.12);
  --success: #1F9D55;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  --container: 1040px;
  --container-pad: 0px;

  --ph-bg: #F3F4F6;
  --ph-border: #C7CCD4;
  --ph-text: #6B7280;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); position: relative; }
@media (max-width: 768px) { .container { padding: 0 18px; } }

.show-mob { display: block; }
.hide-mob { display: none; }
.show-desk { display: none; }
.show-tab { display: none; }

@media (min-width: 768px) {
  .show-mob { display: none; }
  .hide-mob { display: block; }
  .show-desk { display: block; }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .show-tab { display: block; }
}

/* ============================================================
   PLACEHOLDER (wireframe image box) system
   ============================================================ */
.ph {
  background:
    repeating-linear-gradient(45deg, var(--ph-bg) 0, var(--ph-bg) 8px, #EBEDF1 8px, #EBEDF1 16px);
  border: 1.5px dashed var(--ph-border);
  color: var(--ph-text);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  line-height: 1.35;
  border-radius: 3px;
  box-sizing: border-box;
}
.ph--icon-xs { width: 16px; height: 16px; padding: 0; font-size: 9px; display: inline-flex; vertical-align: middle; }
.ph--icon-md { width: 44px; height: 44px; padding: 0; font-size: 9px; }
.ph--logo { width: 160px; height: 40px; font-size: 10px; }

.ph--hero { width: 100%; aspect-ratio: 1 / 1.2; min-height: 240px; }
.ph--hero-image { width: 100%; aspect-ratio: 4 / 5; min-height: 380px; }
.ph--hero-product { width: 70%; aspect-ratio: 1 / 1.3; min-height: 220px; margin: 12px auto 0; }

.ph--problem { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 10px; }
.ph--list-image { width: 100%; height: 100px; margin: 12px 0 24px; }


.ph--sec3-mob { width: 100%; aspect-ratio: 16 / 10; margin: 0 0 18px; }
.ph--sec3-product { width: 100%; aspect-ratio: 1 / 1.6; min-height: 320px; }

.ph--ingredient { width: 100%; aspect-ratio: 5 / 4; min-height: 110px; }
.ph--proven-seal { width: 130px; height: 130px; border-radius: 50%; }

.ph--avatar { width: 90px; height: 90px; border-radius: 50%; }
.ph--stars { width: 110px; height: 18px; padding: 0; font-size: 10px; margin-bottom: 8px; }
.ph--star-row { width: 180px; height: 24px; padding: 0; margin: 28px auto 6px; font-size: 10px; }

.ph--bottle { width: 100%; aspect-ratio: 4 / 5; min-height: 160px; max-height: 210px; margin: 8px 0 10px; }
.package__img { display: block; width: 100%; height: 230px; object-fit: contain; margin: 8px auto 10px; }
.ph--retailer { width: 160px; height: 50px; }

/* ============================================================
   BUTTONS / CTA
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 30px;
  font-size: 16px;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 6px 16px rgba(215,40,47,0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
}
.cta:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(215,40,47,0.3); }
.cta:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(215,40,47,0.22); }
.cta--sm { padding: 10px 18px; font-size: 13px; }
.cta--md { padding: 16px 28px; font-size: 16px; }
.cta--lg { padding: 19px 40px; font-size: 19px; }

/* pulse removed — mature, no animated CTA */
.pulse { animation: none; }

/* ============================================================
   COMMON HEADING
   ============================================================ */
.common-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5.5vw, 48px);
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.common-heading span { color: var(--amber-dark); }
.common-heading--red { color: var(--red); }
.common-heading--bg1 {
  position: relative;
  padding-bottom: 30px;
}
.common-heading--bg1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
}
.common-heading--bg2 { color: var(--navy); }
.common-paragraph {
  text-align: center;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.6;
  letter-spacing: -0.3px;
}
.common-paragraph strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   S1 — Top urgency caption
   ============================================================ */
.top-caption {
  background: var(--red);
  color: #fff;
  padding: 6px 0 7px;
  font-size: 15px;
  font-weight: 400;
}
.top-caption .container { text-align: center; }
.top-caption p {
  position: relative;
  display: inline-block;
  text-align: left;
  line-height: 24px;
  padding-left: 22px;
}
.top-caption .alert-icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  color: #fff;
}
.top-caption .alert-em { color: #fff; font-weight: 700; }
@media (max-width: 768px) {
  .top-caption { font-size: 13px; position: static; top: auto; }
  .top-caption p { line-height: 17px; padding-left: 20px; }
  .top-caption .alert-icon { width: 13px; height: 13px; top: 3px; }
}
@media (max-width: 480px) {
  .top-caption { font-size: 11px; padding: 3px 0 5px; }
  .top-caption p { line-height: 16px; padding-left: 18px; }
  .top-caption .alert-icon { width: 11px; height: 11px; top: 4px; }
}

/* ============================================================
   S2 — Site header
   ============================================================ */
.site-header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header__logo { display: inline-block; line-height: 0; }
.header__logo img { height: 38px; width: auto; display: block; }
.header__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 13px 20px 13px 24px;
  font-size: 16px;
  line-height: 1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(215,40,47,0.22);
  transition: background 0.15s ease;
}
.header__btn:hover { background: var(--cta-hover); }
.header__btn-arrow { width: 22px; height: 22px; flex: 0 0 auto; }
@media (max-width: 640px) {
  .site-header { padding: 10px 0; }
  .header__logo img { height: 28px; }
  .header__btn { padding: 10px 14px 10px 16px; font-size: 13px; gap: 6px; border-radius: 6px; }
  .header__btn-arrow { width: 16px; height: 16px; }
}

/* ============================================================
   S3 — Banner (hero, dark)
   ============================================================ */
.banner {
  background:
    linear-gradient(180deg, rgba(10,17,36,0.78) 0%, rgba(20,33,61,0.86) 52%, var(--navy) 100%),
    url("assets/hero-bg.webp") no-repeat center top / cover,
    var(--navy);
  color: #fff;
  padding: 22px 0 30px;
  position: relative;
  overflow: hidden;
}
.banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.banner__left { text-align: center; min-width: 0; max-width: 100%; }

.banner__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0;
}
.banner__stars {
  width: 105px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}

.banner__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(29px, 7.4vw, 58px);
  line-height: 1.06;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.4px;
  overflow-wrap: anywhere;
}
.banner__heading span { color: #fff; display: inline; }
/* nowrap only where there's room — never force overflow on small screens */
.banner__heading .nowrap { white-space: normal; }
@media (min-width: 768px) {
  .banner__heading .nowrap { white-space: nowrap; }
}

.banner__mob-img {
  margin: 14px -18px 0;
  position: relative;
  line-height: 0;
  max-height: 280px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
}
.banner__mob-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner__strip {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 22px;
  padding: 0 16px 0 0;
  gap: 12px;
}
.banner__strip-left {
  background: #fff;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  padding: 10px 16px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-style: normal;
}
.banner__strip-left p { margin: 0; }
.banner__strip-right {
  background: transparent;
  color: #fff;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  word-break: break-word;
  text-align: left;
}
.banner__strip-right p { margin: 0; }

.banner__list {
  margin: 0 0 26px;
}
.banner__list li {
  position: relative;
  padding: 6px 0 6px 38px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
}
.banner__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: var(--cta);
  color: #fff;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.banner__button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.banner__button-box .cta {
  display: flex;
  width: 100%;
  max-width: 460px;
  padding: 18px 24px;
  font-size: 17px;
  margin: 4px 0;
  background: var(--cta);
  border: 0;
  box-shadow: 0 8px 22px rgba(215,40,47,0.34);
}
.banner__button-box .cta:hover { background: var(--cta-hover); }
.banner__button-box .cta:active { box-shadow: 0 4px 12px rgba(215,40,47,0.28); }
.banner__btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 6px 0;
}
.icon-xs {
  width: 18px;
  height: auto;
  max-height: 18px;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}
.icon-btn-arrow {
  width: 22px;
  height: auto;
  max-height: 22px;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}

.banner__right {
  position: relative;
}

.banner__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 0.7;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .banner { padding: 56px 0 64px; }
  .banner__inner { position: relative; z-index: 4; grid-template-columns: minmax(0, 660px); gap: 0; }
  .banner__left { max-width: 660px; text-align: left; }
  .banner__right {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 420px;
    z-index: 1;
    pointer-events: none;
  }
  .banner__right img {
    width: 100%;
    height: auto;
    display: block;
  }
  .banner__button-box { align-items: flex-start; }
  .banner__button-box .cta {
    max-width: 520px;
    padding: 22px 32px;
    font-size: 19px;
  }
  .banner__btn-text {
    width: 100%;
    max-width: 520px;
    justify-content: center;
  }
  .banner__strip {
    display: inline-flex;
    border-radius: 9999px;
    margin: 0 0 26px;
    padding: 0 22px 0 0;
    gap: 14px;
  }
  .banner__strip-left {
    border-radius: 0;
    padding: 18px 24px;
  }
}

/* ============================================================
   S4 — Section 1 (pain agitation) — AlphaFuel-fidelity refresh
   ============================================================ */
.section1 {
  background: var(--peach);
  padding: 48px 0 44px;
}

.section1 .common-heading {
  font-size: clamp(20px, 5.4vw, 24px);
  line-height: 1.2;
}

/* Pain circles row */
.section1__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 14px;
  max-width: 920px;
  margin: 22px auto 36px;
  position: relative;
}
.section1__list li.problem {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Clean ring wrapper around each circular image */
.problem__ring {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  padding: 5px;
  background: #fff;
  box-sizing: border-box;
}
.problem__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}
.problem__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Small dark-blue downward pointer */
.problem__pointer {
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--navy);
  margin: 10px auto 8px;
}

.section1__list li.problem p {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  font-family: var(--font-body);
  max-width: 180px;
}

/* Callout block (cream bg, no box) */
.section1__callout {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  background: transparent;
  color: var(--text);
  padding: 8px 0 0;
}
.section1__callout-line1 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.section1__callout-line1 span {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 3px 14px;
  border-radius: 6px;
  font-weight: 700;
  margin: 0 4px;
}

/* Statement pill — solid dark blue, no decoration */
.section1__pill-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.section1__pill-text {
  margin: 0;
  background: var(--navy);
  color: #fff;
  padding: 20px 36px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.section1__pill-text .brand {
  color: #fff;
  font-weight: 800;
}

@media (min-width: 768px) {
  .section1 { padding: 64px 0 56px; }
  .section1 .common-heading {
    font-size: 32px;
    line-height: 1.15;
  }
  .section1__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    column-gap: 18px;
  }
  .section1__list li.problem p {
    font-size: 16px;
    max-width: 200px;
  }
  .problem__ring {
    width: 150px;
    height: 150px;
    padding: 6px;
  }

  .section1__pill-text {
    padding: 22px 48px;
    font-size: 19px;
  }
  .section1__callout-line1 { font-size: 19px; }
}

/* ============================================================
   S5 — Section 2 (mechanism + Triple Action 3X)
   ============================================================ */
.section2 {
  background: #fff;
  padding: 50px 0 30px;
  overflow: hidden;
}
.section2__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.section2__left {
  min-width: 0;
}
.section2__left .common-heading {
  text-align: left;
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.4px;
  font-size: clamp(26px, 6vw, 30px);
  line-height: 1.08;
  margin: 0;
}
.section2__left .common-heading span {
  color: var(--amber-dark);
  display: block;
}
.section2__left .common-paragraph {
  text-align: left;
  max-width: none;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 14px 0 0;
}

.benefit-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 5.6vw, 28px);
  line-height: 1.08;
  color: var(--navy);
  text-transform: none;
  letter-spacing: -0.3px;
  margin: 12px 0 0;
}
.benefit-heading span { color: var(--amber-dark); display: block; }

/* baked 3X composite — both viewports */
.sec2-3x {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 10px 0 0;
}

/* ---- mobile couple composite: AlphaFuel full-bleed (display via .show-mob) ---- */
.sec2-mob-img {
  width: calc(100% + 30px);
  margin: 14px -15px 6px;
  max-width: none;
  border-radius: 0;
}

/* ---- desktop couple + product: narrow grid track, image bleeds right,
   absolute so it adds zero section height (display via .hide-mob) ---- */
.section2__right { position: relative; align-self: stretch; }
.sec2-couple {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  height: auto;
  display: block;
}
.sec2-product {
  position: absolute;
  filter: drop-shadow(0 14px 26px rgba(11, 22, 86, 0.28));
}

@media (min-width: 768px) {
  .section2 { padding: 40px 0; }
  .section2__inner { grid-template-columns: 1fr 300px; gap: 24px; }
  .section2__left .common-heading { font-size: 34px; line-height: 44px; }
  .section2__left .common-paragraph { font-size: 17px; line-height: 25px; }
  .benefit-heading { font-size: 30px; line-height: 36px; margin-top: 16px; }
  .sec2-3x { max-width: none; width: 100%; margin-top: 12px; }

  .sec2-couple { width: 520px; top: -10px; }
  .sec2-product { left: -14px; top: 210px; width: 210px; }
}
@media (min-width: 1024px) {
  .section2 { padding: 60px 0; }
  .section2__inner { grid-template-columns: 1fr 360px; gap: 30px; }
  .section2__left .common-heading { font-size: 44px; line-height: 50px; letter-spacing: -0.8px; }
  .section2__left .common-paragraph { font-size: 18px; line-height: 26px; }
  .benefit-heading { font-size: 36px; line-height: 40px; margin-top: 18px; }
  .sec2-3x { max-width: none; width: 100%; margin-top: 14px; }

  .sec2-couple { width: 640px; top: -20px; }
  .sec2-product { left: -24px; top: 290px; width: 280px; }
}

/* ============================================================
   .strip — recurring "ARE YOU READY" CTA strip
   ============================================================ */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.strip__left { display: flex; flex-direction: column; gap: 4px; }
.strip__t1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em;
  color: #fff;
}
.strip__t1 span { color: var(--gold); font-weight: 500; font-size: 0.7em; display: block; letter-spacing: 0.1em; }
.strip__t2 { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); }
.strip-arrow { width: 24px; height: auto; display: inline-block; vertical-align: middle; margin-left: 8px; }

@media (min-width: 768px) {
  .strip { padding: 22px 0; }
  .strip__inner { grid-template-columns: 1fr auto; gap: 28px; text-align: left; }
}

/* ============================================================
   S7 — Section 3 (benefits, 2 col × 3 + product middle)
   ============================================================ */
.section3 {
  background: var(--cream);
  padding: 48px 0;
}
.section3__row .sec3-product-img { display: none; }
.section3__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1020px;
  margin: 24px auto 0;
}
.section3__col { }
.sec3-mob-img { display: block; width: 100%; max-width: 480px; aspect-ratio: 700 / 467; object-fit: contain; margin: 0 auto 18px; }
.section3__list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.section3__list li:last-child { border-bottom: 0; }
.section3__list-heading {
  position: relative;
  padding-left: 68px;
  min-height: 52px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.15;
}
.section3__list-heading > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
}
.section3__list-heading > svg * { stroke: #fff; fill: none; }
.section3__list-heading strong { color: var(--amber-dark); font-weight: 700; font-style: normal; display: inline; }
.section3__list-paragraph { margin: 0 0 0 68px; font-size: 14px; color: var(--text-dim); line-height: 1.55; }

@media (min-width: 641px) and (max-width: 1023px) {
  .section3__row { grid-template-columns: 1fr 1fr; }
  .section3__row .sec3-mob-img { grid-column: 1 / -1; }
  .section3__row .sec3-product-img { display: none !important; }
}

@media (min-width: 1024px) {
  .section3 { padding: 72px 0; }
  .section3__row { grid-template-columns: 1fr 280px 1fr; gap: 32px; }
  .section3__row .sec3-mob-img { display: none !important; }
  .section3__row .sec3-product-img { display: block; align-self: center; width: 100%; height: auto; object-fit: contain; }
  .section3__list-heading { font-size: 23px; }
  .section3__list-paragraph { font-size: 17px; }
  .section3__col:last-of-type { text-align: right; }
  .section3__col:last-of-type .section3__list-heading { padding-left: 0; padding-right: 68px; }
  .section3__col:last-of-type .section3__list-heading > svg { left: auto; right: 0; }
  .section3__col:last-of-type .section3__list-paragraph { margin: 0 68px 0 0; }
}

/* ============================================================
   S9 — Section 4 (ingredients 3-col grid + proven seal)
   ============================================================ */
.section4 {
  background: #fff;
  padding: 48px 0;
}
.section4__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  max-width: 1020px;
  margin: 28px auto 32px;
}
.section4__list li {
  text-align: center;
  position: relative;
  padding: 0 18px 30px;
}
/* Bottom border between row 1 and row 2 */
.section4__list li:nth-child(-n+2)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: #d9d9d9;
}
/* Right border between columns (not last in row) */
.section4__list li:nth-child(2n-1)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 25px;
  right: 0;
  width: 1px;
  background: #d9d9d9;
}
.section4__ingredient-img {
  display: block;
  margin: 0 auto 12px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain;
  background: #F2F2F3;
  padding: 12px;
  box-sizing: border-box;
}
.section4__list p {
  margin: 8px 0 0;
  font-size: 18px;
  color: var(--text-dim);
  font-weight: 300;
  letter-spacing: -0.3px;
  line-height: 1.35;
}
.section4__list p span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  display: block;
  margin-bottom: 2px;
}

.proven-box-outer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-left: 62px;
}
.proven-box {
  display: inline-block;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  text-align: left;
  overflow: visible;
}
.proven-seal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -58px;
  width: 108px;
}
.proven__t1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: var(--orange);
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 10px 14px 10px 72px;
  margin: 0;
}
.proven__t2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  line-height: 1.3;
  background: #F2F2F3;
  border-radius: 0 0 20px 20px;
  padding: 10px 14px 14px 72px;
  margin: 0;
}

@media (min-width: 640px) {
  .section4__list { grid-template-columns: repeat(3, 1fr); }
  .section4__list li:nth-child(-n+3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: #d9d9d9;
  }
  .section4__list li:nth-child(-n+2)::after { display: none; }
  .section4__list li:nth-child(2n-1)::before { display: none; }
  .section4__list li:not(:nth-child(3n))::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 25px;
    right: 0;
    width: 1px;
    background: #d9d9d9;
  }
  .section4__ingredient-img { width: 140px; height: 140px; }
  .section4__list p { font-size: 20px; }
  .section4__list p span { font-size: 20px; }
}
@media (min-width: 768px) {
  .section4 { padding: 72px 0; }
  .section4__ingredient-img { width: 153px; height: 153px; }
  .section4__list p { font-size: 22px; }
  .section4__list p span { font-size: 22px; }
  .proven__t1 { font-size: 30px; }
}

/* ============================================================
   S11 — Section 5 (testimonials 3-col)
   ============================================================ */
.section5 {
  background: var(--cream);
  padding: 36px 0;
}
.testi__row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  max-width: 1020px;
  margin: 20px auto 0;
}
.testi__col {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(20,33,61,0.10);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testi__top {
  background: #fff;
  color: var(--navy);
  padding: 16px 16px 14px;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.testi__avatar-box {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.testi__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  display: block;
  margin: -20px 0 0 10px;
}
.testi__arrow { display: none; }
.testi__stars {
  display: block;
  width: 110px;
  margin: 0 auto 14px;
}
.testi__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  line-height: 1.18;
  color: var(--navy);
  width: calc(100% - 130px);
  padding-left: 14px;
  letter-spacing: -0.4px;
}
.testi__bottom {
  background: var(--orange);
  border-radius: 0 0 8px 8px;
  padding: 16px 20px 0;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testi__paragraph {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}
.testi__name {
  font-size: 15px;
  color: #fff;
  font-style: italic;
  background: var(--orange-deep);
  padding: 7px 0 7px 20px;
  margin: 14px -20px 0;
  text-align: left;
}
.testi__name span {
  font-style: normal;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .section5 { padding: 52px 0; }
  .testi__row { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ============================================================
   S13 — Package section (pricing 3-tier)
   ============================================================ */
.package-sec {
  background: #fff;
  padding: 48px 0;
}
.package {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1020px;
  margin: 28px auto 0;
}
.package__box {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px 16px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package__label {
  position: absolute;
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  margin: 0;
}
.package__box--2 {
  border-color: var(--navy);
  border-width: 2px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20,33,61,0.16);
}
.package__box--2 .package__label {
  background: var(--navy);
  color: #fff;
}
.package__qty {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 35px);
  line-height: 1.06;
  color: var(--navy);
  text-transform: uppercase;
  margin: 12px 0 4px;
  min-height: 2.12em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.package__supply {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  font-weight: 600;
}
.package__strip {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 7px 10px;
  margin: 0 -2px 10px;
  border-radius: 3px;
}
.package__price {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--amber-dark);
}
.package__amt { font-size: clamp(30px, 6vw, 50px); line-height: 1; font-weight: 800; }
.package__per {
  font-size: 14px;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.package__save {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin: 2px 0 4px;
}
.package__total {
  font-size: 14px;
  color: var(--text);
  margin: 4px 0;
  font-weight: 600;
}
.package__was {
  text-decoration: line-through;
  color: #9aa1ab;
  font-weight: 400;
  margin-right: 6px;
}
.package__ship {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin: 4px 0 10px;
}
.package__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 15px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 6px 16px rgba(215,40,47,0.22);
  transition: background 0.15s ease, transform 0.15s ease;
}
.package__btn:hover { background: var(--cta-hover); transform: translateY(-1px); }
.package__mbg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  margin: 12px 0 0;
}

.custom__text {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  font-size: 14px;
  margin: 0 0 22px;
}
.custom__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1020px;
  margin: 0 auto;
}
.custom__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}
.custom__list p { margin: 0; font-size: 13px; font-weight: 500; line-height: 1.3; color: var(--text-dim); }

@media (min-width: 768px) {
  .package-sec { padding: 72px 0; }
  .custom__list { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .custom__list li { flex-direction: column; gap: 8px; text-align: center; }
}
@media (min-width: 1024px) {
  .package { grid-template-columns: 1fr 1.05fr 1fr; align-items: stretch; gap: 22px; }
}

/* ============================================================
   S15 — FAQ
   ============================================================ */
.faq-sec {
  background: var(--cream);
  padding: 48px 0;
}
.faq-container {
  max-width: 820px;
  margin: 24px auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: left;
  letter-spacing: 0.01em;
}
.faq-q::after {
  content: "+";
  font-size: 26px;
  line-height: 1;
  color: var(--amber-dark);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--amber); }
.faq-q[aria-expanded="true"] { background: var(--peach); color: var(--navy-deep); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

@media (min-width: 768px) {
  .faq-sec { padding: 72px 0; }
  .faq-q { padding: 20px 24px; font-size: 21px; }
}

/* ============================================================
   S16 — Red strip (act now)
   ============================================================ */
.red-strip {
  background: var(--red);
  color: #fff;
  padding: 16px 0;
}
.red-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 14px;
}
.red-strip strong { color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.red-strip p { margin: 0; max-width: 760px; }
.red-strip .ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0, rgba(255,255,255,0.18) 8px, rgba(255,255,255,0.08) 8px, rgba(255,255,255,0.08) 16px);
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   S17 — Section 6 (closing hero reprise) — uses .banner__* classes
   ============================================================ */
.section6 {
  background:
    linear-gradient(180deg, rgba(10,17,36,0.78) 0%, rgba(20,33,61,0.86) 52%, var(--navy) 100%),
    url("assets/hero-bg.webp") no-repeat center top / cover,
    var(--navy);
  color: #fff;
  padding: 44px 0 56px;
  position: relative;
  overflow: hidden;
}
.section6 .banner__inner { gap: 32px; }
.section6 .banner__heading { font-size: clamp(29px, 5.5vw, 56px); }

@media (min-width: 1024px) {
  .section6 { padding: 64px 0 80px; }
}

/* ============================================================
   S18 — Section 7 (scientific references)
   ============================================================ */
.section7 {
  background: #fff;
  padding: 40px 0;
}
.reference__heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.reference__list {
  columns: 1;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-dim);
}
.reference__list li { margin-bottom: 8px; padding-left: 22px; position: relative; break-inside: avoid; }
.reference__list li span {
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--navy);
}
.reference__list u {
  color: var(--amber-dark);
  text-decoration: underline;
  word-break: break-all;
}

@media (min-width: 768px) {
  .reference__list { columns: 2; column-gap: 32px; }
}

/* ============================================================
   S19 — Footer
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 36px 0 0;
  font-size: 12px;
  line-height: 1.55;
}
.footer__s1 {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin: 0 0 14px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.footer__s2 {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: justify;
  margin: 0 auto 18px;
  max-width: 920px;
  line-height: 1.6;
}
.footer__text {
  text-align: center;
  margin: 6px 0;
  font-size: 12px;
}
.footer__text a {
  color: rgba(255,255,255,0.75);
  margin: 0 4px;
}
.footer__text a:hover { color: var(--gold); }
.footer__legal-strip {
  background: #000;
  color: rgba(255,255,255,0.7);
  padding: 18px 0;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 22px;
}
.footer__legal-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  flex-direction: column;
}
.footer__legal-inner p { margin: 0; text-align: justify; }

@media (min-width: 768px) {
  .footer__legal-inner { flex-direction: row; }
}

/* ============================================================
   Sticky CTA bar — visible from load, always present
   ============================================================ */
body { padding-bottom: 70px; }
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 -6px 20px rgba(10,17,36,0.28);
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.sticky-cta__text {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  min-width: 0;
}
.sticky-cta__text span {
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}
.sticky-cta__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.sticky-cta__btn:hover { background: var(--cta-hover); }
@media (max-width: 600px) {
  body { padding-bottom: 62px; }
  .sticky-cta__text { font-size: 12.5px; }
  .sticky-cta__text span { display: none; }
  .sticky-cta__btn { font-size: 13px; padding: 11px 16px; }
}

/* ============================================================
   Section rhythm — single thin dark-blue hairline between
   consecutive light sections (mature separation, 3-color safe)
   ============================================================ */
.section1,
.section2,
.section3,
.section4,
.section5,
.package-sec,
.faq-sec,
.section7 {
  border-top: 1px solid var(--line);
}

/* ============================================================
   How To Use — 3-step row
   ============================================================ */
.howto { background: #fff; padding: 48px 0; }
.howto__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 28px auto 24px;
}
.howto__step { text-align: center; padding: 0 18px; }
.howto__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.howto__icon {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: #F2F2F3;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.howto__icon svg { width: 58px; height: 58px; }
.howto__icon .ic-base,
.howto__icon .ic-acc {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.howto__icon .ic-base { stroke: var(--navy); }
.howto__icon .ic-acc  { stroke: var(--red); }
.howto__icon .ic-fill { fill: var(--red); stroke: none; }
.howto__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.howto__p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.3px;
}
.howto__note {
  text-align: center;
  max-width: 680px;
  margin: 6px auto 0;
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
}
@media (max-width: 768px) {
  .howto { padding: 40px 0; }
  .howto__list { grid-template-columns: 1fr; gap: 34px; }
}

/* ============================================================
   WhatsApp proof carousel (Real People. Real Results.)
   ============================================================ */
.wa-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0 16px;
  padding: 6px 4px 14px;
  margin-top: 28px;
  scrollbar-width: none;
}
.wa-rail::-webkit-scrollbar { display: none; }
.wa-card {
  flex: 0 0 auto;
  width: clamp(212px, 60vw, 300px);
  aspect-ratio: 768 / 1376;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(11,11,12,0.12);
  box-shadow: 0 14px 30px rgba(11,11,12,0.16);
  scroll-snap-align: center;
}
.wa-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: -0.2px;
}
.wa-hint svg { stroke: var(--cta); }
@media (min-width: 900px) {
  .wa-rail { justify-content: flex-start; gap: 20px; }
  .wa-hint { display: none; }
}

/* ============================================================
   CRO polish — bonus line, mobile pkg stacking, guarantee
   ============================================================ */
.package__bonus {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 700;
  margin: 2px 10px 6px;
  text-align: center;
}
.package__bonus svg { flex: 0 0 auto; margin-top: 1px; color: var(--cta); }
.package__bonus span { font-weight: 600; color: var(--text-dim); }

/* 04.3 — on mobile/tablet the highlighted package sits on top */
@media (max-width: 1023px) {
  .package__box--2 { order: -1; }
}

/* 03.2 — standalone money-back guarantee section */
.guarantee-sec { background: #fff; padding: 40px 0; }
.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}
.guarantee__seal { width: 116px; height: auto; flex: 0 0 auto; }
.guarantee__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 4.4vw, 31px);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.guarantee__promise {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 10px;
}
.guarantee__promise strong { color: #fff; }
.guarantee__promise u { color: #fff; text-underline-offset: 3px; }
.guarantee__sign { font-style: italic; font-size: 15px; color: rgba(255,255,255,0.78); margin: 0; }
@media (min-width: 768px) {
  .guarantee { flex-direction: row; text-align: left; gap: 26px; padding: 32px 36px; }
  .guarantee__body { flex: 1; }
}
