:root {
  /* Color Variables - Vibrant COLORFUL Theme */
  --mm-bg-foundation: #0b071a;
  --mm-bg-panel: #160f33;
  --mm-bg-panel-darker: #0d0921;
  --mm-glowing-pink: #ff007f;
  --mm-glowing-cyan: #00f0ff;
  --mm-glowing-purple: #9200ff;
  --mm-glowing-amber: #ffaa00;
  
  /* Text Colors */
  --mm-text-high: #ffffff;
  --mm-text-mid: #d1cbe5;
  --mm-text-low: #8b81b3;
  
  /* Fonts */
  --mm-font-head: 'Oswald', sans-serif;
  --mm-font-body: 'Poppins', sans-serif;
  
  /* Layout constraints */
  --mm-inner-width: 1120px;
  --mm-border-radius: 16px; /* Soft structure */
  
  /* Deep Glowing Shadows */
  --mm-shadow-force: 0 16px 48px rgba(255, 0, 127, 0.25), 0 8px 24px rgba(0, 240, 255, 0.2);
}

/* BASE STYLING */
body.mm-body-canvas {
  background-color: var(--mm-bg-foundation);
  color: var(--mm-text-mid);
  font-family: var(--mm-font-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
}

/* CUSTOM WRAPPER */
.mm-viewport-bound {
  width: 100%;
  max-width: var(--mm-inner-width);
  margin-left: auto;
  margin-right: auto;
}

.mm-padded-content {
  padding: 2rem 1rem;
}

/* HEADER STYLE */
.mm-site-top {
  background-color: var(--mm-bg-panel-darker);
  border-bottom: 2px solid var(--mm-glowing-pink);
  z-index: 20;
  position: relative;
  width: 100%;
}

.mm-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1rem;
}

.mm-brand-holder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mm-font-head);
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mm-logo-mark {
  width: 32px;
  height: 32px;
  color: var(--mm-glowing-pink);
  filter: drop-shadow(0 0 8px var(--mm-glowing-pink));
}

.mm-header-decoration {
  display: none;
}

@media (min-width: 1024px) {
  .mm-header-decoration {
    display: flex;
    gap: 0.5rem;
  }
}

.mm-deco-node {
  width: 10px;
  height: 10px;
  background-color: var(--mm-glowing-cyan);
  border-radius: 999px;
  display: inline-block;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px var(--mm-glowing-cyan));
}
.mm-deco-node:nth-child(2) {
  background-color: var(--mm-glowing-pink);
  filter: drop-shadow(0 0 6px var(--mm-glowing-pink));
}
.mm-deco-node:nth-child(3) {
  background-color: var(--mm-glowing-amber);
  filter: drop-shadow(0 0 6px var(--mm-glowing-amber));
}

/* PRODUCT BLOCK - PRESET B */
.mm-stage-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .mm-stage-split {
    flex-direction: row;
    align-items: flex-start;
  }
}

.mm-left-deck {
  width: 100%;
}

@media (min-width: 1024px) {
  .mm-left-deck {
    width: 55%;
  }
}

.mm-right-deck {
  width: 100%;
}

@media (min-width: 1024px) {
  .mm-right-deck {
    width: 45%;
    position: sticky;
    top: 2rem;
  }
}

/* CORES AND TYPOGRAPHY */
.mm-main-head {
  font-family: var(--mm-font-head);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--mm-text-high);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 30%, var(--mm-glowing-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .mm-main-head {
    font-size: 3.5rem;
  }
}

.mm-sub-head {
  font-size: 1.125rem;
  color: var(--mm-text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* BENEFIT PILLS */
.mm-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mm-badge-item {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.2) 0%, rgba(146, 0, 255, 0.2) 100%);
  border: 1.5px solid var(--mm-glowing-pink);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.15);
}

.mm-desc-box {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mm-text-mid);
  margin-bottom: 2rem;
  background-color: var(--mm-bg-panel);
  padding: 1.5rem;
  border-radius: var(--mm-border-radius);
  border-left: 4px solid var(--mm-glowing-cyan);
  box-shadow: var(--mm-shadow-force);
}

/* QUICK ICONS ROW */
.mm-quick-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mm-quick-icon-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #ffffff;
}

.mm-mini-dot {
  background-color: var(--mm-glowing-cyan);
  color: var(--mm-bg-foundation);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* GUARANTEE BADGE - ICON-LEFT */
.mm-guard-ribbon {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--mm-bg-panel) 0%, var(--mm-bg-panel-darker) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mm-border-radius);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
}

.mm-guard-icon {
  width: 48px;
  height: 48px;
  color: var(--mm-glowing-amber);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--mm-glowing-amber));
}

.mm-guard-text {
  font-size: 0.875rem;
}

.mm-guard-text strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.mm-guard-text p {
  color: var(--mm-text-low);
  margin: 0;
}

/* CTA BLOCK */
.mm-sticky-action {
  background-color: var(--mm-bg-panel-darker);
  border: 2px solid var(--mm-glowing-cyan);
  border-radius: var(--mm-border-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

@media (min-width: 640px) {
  .mm-sticky-action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.mm-cost-holder {
  display: flex;
  flex-direction: column;
}

.mm-cost-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mm-text-low);
  margin-bottom: 0.25rem;
}

/* Price element as accent badge */
.mm-cost-badge {
  font-family: var(--mm-font-head);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--mm-glowing-pink);
  padding: 0.25rem 1.25rem;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
  letter-spacing: 0.02em;
}

.mm-deal-trigger {
  font-family: var(--mm-font-head);
  background: linear-gradient(135deg, var(--mm-glowing-cyan) 0%, var(--mm-glowing-purple) 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--mm-border-radius);
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.mm-deal-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  filter: brightness(1.1);
}

/* IMAGE DISPLAY & BACKDROP */
.mm-image-backdrop {
  position: relative;
  background: radial-gradient(circle, var(--mm-bg-panel) 30%, var(--mm-bg-foundation) 100%);
  border-radius: var(--mm-border-radius);
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--mm-shadow-force);
}

.mm-orbit-shape {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px dashed rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  animation: spinOrbit 30s linear infinite;
  z-index: 0;
}

@keyframes spinOrbit {
  100% { transform: rotate(360deg); }
}

.mm-picture-element {
  position: relative;
  z-index: 10;
  display: block;
  max-width: 100%;
}

.mm-main-photo {
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* FEATURES SECTION - 2-Column Grid with 64px circle icons */
.mm-benefit-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .mm-benefit-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mm-benefit-tile {
  background-color: var(--mm-bg-panel);
  border-radius: var(--mm-border-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--mm-shadow-force);
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .mm-benefit-tile {
    flex-direction: row;
    align-items: flex-start;
  }
}

.mm-benefit-tile:hover {
  transform: translateY(-4px);
  border-color: var(--mm-glowing-pink);
}

.mm-circle-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--mm-glowing-pink) 0%, var(--mm-glowing-purple) 100%);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.mm-circle-icon svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.mm-tile-head {
  font-family: var(--mm-font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mm-tile-desc {
  font-size: 0.95rem;
  color: var(--mm-text-mid);
  line-height: 1.5;
}

/* TESTIMONIALS SECTION - Horizontal Cards with Decorative Quotes */
.mm-feedback-zone {
  background: linear-gradient(180deg, var(--mm-bg-panel-darker) 0%, var(--mm-bg-foundation) 100%);
  border-radius: var(--mm-border-radius);
  padding: 3rem 1.5rem;
  margin-top: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mm-feedback-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.mm-feedback-leaf {
  background-color: var(--mm-bg-panel); /* Slightly lighter backdrop */
  border-radius: var(--mm-border-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.mm-feedback-leaf:hover {
  transform: translateX(4px);
  border-left: 4px solid var(--mm-glowing-cyan);
}

.mm-quote-glyph {
  font-family: var(--mm-font-head);
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 240, 255, 0.15);
  position: absolute;
  top: -10px;
  left: 10px;
  user-select: none;
}

.mm-testimonial-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.mm-testimonial-speech {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mm-text-high);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.mm-reviewer-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mm-avatar {
  width: 44px;
  height: 44px;
  background-color: var(--mm-glowing-purple);
  color: #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--mm-glowing-pink);
  box-shadow: 0 0 10px rgba(146,0,255,0.4);
}

.mm-reviewer-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.mm-stars {
  color: var(--mm-glowing-amber);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* FOOTER SECTION */
.mm-footer-base {
  background-color: var(--mm-bg-panel-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1rem;
  margin-top: 6rem;
}

.mm-footer-split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .mm-footer-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.mm-footer-left {
  max-width: 500px;
}

.mm-disclaimer-text {
  font-size: 0.75rem;
  color: var(--mm-text-low);
  line-height: 1.6;
  margin-top: 1rem;
}

.mm-footer-right {
  display: flex;
}

.mm-link-directory {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .mm-link-directory {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.mm-directory-link {
  color: var(--mm-text-mid);
  font-size: 0.85rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.mm-directory-link:hover {
  color: var(--mm-glowing-cyan);
}