/* ====================================================
   MIXIMUM — Homepage (front-page.php)
   Design matches existing brand: Heebo, #B7D304, #000, border-radius:200px 0px
   ==================================================== */

/* ── Container override ── */
body.home #content,
body.home #content .col-full {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Wrapper ── */
.mhp-wrapper {
  font-family: 'Heebo', 'Arial', sans-serif;
  direction: rtl;
  text-align: right;
  color: #000;
  overflow-x: hidden;
}

.mhp-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ── Shared typography ── */
.mhp-section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

.mhp-section-sub {
  font-size: 18px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 32px;
}

.mhp-micro {
  font-size: 13px;
  color: #888;
  margin-top: 12px;
}

.mhp-fine {
  font-size: 12px;
  color: #aaa;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── BRAND BUTTONS — match existing theme style ── */
.mhp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  font-family: 'Heebo', 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  white-space: nowrap;
  z-index: 1;
}

/* Primary — lime green brand color */
.mhp-btn--primary {
  background: #B7D304;
  color: #1a2e00 !important;
  border-radius: 100px;
}

.mhp-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(.785,.135,.15,.86);
}

.mhp-btn--primary:hover::before {
  transform: scaleX(1);
}

.mhp-btn--primary:hover {
  color: #fff !important;
}

/* Secondary — clean ghost */
.mhp-btn--secondary {
  background: transparent;
  color: #111 !important;
  border: 2px solid #222;
  border-radius: 100px;
}

.mhp-btn--secondary:hover {
  background: #111;
  color: #fff !important;
}

/* Small */
.mhp-btn--small {
  height: 40px;
  padding: 0 20px;
  font-size: 15px;
  border-radius: 100px;
  background: #000;
  color: #fff !important;
}

/* Large */
.mhp-btn--large {
  height: 60px;
  padding: 0 48px;
  font-size: 20px;
}

/* White — used on dark backgrounds (bundle card) */
.mhp-btn--white {
  background: #fff;
  color: #000 !important;
  border-radius: 100px;
}

.mhp-btn--white:hover {
  background: #B7D304;
  color: #000 !important;
}

/* Stars */
.mhp-stars { color: #B7D304; font-size: 16px; display: block; margin-bottom: 6px; }
.mhp-stars--center { text-align: center; color: #666; font-size: 14px; margin-bottom: 28px; }

/* ══════════════════════════════════════════════════
   1. ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════ */
.mhp-announce {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Heebo', 'Arial', sans-serif;
}

.mhp-announce__track { position: relative; width: 100%; height: 38px; }
.mhp-announce__msg {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mhp-announce__msg.is-active { opacity: 1; }

/* ══════════════════════════════════════════════════
   2. HERO — bread banner as full background
   ══════════════════════════════════════════════════ */
/* ── Ken Burns keyframe ── */
@keyframes mhp-ken-burns {
  from { transform: scale(1)    translate(0,      0); }
  to   { transform: scale(1.07) translate(-1.2%, 0.4%); }
}

.mhp-hero {
  position: relative;
  overflow: hidden;               /* clips the scaled image */
  min-height: clamp(320px, 36vw, 500px);
  display: flex;
  align-items: center;
}

/* Ken Burns image layer */
.mhp-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  z-index: 0;
}

.mhp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  transform-origin: 55% 50%;     /* bias zoom toward center-left food area */
  backface-visibility: hidden;   /* force GPU compositing layer */
  will-change: transform;
  animation: mhp-ken-burns 14s ease-in-out infinite alternate;
}

/* Subtle vignette to anchor the content card on varied backgrounds */
.mhp-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.04) 50%,
    transparent 100%
  );
  pointer-events: none;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .mhp-hero__bg img {
    animation: none;
    will-change: auto;
  }
}

/* Full-width container that hosts the content box */
.mhp-hero__container {
  position: relative;
  z-index: 2;                     /* above image and vignette */
  display: flex;
  align-items: center;
  width: 100%;
}

.mhp-hero__content {
  background: rgba(255,255,255,0.93);
  padding: 32px 40px 32px 44px;
  max-width: 540px;
  margin-right: 8vw;
  border-radius: 0 0 0 48px;
}

/* Stamp + sub-text side by side */
.mhp-hero__mid {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.mhp-hero__sub {
  flex: 1;
  margin-bottom: 0;
}

/* Flex row wrapping the italic headline + stamp */
.mhp-hero__em-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* The circular stamp image */
.mhp-hero__stamp {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  display: block;
}

.mhp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.mhp-hero__headline {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: #000;
  margin: 0 0 14px;
}

.mhp-hero__headline em {
  color: #B7D304;
  font-style: normal;
}

.mhp-hero__sub {
  font-size: 17px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 24px;
}

.mhp-hero__mid .mhp-hero__sub {
  margin-bottom: 0;
}

.mhp-hero__ctas {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}

.mhp-hero__ctas .mhp-btn {
  padding: 0 22px;
  font-size: 16px;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   3. TRUST BAR — matching .oc-icon-text-repeater style
   ══════════════════════════════════════════════════ */
.mhp-trust {
  background: #fff;
  padding: 40px 0 28px;
  border-top: 1px solid #eee;
}

.mhp-trust__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  gap: 0;
  flex-wrap: wrap;
}

/* The horizontal line running through center — brand signature */
.mhp-trust__inner::before {
  content: "";
  position: absolute;
  top: 36px; /* center of icon box */
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  z-index: 0;
}

.mhp-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  background: #fff;
  z-index: 2;
  position: relative;
  text-align: center;
  min-width: 140px;
}

.mhp-trust__icon {
  width: 72px;
  height: 72px;
  border: 2.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.mhp-trust__icon svg {
  width: 38px;
  height: 38px;
}

.mhp-trust__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  max-width: 100px;
}

/* ══════════════════════════════════════════════════
   4. PAIN — black background
   ══════════════════════════════════════════════════ */
/* ══ 4. PAIN — split panel ══ */
.mhp-pain {
  display: grid;
  /*
   * direction:ltr forces CSS grid to honour LTR column order
   * (first child = LEFT), overriding the inherited RTL.
   * Each child panel restores direction:rtl for its own content.
   */
  direction: ltr;
  grid-template-columns: 46fr 54fr;
  min-height: 540px;
}

/* ── LEFT — dark cinematic quote ── */
.mhp-pain__left {
  direction: rtl;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 52px;
}

.mhp-pain__quote {
  max-width: 380px;
  width: 100%;
}

/* Small muted label lines */
.mhp-pain__left .mhp-pain__label {
  font-size: 40px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.42) !important;
  margin: 0 0 8px !important;
  line-height: 1 !important;
}

.mhp-pain__left .mhp-pain__label--gap { margin-top: 32px !important; }

/* BIG typewriter lines */
.mhp-pain__left .mhp-pain__big {
  display: block !important;
  font-size: 58px !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
  line-height: 1.06 !important;
  color: #fff !important;
  margin: 0 !important;
  min-height: 2.12em !important;
}

/* Second line typed in brand green */
.mhp-pain__left .mhp-pain__big--b { color: #B7D304 !important; }

.mhp-pain__accent {
  display: block;
  width: 180px;
  height: 20px;
  background: url('/wp-content/uploads/homepage-why/brushstroke.svg') no-repeat center / contain;
  margin-top: 24px;
}

/* ── RIGHT — cream panel ── */
.mhp-pain__right {
  direction: rtl;
  background: #f8f5ef;
  display: flex;
  align-items: center;
}

.mhp-pain__inner {
  padding: 56px 60px;
  width: 100%;
}

.mhp-pain__title {
  font-size: clamp(32px, 3.2vw, 48px); /* ← כוון כאן */
  font-weight: 900;
  color: #000;
  margin: 0 0 24px;
}

.mhp-pain__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mhp-pain__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #d8d3c8;
}

.mhp-pain__item:first-child { border-top: 1px solid #d8d3c8; }
.mhp-pain__item:last-child  { border-bottom: none; }

.mhp-pain__item-text {
  flex: 1;
  font-size: 19px; /* ← כוון כאן */
  color: #333;
  line-height: 1.65;
  margin: 0;
}

/* Pain item thumbnail image */
.mhp-pain__icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.mhp-pain__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════
   5. HOW IT WORKS — matching existing .how-works style
   ══════════════════════════════════════════════════ */
.mhp-how {
  background: #fff;
  padding: 80px 0;
}

/* Centre the section heading */
.mhp-how .mhp-section-title,
.mhp-how .mhp-section-sub {
  text-align: center;
}

.mhp-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  position: relative;
  margin-top: 48px;
}

/* Connector line — gray base */
.mhp-how__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: #AEAEAE;
  z-index: 0;
}

/* Connector line — yellow-green fill, anchored at step 1 (right in RTL) */
.mhp-how__steps::after {
  content: "";
  position: absolute;
  top: 36px;
  right: 16%;
  height: 2px;
  background: #B7D304;
  z-index: 1;
  width: 0;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.mhp-how__steps[data-active="2"]::after { width: 34%; }
.mhp-how__steps[data-active="3"]::after { width: 68%; }

.mhp-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.35s;
}

/* Dim inactive steps */
.mhp-how__step:not(.is-active) {
  opacity: 0.5;
}

/* Pop animation for the activated circle */
@keyframes mhp-step-pop {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(183,211,4,0.5); }
  40%  { transform: scale(1.24); box-shadow: 0 0 0 14px rgba(183,211,4,0.12); }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(183,211,4,0.18); }
}

/* Step number bubble */
.mhp-how__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #AEAEAE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #AEAEAE;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
}

/* Active step — full green fill with bounce */
.mhp-how__step.is-active .mhp-how__num {
  animation: mhp-step-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  background: #B7D304;
  border-color: #B7D304;
  color: #000;
}

.mhp-how__illustration {
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mhp-how__step.is-active .mhp-how__illustration {
  transform: scale(1.06);
}

.mhp-how__illustration svg {
  width: 120px;
  height: 120px;
}

.mhp-how__verb {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.mhp-how__step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Payoff text — hidden by default, revealed by typewriter on step 3 */
.mhp-how__payoff {
  font-size: 13px !important;
  font-weight: 700;
  color: #B7D304 !important;
  margin-top: 8px !important;
  min-height: 20px;
  white-space: nowrap;
}

/* Tagline box — matching .home-shefs black section */
.mhp-how__tagline {
  background: #000;
  color: #fff;
  padding: 28px 40px;
  margin-top: 56px;
  border-radius: 0 0 48px 0;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}

.mhp-how__tagline strong {
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}

.mhp-how__tagline span { color: #B7D304; }

/* ══════════════════════════════════════════════════
   6. BIG QUOTE
   ══════════════════════════════════════════════════ */
.mhp-quote {
  background: #f4f7e4;
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mhp-quote__inner {
  position: relative;
  z-index: 2;
}

.mhp-quote__block {
  margin: 0;
  padding: 0;
}

/* Quote marks positioned directly on the text — not floating at page edges */
.mhp-quote__text {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  margin: 0 auto 32px;
  max-width: 860px;
  position: relative;
}

/* Opening " — top-right, right next to the first word */
.mhp-quote__text::before {
  content: "\201C";
  position: absolute;
  top: -24px;
  right: -16px;
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
  color: #B7D304;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

/* Closing " — bottom-left, right after the last word */
.mhp-quote__text::after {
  content: "\201D";
  position: absolute;
  bottom: -56px;
  left: -16px;
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
  color: #B7D304;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

/* Footer: stars + avatar + name stacked centrally */
.mhp-quote__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mhp-quote__stars {
  color: #B7D304;
  font-size: 20px;
  letter-spacing: 3px;
}

.mhp-quote__attr {
  display: flex;
  align-items: center;
  gap: 14px;
  direction: rtl;
}

/* Small avatar — present but not dominant */
.mhp-quote__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #B7D304;
  flex-shrink: 0;
}

.mhp-quote__cite {
  font-style: normal;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mhp-quote__cite strong,
.mhp-quote__cite {
  font-size: 17px;
  font-weight: 700;
  color: #B7D304;
}

.mhp-quote__cite span {
  font-size: 13px;
  color: #888;
  font-weight: 400;
  display: block;
}

/* ══════════════════════════════════════════════════
   7. WHY NOT READY-MADE
   ══════════════════════════════════════════════════ */
.mhp-why {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.mhp-why .mhp-section-title,
.mhp-why .mhp-section-sub { text-align: center; }

.mhp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 28px;
}

/* Box base state */
.mhp-why__item {
  padding: 28px 26px;
  border: 2px solid #e8e8e8;
  border-right: 3px solid #B7D304;
  border-radius: 0 0 18px 0;
  transition: background 0.35s ease,
              color 0.35s ease,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.35s ease;
  cursor: default;
}

/* Flash animation — bounce fill */
@keyframes mhp-why-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.04); }
  58%  { transform: scale(0.985); }
  78%  { transform: scale(1.015); }
  100% { transform: scale(1); }
}

.mhp-why__item.is-active {
  background: #f5f8e3;
  border-color: #B7D304;
  border-right-width: 5px;
  color: #000;
  box-shadow: 0 6px 24px rgba(183,211,4,0.18);
  animation: mhp-why-bounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.mhp-why__item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
  transition: color 0.3s;
}

.mhp-why__item p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s;
}

.mhp-why__item.is-active p { color: #111; }

/* Closing text — hidden until JS reveals via typewriter */
.mhp-why__close {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  padding-top: 16px;
}

.mhp-why__close.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Closing line — 2/3 of .mhp-section-title (clamp 26–42px → 2/3 = ~17–28px scaled up) */
.mhp-why__close-l1 {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

/* "עולם אחר" — strong green background, black text */
.mhp-why__tw-accent {
  background: #B7D304;
  color: #000;
  padding: 2px 12px;
  border-radius: 6px;
  display: inline;
}

/* Blinking cursor while typewriter is running */
.mhp-why__close-l1.is-typing::after {
  content: "|";
  animation: mhp-cursor-blink 0.65s step-end infinite;
  color: #B7D304;
  font-weight: 300;
}

@keyframes mhp-cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Smoke / steam wisps on the baking-smell box ── */
.mhp-why__item--smoke {
  overflow: visible;
  position: relative;
}

@keyframes mhp-wisp {
  0%   { transform: translateY(0)   translateX(0)    scaleX(1);   opacity: 0; }
  15%  { opacity: 0.55; }
  60%  { transform: translateY(-52px) translateX(6px)  scaleX(1.3); opacity: 0.3; }
  100% { transform: translateY(-88px) translateX(-4px) scaleX(0.8); opacity: 0; }
}

.mhp-why__smoke {
  position: absolute;
  top: 0;
  right: 28px;
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.mhp-why__smoke span {
  display: block;
  width: 10px;
  height: 22px;
  border-radius: 50%;
  background: rgba(183,211,4,0.7);
  filter: blur(4px);
  opacity: 0;
  animation: none;
}

.mhp-why__item.is-active .mhp-why__smoke span:nth-child(1) {
  animation: mhp-wisp 1.4s ease-out 0.1s both;
}
.mhp-why__item.is-active .mhp-why__smoke span:nth-child(2) {
  animation: mhp-wisp 1.6s ease-out 0.3s both;
}
.mhp-why__item.is-active .mhp-why__smoke span:nth-child(3) {
  animation: mhp-wisp 1.3s ease-out 0.5s both;
}

/* ══════════════════════════════════════════════════
   7b. WHY NOT READY-MADE — redesign (carousel + numbered list)
   ══════════════════════════════════════════════════ */
.mhp-why2 {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

/* ── Two-column grid ── */
.mhp-why2__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  direction: ltr; /* carousel left, content right */
}

/* ── Carousel ── */
.mhp-why2__carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: #f0ede6;
}

.mhp-why2__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.mhp-why2__slide.is-active { opacity: 1; }

.mhp-why2__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

/* ── Content column: stretches to carousel height, list fills remaining space ── */
.mhp-why2__content {
  direction: rtl;
  display: flex;
  flex-direction: column;
}

/* Header inside column */
.mhp-why2__header { margin: 0 0 20px; }

.mhp-why2__title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin: 0 0 10px;
}

.mhp-why2__sub {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Statement block */
.mhp-why2__statement { flex-shrink: 0; margin: 0 0 20px; }

.mhp-why2__stmt-line {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 800;
  color: #111;
  line-height: 1.6;
  margin: 0 0 6px;
}

.mhp-why2__stmt-plain { color: #777; font-weight: 600; }

.mhp-why2__stmt-text {
  display: inline;
  font-size: clamp(24px, 2.8vw, 38px);
  background: rgba(183, 211, 4, 0.22);
  padding: 2px 10px;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.mhp-why2__brushstroke {
  display: block;
  width: 44%;
  max-height: 16px;
  height: auto;
  margin-top: 6px;
  opacity: 0.85;
}

/* ── Numbered list — fills remaining height ── */
.mhp-why2__list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mhp-why2__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mhp-why2__num {
  font-size: 38px;
  font-weight: 900;
  color: #e4e0d8;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  text-align: center;
  letter-spacing: -1px;
}

.mhp-why2__body { flex: 1; }

.mhp-why2__heading {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.mhp-why2__body p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   DRAWER — base (trial info drawer + product drawer)
   ══════════════════════════════════════════════════ */

.mxm-drawer {
  position: fixed;
  inset: 0;
  z-index: 99998;
  visibility: hidden;
  pointer-events: none;
}
.mxm-drawer--open {
  visibility: visible;
  pointer-events: auto;
}
.mxm-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
}
.mxm-drawer--open .mxm-drawer__overlay { opacity: 1; }

.mxm-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 460px;
  max-width: 92vw;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}
.mxm-drawer--open .mxm-drawer__panel { transform: translateX(0); }

.mxm-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
  min-height: 56px;
}
.mxm-drawer__close {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mxm-drawer__close:hover { background: #f0f0f0; }

.mxm-drawer__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  overscroll-behavior: contain;
}
.mxm-drawer__footer {
  flex-shrink: 0;
  border-top: 1px solid #eee;
  padding: 14px 20px;
  background: #fff;
  direction: rtl;
}
.mxm-drawer__footer-btns { margin-top: 8px; }

@media (max-width: 520px) {
  .mxm-drawer__panel { width: 100%; max-width: 100%; }
  .mxm-dc__gslide img { height: 180px; }
}

/* ══════════════════════════════════════════════════
   DRAWER — product detail content (mxm-dc)
   ══════════════════════════════════════════════════ */

.mxm-dc { padding: 0 0 24px; direction: rtl; background: #fff; color: #111; }
.mxm-dc[hidden] { display: none; }

.mxm-dc__gallery { position: relative; background: #f8f5ef; overflow: hidden; }
.mxm-dc__gtrack { display: flex; }
.mxm-dc__gslide { flex: 0 0 100%; }
.mxm-dc__gslide img { width: 100%; height: 260px; object-fit: cover; display: block; }
.mxm-dc__gdots { display: flex; justify-content: center; gap: 6px; padding: 10px 0; }
.mxm-dc__gdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ccc; border: none; cursor: pointer; padding: 0; transition: background 0.2s;
}
.mxm-dc__gdot--active { background: #B7D304; }

.mxm-dc__meta {
  padding: 18px 20px 10px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
.mxm-dc__name { font-size: 19px; font-weight: 700; color: #111; margin: 0; line-height: 1.3; }
.mxm-dc__price { font-size: 15px; font-weight: 600; color: #555; white-space: nowrap; }

.mxm-dc__stats {
  display: flex; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  margin: 0 0 4px;
}
.mxm-dc__stat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 10px 6px; text-align: center; border-left: 1px solid rgba(255,255,255,0.15);
}
.mxm-dc__stat:last-child { border-left: none; }
.mxm-dc__stat strong { font-size: 16px; font-weight: 700; color: #fff !important; display: block; }
.mxm-dc__stat span { font-size: 10px; color: rgba(255,255,255,0.75) !important; margin-top: 2px; display: block; }

.mxm-dc__icons { display: flex; gap: 12px; padding: 14px 20px; flex-wrap: wrap; border-bottom: 1px solid #f0f0f0; }
.mxm-dc__icon-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; font-size: 11px; color: #555; text-align: center; min-width: 48px;
}
.mxm-dc__icon-item img { width: 32px; height: 32px; object-fit: contain; }

.mxm-dc__short-desc {
  padding: 14px 20px; font-size: 14px; line-height: 1.65;
  color: #444; margin: 0; border-bottom: 1px solid #f0f0f0;
}

.mxm-dc__review-cta { padding: 8px 20px; text-align: right; }
.mxm-dc__review-cta .miximum-open-review-btn {
  background: none; border: none; font-size: 13px; color: #888;
  cursor: pointer; padding: 6px 0; text-decoration: underline; text-underline-offset: 2px;
}

.mxm-dc__section { padding: 14px 20px; border-top: 1px solid #f0f0f0; direction: rtl; }
.mxm-dc__section-title {
  font-size: 12px; font-weight: 700; color: #999;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px;
}
.mxm-dc__section-body { font-size: 14px; line-height: 1.65; color: #444; margin: 0; }
.mxm-dc__prep-list { padding-right: 18px; padding-left: 0; margin: 0; font-size: 14px; line-height: 1.8; color: #333; }
.mxm-dc__prep-header { font-size: 13px; font-weight: 700; color: #B7D304; margin: 14px 0 4px; padding: 0; }
.mxm-dc__work-time { font-size: 12px; color: #888; margin-top: 6px; }
.mxm-dc__guide-text { font-size: 14px; line-height: 1.6; color: #444; margin-bottom: 10px; }
.mxm-dc__video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; }
.mxm-dc__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mxm-dc__need { font-size: 14px; line-height: 1.7; color: #333; margin-bottom: 6px; }

.mxm-dc__stars { display: flex; align-items: center; gap: 2px; }
.mxm-dc__star { color: #ddd; font-size: 16px; }
.mxm-dc__star--on { color: #f5a623; }
.mxm-dc__rating-txt { font-size: 13px; color: #666; margin-right: 6px; }

.mxm-dc__accordion { border-top: 1px solid #f0f0f0; }
.mxm-dc__acc-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: none; border: none; font-size: 14px; font-weight: 600;
  color: #222; cursor: pointer; text-align: right; direction: rtl;
}
.mxm-dc__acc-icon { font-size: 20px; color: #B7D304; flex-shrink: 0; transition: transform 0.2s; }
.mxm-dc__acc-toggle--open .mxm-dc__acc-icon { transform: rotate(45deg); }
.mxm-dc__acc-body { padding: 0 20px 16px; font-size: 14px; line-height: 1.7; color: #444; direction: rtl; }
.mxm-dc__acc-body[hidden] { display: none; }
.mxm-dc__benefits { line-height: 1.8; }
.mxm-dc__label-img { width: 100%; max-width: 280px; display: block; margin: 0 auto 12px; border-radius: 8px; }
.mxm-dc__spacer { height: 24px; }

/* Quantity controls */
.mxm-qty-wrap {
  display: flex; align-items: center;
  border: 1.5px solid #ddd; border-radius: 50px; overflow: hidden;
  width: fit-content; margin-bottom: 10px; direction: rtl;
}
.mxm-qty-btn {
  width: 40px; height: 40px; background: none; border: none; font-size: 20px;
  cursor: pointer; color: #333; display: flex; align-items: center; justify-content: center;
  touch-action: manipulation; transition: background 0.15s;
}
.mxm-qty-btn:hover { background: #f5f5f5; }
.mxm-qty-input {
  width: 44px; text-align: center; border: none;
  border-right: 1.5px solid #ddd; border-left: 1.5px solid #ddd;
  font-size: 15px; font-weight: 600; color: #111; background: #fff;
  padding: 0; height: 40px; -moz-appearance: textfield;
}
.mxm-qty-input::-webkit-outer-spin-button,
.mxm-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Primary CTA button */
.mxm-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 50px; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: background 0.2s, transform 0.1s;
  touch-action: manipulation;
}
.mxm-btn--primary { background: #B7D304; color: #1a1a1a; }
.mxm-btn--primary:hover { background: #a0bb00; }
.mxm-btn--full { width: 100%; }

/* ══════════════════════════════════════════════════
   Trial drawer — two-view navigation
   ══════════════════════════════════════════════════ */

/* View wrapper — fills the panel height after the header */
.mxm-trial-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}
.mxm-trial-view[hidden] { display: none; }

/* Overview content padding */
.mxm-trial-overview-content {
  padding: 22px;
  direction: rtl;
}

/* Product list (replaces accordion) */
.mxm-trial-product-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.mxm-trial-product-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  text-align: right;
  direction: rtl;
  transition: background 0.15s;
}
.mxm-trial-product-btn:hover { background: #f8f8f5; color: #111; }

.mxm-trial-product-btn__arrow {
  color: #B7D304;
  font-size: 17px;
  flex-shrink: 0;
}

/* Back button */
.mxm-drawer__back {
  background: none;
  border: none;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 8px;
  transition: background 0.15s;
  touch-action: manipulation;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.mxm-drawer__back:hover { background: #f0f0f0; color: #111; }

/* Tabs row */
.mxm-trial-tabs {
  display: flex;
  flex-shrink: 0;
  border-bottom: 1px solid #e8e8e8;
  overflow-x: auto;
  direction: rtl;
  scrollbar-width: none;
  background: #fff;
}
.mxm-trial-tabs::-webkit-scrollbar { display: none; }

.mxm-trial-tab {
  flex-shrink: 0;
  padding: 13px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.mxm-trial-tab.is-active {
  color: #111;
  border-bottom-color: #B7D304;
}
.mxm-trial-tab:hover { color: #333; }

.mhp-why2__tagline {
  text-align: center;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: #111;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

/* ══════════════════════════════════════════════════
   8. PRODUCTS
   ══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   8. PATHS — Trial bundle vs. Build your own
   ══════════════════════════════════════════════════ */
.mhp-paths {
  background: #f8f5ef;
  padding: 88px 0;
}

.mhp-paths__title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  text-align: center;
  margin: 0 0 14px;
}

.mhp-paths__sub {
  text-align: center;
  font-size: 17px;
  color: #555;
  margin: 0 0 52px;
  line-height: 1.6;
}

/* Two-column grid — trial card wider */
.mhp-paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Returning-user layout: atmosphere images left, builder right */
.mhp-paths__grid--returning {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.mhp-paths__atmo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.mhp-paths__atmo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.mhp-paths__atmo-slide.is-active { opacity: 1; }

.mhp-paths__atmo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Base card ── */
.mhp-paths__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: relative;
}

/* ── Trial card (dominant) ── */
.mhp-paths__card--trial {
  border: 2px solid #B7D304;
}

.mhp-paths__badge {
  display: inline-flex;
  align-items: center;
  background: #B7D304;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.mhp-paths__card-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin: 0 0 10px;
  color: #111;
}

.mhp-paths__card-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Product thumbnails — 2×2 grid */
.mhp-paths__trial-img {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  pointer-events: none;
  user-select: none;
}

.mhp-paths__trial-img img {
  width: 100%;
  max-height: 280px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Price */
.mhp-paths__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.mhp-paths__price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #111;
  line-height: 1;
}

/* Benefit bar — subtle, not shouting */
.mhp-paths__benefit {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  border-top: 1px dashed #d0ccc4;
  border-bottom: 1px dashed #d0ccc4;
  border-radius: 0;
  padding: 10px 0;
  margin: 0 0 16px;
}

.mhp-paths__benefit-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #777;
  line-height: 1.4;
}

.mhp-paths__benefit strong { color: #333; }
.mhp-paths__benefit svg { flex-shrink: 0; opacity: 0.5; }

.mhp-paths__coupon-note {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin: 0;
}

/* CTAs */
.mhp-paths__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-bottom: 14px;
}

.mhp-paths__link-secondary {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #3a5000;
  text-decoration: none;
  background: #e8fca0;
  border: 2px solid #b0d000;
  border-radius: 100px;
  cursor: pointer;
  padding: 14px 18px;
  width: 100%;
  font-family: inherit;
  line-height: 1.3;
  box-sizing: border-box;
}

.mhp-paths__lead-success {
  text-align: center;
  padding: 18px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #3a5000;
  background: #f0ffd0;
  border: 1px solid #b0d000;
  border-radius: 12px;
}

/* Lead popup — centered overlay after form submit */
#mhp-lead-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mhp-popup-in 0.3s ease;
}
@keyframes mhp-popup-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.mhp-lead-popup__box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 28px;
  text-align: center;
  max-width: 320px;
  width: 88%;
  direction: rtl;
  animation: mhp-popup-scale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes mhp-popup-scale {
  from { transform: scale(0.85); }
  to   { transform: scale(1); }
}
.mhp-lead-popup__check {
  width: 64px;
  height: 64px;
  background: #B7D304;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1a1a1a;
  margin: 0 auto 16px;
}
.mhp-lead-popup__title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.mhp-lead-popup__sub {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0 0 20px;
}
.mhp-lead-popup__bar {
  height: 4px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
}
.mhp-lead-popup__fill {
  height: 100%;
  width: 0;
  background: #B7D304;
  border-radius: 99px;
  transition: width 2.95s linear;
}

.mhp-paths__link-secondary:hover,
.mhp-paths__link-secondary:focus {
  background: #e4faa8;
  color: #3a5000;
  text-decoration: none;
}

/* Secondary add-to-cart — underlined link style */
.mhp-paths__add-link {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  width: 100%;
  font-family: inherit;
  margin-top: 6px;
}
.mhp-paths__add-link:hover,
.mhp-paths__add-link:focus {
  color: #1a1a1a;
  background: none !important;
  text-decoration: underline;
}

/* Expandable lead panel */
.mhp-paths__lead {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.mhp-paths__lead.is-open {
  max-height: 420px;
  opacity: 1;
}

.mhp-lead-close {
  display: none;
  width: 100%;
  background: none;
  border: none;
  color: #999;
  font-size: 13px;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  text-align: left;
  padding: 8px 0 0;
}

.mhp-paths__lead.is-open .mhp-lead-close { display: block; }

.mhp-paths__lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  margin-top: 18px;
}

.mhp-paths__legal {
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ── BYOB card (secondary) ── */
.mhp-paths__card--byob {
  background: #f2f0e7;
  border: none;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

/* Push CTA to bottom — both cards */
.mhp-paths__card--byob .mhp-paths__cta {
  margin-top: auto;
  margin-bottom: 50px;
}
.mhp-paths__card--trial .mhp-paths__price-row {
  margin-top: auto;
}

/* BYOB card — box image blends into cream background */
.mhp-byob__img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 280px;
}

.mhp-byob__img img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* BYOB card — three features row */
.mhp-byob__features {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
}

.mhp-byob__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}

.mhp-byob__feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ede8db;
  overflow: hidden;
  flex-shrink: 0;
}

.mhp-byob__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mhp-byob__feature-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* BYOB CTA — same shape as .mhp-paths__link-secondary, stronger green */
.mhp-btn--lime {
  display: block !important;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1a2e00 !important;
  text-decoration: none;
  background: #B7D304;
  border: 2px solid #9db800;
  border-radius: 100px;
  cursor: pointer;
  padding: 14px 18px;
  width: 100%;
  height: auto;
  font-family: inherit;
  line-height: 1.3;
  box-sizing: border-box;
  transition: background 0.2s;
}
.mhp-btn--lime:hover {
  background: #a3bc00;
  color: #1a2e00 !important;
  text-decoration: none;
}

/* "מה כולל המארז?" — green button matching brand */
.mxm-trial-info-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 8px 18px;
  font-family: 'Heebo', 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mxm-trial-info-btn:hover { background: #333; }

/* Shipping note near price */
.mhp-paths__shipping-note {
  font-size: 11px;
  color: #999;
  display: block;
  margin-top: 3px;
  font-weight: 400;
}

/* Benefit row — more prominent */
.mhp-paths__benefit-main {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111 !important;
  line-height: 1.5 !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mhp-paths__grid { grid-template-columns: 1fr; }
  .mhp-paths__card { padding: 28px 22px 24px; }

  /* Trial bundle image — contain transparent PNG, let height be natural */
  .mhp-paths__trial-img { height: auto; overflow: visible; }
  .mhp-paths__trial-img img,
  .mhp-paths__trial-img picture img { width: 100%; height: auto; object-fit: contain; }
}

/* ══════════════════════════════════════════════════
   9. TESTIMONIALS — matching .home-testimonials style
   ══════════════════════════════════════════════════ */
.mhp-testimonials {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.mhp-testimonials .mhp-section-title,
.mhp-testimonials .mhp-section-sub { text-align: center; }

/* Stars row — green */
.mhp-stars--center { color: #B7D304 !important; }

/* Subtitle typewriter */
.mhp-testi__sub-accent {
  background: #B7D304;
  color: #000;
  padding: 2px 10px;
  border-radius: 6px;
  display: inline;
}
.mhp-testi__sub.is-typing::after {
  content: "|";
  animation: mhp-cursor-blink 0.65s step-end infinite;
  color: #B7D304;
  font-weight: 300;
}

.mhp-testi-nav { display: none; }

.mhp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: right;
  margin-top: 48px;
}

.mhp-testi-card {
  background: #fbfbfb;
  padding: 40px 32px 28px;
  position: relative;
  border-radius: 0 0 24px 0;
}

/* Quote icon — inline SVG inside .mhp-testi-card__quote */
.mhp-testi-card__quote {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.mhp-testi-card__quote svg {
  width: 36px;
  height: 28px;
  display: block;
}

.mhp-testi-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.65;
  margin: 0 0 16px;
  min-height: 100px;
}

.mhp-testi-card__author {
  color: #B7D304;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  position: relative;
  padding-top: 16px;
}

/* Yellow-green line matching .home-testimonials .test-writer */
.mhp-testi-card__author::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32px;
  right: -32px;
  height: 1px;
  background: #B7D304;
}

.mhp-testi-card__author strong {
  font-weight: normal;
  background: #fbfbfb;
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

.mhp-testi-card__role,
.mhp-testi-card__author span {
  font-size: 13px;
  color: #aaa;
  display: block;
  background: #fbfbfb;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════
   10. LEAD MAGNET
   ══════════════════════════════════════════════════ */
.mhp-lead {
  background: #f2f2f3;
  padding: 80px 0;
}

.mhp-lead__box {
  background: #fff;
  border-top: 4px solid #B7D304;
  padding: 40px 48px;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 0 0 48px 0;
}

.mhp-lead__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.mhp-lead__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.mhp-lead__title em { color: #B7D304; font-style: normal; }

.mhp-lead__sub {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 24px;
}

.mhp-lead__inner {
  background: #f8f8f8;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-right: 3px solid #B7D304;
}

.mhp-lead__inner-title { font-size: 14px; font-weight: 800; margin-bottom: 10px; }

.mhp-lead__items {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}

.mhp-lead__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.mhp-lead__orig { font-size: 16px; text-decoration: line-through; color: #bbb; }
.mhp-lead__new { font-size: 42px; font-weight: 900; color: #B7D304; }
.mhp-lead__prices span:last-child { font-size: 14px; color: #888; }

/* Lead form */
.mhp-lead__form { display: flex; flex-direction: column; gap: 12px; }

.mhp-lead__form-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.mhp-lead__form-row small { font-size: 11px; color: #bbb; display: block; margin-top: 4px; }

.mhp-input {
  flex: 1;
  border: 2px solid #ddd;
  padding: 16px 18px;
  font-size: 16px;
  font-family: 'Heebo', 'Arial', sans-serif;
  direction: rtl;
  outline: none;
  min-width: 0;
  border-radius: 4px;
}

.mhp-input:focus { border-color: #B7D304; }

/* ══════════════════════════════════════════════════
   11. FAQ — matching .schema-faq.wp-block-yoast-faq-block style
   ══════════════════════════════════════════════════ */
.mhp-faq {
  background: #fff;
  padding: 80px 0;
}

.mhp-faq .mhp-section-title { text-align: center; }

.mhp-faq__list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mhp-faq__item { }

.mhp-faq__item dt {
  font-size: 20px;
  font-weight: 500;
  padding: 28px 0;
  border-bottom: 2px solid #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 16px;
}

/* FAQ icon matching faq-close.svg — square with + sign */
.mhp-faq__item dt::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border: 2px solid #000;
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.mhp-faq__item.is-open dt {
  color: #B7D304;
  border-bottom-color: #B7D304;
}

.mhp-faq__item.is-open dt::after {
  content: "−";
  background: #B7D304;
  border-color: #B7D304;
  color: #000;
}

.mhp-faq__item dd {
  font-size: 18px;
  font-weight: 300;
  color: #333;
  line-height: 1.65;
  padding: 24px 0 8px;
  margin: 0;
  display: none;
}

.mhp-faq__item.is-open dd { display: block; }

/* ══════════════════════════════════════════════════
   12. FINAL CTA
   ══════════════════════════════════════════════════ */
.mhp-final-cta {
  background: #000;
  padding: 48px 0;
  text-align: center;
}

.mhp-final-cta__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.mhp-final-cta__title em { color: #B7D304; font-style: normal; }

.mhp-final-cta__sub {
  font-size: 17px;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.6;
}

.mhp-final-cta .mhp-btn--primary::before { background: #fff; }

.mhp-final-cta .mhp-fine { color: #555; margin-top: 16px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .mhp-container { padding: 0 18px; }

  /* Hero — center card vertically so image shows above and below */
  .mhp-hero {
    min-height: 580px;
    align-items: center;
  }

  /* On mobile reduce Ken Burns to zoom-only — no horizontal pan (prevents crop) */
  .mhp-hero__bg img {
    object-position: center center;
    animation-name: mhp-ken-burns-mobile;
  }

  @keyframes mhp-ken-burns-mobile {
    from { transform: scale(1); }
    to   { transform: scale(1.03); }
  }

  .mhp-hero__container { align-items: center; }

  .mhp-hero__content {
    margin: 0;
    max-width: 100%;
    border-radius: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 28px 20px;
  }

  /* Trust bar */
  .mhp-trust__inner::before { display: none; }
  .mhp-trust__item { min-width: 100px; padding: 0 12px; }
  .mhp-trust__icon { width: 56px; height: 56px; }
  .mhp-trust__label { font-size: 11px; max-width: 80px; }

  /* Pain section — stack on mobile */
  .mhp-pain { grid-template-columns: 1fr; direction: rtl; }
  .mhp-pain__left  { padding: 48px 24px; }
  .mhp-pain__left .mhp-pain__big { font-size: clamp(32px, 8vw, 52px) !important; }
  .mhp-pain__inner { padding: 36px 24px; }
  .mhp-pain__icon { width: 64px; height: 64px; }

  /* How it works */
  .mhp-how__steps {
    grid-template-columns: 1fr;
    gap: 40px;
    contain: layout style;
  }

  .mhp-how__steps::before,
  .mhp-how__steps::after { display: none; }

  /* No dimming on mobile — stacked layout reads fine */
  .mhp-how__step:not(.is-active) { opacity: 1; }

  /* Why grid (old) */
  .mhp-why__grid { grid-template-columns: 1fr; }
  .mhp-why__close-l1 { font-size: 16px; }

  /* Why2 — carousel stacks above list */
  .mhp-why2 { overflow-x: hidden; }
  .mhp-why2__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: rtl;
  }
  .mhp-why2__carousel { aspect-ratio: 4 / 3; order: -1; width: 100%; }
  .mhp-why2__content { justify-content: flex-start; gap: 28px; }
  .mhp-why2__stmt-text { font-size: clamp(20px, 5.5vw, 30px); }
  .mhp-why2__num { font-size: 28px; min-width: 38px; }

  /* Testi — desktop/tablet: keep grid, hide nav */
  .mhp-testi-slider { display: contents; }
  .mhp-testi-nav { display: none; }

  /* Lead */
  .mhp-lead__box { padding: 28px 20px; }

  .mhp-lead__form-row { flex-direction: column; }

  .mhp-lead__form-row .mhp-btn { width: 100%; justify-content: center; }

  .mhp-how__tagline { border-radius: 0; margin-top: 24px; }

  /* Hero CTAs + stamp */
  .mhp-hero__ctas { flex-direction: column; align-items: flex-start; }
  .mhp-hero__mid { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mhp-hero__stamp { width: 88px; height: 88px; }

  /* Bug 3: enlarge the hero headline on mobile. The em-row height is locked to
     the stamp (88px) so the "עד 5 דקות" circle keeps its place as the text grows. */
  .mhp-hero__headline { font-size: 34px; }
  .mhp-hero__em-row { min-height: 88px; }

  .mhp-quote__text { font-size: 24px; }
  .mhp-quote__text::before,
  .mhp-quote__text::after { display: none; }

  /* Sections padding */
  .mhp-pain, .mhp-how, .mhp-why, .mhp-why2, .mhp-paths,
  .mhp-testimonials, .mhp-lead, .mhp-faq, .mhp-choice,
  .mhp-quote, .mhp-final-cta { padding: 52px 0; }

  /* Why2 — tighten list and tagline on mobile */
  .mhp-why2__list { justify-content: flex-start; gap: 20px; }
  .mhp-why2__tagline { margin: 24px 0 0; padding-top: 16px; }

  /* FAQ — reduce title and question size on mobile */
  .mhp-faq .mhp-section-title { font-size: 22px; }
  .mhp-choice__eyebrow { font-size: 22px !important; }
  .mhp-faq__item dt { font-size: 16px; padding: 20px 0; }
  .mhp-faq__item dd { font-size: 15px; }

  /* Testimonials slider — ensure cards don't overflow */
  .mhp-testi-slider { overflow: hidden; }
  .mhp-testi-grid { width: 100%; }
}

/* ── Testimonials mobile slider ─────────────────────────── */
@media (max-width: 768px) {
  .mhp-testi-slider {
    display: block;
    overflow: hidden;
    margin-top: 28px;
    width: 100%;
  }
  .mhp-testi-grid {
    display: flex;
    width: 100%;
    grid-template-columns: unset;
    margin-top: 0;
    gap: 0;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .mhp-testi-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 24px 16px 20px;
  }
  .mhp-testi-card p { min-height: unset; }
  /* Nav bar */
  .mhp-testi-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
  }
  .mhp-testi-btn {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    width: 38px !important; height: 38px !important;
    font-size: 15px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: border-color 0.2s;
    padding: 0;
    flex-shrink: 0 !important;
  }
  .mhp-testi-btn:hover { border-color: #B7D304; }
  .mhp-testi-dots { display: flex; gap: 7px; align-items: center; }
  .mhp-testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .mhp-testi-dot--active { background: #B7D304; transform: scale(1.3); }
}

.mhp-testi-cta {
  text-align: center;
  margin-top: 32px;
}
.mhp-testi-cta p {
  font-size: 15px;
  color: #777;
  margin-bottom: 12px;
}
.mhp-testi-cta .miximum-open-review-btn {
  background: #B7D304;
  color: #1a1a1a;
  border-color: #B7D304;
}
.mhp-testi-cta .miximum-open-review-btn:hover {
  background: transparent;
  color: #B7D304;
}

@media (max-width: 600px) {
  .mhp-trust__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .mhp-trust__inner::-webkit-scrollbar { display: none; }
  .mhp-trust__item {
    flex-shrink: 0;
    min-width: 84px;
    padding: 0 10px;
  }
  .mhp-trust__icon { width: 48px; height: 48px; }
  .mhp-trust__label { font-size: 10px; max-width: 72px; }
}

/* ══════════════════════════════════════════════════════════
   INSTAGRAM SECTION
══════════════════════════════════════════════════════════ */
.mhp-instagram {
  background: #f4f8e1;
  padding: 60px 0 32px;
  overflow: hidden;
}

.mhp-instagram__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
}

.mhp-instagram__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
}

.mhp-instagram__icon {
  flex-shrink: 0;
}

.mhp-instagram__handle {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
}

.mhp-instagram__nav {
  display: flex;
  gap: 10px;
}

.mhp-instagram__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: #333;
  line-height: 1;
}

.mhp-instagram__btn:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

/* Track — horizontal scroll, no visible scrollbar */
.mhp-instagram__track-wrap {
  overflow: hidden;
}

.mhp-instagram__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
  padding-bottom: 0;
}

.mhp-instagram__track::-webkit-scrollbar { display: none; }

/* Individual post card — portrait 4:5 ratio */
.mhp-instagram__post {
  flex: 0 0 260px;
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  display: block;
  background: #ddd;
  border-radius: 12px;
}

.mhp-instagram__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mhp-instagram__post:hover img {
  transform: scale(1.04);
}

/* Play button overlay for video posts */
.mhp-instagram__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Hover overlay tint */
.mhp-instagram__post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.mhp-instagram__post:hover::after {
  background: rgba(0,0,0,0.12);
}

/* Card is now a button — reset button styles */
.mhp-instagram__post {
  border: none;
  padding: 0;
  cursor: pointer;
  background: #ddd;
}

@media (max-width: 768px) {
  .mhp-instagram { padding-top: 44px; }
  .mhp-instagram__post { flex: 0 0 200px; }
  .mhp-instagram__handle { font-size: 18px; }
}

/* ══════════════════════════════════════════════════════════
   CHOICE — 3-option decision block before final CTA
══════════════════════════════════════════════════════════ */
.mhp-choice {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #eee;
}

.mhp-choice__eyebrow {
  text-align: center;
  font-size: clamp(26px, 3vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #111 !important;
  margin: 0 0 32px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.mhp-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.mhp-choice__option {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1.5px solid #e8e8e8;
  position: relative;
}

.mhp-choice__option--neutral {
  background: #fafafa;
}

@keyframes mhp-choice-pulse {
  0%   { background: #eef6b0; border-color: #B7D304; }
  66%  { background: #eef6b0; border-color: #B7D304; }
  85%  { background: #fafafa; border-color: #B7D304; }
  100% { background: #fafafa; border-color: #B7D304; }
}

.mhp-choice__option--highlight {
  border-color: #B7D304;
  border-width: 2px;
  animation: mhp-choice-pulse 6s ease-in-out infinite;
}

.mhp-choice__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
  background: #eee;
  color: #888;
}

.mhp-choice__option--highlight .mhp-choice__num {
  background: #B7D304;
  color: #000;
}

.mhp-choice__label {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mhp-choice__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.mhp-choice__option--highlight .mhp-choice__desc {
  color: #333;
}

@media (max-width: 700px) {
  .mhp-choice { padding: 48px 0; }
  .mhp-choice__grid { grid-template-columns: 1fr; max-width: 100%; }
}

/* ── Certainty steps in final CTA ── */
.mhp-final-cta__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.mhp-final-cta__step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
}

.mhp-final-cta__step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(183,211,4,0.25);
  color: #B7D304;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mhp-final-cta__step-sep {
  color: #555;
  font-size: 16px;
}

@media (max-width: 600px) {
  .mhp-final-cta__steps { flex-direction: column; gap: 8px; }
  .mhp-final-cta__step-sep { display: none; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT — Founder story (full-bleed background image)
══════════════════════════════════════════════════════════ */
.mhp-about {
  position: relative;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* Subtle overlay — softens image edges without killing the photo */
.mhp-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  pointer-events: none;
}

/* Push card to right side (RTL natural start) */
.mhp-about .mhp-container {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

/* Card */
.mhp-about__card {
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  border-radius: 4px;
  padding: 56px 64px;
  max-width: 700px;
  width: 100%;
}

/* Eyebrow */
.mhp-about__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B7D304;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mhp-about__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #B7D304;
  flex-shrink: 0;
}

/* Main headline */
.mhp-about__headline {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin: 0 0 28px;
}

/* Always-visible paragraphs */
.mhp-about__body p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 16px;
}

/* Expandable story */
.mhp-about__story {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease, opacity 0.5s ease;
  opacity: 0;
}

.mhp-about__story.is-open {
  max-height: 2400px;
  opacity: 1;
}

.mhp-about__story-inner {
  padding-top: 20px;
}

.mhp-about__story-inner p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 18px;
}

/* Toggle */
.mhp-about__toggle {
  display: inline-flex;
  align-items: center;
  font-family: 'Heebo', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  background: none !important;
  border: none;
  border-bottom: 2px solid #B7D304;
  padding: 4px 0;
  margin-top: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.mhp-about__toggle:hover,
.mhp-about__toggle:focus {
  color: #B7D304 !important;
  background: none !important;
}

/* Signature */
.mhp-about__sig {
  margin: 36px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.mhp-about__sig-title {
  font-size: 11px;
  color: #999;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mhp-about__sig-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.mhp-about__sig-wrap::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 130%;
  height: 10px;
  background: url('/wp-content/uploads/homepage-why/brushstroke.svg') no-repeat center / contain;
}

.mhp-about__sig-img {
  display: block;
  height: 52px;
  width: auto;
}

/* CTA link */
.mhp-about__link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  padding: 3px 0;
  margin-top: 20px;
  transition: color 0.2s;
}

.mhp-about__link:hover {
  color: #B7D304;
}

@media (max-width: 960px) {
  .mhp-about {
    min-height: 0;
    padding: 60px 0;
    background-position: center;
    align-items: flex-start;
  }
  .mhp-about::before {
    background: rgba(255,255,255,0.28);
  }
  .mhp-about .mhp-container {
    justify-content: center;
  }
  .mhp-about__card {
    width: calc(100% - 32px);
    max-width: none;
    padding: 32px 28px 40px;
    margin: 0 auto;
  }
  .mhp-about__headline { font-size: clamp(26px, 5vw, 34px); }
  .mhp-about__body p,
  .mhp-about__story-inner p { font-size: 16px; }
  .mhp-about__sig-img { height: 42px; }
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.mhp-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mhp-lb[hidden] { display: none; }

.mhp-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.mhp-lb__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(420px, 92vw);
}

.mhp-lb__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  display: block;
  max-height: 80vh;
  background: #000;
}

.mhp-lb__close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.mhp-lb__close:hover { background: rgba(0,0,0,0.9); }

/* ─── Inside Look Section ─────────────────────────────────── */
.mhp-inside {
  padding: 20px 0 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
}

.mhp-inside__title {
  text-align: center;
  margin-bottom: 28px;
}

/* Product tabs */
.mhp-inside__tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.mhp-inside__tab {
  padding: 10px 22px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  font-family: 'Heebo', 'Arial', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, font-weight 0.2s;
  white-space: nowrap;
}

.mhp-inside__tab:hover:not(.is-active) {
  color: #1a1a1a;
  border-bottom-color: #ddd;
}

.mhp-inside__tab.is-active {
  background: transparent;
  color: #1a1a1a;
  font-weight: 700;
  border-bottom-color: #B7D304;
}

/* Wide panel */
.mhp-inside__panel-wrap {
  max-width: 1060px;
  width: 78%;
  margin: 0 auto 36px;
  padding: 0;
}

.mhp-inside__panel {
  display: grid;
  grid-template-columns: 52% 48%;
  direction: ltr;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

/* Image column — LEFT */
.mhp-inside__image-col {
  position: relative;
  min-height: 400px;
  background: transparent;
}

.mhp-inside__product {
  display: none;
  position: absolute;
  inset: 0;
}

.mhp-inside__product.is-active {
  display: block;
}

.mhp-inside__images {
  position: relative;
  width: 100%;
  height: 100%;
}

.mhp-inside__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

/* Bag: cover fills the column, multiply removes white bg → bag appears large */
.mhp-inside__img[data-step="0"] {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

/* Ingredients: contain with padding so labels don't clip */
.mhp-inside__img[data-step="1"] {
  padding: 18px;
}

/* Result: clip-path for rounded corners + gradient mask for edge fade */
.mhp-inside__img[data-step="2"] {
  padding: 24px 32px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
  -webkit-clip-path: inset(24px 32px round 16px);
  clip-path: inset(24px 32px round 16px);
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 28%, black 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0%, black 28%, black 72%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.mhp-inside__img.is-active {
  opacity: 1;
}

/* Content column — RIGHT */
.mhp-inside__content-col {
  padding: 44px 48px;
  display: grid;
  align-items: start;
  direction: rtl;
}

/* Step content blocks — all stacked in same grid cell, switched via opacity */
.mhp-inside__step-content {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s 0.35s;
}

.mhp-inside__step-content.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}

.mhp-inside__step-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #B7D304;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mhp-inside__step-title {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

.mhp-inside__step-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* Thumbnails */
.mhp-inside__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.mhp-inside__thumb {
  width: 160px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.15s;
  border: 2px solid transparent;
  mix-blend-mode: multiply;
}

/* Result thumbnails: cover + consistent crop, no multiply */
.mhp-inside__thumb[data-goto="2"] {
  object-fit: cover;
  mix-blend-mode: normal;
  border-radius: 8px;
  border-color: #e8e3d8;
}

.mhp-inside__thumb:hover {
  opacity: 1;
  transform: scale(1.05);
  border-color: #B7D304;
  background: rgba(255,255,255,0.9);
}

/* Step bar — RTL: step 1 rightmost */
.mhp-inside__stepbar {
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  gap: 0;
  padding: 0 8px;
}

.mhp-inside__step-line {
  flex: 1;
  max-width: 100px;
  border-top: 2px dashed #ccc;
}

.mhp-inside__stepbtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Heebo', 'Arial', sans-serif;
  white-space: nowrap;
  direction: ltr;
}

.mhp-inside__stepbtn:hover:not(.is-active) {
  border-color: #aaa;
}

.mhp-inside__stepbtn.is-active {
  background: #B7D304;
  border-color: #B7D304;
}

.mhp-inside__stepnum {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.mhp-inside__stepbtn.is-active .mhp-inside__stepnum {
  background: #fff;
  color: #1a1a1a;
}

.mhp-inside__stepname {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.mhp-inside__stepicon {
  display: flex;
  align-items: center;
  color: #1a1a1a;
  opacity: 0.55;
}

.mhp-inside__stepbtn.is-active .mhp-inside__stepicon {
  opacity: 1;
}

/* Mobile */
@media (max-width: 900px) {
  .mhp-inside {
    padding: 48px 0 36px;
  }

  .mhp-inside__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px 6px;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mhp-inside__tabs::-webkit-scrollbar { display: none; }

  .mhp-inside__tab { flex-shrink: 0; }

  .mhp-inside__panel-wrap {
    padding: 0;
  }

  .mhp-inside__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    direction: ltr;
    border-radius: 0;
    min-height: unset;
  }

  .mhp-inside__image-col {
    min-height: unset;
    aspect-ratio: 16 / 9;
  }

  .mhp-inside__content-col {
    padding: 28px 24px 32px;
    border-left: none;
    border-top: 1px solid #f0ede7;
    align-items: start;
  }

  .mhp-inside__step-title {
    font-size: 1.35rem;
  }

  .mhp-inside__thumbs {
    margin-top: 12px;
  }

  .mhp-inside__thumb {
    width: 90px;
    height: 68px;
  }

  .mhp-inside__stepbar {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px 20px 0;
    direction: rtl;
  }

  .mhp-inside__step-line {
    display: none;
  }

  .mhp-inside__stepbtn {
    padding: 11px 18px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}

/* ─── Proof Section ───────────────────────────────────────────── */
.mhp-proof {
  background: #fff;
  padding: 72px 0 0;
}
.mhp-proof .mhp-container {
  max-width: 1080px;
}
.mhp-proof__eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #B7D304;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mhp-proof__title {
  text-align: center;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.mhp-proof__subtitle {
  text-align: center;
  font-size: 0.97rem;
  color: #777;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.mhp-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.mhp-proof__card {
  background: #f8f5ef;
  border-radius: 20px;
  padding: 28px 22px 0;
  border: 1px solid #e8e4dc;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mhp-proof__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.mhp-proof__card-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1a1a1a;
}
.mhp-proof__card-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mhp-proof__card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #B7D304;
  color: #1a1a1a;
  font-size: 0.68rem;
  font-weight: 900;
}
.mhp-proof__card-role {
  font-size: 0.68rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mhp-proof__card-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
}
.mhp-proof__stat {
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: #B7D304;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  opacity: 0;
  transition: opacity 0.3s;
}
.mhp-proof__stat.is-counted { opacity: 1; }
.mhp-proof__stat-suffix {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
}
.mhp-proof__principle {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem) !important;
  white-space: nowrap;
  font-weight: 900 !important;
  color: #B7D304;
  line-height: 1.4 !important;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.mhp-proof__body {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.65;
  margin-top: 4px;
  min-height: 5.5em;
}
.mhp-proof__bullets {
  list-style: none;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.mhp-proof__bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: #555;
  line-height: 1.5;
}
.mhp-proof__leaf {
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}
.mhp-proof__source {
  font-size: 0.87rem !important;
  color: #c0bbb2;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #ede9e1;
  line-height: 1.5;
}
.mhp-proof__link {
  display: inline-block;
  font-size: 0.65rem;
  color: #bbb;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 6px;
  transition: color 0.2s;
}
.mhp-proof__link:hover { color: #888; }
.mhp-proof__link svg { display: none; }

/* Accordion: פרטי המחקר */
.mhp-proof__details-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.87rem !important;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  transition: color 0.2s;
}
.mhp-proof__details-btn:focus-visible {
  outline: 2px solid #B7D304;
  outline-offset: 3px;
  border-radius: 3px;
}
.mhp-proof__details-btn:hover,
.mhp-proof__details-btn:focus { color: #1a1a1a; background: none !important; }
.mhp-proof__details-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-style: normal;
}
.mhp-proof__details-btn[aria-expanded="true"] .mhp-proof__details-arrow {
  transform: rotate(180deg);
}
.mhp-proof__details {
  margin-top: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 8px;
  font-size: 0.87rem !important;
  line-height: 1.65;
  color: #444;
  text-align: right;
}
.mhp-proof__details p { margin: 0 0 6px; font-size: 0.87rem !important; }
.mhp-proof__details p:last-of-type { margin-bottom: 0; }

/* Footer wrapper — matches container width of mhp-how__tagline */
.mhp-proof__footer-wrap {
  max-width: 1300px;
  margin: 56px auto 0;
  padding: 0 30px;
}

/* Footer — styled like mhp-how__tagline */
.mhp-proof__footer {
  background: #000;
  color: #fff;
  padding: 28px 40px;
  margin-top: 0;
  border-radius: 0 0 48px 0;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}
.mhp-proof__footer strong {
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}
.mhp-proof__footer span { color: #B7D304; }

/* ─── Guarantee ───────────────────────────────────────────────── */
.mhp-guarantee-banner {
  background: #B7D304;
  padding: 8px 24px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-transform: uppercase;
}
.mhp-guarantee {
  background: #1a1a1a;
  margin-top: 20px;
  padding: 48px 24px 56px;
  text-align: center;
}
.mhp-guarantee__inner {
  max-width: 760px;
  margin: 0 auto;
}
.mhp-guarantee__shield {
  width: 60px;
  height: auto;
  margin: 0 auto 22px;
  display: block;
}
.mhp-guarantee__title {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
}
.mhp-guarantee__title em {
  color: #B7D304;
  font-style: normal;
}
.mhp-guarantee__body {
  font-size: 0.97rem;
  color: #888;
  line-height: 1.85;
  margin: 0 auto 32px;
  max-width: 580px;
}
.mhp-guarantee__body strong { color: #fff; }
.mhp-guarantee__sig {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.mhp-guarantee__sig-img {
  height: 48px;
  width: auto;
  filter: invert(1) brightness(2);
  margin-bottom: 4px;
}
.mhp-guarantee__brushstroke {
  width: 110px;
  height: auto;
  margin-bottom: 10px;
}
.mhp-guarantee__sig-title {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.04em;
}

/* ─── Proof + Guarantee responsive ───────────────────────────── */
@media (max-width: 880px) {
  .mhp-proof { padding: 56px 0 0; }
  .mhp-proof__grid { grid-template-columns: 1fr; }
  .mhp-proof__subtitle { margin-bottom: 32px; }
  .mhp-proof__footer-wrap { padding: 0; margin-top: 32px; overflow: hidden; }
  .mhp-proof__footer { border-radius: 0; font-size: 16px; padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .mhp-proof__footer strong { font-size: 18px; flex-shrink: 1; }
}


/* ─── Compare Section ──────────────────────────────────────────── */
.mhp-compare { padding: 80px 0; background: #f8f5ef; }

.mhp-compare__eyebrow {
  text-align: center; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; color: #B7D304;
  text-decoration: underline; text-underline-offset: 3px;
  margin-bottom: 14px;
}
.mhp-compare__title {
  text-align: center; font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 16px;
}
.mhp-compare__sub  { text-align: center; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.mhp-compare__sub2 { text-align: center; font-size: 0.9rem; color: #888; margin-bottom: 52px; }

/* Columns */
.mhp-compare__cols { display: flex; gap: 12px; align-items: stretch; }

.mhp-compare__col-side {
  flex: 1; background: #eae6de; border-radius: 16px;
  display: flex; flex-direction: column; overflow: hidden;
}
.mhp-compare__illus { height: 248px; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.07); }
.mhp-compare__illus img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.mhp-compare__col-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 14px; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mhp-compare__col-title { font-size: 1rem; font-weight: 800; }
.mhp-compare__col-icon  { width: 28px; height: 28px; opacity: 0.3; flex-shrink: 0; }

.mhp-compare__col-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06); flex: 1;
}
.mhp-compare__col-row:last-child { border-bottom: none; }
.mhp-compare__col-row-text { font-size: 0.85rem; font-weight: 500; color: #666; line-height: 1.3; }
.mhp-compare__col-row-icon { width: 17px; height: 17px; opacity: 0.25; flex-shrink: 0; }

/* Center column */
.mhp-compare__col-mx {
  flex: 1.18; position: relative; background: #fff;
  border-radius: 16px; border: 2px solid #1a1a1a;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; overflow: visible;
}
.mhp-compare__badge-wrap {
  position: absolute; top: -18px; left: 0; right: 0;
  display: flex; justify-content: center; z-index: 2; pointer-events: none;
}
.mhp-compare__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #B7D304; color: #1a1a1a; font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.04em; padding: 5px 14px;
  border-radius: 50px; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  pointer-events: auto;
}
.mhp-compare__mx-img {
  width: 100%; height: 210px; background: #e8e3da; flex-shrink: 0;
}
.mhp-compare__mx-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 65%; display: block;
}
.mhp-compare__mx-head {
  padding: 14px 20px 12px; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.07); background: #fafaf8;
}
.mhp-compare__mx-name { font-size: 1rem; font-weight: 900; }
.mhp-compare__mx-sub  { font-size: 0.72rem; color: #aaa; margin-top: 2px; }

.mhp-compare__mx-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06); flex: 1;
}
.mhp-compare__mx-row:last-child { border-bottom: none; }
.mhp-compare__mx-row-right { display: flex; align-items: center; gap: 9px; }
.mhp-compare__mx-row-text  { font-size: 0.88rem; font-weight: 700; }
.mhp-compare__mx-row-icon  { width: 17px; height: 17px; opacity: 0.25; flex-shrink: 0; }

.mhp-compare__chk {
  width: 20px; height: 20px; background: #B7D304; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mhp-compare__chk svg { width: 11px; height: 11px; }

/* Bottom box */
.mhp-compare__bottom {
  margin-top: 20px; background: #fff; border-radius: 16px;
  border: 1px solid #e4e0d8; overflow: hidden;
  display: flex; align-items: stretch; min-height: 160px;
}
.mhp-compare__bottom-text {
  flex: 1; padding: 28px 32px; display: flex;
  flex-direction: column; justify-content: center; gap: 18px;
}
.mhp-compare__bottom-copy { font-size: 0.95rem; line-height: 1.8; color: #444; }
.mhp-compare__bottom-copy strong { color: #1a1a1a; }
.mhp-compare__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #B7D304; color: #1a1a1a; font-size: 0.95rem;
  font-weight: 800; padding: 11px 26px; border-radius: 50px;
  border: none; cursor: pointer; text-decoration: none; align-self: flex-start;
}
.mhp-compare__cta:hover, .mhp-compare__cta:focus { background: none !important; }
.mhp-compare__bottom-img {
  width: 420px; flex-shrink: 0; position: relative; overflow: hidden;
  order: 1;
}
.mhp-compare__bottom-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center; display: block;
}
.mhp-compare__bottom-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 72%, #fff 100%);
}

/* Mobile table (hidden on desktop) */
.mhp-compare__mobile { display: none; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .mhp-compare { padding: 56px 0; }
  .mhp-compare__sub2 { margin-bottom: 24px; }
  .mhp-compare__cols { display: none; }
  .mhp-compare__bottom { display: none; }
  .mhp-compare__mobile { display: block; }

  .mhp-compare__mob-img {
    width: 100%; height: 190px; border-radius: 14px; overflow: hidden;
    margin-bottom: 28px; border: 2px solid #1a1a1a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  }
  .mhp-compare__mob-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; display: block; }

  .mhp-compare__grid {
    display: grid; grid-template-columns: 68px 1fr 1fr 1fr; position: relative;
  }
  .mhp-compare__gh-empty { }
  .mhp-compare__gh-col {
    text-align: center; font-size: 0.7rem; font-weight: 800; color: #888;
    padding: 10px 4px 14px; border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .mhp-compare__gh-mx {
    background: #fff; border: 2px solid #1a1a1a; border-bottom: none;
    border-radius: 12px 12px 0 0; padding: 8px 4px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .mhp-compare__mob-badge {
    display: inline-flex; align-items: center; gap: 3px;
    background: #B7D304; color: #1a1a1a; font-size: 0.58rem;
    font-weight: 800; padding: 3px 8px; border-radius: 50px;
  }
  .mhp-compare__mob-mx-name { font-size: 0.78rem; font-weight: 900; color: #1a1a1a; }

  .mhp-compare__gr-label {
    font-size: 0.68rem; font-weight: 700; color: #666; text-align: right;
    padding: 11px 2px 11px 4px; border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex; align-items: center; line-height: 1.3;
  }
  .mhp-compare__gr-cell {
    text-align: center; padding: 10px 4px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex; align-items: center; justify-content: center;
  }
  .mhp-compare__gr-mx {
    background: #fff; border-right: 2px solid #1a1a1a; border-left: 2px solid #1a1a1a;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .mhp-compare__gr-last .mhp-compare__gr-mx {
    border-bottom: 2px solid #1a1a1a; border-radius: 0 0 12px 12px;
  }
  .mhp-compare__gr-last .mhp-compare__gr-cell,
  .mhp-compare__gr-last .mhp-compare__gr-label { border-bottom: none; }

  .mhp-compare__mob-chk {
    width: 20px; height: 20px; background: #B7D304; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .mhp-compare__mob-chk svg { width: 11px; height: 11px; }
  .mhp-compare__mob-x {
    width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #ccc;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: #ccc;
  }
  .mhp-compare__pill {
    display: inline-block; padding: 3px 7px; border-radius: 50px;
    font-size: 0.62rem; font-weight: 700; white-space: nowrap; line-height: 1.4;
  }
  .mhp-compare__pill--green { background: #B7D304; color: #1a1a1a; }
  .mhp-compare__pill--red   { background: #fde8e8; color: #b94040; }
  .mhp-compare__pill--gray  { background: #eae6de; color: #999; }

  .mhp-compare__mob-copy {
    margin-top: 24px; font-size: 0.88rem; line-height: 1.8;
    color: #555; text-align: center;
  }
  .mhp-compare__mob-copy strong { color: #1a1a1a; }
  .mhp-compare__mob-cta-wrap { display: flex; justify-content: center; margin-top: 20px; }
}
