:root {
  --wm-ink: #18231f;
  --wm-ink-soft: #34413b;
  --wm-muted: #6e766f;
  --wm-line: #e4e0d7;
  --wm-bg: #fbfaf7;
  --wm-white: #ffffff;
  --wm-cream: #f7f3ea;
  --wm-sage: #dfe8de;
  --wm-green: #1e6f5c;
  --wm-green-dark: #123c33;
  --wm-gold: #d8c79b;
  --wm-danger: #9f3f36;
  --wm-shadow: 0 20px 60px rgba(24, 35, 31, 0.1);
  --wm-container: min(1160px, calc(100% - 32px));
  --wm-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--wm-ink);
  background: var(--wm-bg);
  font-family: Heebo, Assistant, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-align: right;
}

body.wm-menu-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

p {
  margin: 0 0 1rem;
  color: var(--wm-muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--wm-ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 3.3rem;
  font-weight: 900;
}

h2 {
  font-size: 2.35rem;
  font-weight: 900;
}

h3 {
  font-size: 1.22rem;
  font-weight: 850;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote {
  margin: 26px 0 0;
  padding: 24px;
  border-right: 4px solid var(--wm-gold);
  background: #fff;
  color: var(--wm-green-dark);
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: var(--wm-shadow);
}

.wm-container {
  width: var(--wm-container);
  margin-inline: auto;
}

.wm-skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--wm-ink);
  color: #fff;
  transform: translateY(-140%);
}

.wm-skip-link:focus {
  transform: translateY(0);
}

.wm-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(228, 224, 215, 0.8);
  backdrop-filter: blur(18px);
}

.wm-site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(24, 35, 31, 0.08);
}

.wm-header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.wm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.wm-brand-logo {
  width: 214px;
  max-height: 58px;
  object-fit: contain;
}

.wm-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  direction: rtl;
}

.wm-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--wm-ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.wm-menu a:hover {
  background: var(--wm-sage);
  color: var(--wm-green-dark);
}

.wm-header-cta,
.wm-button,
.wm-search-form button,
.wm-inline-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--wm-green);
  color: var(--wm-white);
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(30, 111, 92, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.wm-button:hover,
.wm-header-cta:hover,
.wm-search-form button:hover,
.wm-inline-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(30, 111, 92, 0.24);
}

.wm-button-primary {
  background: linear-gradient(135deg, #1e6f5c, #2d8a74);
  color: var(--wm-white);
}

.wm-button-ghost,
.wm-button-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--wm-ink);
  border: 1px solid var(--wm-line);
  box-shadow: none;
}

.wm-button-xl {
  min-height: 60px;
  padding: 17px 30px;
  font-size: 1.06rem;
}

.wm-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  background: var(--wm-white);
}

.wm-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--wm-ink);
}

.wm-calculator-promo {
  background: var(--wm-ink);
  color: #fff;
  border-bottom: 1px solid rgba(216, 199, 155, 0.35);
}

.wm-calculator-promo-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding-block: 12px;
}

.wm-calculator-promo-copy span,
.wm-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wm-green);
  font-size: 0.88rem;
  font-weight: 900;
}

.wm-calculator-promo-copy strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.2;
}

.wm-calculator-promo-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.wm-calculator-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--wm-gold);
  color: var(--wm-ink);
  font-weight: 900;
  white-space: nowrap;
}

.wm-section,
.wm-page-hero {
  padding: 96px 0;
}

.wm-section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.wm-section-head-center {
  margin-inline: auto;
  text-align: center;
}

.wm-section-head p {
  margin-top: 16px;
  font-size: 1.18rem;
}

.wm-hero {
  padding: 56px 0 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 243, 234, 0.52)),
    var(--wm-bg);
}

.wm-hero-inner,
.wm-split,
.wm-program-hero-inner,
.wm-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.wm-hero-inner {
  min-height: calc(100svh - 110px);
}

.wm-hero-copy p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--wm-ink-soft);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
}

.wm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wm-quiet-proof {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: var(--wm-muted);
  font-weight: 800;
}

.wm-quiet-proof span {
  position: relative;
  padding-right: 18px;
}

.wm-quiet-proof span::before {
  content: "";
  position: absolute;
  top: 0.85em;
  right: 0;
  width: 7px;
  height: 7px;
  background: var(--wm-gold);
}

.wm-hero-visual {
  position: relative;
  min-height: 620px;
}

.wm-hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--wm-cream);
  box-shadow: var(--wm-shadow);
}

.wm-hero-photo img,
.wm-image-panel img,
.wm-about-collage img,
.wm-proof-grid img,
.wm-card-media img,
.wm-program-hero figure img,
.wm-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wm-hero-photo-main {
  inset: 0 0 92px 76px;
}

.wm-hero-photo-side {
  width: 42%;
  aspect-ratio: 3 / 4;
  left: 0;
  bottom: 0;
}

.wm-hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 300px;
  padding: 18px 20px;
  background: rgba(24, 35, 31, 0.92);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.wm-logo-strip {
  padding: 22px 0;
  background: var(--wm-white);
  border-block: 1px solid var(--wm-line);
}

.wm-logo-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--wm-line);
}

.wm-logo-strip-inner div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 18px 14px;
  background: #fff;
}

.wm-logo-strip-inner i {
  width: 20px;
  height: 20px;
  border: 2px solid var(--wm-green);
  border-radius: 50%;
}

.wm-logo-strip-inner strong {
  color: var(--wm-ink);
  font-weight: 900;
}

.wm-logo-strip-inner span {
  color: var(--wm-muted);
  font-size: 0.9rem;
}

.wm-dark {
  background: #151d1a;
  color: #fff;
}

.wm-dark h2,
.wm-dark h3,
.wm-dark .wm-eyebrow {
  color: #fff;
}

.wm-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.wm-problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.wm-problem-layout .wm-section-head {
  margin-bottom: 0;
}

.wm-nutrient-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.wm-nutrient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.wm-nutrient::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #d8c79b;
  -webkit-mask: var(--nutrient-icon) center / 18px 18px no-repeat;
  mask: var(--nutrient-icon) center / 18px 18px no-repeat;
}

.wm-nutrient-protein {
  --nutrient-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h10v4h3v5a7 7 0 0 1-7 7h-2a7 7 0 0 1-7-7V8h3V4Zm2 2v2h6V6H9Zm-3 7a5 5 0 0 0 5 5h2a5 5 0 0 0 5-5v-3H6v3Z'/%3E%3C/svg%3E");
}

.wm-nutrient-fiber {
  --nutrient-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3c4 3 6 6 6 10a6 6 0 0 1-12 0c0-4 2-7 6-10Zm0 3.1C9.4 8.5 8 10.6 8 13a4 4 0 0 0 8 0c0-2.4-1.4-4.5-4-6.9Zm-1 4.4h2V18h-2v-7.5Z'/%3E%3C/svg%3E");
}

.wm-nutrient-water {
  --nutrient-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2c3.7 4.3 6 7.7 6 11a6 6 0 0 1-12 0c0-3.3 2.3-6.7 6-11Zm0 3.2C9.5 8.4 8 11 8 13a4 4 0 0 0 8 0c0-2-1.5-4.6-4-7.8Z'/%3E%3C/svg%3E");
}

.wm-nutrient-vitamins {
  --nutrient-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2v6h6v2.5L11 22v-7H5v-2.5L13 2Zm-2 7.8L8.8 13H13v3.4l3.2-4.4H11V9.8Z'/%3E%3C/svg%3E");
}

.wm-nutrient-minerals {
  --nutrient-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 8v10l8 4 8-4V8l-8-6Zm0 2.5L17.5 9 12 12.2 6.5 9 12 4.5ZM6 10.8l5 2.9v5.4l-5-2.5v-5.8Zm12 0v5.8l-5 2.5v-5.4l5-2.9Z'/%3E%3C/svg%3E");
}

.wm-infographic-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 24px;
  border: 1px dashed rgba(216, 199, 155, 0.8);
  border-radius: var(--wm-radius);
  background:
    linear-gradient(135deg, rgba(216, 199, 155, 0.16), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.wm-infographic-placeholder span,
.wm-infographic-placeholder strong {
  position: relative;
  z-index: 1;
  display: block;
}

.wm-infographic-placeholder span {
  color: var(--wm-gold);
  font-size: 0.92rem;
  font-weight: 900;
}

.wm-infographic-placeholder strong {
  max-width: 310px;
  margin-top: 18px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.18;
}

.wm-infographic-placeholder i {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(46%, 190px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.wm-infographic-placeholder i::before,
.wm-infographic-placeholder i::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: rgba(216, 199, 155, 0.24);
}

.wm-infographic-placeholder i::after {
  inset: 43%;
  background: var(--wm-gold);
}

.wm-pain-grid,
.wm-program-grid,
.wm-card-grid,
.wm-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wm-pain-grid article,
.wm-program-grid article,
.wm-card,
.wm-belief-grid article,
.wm-quiz,
.wm-faq-list details,
.wm-accordion details {
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: var(--wm-white);
  box-shadow: 0 16px 42px rgba(24, 35, 31, 0.06);
}

.wm-dark .wm-pain-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.wm-pain-grid article,
.wm-program-grid article {
  min-height: 210px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wm-pain-grid article:hover,
.wm-program-grid article:hover,
.wm-proof-grid article:hover {
  transform: translateY(-4px);
}

.wm-pain-icon,
.wm-program-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 199, 155, 0.55);
  color: var(--wm-gold);
  font-weight: 900;
}

.wm-pain-icon {
  border-radius: 12px;
  background: rgba(216, 199, 155, 0.12);
}

.wm-pain-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: var(--wm-gold);
  -webkit-mask: var(--pain-icon) center / 24px 24px no-repeat;
  mask: var(--pain-icon) center / 24px 24px no-repeat;
}

.wm-icon-muscle {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10c1-4 4-6 8-6h2v2h-2c-2.5 0-4.3 1-5.4 3H15v2H9.2c0 .4-.1.7-.1 1H16v2H9.2c.6 2.4 2.4 4 5.8 4h2v2h-2c-5 0-8-2.8-8-8v-2ZM4 8h2v8H4V8Z'/%3E%3C/svg%3E");
}

.wm-icon-energy,
.wm-icon-battery {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 5 13h6l-1 9 9-13h-6l0-7Z'/%3E%3C/svg%3E");
}

.wm-icon-hair {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a7 7 0 0 1 7 7v4a5 5 0 0 1-5 5h-1v-2h1a3 3 0 0 0 3-3v-4a5 5 0 0 0-10 0v3H5v-3a7 7 0 0 1 7-7Zm-1 7h2v11h-2V10Zm-4 5h2v6H7v-6Zm8 0h2v6h-2v-6Z'/%3E%3C/svg%3E");
}

.wm-icon-face {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12ZM9 9h2v2H9V9Zm4 0h2v2h-2V9Zm-4 5h6v2H9v-2Z'/%3E%3C/svg%3E");
}

.wm-icon-rebound {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7h8.6l-2.3-2.3L14.7 3 20 8.3l-5.3 5.3-1.4-1.4L15.6 10H7a3 3 0 0 0 0 6h10v2H7A5 5 0 0 1 7 7Z'/%3E%3C/svg%3E");
}

.wm-icon-stomach {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 3h2v5c0 1.3.7 2.2 2 2.9 2 1 3 2.7 3 5.1a5 5 0 0 1-10 0h2a3 3 0 0 0 6 0c0-1.6-.6-2.5-1.9-3.2C12 11.7 11 10.1 11 8V3ZM7 5h2v7H7V5Z'/%3E%3C/svg%3E");
}

.wm-icon-deficit {
  --pain-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 2 21h20L12 2Zm0 4.3L18.7 19H5.3L12 6.3ZM11 9h2v5h-2V9Zm0 7h2v2h-2v-2Z'/%3E%3C/svg%3E");
}

.wm-program-grid article > span::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--wm-green);
}

.wm-pain-grid h3,
.wm-program-grid h3 {
  margin-bottom: 10px;
}

.wm-warning {
  background: linear-gradient(180deg, var(--wm-bg), #fff);
}

.wm-warning-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.wm-warning-points span {
  padding: 13px 16px;
  border-right: 3px solid var(--wm-danger);
  background: #fff;
  color: var(--wm-ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(24, 35, 31, 0.06);
}

.wm-image-panel {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: var(--wm-cream);
  box-shadow: var(--wm-shadow);
}

.wm-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--wm-line);
  background: var(--wm-line);
}

.wm-flow-five {
  grid-template-columns: repeat(5, 1fr);
}

.wm-flow article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: #fff;
}

.wm-flow article::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 20px;
  height: 1px;
  background: var(--wm-gold);
}

.wm-flow article:first-child::after {
  display: none;
}

.wm-flow span {
  color: var(--wm-green);
  font-weight: 900;
}

.wm-flow h3 {
  margin: 28px 0 12px;
}

.wm-flow-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.wm-flow-board article,
.wm-flow-visual,
.wm-program-mosaic article,
.wm-included-board article {
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 35, 31, 0.06);
}

.wm-flow-board article {
  min-height: 230px;
  padding: 24px;
}

.wm-flow-board article span,
.wm-program-mosaic article span,
.wm-included-board article span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--wm-green-dark);
  color: #fff;
  font-weight: 900;
}

.wm-flow-board article h3 {
  margin-bottom: 12px;
}

.wm-flow-board article p {
  margin: 0;
}

.wm-flow-visual {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #10241f, #1e6f5c);
  color: #fff;
}

.wm-flow-visual strong {
  grid-column: 1 / -1;
  color: var(--wm-gold);
  font-size: 1rem;
}

.wm-flow-visual span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  text-align: center;
}

.wm-flow-visual i {
  width: 44px;
  height: 2px;
  background: var(--wm-gold);
}

.wm-solution,
.wm-soft {
  background: #fff;
}

.wm-program-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 14px;
}

.wm-program-mosaic article {
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.65), rgba(255, 255, 255, 0.98)),
    #fff;
}

.wm-program-mosaic article:nth-child(1),
.wm-program-mosaic article:nth-child(6) {
  grid-row: span 2;
  background: #151d1a;
}

.wm-program-mosaic article:nth-child(1) h3,
.wm-program-mosaic article:nth-child(1) p,
.wm-program-mosaic article:nth-child(6) h3,
.wm-program-mosaic article:nth-child(6) p {
  color: #fff;
}

.wm-program-mosaic h3,
.wm-included-board h3 {
  margin-bottom: 10px;
}

.wm-compare-grid,
.wm-belief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.wm-compare-card {
  padding: 30px;
  border-radius: var(--wm-radius);
  border: 1px solid var(--wm-line);
  background: #fff;
}

.wm-compare-card span,
.wm-belief-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wm-green);
  font-weight: 900;
}

.wm-compare-card h3 {
  margin-bottom: 18px;
}

.wm-compare-card li,
.wm-belief-grid li,
.wm-check-grid span,
.wm-fit-list p {
  position: relative;
  margin-bottom: 10px;
  padding: 12px 16px;
  background: var(--wm-bg);
  color: var(--wm-ink-soft);
  font-weight: 800;
}

.wm-chaos li::before,
.wm-mistake-list span {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  background: rgba(159, 63, 54, 0.1);
  color: var(--wm-danger);
  font-weight: 900;
}

.wm-order li::before,
.wm-check-grid span::before,
.wm-fit-list p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  background: var(--wm-green);
}

.wm-program-grid-wide {
  grid-template-columns: repeat(5, 1fr);
}

.wm-mistakes {
  background: #f2eee6;
}

.wm-mistake-list {
  display: grid;
  gap: 10px;
}

.wm-mistake-list div {
  padding: 16px 18px;
  border-right: 3px solid var(--wm-danger);
  background: #fff;
  color: var(--wm-ink);
  font-weight: 900;
}

.wm-about {
  background: linear-gradient(180deg, #fff, var(--wm-cream));
}

.wm-about-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wm-about-collage figure {
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: #fff;
}

.wm-about-collage figure:first-child {
  grid-row: span 2;
  min-height: 512px;
}

.wm-lead {
  color: var(--wm-ink);
  font-size: 1.18rem;
  font-weight: 850;
}

.wm-mini-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  background: var(--wm-line);
}

.wm-mini-timeline span {
  padding: 14px 12px;
  background: #fff;
  color: var(--wm-ink-soft);
  font-size: 0.92rem;
  font-weight: 850;
}

.wm-proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.wm-proof-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: #fff;
  transition: transform 180ms ease;
}

.wm-proof-grid strong {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(24, 35, 31, 0.86);
  color: #fff;
  font-size: 0.92rem;
}

.wm-band,
.wm-lead-magnet {
  background: var(--wm-green-dark);
  color: #fff;
}

.wm-band h2,
.wm-band .wm-eyebrow,
.wm-lead-magnet h2,
.wm-lead-magnet .wm-eyebrow,
.wm-final-cta h2,
.wm-final-cta .wm-eyebrow {
  color: #fff;
}

.wm-band p,
.wm-lead-magnet p,
.wm-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.wm-quiz {
  padding: 26px;
  color: var(--wm-ink);
}

.wm-quiz fieldset {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.wm-quiz fieldset.is-active {
  display: grid;
  gap: 10px;
}

.wm-quiz legend {
  margin-bottom: 18px;
  color: var(--wm-ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.wm-quiz label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--wm-bg);
  cursor: pointer;
}

.wm-quiz-progress {
  height: 6px;
  margin-bottom: 22px;
  background: var(--wm-line);
}

.wm-quiz-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--wm-green);
  transition: width 220ms ease;
}

.wm-quiz-error {
  margin: 14px 0 0;
  color: var(--wm-danger);
  font-weight: 900;
}

.wm-quiz .wm-button {
  width: 100%;
  margin-top: 18px;
}

.wm-quiz-done {
  display: none;
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  align-items: center;
  justify-content: center;
  background: var(--wm-gold);
  color: var(--wm-ink);
  font-weight: 900;
}

.wm-quiz.is-complete .wm-quiz-done {
  display: inline-flex;
}

.wm-faq-list,
.wm-accordion {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.wm-faq-list details,
.wm-accordion details {
  padding: 20px 22px;
}

.wm-faq-list summary,
.wm-accordion summary {
  color: var(--wm-ink);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.wm-faq-list p,
.wm-accordion p {
  margin-top: 14px;
}

.wm-final-cta {
  background: #151d1a;
}

.wm-final-cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wm-floating-whatsapp,
.wm-mobile-sticky-cta {
  position: fixed;
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.wm-floating-whatsapp {
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(24, 35, 31, 0.2);
}

body.wm-show-sticky .wm-floating-whatsapp,
body.wm-show-sticky .wm-mobile-sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wm-mobile-sticky-cta {
  display: none;
}

.wm-program-hero {
  padding: 76px 0 92px;
  background: linear-gradient(180deg, #fff, var(--wm-cream));
}

.wm-program-hero h1 {
  margin-bottom: 18px;
}

.wm-program-hero p {
  color: var(--wm-ink-soft);
  font-size: 1.35rem;
  font-weight: 850;
}

.wm-program-hero figure {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: #fff;
  box-shadow: var(--wm-shadow);
}

.wm-belief-grid article {
  padding: 30px;
}

.wm-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.wm-program-purpose .wm-split {
  align-items: start;
}

.wm-program-infographic {
  min-height: 250px;
  margin-top: 26px;
  background:
    linear-gradient(135deg, rgba(30, 111, 92, 0.12), rgba(216, 199, 155, 0.18)),
    repeating-linear-gradient(135deg, rgba(24, 35, 31, 0.06) 0 1px, transparent 1px 18px);
}

.wm-program-infographic strong {
  color: var(--wm-ink);
}

.wm-program-infographic span {
  color: var(--wm-green);
}

.wm-program-infographic i {
  border-color: rgba(30, 111, 92, 0.18);
}

.wm-included-section {
  background: linear-gradient(180deg, #fff, var(--wm-cream));
}

.wm-included-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.wm-included-board article {
  min-height: 230px;
  padding: 22px;
  background: #fff;
}

.wm-included-board article:nth-child(2n) {
  transform: translateY(18px);
}

.wm-included-board article:nth-child(4n + 1) {
  background: #151d1a;
}

.wm-included-board article:nth-child(4n + 1) h3,
.wm-included-board article:nth-child(4n + 1) p {
  color: #fff;
}

.wm-drama {
  text-align: center;
}

.wm-large-lines {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-inline: auto;
}

.wm-large-lines p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.wm-fit-section {
  background: var(--wm-cream);
}

.wm-fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.wm-page-hero {
  background: linear-gradient(180deg, #fff, var(--wm-cream));
}

.wm-page-hero p {
  max-width: 760px;
  color: var(--wm-ink-soft);
  font-size: 1.22rem;
  font-weight: 760;
}

.wm-blog-hero .wm-search-form {
  max-width: 760px;
  margin: 30px 0 20px;
}

.wm-search-form {
  display: flex;
  gap: 10px;
}

.wm-search-form label {
  flex: 1;
}

.wm-search-form input,
.wm-inline-form input {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  background: #fff;
  color: var(--wm-ink);
  font: inherit;
}

.category-pills,
.wm-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wm-category-pills a {
  padding: 8px 12px;
  border: 1px solid var(--wm-line);
  background: #fff;
  color: var(--wm-ink-soft);
  font-weight: 850;
}

.wm-card {
  overflow: hidden;
}

.wm-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wm-cream);
}

.wm-card-body {
  padding: 22px;
}

.wm-card-meta {
  margin-bottom: 10px;
  color: var(--wm-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.wm-card-body h3 {
  margin-bottom: 10px;
}

.wm-text-link {
  color: var(--wm-green);
  font-weight: 900;
}

.wm-single-image {
  margin-top: -46px;
}

.wm-single-image img {
  max-height: 560px;
  border: 1px solid var(--wm-line);
}

.wm-article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 44px;
  align-items: start;
}

.wm-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--wm-line);
  background: #fff;
}

.wm-toc strong {
  color: var(--wm-ink);
}

.wm-toc a {
  color: var(--wm-muted);
  font-weight: 800;
}

.wm-content {
  color: var(--wm-ink-soft);
  font-size: 1.08rem;
}

.wm-content h2,
.wm-content h3 {
  margin: 34px 0 14px;
}

.wm-content ul {
  list-style: disc;
  padding-right: 22px;
}

.wm-content li {
  margin-bottom: 8px;
}

.wm-inline-article-cta,
.wm-disclaimer {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--wm-line);
  background: var(--wm-cream);
}

.wm-inline-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wm-inline-article-cta strong {
  font-size: 1.14rem;
  color: var(--wm-ink);
}

.wm-inline-article-cta a {
  color: var(--wm-green);
  font-weight: 900;
  white-space: nowrap;
}

.wm-site-footer {
  padding: 76px 0 28px;
  background: #101714;
  color: #fff;
}

.wm-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 40px;
}

.wm-footer-brand small,
.wm-site-footer p,
.wm-footer-bottom,
.wm-site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.wm-site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.1rem;
}

.wm-footer-menu {
  display: grid;
  gap: 8px;
}

.wm-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.wm-socials a {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 900;
}

.wm-footer-privacy {
  margin-top: 36px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.wm-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.wm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.wm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wm-confetti {
  position: fixed;
  z-index: 999;
  width: 8px;
  height: 14px;
  animation: wmConfetti 1000ms ease forwards;
}

.wm-result-photo,
.wm-before-after,
.wm-video-frame,
.wm-video-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wm-cream);
}

.wm-result-photo img,
.wm-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wm-result-photo span,
.wm-before-after span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  background: rgba(24, 35, 31, 0.84);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.wm-before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.wm-before-after > div {
  position: relative;
  min-width: 0;
}

.wm-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.wm-video-placeholder {
  display: grid;
  place-items: center;
  color: var(--wm-muted);
  font-weight: 900;
}

.wm-tools-hero,
.wm-calculator-hero,
.wm-landing-hero {
  padding: 76px 0 92px;
  background: linear-gradient(180deg, #fff, var(--wm-cream));
}

.wm-tools-hero-inner,
.wm-calculator-hero-inner,
.wm-landing-grid,
.wm-calculator-gifts-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: center;
}

.wm-tools-hero p,
.wm-calculator-hero p,
.wm-landing-hero p {
  max-width: 700px;
  color: var(--wm-ink-soft);
  font-size: 1.18rem;
  font-weight: 760;
}

.wm-tools-hero-panel,
.wm-tools-grid,
.wm-calculator-gift-list,
.wm-faq-grid {
  display: grid;
  gap: 12px;
}

.wm-tools-hero-panel a,
.wm-tool-card,
.wm-calculator-hero-card,
.wm-calculator-gift-list article,
.wm-landing-card,
.wm-faq-grid article,
.wm-newsletter-placeholder {
  padding: 22px;
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 35, 31, 0.06);
}

.wm-tools-hero-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wm-tools-hero-panel span,
.wm-icon-badge,
.wm-calculator-gift-list span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(216, 199, 155, 0.6);
  color: var(--wm-green);
  font-weight: 900;
}

.wm-tools-grid {
  grid-template-columns: repeat(4, 1fr);
}

.wm-tool-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
}

.wm-tool-card-eyebrow {
  color: var(--wm-green);
  font-weight: 900;
}

.wm-tool-view-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.wm-tool-view-actions {
  display: flex;
  gap: 10px;
}

.wm-tool-frame-shell {
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: #fff;
}

.wm-tool-frame-shell iframe {
  display: block;
  width: 100%;
  min-height: 860px;
  border: 0;
}

.wm-calculator-hero-card {
  display: grid;
  gap: 18px;
}

.wm-calculator-hero-logo {
  max-width: 190px;
}

.wm-calculator-score {
  display: grid;
  padding: 20px;
  background: var(--wm-cream);
}

.wm-calculator-score strong {
  color: var(--wm-green);
  font-size: 2rem;
  line-height: 1;
}

.wm-calculator-hero-card li,
.wm-landing-card li {
  margin-bottom: 8px;
  color: var(--wm-ink-soft);
  font-weight: 800;
}

.wm-simple-hero {
  padding: 64px 0 86px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 234, 0.72)),
    var(--wm-bg);
}

.wm-simple-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 116px);
}

.wm-simple-hero-copy p {
  max-width: 710px;
  margin-top: 20px;
  color: var(--wm-ink-soft);
  font-size: 1.28rem;
  font-weight: 760;
  line-height: 1.5;
}

.wm-simple-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.wm-simple-note span {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--wm-line);
  border-radius: 999px;
  background: #fff;
  color: var(--wm-ink-soft);
  font-weight: 900;
}

.wm-simple-hero-visual {
  position: relative;
  min-height: 590px;
}

.wm-simple-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--wm-cream);
  box-shadow: var(--wm-shadow);
}

.wm-simple-photo img,
.wm-simple-fit figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wm-simple-photo-main {
  inset: 0 0 100px 82px;
}

.wm-simple-photo-side {
  left: 0;
  bottom: 0;
  width: 44%;
  aspect-ratio: 4 / 5;
}

.wm-simple-score {
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: grid;
  gap: 3px;
  min-width: 210px;
  padding: 20px;
  background: #151d1a;
  color: #fff;
  box-shadow: 0 18px 42px rgba(24, 35, 31, 0.22);
}

.wm-simple-score strong {
  color: var(--wm-gold);
  font-size: 1.35rem;
  line-height: 1.1;
}

.wm-simple-score span {
  font-weight: 900;
}

.wm-simple-pillars {
  background: #fff;
}

.wm-simple-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wm-simple-pillar-grid article,
.wm-simple-steps article,
.wm-simple-day-board,
.wm-simple-fit-list p {
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 35, 31, 0.06);
}

.wm-simple-pillar-grid article {
  min-height: 252px;
  padding: 26px;
}

.wm-simple-pillar-grid article:nth-child(1),
.wm-simple-pillar-grid article:nth-child(4) {
  background: #151d1a;
}

.wm-simple-pillar-grid article:nth-child(1) h3,
.wm-simple-pillar-grid article:nth-child(1) p,
.wm-simple-pillar-grid article:nth-child(4) h3,
.wm-simple-pillar-grid article:nth-child(4) p {
  color: #fff;
}

.wm-simple-pillar-grid span,
.wm-simple-steps span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--wm-green);
  color: #fff;
  font-weight: 900;
}

.wm-simple-pillar-grid h3 {
  margin-bottom: 12px;
}

.wm-simple-system {
  background: linear-gradient(180deg, var(--wm-cream), #fff);
}

.wm-simple-steps {
  display: grid;
  gap: 12px;
}

.wm-simple-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.wm-simple-steps span {
  margin-bottom: 0;
  background: var(--wm-green-dark);
}

.wm-simple-steps h3 {
  margin-bottom: 6px;
}

.wm-simple-steps p,
.wm-simple-pillar-grid p,
.wm-simple-fit-list p {
  margin: 0;
}

.wm-simple-day {
  background: #151d1a;
  color: #fff;
}

.wm-simple-day h2,
.wm-simple-day .wm-eyebrow {
  color: #fff;
}

.wm-simple-day p {
  color: rgba(255, 255, 255, 0.72);
}

.wm-simple-day-board {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(30, 111, 92, 0.2), rgba(216, 199, 155, 0.1)),
    rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.wm-simple-day-board li {
  position: relative;
  margin-bottom: 10px;
  padding: 15px 18px 15px 16px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 900;
}

.wm-simple-day-board li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  background: var(--wm-gold);
}

.wm-simple-fit {
  background: var(--wm-bg);
}

.wm-simple-fit figure {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: #fff;
  box-shadow: var(--wm-shadow);
}

.wm-simple-fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.wm-simple-fit-list p {
  min-height: 70px;
  padding: 15px 16px;
  color: var(--wm-ink-soft);
  font-weight: 850;
}

.wm-simple-fit-list p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  background: var(--wm-green);
}

.wm-simple-final {
  background: #fff;
}

.wm-simple-final small {
  display: block;
  max-width: 690px;
  color: var(--wm-muted);
  font-weight: 700;
}

.wm-calculator-embed-shell {
  overflow: hidden;
  border: 1px solid var(--wm-line);
  background: #fff;
  box-shadow: var(--wm-shadow);
}

.wm-newsletter-placeholder {
  max-width: 760px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes wmConfetti {
  to {
    opacity: 0;
    transform: translate(var(--x), 180px) rotate(260deg);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .wm-pain-grid,
  .wm-program-grid,
  .wm-card-grid,
  .wm-featured-grid,
  .wm-program-grid-wide,
  .wm-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-proof-grid,
  .wm-logo-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .wm-flow,
  .wm-flow-five {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-problem-layout,
  .wm-program-mosaic,
  .wm-included-board,
  .wm-simple-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-flow-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-program-mosaic article:nth-child(1),
  .wm-program-mosaic article:nth-child(6) {
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .wm-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .wm-menu-toggle {
    display: block;
  }

  .wm-main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 14px;
    background: var(--wm-bg);
    border-bottom: 1px solid var(--wm-line);
    box-shadow: var(--wm-shadow);
  }

  .wm-main-nav.is-open {
    display: block;
  }

  .wm-menu {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .wm-menu a {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 16px;
    border-radius: var(--wm-radius);
    background: #fff;
  }

  .wm-header-cta {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .wm-section,
  .wm-page-hero {
    padding: 68px 0;
  }

  .wm-hero-inner,
  .wm-split,
  .wm-program-hero-inner,
  .wm-final-cta-inner,
  .wm-tools-hero-inner,
    .wm-calculator-hero-inner,
    .wm-landing-grid,
    .wm-simple-hero-inner,
    .wm-simple-day-board,
    .wm-calculator-gifts-inner,
    .wm-compare-grid,
    .wm-belief-grid,
  .wm-article-layout,
  .wm-footer-grid {
    grid-template-columns: 1fr;
  }

  .wm-hero-inner {
    min-height: auto;
  }

  .wm-hero-copy p,
  .wm-simple-hero-copy p,
  .wm-program-hero p,
  .wm-page-hero p {
    font-size: 1.1rem;
  }

  .wm-simple-hero-inner {
    min-height: auto;
  }

  .wm-simple-hero-visual {
    min-height: 520px;
  }

  .wm-simple-photo-main {
    inset: 0 0 72px 48px;
  }

  .wm-hero-visual {
    min-height: 520px;
  }

  .wm-hero-photo-main {
    inset: 0 0 70px 48px;
  }

  .wm-pain-grid,
  .wm-program-grid,
  .wm-program-mosaic,
  .wm-card-grid,
  .wm-featured-grid,
    .wm-program-grid-wide,
    .wm-simple-pillar-grid,
    .wm-simple-fit-list,
    .wm-tools-grid,
    .wm-proof-grid,
    .wm-logo-strip-inner,
  .wm-flow,
  .wm-flow-board,
  .wm-flow-five,
  .wm-check-grid,
  .wm-included-board,
  .wm-fit-list,
  .wm-mini-timeline {
    grid-template-columns: 1fr;
  }

  .wm-problem-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .wm-flow-visual {
    grid-template-columns: 1fr;
  }

  .wm-flow-visual i {
    width: 2px;
    height: 34px;
    justify-self: center;
  }

  .wm-included-board article:nth-child(2n) {
    transform: none;
  }

  .wm-pain-grid article,
  .wm-program-grid article,
  .wm-flow article {
    min-height: auto;
  }

  .wm-about-collage,
  .wm-about-collage figure:first-child {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wm-about-collage figure {
    min-height: 260px;
  }

  .wm-simple-fit figure {
    min-height: 360px;
  }

  .wm-toc {
    position: static;
  }

  .wm-floating-whatsapp {
    display: none;
  }

  .wm-mobile-sticky-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--wm-green);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(24, 35, 31, 0.22);
  }

  .wm-footer-bottom,
  .wm-inline-article-cta,
  .wm-search-form,
  .wm-calculator-promo-inner,
  .wm-tool-view-head,
  .wm-tool-view-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wm-container {
    width: min(100% - 24px, 1160px);
  }

  .wm-brand-logo {
    width: 166px;
  }

  .wm-header-cta {
    display: none;
  }

  .wm-hero {
    padding-top: 38px;
  }

  .wm-simple-hero {
    padding: 42px 0 64px;
  }

  .wm-hero-actions .wm-button {
    width: 100%;
  }

  .wm-simple-note {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wm-hero-visual {
    min-height: 420px;
  }

  .wm-simple-hero-visual {
    min-height: 430px;
  }

  .wm-simple-photo-side {
    width: 52%;
  }

  .wm-simple-score {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  .wm-hero-photo-side {
    width: 50%;
  }

  .wm-hero-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    font-size: 1rem;
  }

  .wm-pain-grid article,
  .wm-program-grid article,
    .wm-program-mosaic article,
    .wm-simple-pillar-grid article,
    .wm-simple-day-board,
    .wm-included-board article,
    .wm-compare-card,
  .wm-belief-grid article,
  .wm-quiz,
  .wm-card-body {
    padding: 20px;
  }

  .wm-infographic-placeholder {
    min-height: 230px;
  }

  .wm-infographic-placeholder strong {
    font-size: 1.2rem;
  }

  .wm-nutrient-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-nutrient {
    justify-content: center;
  }
}
