/* Mechawork homepage-managed footer blocks and popup content. */
.mw-footer-column {
  --mw-footer-text: var(--font-color, #2b211a);
  --mw-footer-muted: rgba(43, 33, 26, 0.72);
  --mw-footer-accent: var(--buttons, #d06423);
  --mw-footer-line: rgba(43, 33, 26, 0.16);
  color: var(--mw-footer-text);
  margin: 0;
  padding: 0;
}

.mw-footer-column__title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--mw-footer-text);
}

.mw-footer-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.mw-footer-column__item {
  margin: 0;
  padding: 0;
}

.mw-footer-column__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.7rem;
  color: var(--mw-footer-muted);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mw-footer-column__link:hover,
.mw-footer-column__link:focus {
  color: var(--mw-footer-accent);
  border-bottom-color: currentColor;
  transform: translateX(2px);
  outline: none;
}

.mw-footer-column__link--popup::after {
  content: "↗";
  font-size: 0.78em;
  opacity: 0.7;
}

.mw-about-popup__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 0.75rem;
}

.mw-about-popup__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.15;
  color: var(--buttons, #d06423);
}

.mw-about-popup__copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--buttons-rgb, 208,100,35), 0.35);
  background: rgba(var(--buttons-rgb, 208,100,35), 0.08);
  color: var(--buttons, #d06423);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}

.mw-about-popup__copy-link:hover,
.mw-about-popup__copy-link:focus {
  background: rgba(var(--buttons-rgb, 208,100,35), 0.16);
  outline: none;
}

.mw-about-popup__intro {
  margin: 0 0 1rem;
  color: var(--font-color, #2b211a);
  opacity: 0.82;
  line-height: 1.6;
}

.mw-interface-rich {
  color: var(--font-color, #2b211a);
  line-height: 1.72;
  font-size: 1rem;
}

.mw-interface-rich h3 {
  margin: 0 0 0.75rem;
  color: var(--buttons, #d06423);
  font-size: 1.25rem;
}

.mw-interface-rich p {
  margin: 0 0 0.9rem;
}

.mw-interface-rich ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.mw-interface-rich a {
  color: var(--buttons, #d06423);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--buttons-rgb, 208,100,35), 0.35);
}

.mw-interface-rich a:hover,
.mw-interface-rich a:focus {
  border-bottom-color: currentColor;
  outline: none;
}

.mw-interface-faq details {
  border: 1px solid rgba(var(--buttons-rgb, 208,100,35), 0.22);
  border-radius: 14px;
  background: rgba(255,255,255,0.66);
  overflow: hidden;
}

.mw-interface-faq details + details {
  margin-top: 0.65rem;
}

.mw-interface-faq summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 800;
  color: var(--buttons, #d06423);
}

.mw-interface-faq details p {
  padding: 0 1rem 1rem;
  margin: 0;
}

.mw-contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.mw-contact-topic-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem;
  border: 1px solid rgba(var(--buttons-rgb, 208,100,35), 0.25);
  border-radius: 14px;
  background: rgba(var(--buttons-rgb, 208,100,35), 0.08);
  text-align: center;
}

@media (max-width: 700px) {
  .mw-contact-topic-grid {
    grid-template-columns: 1fr;
  }

  .mw-about-popup__titlebar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* === Mechawork personalization guide visual flow === */
.mw-personalization-map {
  --mw-guide-text: var(--font-color, #2b211a);
  --mw-guide-muted: var(--font-color, #2b211a);
  --mw-guide-accent: var(--logo-color, var(--buttons, #d06423));
  margin: 22px 0 26px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(23, 19, 15, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(var(--buttons-rgb, 208,100,35), 0.14), transparent 38%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 42px rgba(20, 14, 8, 0.08);
  color: var(--mw-guide-text);
}

.mw-personalization-map__head {
  max-width: 820px;
  margin-bottom: 20px;
}

.mw-personalization-map__head h3 {
  margin: 0 0 8px;
  color: var(--mw-guide-text);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.mw-personalization-map__head p {
  margin: 0;
  color: var(--mw-guide-muted);
  opacity: 1;
  line-height: 1.68;
}

.mw-process-diagram {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.mw-process-step {
  position: relative;
  min-width: 0;
  min-height: 136px;
  padding: 16px 14px;
  border: 1px solid rgba(23, 19, 15, 0.12);
  border-radius: 20px;
  background: #fff;
  color: var(--mw-guide-text);
  box-shadow: 0 10px 26px rgba(20, 14, 8, 0.07);
}

.mw-process-step::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  z-index: 2;
  width: 26px;
  height: 26px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--mw-guide-accent);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(var(--buttons-rgb, 208,100,35), 0.28);
}

.mw-process-step:last-child::after {
  display: none;
}

.mw-process-step__number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(var(--buttons-rgb, 208,100,35), 0.12);
  color: var(--mw-guide-accent);
  font-weight: 900;
  font-size: 0.9rem;
}

.mw-process-step h4 {
  margin: 0 0 8px;
  color: var(--mw-guide-text);
  font-size: 1rem;
  line-height: 1.18;
}

.mw-process-step p {
  margin: 0;
  color: var(--mw-guide-muted);
  opacity: 1;
  font-size: 0.9rem;
  line-height: 1.52;
}

.mw-guide-choice-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
}

.mw-guide-choice,
.mw-guide-card,
.mw-compare-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(23, 19, 15, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.mw-guide-choice strong,
.mw-guide-card h4,
.mw-compare-card h4 {
  display: block;
  margin: 0 0 6px;
  color: var(--mw-guide-text, var(--font-color, #2b211a));
  font-weight: 900;
}

.mw-guide-choice span,
.mw-guide-card p,
.mw-compare-card li {
  color: var(--mw-guide-muted, var(--font-color, #2b211a));
  opacity: 1;
  line-height: 1.58;
}

.mw-guide-section {
  margin-top: 24px;
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(23, 19, 15, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.60);
}

.mw-guide-section h3 {
  margin: 0 0 10px;
  color: var(--mw-guide-text, var(--font-color, #2b211a));
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.mw-guide-section p {
  margin: 0 0 12px;
}

.mw-guide-card-grid,
.mw-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mw-guide-card-grid:first-of-type {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mw-guide-step-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.mw-guide-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(23, 19, 15, 0.10);
  border-radius: 18px;
  background: #fff;
}

.mw-guide-step__number {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(var(--buttons-rgb, 208,100,35), 0.12);
  color: var(--mw-guide-accent, var(--buttons, #d06423));
  font-weight: 900;
}

.mw-guide-step__body h4 {
  margin: 0 0 6px;
  color: var(--mw-guide-text, var(--font-color, #2b211a));
}

.mw-guide-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mw-guide-link-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 15, 0.12);
  background: #fff;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
}

.mw-guide-link-grid a:hover,
.mw-guide-link-grid a:focus {
  background: rgba(var(--buttons-rgb, 208,100,35), 0.10);
  border-color: rgba(var(--buttons-rgb, 208,100,35), 0.42);
}

.mw-popup-cta {
  margin-top: 24px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 24px;
  border: 1px solid rgba(var(--buttons-rgb, 208,100,35), 0.22);
  background-color: rgba(var(--buttons-rgb, 208,100,35), 0.055);
  background-image: linear-gradient(
    135deg,
    rgba(var(--buttons-rgb, 208,100,35), 0.16),
    rgba(var(--buttons-rgb, 208,100,35), 0.055)
  );
}

.mw-popup-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 15, 0.14);
  text-decoration: none !important;
  font-weight: 900;
}

.mw-button--primary {
  background: var(--buttons, #d06423);
  color: #fff !important;
  border-color: var(--buttons, #d06423);
}

.mw-button--secondary {
  background: #fff;
  color: var(--font-color, #2b211a) !important;
}

.mw-button--muted {
  background: rgba(43, 33, 26, 0.07);
  color: var(--font-color, #2b211a) !important;
  opacity: 0.86;
}

@media (min-width: 1500px) {
  .mw-process-diagram {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .mw-process-step::after {
    display: grid;
  }

  .mw-process-step:last-child::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .mw-process-diagram,
  .mw-guide-choice-strip,
  .mw-guide-card-grid,
  .mw-compare-grid,
  .mw-guide-link-grid {
    grid-template-columns: 1fr;
  }

  .mw-process-step {
    min-height: auto;
  }

  .mw-guide-step {
    grid-template-columns: 1fr;
  }

  .mw-popup-cta__links {
    flex-direction: column;
  }
}



/* === Mechawork personalization diagram v10503: black text + wrapped arrows === */
.mw-personalization-map .mw-process-diagram {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 46px 54px;
  overflow: visible;
}

.mw-personalization-map .mw-process-step,
.mw-personalization-map .mw-process-step h4,
.mw-personalization-map .mw-process-step p,
.mw-personalization-map .mw-process-step__number {
  color: #000 !important;
  opacity: 1 !important;
}

.mw-personalization-map .mw-process-step::after {
  content: "→";
  display: grid;
  top: 50%;
  right: -40px;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}

.mw-personalization-map .mw-process-step:nth-child(4)::after {
  content: "↙";
  top: auto;
  right: auto;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.mw-personalization-map .mw-process-step:nth-child(7)::after {
  display: none;
}

.mw-price-combination-section {
  background:
    radial-gradient(circle at top right, rgba(var(--buttons-rgb, 208,100,35), 0.12), transparent 42%),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(var(--buttons-rgb, 208,100,35), 0.22);
}

@media (max-width: 1199px) {
  .mw-personalization-map .mw-process-diagram {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 46px 54px;
  }

  .mw-personalization-map .mw-process-step::after {
    content: "→";
    display: grid;
    top: 50%;
    right: -40px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(3)::after,
  .mw-personalization-map .mw-process-step:nth-child(6)::after {
    content: "↙";
    top: auto;
    right: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(7)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .mw-personalization-map .mw-process-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 48px;
  }

  .mw-personalization-map .mw-process-step:nth-child(odd)::after {
    content: "→";
    display: grid;
    top: 50%;
    right: -36px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(even)::after {
    content: "↙";
    display: grid;
    top: auto;
    right: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(7)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .mw-personalization-map .mw-process-diagram {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mw-personalization-map .mw-process-step::after,
  .mw-personalization-map .mw-process-step:nth-child(odd)::after,
  .mw-personalization-map .mw-process-step:nth-child(even)::after {
    content: "↓";
    display: grid;
    top: auto;
    right: auto;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(7)::after {
    display: none;
  }
}

/* === Mechawork personalization diagram v10504: black guide text + snake row order === */
.mw-popup-content--how-it-works .mw-guide-section,
.mw-popup-content--how-it-works .mw-guide-section h3,
.mw-popup-content--how-it-works .mw-guide-section h4,
.mw-popup-content--how-it-works .mw-guide-section p,
.mw-popup-content--how-it-works .mw-guide-section li,
.mw-popup-content--how-it-works .mw-guide-section span,
.mw-popup-content--how-it-works .mw-guide-section strong,
.mw-popup-content--how-it-works .mw-guide-section .mw-guide-step__body,
.mw-popup-content--how-it-works .mw-guide-section .mw-guide-step__body h4,
.mw-popup-content--how-it-works .mw-guide-section .mw-guide-step__body p,
.mw-popup-content--how-it-works .mw-guide-section .mw-guide-step__number,
.mw-popup-content--how-it-works .mw-compare-card,
.mw-popup-content--how-it-works .mw-compare-card h4,
.mw-popup-content--how-it-works .mw-compare-card li,
.mw-popup-content--how-it-works .mw-guide-card,
.mw-popup-content--how-it-works .mw-guide-card h4,
.mw-popup-content--how-it-works .mw-guide-card p {
  color: #000 !important;
  opacity: 1 !important;
}

.mw-popup-content--how-it-works .mw-guide-section a {
  color: #000 !important;
  border-bottom-color: rgba(0, 0, 0, 0.45) !important;
}

.mw-popup-content--how-it-works .mw-guide-section a:hover,
.mw-popup-content--how-it-works .mw-guide-section a:focus {
  border-bottom-color: #000 !important;
}

.mw-personalization-map .mw-process-diagram {
  grid-template-columns: repeat(4, minmax(150px, 1fr)) !important;
  gap: 46px 54px !important;
  overflow: visible;
}

.mw-personalization-map .mw-process-step:nth-child(1) { grid-column: 1; grid-row: 1; }
.mw-personalization-map .mw-process-step:nth-child(2) { grid-column: 2; grid-row: 1; }
.mw-personalization-map .mw-process-step:nth-child(3) { grid-column: 3; grid-row: 1; }
.mw-personalization-map .mw-process-step:nth-child(4) { grid-column: 4; grid-row: 1; }
.mw-personalization-map .mw-process-step:nth-child(5) { grid-column: 4; grid-row: 2; }
.mw-personalization-map .mw-process-step:nth-child(6) { grid-column: 3; grid-row: 2; }
.mw-personalization-map .mw-process-step:nth-child(7) { grid-column: 2; grid-row: 2; }

.mw-personalization-map .mw-process-step::after {
  content: "→";
  display: grid !important;
  top: 50%;
  right: -40px;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}

.mw-personalization-map .mw-process-step:nth-child(4)::after {
  content: "↓";
  top: auto;
  right: auto;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.mw-personalization-map .mw-process-step:nth-child(5)::after,
.mw-personalization-map .mw-process-step:nth-child(6)::after {
  content: "←";
  top: 50%;
  right: auto;
  bottom: auto;
  left: -40px;
  transform: translateY(-50%);
}

.mw-personalization-map .mw-process-step:nth-child(7)::after {
  display: none !important;
}

@media (max-width: 1199px) {
  .mw-personalization-map .mw-process-diagram {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    gap: 46px 54px !important;
  }

  .mw-personalization-map .mw-process-step:nth-child(1) { grid-column: 1; grid-row: 1; }
  .mw-personalization-map .mw-process-step:nth-child(2) { grid-column: 2; grid-row: 1; }
  .mw-personalization-map .mw-process-step:nth-child(3) { grid-column: 3; grid-row: 1; }
  .mw-personalization-map .mw-process-step:nth-child(4) { grid-column: 3; grid-row: 2; }
  .mw-personalization-map .mw-process-step:nth-child(5) { grid-column: 2; grid-row: 2; }
  .mw-personalization-map .mw-process-step:nth-child(6) { grid-column: 1; grid-row: 2; }
  .mw-personalization-map .mw-process-step:nth-child(7) { grid-column: 1; grid-row: 3; }

  .mw-personalization-map .mw-process-step:nth-child(1)::after,
  .mw-personalization-map .mw-process-step:nth-child(2)::after {
    content: "→";
    top: 50%;
    right: -40px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(3)::after,
  .mw-personalization-map .mw-process-step:nth-child(6)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(4)::after,
  .mw-personalization-map .mw-process-step:nth-child(5)::after {
    content: "←";
    top: 50%;
    right: auto;
    bottom: auto;
    left: -40px;
    transform: translateY(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(7)::after {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .mw-personalization-map .mw-process-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 46px 48px !important;
  }

  .mw-personalization-map .mw-process-step:nth-child(1) { grid-column: 1; grid-row: 1; }
  .mw-personalization-map .mw-process-step:nth-child(2) { grid-column: 2; grid-row: 1; }
  .mw-personalization-map .mw-process-step:nth-child(3) { grid-column: 2; grid-row: 2; }
  .mw-personalization-map .mw-process-step:nth-child(4) { grid-column: 1; grid-row: 2; }
  .mw-personalization-map .mw-process-step:nth-child(5) { grid-column: 1; grid-row: 3; }
  .mw-personalization-map .mw-process-step:nth-child(6) { grid-column: 2; grid-row: 3; }
  .mw-personalization-map .mw-process-step:nth-child(7) { grid-column: 2; grid-row: 4; }

  .mw-personalization-map .mw-process-step:nth-child(1)::after,
  .mw-personalization-map .mw-process-step:nth-child(5)::after {
    content: "→";
    top: 50%;
    right: -36px;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(2)::after,
  .mw-personalization-map .mw-process-step:nth-child(4)::after,
  .mw-personalization-map .mw-process-step:nth-child(6)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(3)::after {
    content: "←";
    top: 50%;
    right: auto;
    bottom: auto;
    left: -36px;
    transform: translateY(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(7)::after {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .mw-personalization-map .mw-process-diagram {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .mw-personalization-map .mw-process-step:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .mw-personalization-map .mw-process-step::after,
  .mw-personalization-map .mw-process-step:nth-child(odd)::after,
  .mw-personalization-map .mw-process-step:nth-child(even)::after {
    content: "↓";
    display: grid !important;
    top: auto;
    right: auto;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-personalization-map .mw-process-step:nth-child(7)::after {
    display: none !important;
  }
}

/* === Mechawork personalization diagram v10505: black header/buttons/choices/arrows === */
.mw-popup-content--how-it-works .mw-personalization-map,
.mw-popup-content--how-it-works .mw-personalization-map__head,
.mw-popup-content--how-it-works .mw-personalization-map__head h3,
.mw-popup-content--how-it-works .mw-personalization-map__head p,
.mw-popup-content--how-it-works .mw-guide-choice,
.mw-popup-content--how-it-works .mw-guide-choice strong,
.mw-popup-content--how-it-works .mw-guide-choice span,
.mw-popup-content--how-it-works .mw-guide-choice-strip,
.mw-popup-content--how-it-works .mw-guide-section,
.mw-popup-content--how-it-works .mw-guide-section h3,
.mw-popup-content--how-it-works .mw-guide-section h4,
.mw-popup-content--how-it-works .mw-guide-section p,
.mw-popup-content--how-it-works .mw-guide-section li,
.mw-popup-content--how-it-works .mw-guide-section span,
.mw-popup-content--how-it-works .mw-guide-section strong,
.mw-popup-content--how-it-works .mw-guide-card,
.mw-popup-content--how-it-works .mw-guide-card h4,
.mw-popup-content--how-it-works .mw-guide-card p,
.mw-popup-content--how-it-works .mw-guide-step,
.mw-popup-content--how-it-works .mw-guide-step__body,
.mw-popup-content--how-it-works .mw-guide-step__body h4,
.mw-popup-content--how-it-works .mw-guide-step__body p,
.mw-popup-content--how-it-works .mw-compare-card,
.mw-popup-content--how-it-works .mw-compare-card h4,
.mw-popup-content--how-it-works .mw-compare-card li {
  color: #000 !important;
  opacity: 1 !important;
}

.mw-popup-content--how-it-works .mw-button.mw-button--secondary,
.mw-popup-content--how-it-works a.mw-button.mw-button--secondary,
.mw-popup-content--how-it-works .mw-popup-cta .mw-button.mw-button--secondary {
  color: #000 !important;
}

.mw-popup-content--how-it-works .mw-button.mw-button--secondary:hover,
.mw-popup-content--how-it-works .mw-button.mw-button--secondary:focus {
  color: #000 !important;
}

.mw-popup-content--how-it-works .mw-personalization-map .mw-process-step::after {
  color: #000 !important;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.24) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14) !important;
}

.mw-popup-content--how-it-works .mw-personalization-map .mw-process-step__number {
  color: #000 !important;
}

.mw-popup-content--how-it-works .mw-guide-link-grid a,
.mw-popup-content--how-it-works .mw-guide-section a {
  color: #000 !important;
  border-bottom-color: rgba(0, 0, 0, 0.45) !important;
}

.mw-popup-content--how-it-works .mw-guide-link-grid a:hover,
.mw-popup-content--how-it-works .mw-guide-link-grid a:focus,
.mw-popup-content--how-it-works .mw-guide-section a:hover,
.mw-popup-content--how-it-works .mw-guide-section a:focus {
  color: #000 !important;
  border-bottom-color: #000 !important;
}


/* === Mechawork popup white-surface text normalization v10506 === */
.mw-popup-content .mw-guide-section,
.mw-popup-content .mw-guide-section h3,
.mw-popup-content .mw-guide-section h4,
.mw-popup-content .mw-guide-section p,
.mw-popup-content .mw-guide-section li,
.mw-popup-content .mw-guide-section span,
.mw-popup-content .mw-guide-section strong,
.mw-popup-content .mw-compare-grid,
.mw-popup-content .mw-compare-grid *,
.mw-popup-content .mw-compare-card,
.mw-popup-content .mw-compare-card *,
.mw-popup-content .mw-guide-card,
.mw-popup-content .mw-guide-card *,
.mw-popup-content .mw-guide-card-grid,
.mw-popup-content .mw-guide-step,
.mw-popup-content .mw-guide-step *,
.mw-popup-content .mw-faq-item,
.mw-popup-content .mw-faq-item summary,
.mw-popup-content .mw-faq-answer,
.mw-popup-content .mw-faq-answer *,
.mw-popup-content .mw-contact-topic-grid,
.mw-popup-content .mw-contact-topic-grid a {
  color: #000 !important;
  opacity: 1 !important;
}

.mw-popup-content .mw-guide-section a,
.mw-popup-content .mw-compare-card a,
.mw-popup-content .mw-guide-card a,
.mw-popup-content .mw-guide-step a,
.mw-popup-content .mw-faq-answer a,
.mw-popup-content .mw-contact-topic-grid a {
  color: #000 !important;
  border-bottom-color: rgba(0, 0, 0, 0.45) !important;
}

.mw-popup-content .mw-guide-section a:hover,
.mw-popup-content .mw-guide-section a:focus,
.mw-popup-content .mw-compare-card a:hover,
.mw-popup-content .mw-compare-card a:focus,
.mw-popup-content .mw-guide-card a:hover,
.mw-popup-content .mw-guide-card a:focus,
.mw-popup-content .mw-guide-step a:hover,
.mw-popup-content .mw-guide-step a:focus,
.mw-popup-content .mw-faq-answer a:hover,
.mw-popup-content .mw-faq-answer a:focus,
.mw-popup-content .mw-contact-topic-grid a:hover,
.mw-popup-content .mw-contact-topic-grid a:focus {
  color: #000 !important;
  border-bottom-color: #000 !important;
}

.mw-popup-content .mw-button.mw-button--secondary,
.mw-popup-content a.mw-button.mw-button--secondary,
.mw-popup-content .mw-popup-cta .mw-button.mw-button--secondary {
  color: #000 !important;
}
