/* ==========================================================================
   C-MED-T — RTL Hebrew landing page
   Palette extracted directly from the reference (glp.medvi.org CSS vars):
     --wood: #c6a673  (tan accent, sparingly)
     --sky-light: #e9f5f5
     --brown-stone: #f7f4f0  (warm off-white)
     sand: #f1ecdf / #eeece7
     teal primary: #25adb1
     teal dark: #0f8083
     highlight: #7bf4e0
   ========================================================================== */

:root {
  --color-primary:       #25adb1;   /* teal — buttons, links, active */
  --color-primary-dark:  #0f8083;   /* teal hover */
  --color-primary-soft:  #e9f5f5;   /* pale teal background */
  --color-accent:        #c6a673;   /* wood tan */
  --color-highlight:     #7bf4e0;   /* bright teal, accent text */
  --color-sand:          #f1ecdf;
  --color-sand-deep:     #eeece7;
  --color-stone:         #f7f4f0;   /* warm off-white sections */
  --color-bg:            #ffffff;
  --color-text:          #1f2023;
  --color-text-muted:    #6b6359;
  --color-muted-warm:    #bcaea8;
  --color-success:       #2e7d32;
  --color-border:        #e8e2d6;
  --color-white:         #ffffff;
  --charcoal:            #2b2b2b;   /* header CTA */
  --brown-light:         #c6a673;   /* check icons */
  --green-cta:           #779d7c;   /* hero primary CTA */
  --green-cta-dark:      #5e8262;
  --hero-bg-top:         #ebf1ed;   /* hero gradient start */
  --smoke:               #ece8e1;   /* smoky neutral panel bg */
  --mint-light:          #e6eee1;   /* pale sage-mint card bg */

  --font-latin: 'Red Hat Text', system-ui, -apple-system, sans-serif;
  --font-body:  'Noto Sans Hebrew', 'Red Hat Text', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 3px rgba(31, 32, 35, 0.05);
  --shadow-md: 0 6px 24px rgba(31, 32, 35, 0.08);

  --space-section: clamp(64px, 9vw, 120px);
  --container: 1200px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-stone);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.3rem); }
p  { margin: 0 0 1em; }
a  { color: var(--color-primary-dark); text-decoration: none; }
a:hover { color: var(--color-primary); }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared utilities ──────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.accent { color: var(--color-primary-dark); }

.section-head { margin-bottom: 3rem; max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .sub { color: var(--color-text-muted); font-size: 1.1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1.05em 2.4em;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 999px;
  transition: background .2s, color .2s, transform .15s var(--ease), box-shadow .2s;
  white-space: nowrap;
  border: none;
}
.btn-primary,
.btn-green {
  background: var(--green-cta);
  color: var(--color-white);
}
.btn-primary:hover,
.btn-green:hover {
  background: var(--green-cta-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(119, 157, 124, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover {
  border-color: var(--green-cta);
  color: var(--green-cta-dark);
}
.btn-inverse {
  background: var(--color-white);
  color: var(--green-cta-dark);
}
.btn-inverse:hover {
  background: var(--color-sand);
  color: var(--green-cta-dark);
}
.btn-sm { padding: 0.7em 1.5em; font-size: 0.9rem; }
.btn-wide { width: 100%; }

.icon-wa { width: 20px; height: 20px; fill: currentColor; }

/* ── Promo bar ──────────────────────────────────────────────────────────── */
.promo-bar {
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--color-border);
}
.promo-bar span { letter-spacing: 0.01em; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav-wrap {
  display: flex; align-items: center; gap: 1rem;
  padding: 14px 24px;
  position: relative;
}
.logo {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  direction: ltr;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-inline-start: auto;
}
.nav-toggle {
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 8px;
  background: transparent;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--color-sand); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  margin: 5px auto;
  transition: transform .2s, opacity .2s;
}
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline-end: 24px;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  min-width: 220px;
}
.main-nav.is-open { display: flex; }
.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}
.main-nav a:hover { background: var(--color-sand); color: var(--color-text); }

/* ── Hero — clean gradient, centered content, 7-photo row ──────────────── */
.hero {
  background: linear-gradient(180deg, var(--hero-bg-top) 0%, #ffffff 100%);
  color: var(--color-text);
  padding: clamp(40px, 6vw, 70px) 0 clamp(40px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}
.hero .container { text-align: center; }
.hero-social {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
  letter-spacing: 0.01em;
}
.hero-title {
  max-width: 960px;
  margin: 0 auto 2rem;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  color: var(--charcoal);
  font-weight: 700;
}
.hero-title .accent {
  color: var(--green-cta);
}
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.2rem;
  max-width: 680px;
  display: grid;
  gap: 0.7rem;
  text-align: start;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.02rem;
  color: var(--color-text);
}
.hero-benefits .bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brown-light) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 8.5 L6.8 11.3 L12 5.8' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/13px no-repeat;
  flex-shrink: 0;
}
.hero-cta-wrap {
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* ── 7-image collage — absolutely positioned per spec ──────────────────── */
.collage {
  position: relative;
  max-width: 1500px;
  width: calc(100% - 40px);
  height: clamp(680px, 62vw, 920px);
  margin: 24px auto 0;
}
.collage-cta {
  position: absolute;
  left: 50%;
  top: 3%;
  transform: translateX(-50%);
  z-index: 10;
}
.collage-cta .collage-btn {
  width: 260px;
  height: 58px;
  padding: 0 1.2em;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(119, 157, 124, 0.3);
}

.collage-img {
  position: absolute;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #eee8de;
  transition: transform .35s var(--ease), box-shadow .35s;
  box-shadow: 0 6px 18px rgba(31, 32, 35, 0.08);
}
.collage-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.collage-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 32, 35, 0.15);
}

/* Physical positions (do NOT flip with RTL) — mirrors screenshot */
.image1 { left: 2%;  top: 2%;    width: 18%; height: 52%; background: #d9dde1; }
.image2 { left: 21%; top: 20%;   width: 18%; height: 38%; background: #ece6d5; }
.image3 { left: 40%; top: 18%;   width: 18%; height: 45%; background: #d2e7df; }
.image4 { left: 59%; top: 20%;   width: 18%; height: 58%; background: #f2d8d4; }
.image5 { right: 2%; top: 2%;    width: 18%; height: 52%; background: #eae0d0; }
.image6 { left: 2%;  bottom: 2%; width: 37%; height: 42%; background: #f0e0d8; }
.image7 { right: 2%; bottom: 16%; width: 18%; height: 28%; background: #e8d8c8; }
.image6 img { object-position: center 30%; }

/* ── Trust strip ───────────────────────────────────────────────────────── */
/* ── Press bar (as-seen-in marquee) ───────────────────────────────────── */
.press-bar {
  background: #ffffff;
  border: 0;
  border-image: linear-gradient(90deg, transparent, rgba(17,17,17,0.08) 20%, rgba(17,17,17,0.08) 80%, transparent) 1;
  border-block-start: 1px solid;
  border-block-end: 1px solid;
  padding: 1.4rem 0 1.1rem;
  text-align: center;
}
.press-title {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-weight: 500;
}
.press-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.press-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: press-scroll 40s linear infinite;
}
.press-logo {
  flex: 0 0 auto;
  color: #111;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.88;
  padding-inline-end: clamp(2.2rem, 5vw, 3.8rem);
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}
@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; }
}

/* ── Products grid ────────────────────────────────────────────────────── */
.products {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.products .container {
  max-width: min(1280px, calc(100% - 32px));
}
.products-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
  margin-block-end: clamp(60px, 7vw, 90px);
}
.products-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-align: start;
}
.products-title-1 { color: #2b2b2b; display: block; }
.products-title-2 { color: #779d7c; display: block; }
.products-intro {
  margin: 0;
  padding-block-start: 10px;
  color: #4a4a4a;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 480px;
  text-align: start;
}
.hl-sage { color: #779d7c; font-weight: 600; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
  align-items: stretch;
}
.product-card {
  position: relative;
  border-radius: 32px;
  padding: 230px 24px 30px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}
.card-1 { background: linear-gradient(to bottom, #ecf0eb 0%, #ecf0eb 50%, #ededed 50%, #ededed 100%); }
.card-2 { background: linear-gradient(to bottom, #ecebe6 0%, #ecebe6 50%, #ededed 50%, #ededed 100%); }
.card-3 { background: linear-gradient(to bottom, #e8f0ea 0%, #e8f0ea 50%, #ededed 50%, #ededed 100%); }
.card-4 { background: linear-gradient(to bottom, #efede8 0%, #efede8 50%, #ededed 50%, #ededed 100%); }

.product-image {
  position: absolute;
  top: -50px;
  inset-inline: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s ease;
  will-change: transform;
}
.product-image svg {
  width: clamp(210px, 95%, 280px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,0.14));
}
.product-card:hover .product-image { transform: translateY(-8px); }

.product-body {
  margin-block-start: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}
.product-price {
  color: #779d7c;
  font-size: 0.82rem;
  font-weight: 500;
}
.product-title {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
}
.product-desc {
  margin: 0 0 18px;
  color: #55544f;
  font-size: 0.88rem;
  line-height: 1.5;
}
.product-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-block-start: auto;
  padding: 14px 20px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease;
}
.product-cta:hover { background: #000; }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 700px) {
  .products-head { grid-template-columns: 1fr; }
  .products-intro { max-width: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 560px; padding: 220px 24px 28px; }
}

/* ── Social proof (testimonial hero) ─────────────────────────────────── */
.social-proof {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
  position: relative;
  overflow: hidden;
}
.sp-inner { position: relative; }

.sp-header {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-block-end: clamp(30px, 3vw, 50px);
}
.sp-eyebrow {
  margin: 0 0 14px;
  color: #4a4a4a;
  font-size: 1.05rem;
  font-weight: 500;
}
.sp-stars {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: clamp(3rem, 4.6vw, 4.2rem);
  margin-block-end: clamp(24px, 3vw, 36px);
  line-height: 1;
}
.sp-stars span {
  background: linear-gradient(135deg, #b48846 0%, #e6c37a 30%, #fff2c4 50%, #e6c37a 70%, #b48846 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 2px 3px rgba(180, 136, 70, 0.35))
          drop-shadow(0 0 6px rgba(255, 240, 200, 0.55));
}
.sp-headline-block {
  display: inline-block;
  text-align: start;
  max-width: 100%;
}
.sp-quote {
  margin: 0;
  font-size: clamp(2.3rem, 5.8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-align: center;
}
.sp-quote-dark    { color: #2b2b2b; }
.sp-quote-accent  { color: #779d7c; }

.sp-verified {
  margin-block-start: 22px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #2b2b2b;
  font-weight: 500;
}
.sp-verified-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.sp-stage {
  position: relative;
  min-height: 620px;
  margin-block-start: clamp(24px, 3vw, 40px);
}

.sp-bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) rotate(12deg);
  width: clamp(240px, 26vw, 360px);
  z-index: 2;
  filter: drop-shadow(0 38px 44px rgba(0,0,0,0.14));
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.sp-bottle:hover {
  transform: translate(-50%, calc(-50% - 12px)) rotate(6deg) scale(1.05);
}
.sp-bottle svg { width: 100%; height: auto; display: block; }

.sp-float {
  position: absolute;
  max-width: clamp(200px, 20vw, 300px);
  color: rgba(60, 60, 60, 0.16);
  z-index: 1;
  pointer-events: none;
}
.sp-float p {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
}
.sp-float-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(60, 60, 60, 0.22);
}
.sp-mini-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(119, 157, 124, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 9px;
  line-height: 1;
}

/* Asymmetric cloud — non-overlapping positions */
.sp-float-1 { top: 2%;     left: 0;   max-width: 230px; }
.sp-float-2 { top: 2%;     right: 0;  max-width: 230px; text-align: end; }
.sp-float-3 { top: 30%;    left: 0;   max-width: 210px; }
.sp-float-4 { top: 30%;    right: 0;  max-width: 210px; text-align: end; }
.sp-float-5 { top: 60%;    left: 0;   max-width: 220px; }
.sp-float-6 { bottom: 2%;  left: 22%; max-width: 230px; }
.sp-float-7 { bottom: 2%;  right: 0;  max-width: 230px; text-align: end; }

/* Eighth quote — layered behind the bottle for depth */
.sp-float-behind {
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: clamp(260px, 34vw, 440px);
  text-align: center;
  z-index: 0;
  color: rgba(60, 60, 60, 0.10);
}
.sp-float-behind p { font-size: clamp(1.4rem, 2.6vw, 2.2rem); }

@media (max-width: 960px) {
  .sp-float-3, .sp-float-5, .sp-float-6 { display: none; }
  .sp-float-behind { display: none; }
  .sp-stage { min-height: 520px; }
  .sp-bottle { width: 250px; }
}
@media (max-width: 640px) {
  .sp-float-2, .sp-float-4, .sp-float-7 { display: none; }
  .sp-float-1 { top: 0; left: 3%; max-width: 150px; }
  .sp-float-1 p { font-size: 0.95rem; }
  .sp-bottle { width: 220px; top: 56%; }
  .sp-stage { min-height: 440px; }
}

/* Health-ministry approval badge (reusable) */
.sp-trust {
  position: relative;
  z-index: 3;
  margin-block-start: clamp(40px, 6vw, 70px);
  text-align: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f2023;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.3;
}
.trust-badge-icon { width: 36px; height: 36px; flex: 0 0 auto; }
.trust-badge-light { font-weight: 400; color: #333; }
.trust-badge-bold  { font-weight: 800; color: #1a1a1a; }

/* ── Weight-goal conversion block ────────────────────────────────────── */
.wg-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.wg-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.wg-title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.wg-title-dark   { display: block; color: #2b2b2b; }
.wg-title-accent { display: block; color: #779d7c; }

.wg-body {
  margin: 0 0 30px;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 460px;
}
.wg-hl { color: #779d7c; font-weight: 600; }

.wg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 36px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}
.wg-cta:hover { background: #000; }

.wg-card {
  background: #efece7;
  border-radius: 36px;
  padding: clamp(28px, 3.5vw, 44px);
}
.wg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.wg-row + .wg-slider-wrap { margin-top: 14px; }
.wg-slider-wrap + .wg-row { margin-top: 14px; }

.wg-label {
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 600;
  color: #2b2b2b;
}
.wg-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #1a1a1a;
  white-space: nowrap;
}
.wg-num {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.wg-unit {
  font-size: 1rem;
  font-weight: 500;
  color: #4a4a4a;
}
.wg-value-big .wg-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

/* Custom slider */
.wg-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  background: transparent;
  cursor: pointer;
  direction: ltr;
  --fill: 35%;
}
.wg-slider:focus { outline: none; }
.wg-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(to right,
    #c6a673 0,
    #c6a673 var(--fill),
    #e5ded0 var(--fill),
    #e5ded0 100%);
}
.wg-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #c6a673;
  margin-top: -11px;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease;
}
.wg-slider:active::-webkit-slider-thumb { cursor: grabbing; transform: scale(1.08); }

.wg-slider::-moz-range-track {
  height: 4px;
  border-radius: 3px;
  background: #e5ded0;
}
.wg-slider::-moz-range-progress {
  height: 4px;
  border-radius: 3px;
  background: #c6a673;
}
.wg-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #c6a673;
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .wg-grid { grid-template-columns: 1fr; gap: 48px; }
  .wg-body { max-width: none; }
}
@media (max-width: 560px) {
  .wg-cta { width: 100%; }
}

/* ── Success stories collage ─────────────────────────────────────────── */
.story-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.story-title {
  margin: 0 auto 16px;
  max-width: 720px;
  text-align: center;
  color: #2b2b2b;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.story-intro {
  margin: 0 auto clamp(40px, 5vw, 60px);
  max-width: 720px;
  text-align: center;
  color: #4a4a4a;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}
.story-intro-hl { color: #779d7c; font-weight: 700; }

.story-collage {
  display: grid;
  grid-template-columns: 24% 24% 26% 22%;
  gap: 16px;
  min-height: 600px;
}
.story-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}
.story-img {
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.story-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}

/* Muted studio-tone placeholder backgrounds (swap to real photos later) */
.story-img-1 {
  height: 180px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, #8d9a73 0%, #a9b290 55%, #7e8a6a 100%);
}
.story-img-2 {
  flex: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(135deg, #3a3a3c 0%, #4f4f52 55%, #2b2b2d 100%);
}
.story-img-3 {
  height: 220px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, #c8b59c 0%, #e0d2b8 55%, #b8a080 100%);
}
.story-img-4 {
  flex: 1;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.2), transparent 60%),
    linear-gradient(135deg, #c2c6cb 0%, #dcdfe3 55%, #a5aab0 100%);
}
.story-img-5 {
  flex: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.2), transparent 60%),
    linear-gradient(135deg, #dbc6a8 0%, #f1e5cc 55%, #c6b090 100%);
}
.story-img-6 {
  flex: 1;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255,255,255,0.2), transparent 60%),
    linear-gradient(135deg, #e8d9bf 0%, #f5ead3 55%, #d4c19e 100%);
}
.story-img-7 {
  height: 180px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, #bec4c9 0%, #d5dadd 55%, #a4aab0 100%);
}

.story-proof-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
  margin: clamp(50px, 6vw, 80px) auto 0;
  max-width: 1120px;
  flex-wrap: wrap;
}
.story-proof {
  display: flex;
  align-items: center;
  gap: 9px;
}
.story-proof-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.story-proof-icon svg { width: 100%; height: 100%; display: block; }
.story-proof-text {
  color: #1f2023;
  font-size: clamp(0.85rem, 0.95vw, 0.98rem);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.story-disclaimer {
  margin: clamp(20px, 3vw, 32px) auto 0;
  max-width: 1120px;
  color: #8a857e;
  font-size: 0.82rem;
  text-align: start;
}

@media (max-width: 960px) {
  .story-collage {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .story-col-3 .story-img-5 { min-height: 380px; }
}
@media (max-width: 900px) {
  .story-proof-row { flex-direction: column; align-items: center; }
  .story-proof-text { white-space: normal; text-align: center; }
}
@media (max-width: 560px) {
  .story-collage { grid-template-columns: 1fr; }
  .story-img-2, .story-img-4, .story-img-5, .story-img-6 {
    flex: none;
    height: 320px;
  }
}

/* ── Metabolism panel ────────────────────────────────────────────────── */
.metab-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.metab-panel {
  background: #f7f4f0;
  border-radius: clamp(32px, 3.5vw, 48px);
  padding: clamp(36px, 4.8vw, 80px);
  max-width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

.metab-images-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.metab-img {
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.metab-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}
.metab-img-1 {
  margin-top: 50px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #dcc8aa 0%, #ecdcc0 55%, #c2a97f 100%);
}
.metab-img-2 {
  margin-top: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(135deg, #b58855 0%, #d4a76b 55%, #8f6a38 100%);
}

.metab-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.metab-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: #2b2b2b;
  letter-spacing: -0.01em;
}
.metab-title span { display: block; }

.metab-body {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4a4a4a;
  max-width: 46ch;
}
.metab-hl { color: #779d7c; font-weight: 600; }

.metab-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 36px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}
.metab-cta:hover { background: #000; }

@media (max-width: 900px) {
  .metab-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .metab-img-1 { margin-top: 0; }
}
@media (max-width: 560px) {
  .metab-panel {
    padding: clamp(28px, 5vw, 44px);
  }
  .metab-images-pair { gap: 10px; }
  .metab-cta { width: 100%; }
}

/* ── Results stats ───────────────────────────────────────────────────── */
.results-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.results-title {
  margin: 0 auto 18px;
  max-width: 1100px;
  text-align: center;
  color: #2b2b2b;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.results-title-accent { color: #779d7c; }

.results-subtitle {
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 680px;
  text-align: center;
  color: #4a4a4a;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.55;
}

.rstat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.4vw, 20px);
  max-width: 1280px;
  margin-inline: auto;
}
.result-stat {
  background: #C2E5D3;
  border-radius: clamp(24px, 3vw, 48px);
  padding: clamp(14px, 2.2vw, 32px) clamp(8px, 1.3vw, 16px);
  min-height: clamp(150px, 18vw, 220px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(8px, 1vw, 14px);
}
.result-num {
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
}
.r-num {
  color: #1a1a1a;
  font-size: clamp(1.5rem, 3.2vw, 3.4rem);
  font-weight: 900;
}
.r-unit {
  color: #779d7c;
  font-size: clamp(1.1rem, 2.3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0;
}
.result-label {
  margin: 0;
  color: #2b2b2b;
  font-size: clamp(0.68rem, 0.9vw, 0.98rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 22ch;
}


/* ── Process timeline ─────────────────────────────────────────────────── */
.process-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
  max-width: 1320px;
  margin-inline: auto;
}

.process-intro {
  position: sticky;
  top: 100px;
}
.process-title {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: #2b2b2b;
  letter-spacing: -0.01em;
}
.process-title span { display: block; }
.process-body {
  margin: 0 0 28px;
  color: #4a4a4a;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 460px;
}
.process-hl { color: #779d7c; font-weight: 600; }
.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 32px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}
.process-cta:hover { background: #000; }

.process-steps {
  position: relative;
  padding-inline-start: 60px;
}
.process-spine {
  position: absolute;
  top: 6px;
  bottom: 6px;
  inset-inline-start: 21px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    #5e8262 0%,
    #5e8262 var(--progress, 0%),
    #d5d5d5 var(--progress, 0%),
    #d5d5d5 100%
  );
  pointer-events: none;
}

.process-step {
  position: relative;
  margin-bottom: clamp(48px, 5vw, 72px);
}
.process-step:last-child { margin-bottom: 0; }

.process-step-title {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}
.process-step-body {
  margin: 0 0 18px;
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 520px;
}

.process-marker {
  position: absolute;
  inset-inline-start: -48px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ececec;
  border: 2px solid #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.process-marker::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5e8262;
  transform: scale(0);
  transition: transform 0.35s ease;
}
.process-marker.is-filled {
  background: #d9e6d9;
  border-color: #8fb490;
}
.process-marker.is-filled::after {
  transform: scale(1);
}

.process-step-img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 2;
  border-radius: 44px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.process-step-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}
.process-step-img-1 {
  background:
    radial-gradient(ellipse at 50% 55%, rgba(120, 200, 140, 0.38), transparent 55%),
    linear-gradient(135deg, #e7ddc8 0%, #efe5cf 55%, #c6a97f 100%);
}
.process-step-img-2 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #e8e4dc 0%, #f5f2ea 55%, #c9d2cf 100%);
}
.process-step-img-3 {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(135deg, #d9c5a3 0%, #ece0c4 55%, #a4b58c 100%);
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-intro { position: static; }
  .process-body { max-width: none; }
  .process-steps { padding-inline-start: 48px; }
  .process-spine { inset-inline-start: 15px; }
  .process-marker { inset-inline-start: -42px; }
}
@media (max-width: 520px) {
  .process-cta { width: 100%; }
}

/* ── 24/7 Support panel ──────────────────────────────────────────────── */
.support-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.support-panel {
  background: #f7f4f0;
  border-radius: clamp(36px, 3.5vw, 48px);
  padding: clamp(36px, 4.8vw, 80px);
  max-width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}

.support-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}
.support-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.support-title-dark   { display: block; color: #2b2b2b; }
.support-title-accent { display: block; color: #779d7c; }
.support-body {
  margin: 0;
  color: #4a4a4a;
  font-size: 1.02rem;
  line-height: 1.65;
}
.support-hl { color: #779d7c; font-weight: 600; }

.support-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 22px);
  align-items: start;
}
.support-img {
  border-radius: 30px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.support-img-1 { margin-top: 50px; }
.support-img-2 { margin-top: 0; }
.support-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}
.support-img-1 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #dce4e8 0%, #eef3f5 55%, #b9c6cc 100%);
}
.support-img-2 {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(135deg, #e5c7bf 0%, #f2d9d0 55%, #c9a498 100%);
}

@media (max-width: 900px) {
  .support-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .support-content { max-width: none; }
  .support-img-1 { margin-top: 0; }
}
@media (max-width: 560px) {
  .support-images { grid-template-columns: 1fr; }
  .support-img { aspect-ratio: 4 / 3; }
}

/* ── Testimonials mosaic ─────────────────────────────────────────────── */
.mosaic-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
  overflow-x: hidden;
}

.mosaic-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-block-end: clamp(50px, 6vw, 80px);
}
.mosaic-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.mosaic-title-dark   { display: block; color: #2b2b2b; }
.mosaic-title-accent { display: block; color: #779d7c; }

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 480px;
  padding-block-start: 12px;
}
.mosaic-body {
  margin: 0;
  color: #4a4a4a;
  font-size: 1.02rem;
  line-height: 1.65;
}
.mosaic-hl { color: #779d7c; font-weight: 600; }
.mosaic-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 32px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease;
}
.mosaic-cta:hover { background: #000; }

.mosaic-wrap {
  position: relative;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.mosaic-row {
  display: flex;
  width: max-content;
  margin-bottom: clamp(14px, 1.4vw, 22px);
  will-change: transform;
}
.mosaic-row:last-child { margin-bottom: 0; }

.mosaic-row-1 { animation: mosaic-scroll-right 110s linear infinite; }
.mosaic-row-2 { animation: mosaic-scroll-left  110s linear infinite; }

@keyframes mosaic-scroll-right {
  from { transform: translateX(-33.333%); }
  to   { transform: translateX(0); }
}
@keyframes mosaic-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.mosaic-card {
  border-radius: clamp(28px, 2.8vw, 36px);
  flex: 0 0 auto;
  margin-inline-end: clamp(14px, 1.4vw, 22px);
  direction: rtl;
}

.mosaic-img {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.mosaic-img::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}
.mosaic-img-1 {
  flex: 0 0 clamp(300px, 32vw, 440px);
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #c8d0d6 0%, #e3e8ec 55%, #aab4bc 100%);
}
.mosaic-img-2 {
  flex: 0 0 clamp(320px, 34vw, 460px);
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(135deg, #c5d1c5 0%, #e4ede0 55%, #9fb09f 100%);
}
.mosaic-img-edge {
  flex: 0 0 clamp(180px, 20vw, 260px);
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.2), transparent 60%),
    linear-gradient(135deg, #e5c6b5 0%, #f1dacc 55%, #c69980 100%);
}

.mosaic-edge-a {
  flex: 0 0 clamp(90px, 10vw, 130px);
  min-height: 280px;
  background: #e2eadf;
}

.mosaic-review {
  background: var(--mint-light);
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 clamp(280px, 24vw, 340px);
  min-height: 280px;
  justify-content: space-between;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #ccd5cb, #8fb490);
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.review-name {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
}
.review-stars {
  color: #8fb490;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  line-height: 1;
}
.review-body {
  color: #4a4a4a;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.mosaic-partial-left  { background: #eceae3; }
.mosaic-partial-right { background: #e8ede6; }

@media (max-width: 960px) {
  .mosaic-intro { grid-template-columns: 1fr; }
  .mosaic-side { max-width: none; }
  .mosaic-row-1 { animation-duration: 70s; }
  .mosaic-row-2 { animation-duration: 70s; }
}
@media (prefers-reduced-motion: reduce) {
  .mosaic-row-1,
  .mosaic-row-2 { animation: none; }
}

/* ── FAQ accordion ───────────────────────────────────────────────────── */
.faq2-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.faq2-title {
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
  color: #2b2b2b;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.faq2-list {
  max-width: 1040px;
  margin-inline: auto;
}
.faq2-item {
  border-block-end: 1px solid #e2ddd2;
}
.faq2-item:first-child {
  border-block-start: 1px solid #e2ddd2;
}
.faq2-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(26px, 3vw, 40px) clamp(4px, 1vw, 12px);
  color: #2b2b2b;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.faq2-q:hover { color: #779d7c; }
.faq2-q::-webkit-details-marker,
.faq2-q::marker { display: none; content: ''; }

.faq2-icon {
  flex: 0 0 auto;
  width: clamp(24px, 2vw, 32px);
  height: clamp(24px, 2vw, 32px);
  position: relative;
}
.faq2-icon::before,
.faq2-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #2b2b2b;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq2-icon::before {
  width: 100%;
  height: 1.8px;
  transform: translate(-50%, -50%);
}
.faq2-icon::after {
  width: 1.8px;
  height: 100%;
  transform: translate(-50%, -50%);
}
.faq2-item[open] .faq2-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq2-a {
  padding: 0 clamp(4px, 1vw, 12px) clamp(24px, 3vw, 36px);
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 880px;
  animation: faq2-fade 0.3s ease;
}
.faq2-a p { margin: 0; }

@keyframes faq2-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Goal selection quiz ─────────────────────────────────────────────── */
.goal-section {
  background: #ffffff;
  padding: clamp(40px, 5vw, 70px) 0;
}
.goal-panel {
  background: #f7f4f0;
  border-radius: clamp(28px, 2.8vw, 40px);
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 44px);
  width: min(640px, calc(100% - 32px));
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 32px);
}
.goal-title {
  margin: 0;
  max-width: 700px;
  text-align: center;
  color: #2b2b2b;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.goal-options {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 14px);
  width: 100%;
  max-width: 460px;
}
.goal-option {
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 1.8vw, 24px);
  height: clamp(54px, 5.5vw, 66px);
  background: #ffffff;
  border: 1.5px solid #e2ddd2;
  border-radius: 14px;
  color: #2b2b2b;
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  font-weight: 600;
  text-align: start;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.goal-option:hover {
  border-color: #c5b38d;
  transform: translateY(-1px);
}
.goal-option:focus-visible {
  outline: 2px solid #779d7c;
  outline-offset: 3px;
}
.goal-option.is-selected {
  border-color: #779d7c;
  background: #f0f5ee;
}

.goal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  height: clamp(46px, 4.6vw, 54px);
  background: #2a2320;
  color: #ffffff;
  border-radius: 999px;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.18s ease, opacity 0.2s ease, transform 0.15s ease;
}
.goal-cta[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}
.goal-cta:hover { background: #000; transform: translateY(-1px); }

@media (max-width: 560px) {
  .goal-panel { min-height: 560px; }
  .goal-options { max-width: 100%; }
  .goal-cta { max-width: 100%; }
}

.trust-strip {
  background: var(--color-white);
  border-block-end: 1px solid var(--color-border);
  padding: 2rem 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.t-num { font-weight: 700; color: var(--color-primary-dark); font-size: 1.2rem; }
.t-label { font-size: 0.9rem; color: var(--color-text-muted); }

/* ── Results ───────────────────────────────────────────────────────────── */
.results { padding: var(--space-section) 0; background: var(--color-white); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.result-tile {
  margin: 0;
  background: var(--color-sand);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.result-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.result-img.r1 { background: linear-gradient(135deg, #c9e4e0, #25adb1); }
.result-img.r2 { background: linear-gradient(135deg, #f1ecdf, #c6a673); }
.result-img.r3 { background: linear-gradient(135deg, #e9f5f5, #0f8083); }
.result-img.r4 { background: linear-gradient(135deg, #eeece7, #bcaea8); }
.result-img.r5 { background: linear-gradient(135deg, #d0ebe9, #25adb1); }
.result-img.r6 { background: linear-gradient(135deg, #f7f4f0, #c6a673); }
.result-tile figcaption {
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.result-tile figcaption strong { color: var(--color-text); font-size: 1.05rem; }
.result-tile figcaption span { color: var(--color-primary-dark); font-weight: 600; font-size: 0.95rem; }
.disclaimer-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Science ───────────────────────────────────────────────────────────── */
.science {
  padding: var(--space-section) 0;
  background: var(--color-sand);
}
.science-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.science-visual { display: flex; justify-content: center; }
.science-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #c9e4e0 0%, #0f8083 100%);
  box-shadow: var(--shadow-md);
}
.science-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}
.science-points li {
  padding-inline-start: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.science-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 0.65em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.science-points strong { color: var(--color-text); }

/* ── Calculator ────────────────────────────────────────────────────────── */
.calculator { padding: var(--space-section) 0; background: var(--color-white); }
.calc-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  max-width: 980px;
  margin: 0 auto;
}
.calc-inputs {
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  gap: 2.2rem;
  align-content: center;
  background: var(--color-stone);
}
.calc-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--color-text);
}
.slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slider-wrap input[type="range"] {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: var(--color-sand-deep);
  outline: none;
  cursor: pointer;
  direction: ltr;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.slider-wrap input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  cursor: pointer;
}
.slider-wrap output {
  min-width: 80px;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  text-align: start;
}
.pill-group {
  display: inline-flex;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  border: 1px solid var(--color-border);
}
.pill {
  padding: 0.65em 1.2em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: background .2s, color .2s;
}
.pill:hover { color: var(--color-text); }
.pill.is-active {
  background: var(--color-primary);
  color: var(--color-white);
}
.calc-result {
  padding: clamp(32px, 5vw, 56px);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-result .calc-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}
.calc-range {
  font-size: clamp(2.8rem, 6.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.calc-range em {
  font-style: normal;
  font-size: 0.42em;
  font-weight: 600;
  opacity: 0.85;
  margin-inline-start: 0.2em;
}
.calc-note {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.calc-result .btn-primary {
  background: var(--color-white);
  color: var(--green-cta-dark);
}
.calc-result .btn-primary:hover {
  background: var(--color-sand);
  color: var(--green-cta-dark);
}

/* ── Stats — cream bg with teal numbers ────────────────────────────────── */
.stats {
  padding: var(--space-section) 0;
  background: var(--color-sand);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { padding: 1rem; }
.stat-num {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 22ch;
  margin: 0 auto;
}

/* ── Reviews carousel ──────────────────────────────────────────────────── */
.reviews { padding: var(--space-section) 0; background: var(--color-white); }
.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.2rem;
  padding: 0.5rem 0.2rem;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(500px, 100%);
  scroll-snap-align: center;
  background: var(--color-stone);
  padding: 2rem;
  border-radius: var(--radius-md);
}
.review .stars { margin-bottom: 0.8rem; font-size: 1.05rem; }
.review p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: var(--color-text);
}
.review footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.review footer strong { color: var(--color-text); }
.review footer span {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  font-weight: 600;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-primary-dark);
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.carousel-btn:hover { background: var(--color-primary-soft); border-color: var(--color-primary); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background .2s, width .2s;
}
.carousel-dot.is-active {
  background: var(--color-primary);
  width: 22px;
  border-radius: 999px;
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--space-section) 0;
  background: var(--color-sand);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .25s var(--ease);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.5rem 1.3rem;
  color: var(--color-text-muted);
}
.faq-body p { margin: 0; }

/* ── Guarantee ─────────────────────────────────────────────────────────── */
.guarantee { padding: var(--space-section) 0; background: var(--color-white); }
.guarantee-card {
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.guarantee-card h2 { color: var(--color-primary-dark); margin-bottom: 0.6rem; }
.guarantee-card p { margin: 0; color: var(--color-text-muted); }
.guarantee-badge {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Lead form ─────────────────────────────────────────────────────────── */
.lead {
  padding: var(--space-section) 0;
  background: var(--color-stone);
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.lead-copy { max-width: 500px; }
.lead-copy p { color: var(--color-text-muted); margin-bottom: 2rem; }

.wa-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-white);
  border: 2px solid #25D366;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background .2s;
}
.wa-box:hover {
  background: #F0FBF4;
  color: var(--color-text);
}
.wa-box .icon-wa {
  width: 36px; height: 36px;
  fill: #25D366;
  flex-shrink: 0;
}
.wa-box strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.wa-box span { color: var(--color-text-muted); font-size: 0.9rem; }

.lead-form {
  background: var(--color-white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 1rem;
}
.form-row { display: grid; gap: 0.4rem; }
.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row.two > div { display: grid; gap: 0.4rem; }
.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-row input {
  padding: 0.9em 1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-white);
  transition: border-color .2s;
}
.form-row input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  cursor: pointer;
}
.check input { margin-top: 4px; accent-color: var(--color-primary); }
.check a { color: var(--color-primary-dark); text-decoration: underline; }
.form-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
  text-align: center;
}
.form-status.is-success { color: var(--color-success); font-weight: 600; }
.form-status.is-error { color: #D14747; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: #ffffff;
  color: var(--color-text-muted);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--color-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}
.site-footer .logo {
  color: var(--color-primary-dark);
  margin-bottom: 0.7rem;
}
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  color: var(--color-text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--color-primary-dark); }
.footer-legal { padding-top: 1.5rem; }
.footer-legal .disclaimer {
  font-size: 0.78rem;
  color: var(--color-muted-warm);
  margin: 0;
  line-height: 1.6;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .collage { width: calc(100% - 24px); }
}

@media (max-width: 960px) {
  .science-grid,
  .lead-grid,
  .calc-card { grid-template-columns: 1fr; }
  .calc-card { max-width: 580px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { margin-inline: auto; }
  .science-photo { max-width: 360px; }
}

@media (max-width: 720px) {
  .nav-wrap .btn { padding: 0.55em 1.2em; font-size: 0.85rem; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: start; gap: 1.5rem; }
  .form-row.two { grid-template-columns: 1fr; }
  .review { padding: 1.5rem; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-benefits li { font-size: 0.95rem; }
}

/* Tablet: 2-column collage */
@media (max-width: 960px) {
  .collage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 0 20px;
  }
  .collage-cta {
    position: static;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 4px;
  }
  .collage-img {
    position: static;
    width: auto;
    height: 300px;
    left: auto; right: auto; top: auto; bottom: auto;
  }
  .image6 { grid-column: 1 / -1; height: 340px; }
}

/* Mobile: single column */
@media (max-width: 600px) {
  .collage { grid-template-columns: 1fr; gap: 14px; padding: 0 16px; }
  .collage-img { height: 280px; }
  .image6 { grid-column: auto; height: 260px; }
}
