/* ==========================================================================
   MAINTENANCE MAGICIANS — Homepage Stylesheet
   version: 1.0.0
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   1.  Design Tokens (local overrides / extensions)
   2.  Utilities & Layout
   3.  Scroll Reveal Animations
   4.  Buttons
   5.  Skip Link & Accessibility
   6.  Header / Navigation
   7.  Section Base Styles
   8.  Hero
   9.  Trust Strip
   10. Spring Bundle
   11. Driveway Sealing
   12. Why Choose Us
   13. Visual Proof / Before–After
   14. Service Overview
   15. Testimonials / Reviews
   16. Contact Form
   17. Final CTA Banner
   18. Footer
   19. Responsive — tablet (max 1024px)
   20. Responsive — mobile (max 768px)
   21. Responsive — small mobile (max 480px)
   22. Reduced-motion overrides
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

/* Already declared in style.css; the values below are additional homepage-
   scoped tokens or convenient aliases. */

.mm-homepage {
  --header-h: 72px;
}

/* ==========================================================================
   2. UTILITIES & LAYOUT
   ========================================================================== */

.mm-container {
  width: 100%;
  max-width: var(--mm-container);
  margin-left:  auto;
  margin-right: auto;
  padding-left:  clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.mm-hidden {
  display: none !important;
}

.mm-text-purple { color: var(--mm-purple); }
.mm-text-gold   { color: var(--mm-gold);   }
.mm-text-light  { color: var(--mm-text-light); }
.mm-text-dim    { color: var(--mm-text-dim); }

/* Eyebrow / sub-label above headings */
.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mm-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-purple);
  margin-bottom: 16px;
}
.mm-eyebrow--light  { color: var(--mm-text-dim); }
.mm-eyebrow--season { color: var(--mm-green); }

.mm-eyebrow__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mm-purple);
  flex-shrink: 0;
}
.mm-eyebrow__dot--gold { background: var(--mm-gold); }

/* Section headings */
.mm-section-heading {
  font-family: var(--mm-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--mm-text);
  margin: 0 0 20px;
}

.mm-section-sub {
  font-size: 1.05rem;
  color: var(--mm-text-muted);
  max-width: 600px;
  line-height: 1.65;
  margin: 0;
}

.mm-section-header { margin-bottom: 60px; }
.mm-section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mm-section-header--center .mm-section-sub { text-align: center; }

/* Badges */
.mm-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mm-badge--gold {
  background: rgba(212, 160, 23, 0.15);
  color: var(--mm-gold-light);
  border: 1px solid rgba(212, 160, 23, 0.3);
}

/* Star row */
.mm-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.mm-stars__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mm-text-dim);
  margin-left: 8px;
}

/* ==========================================================================
   3. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.mm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--mm-ease), transform 0.65s var(--mm-ease);
}
.mm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mm-reveal--delay-1 { transition-delay: 0.08s; }
.mm-reveal--delay-2 { transition-delay: 0.16s; }
.mm-reveal--delay-3 { transition-delay: 0.24s; }
.mm-reveal--delay-4 { transition-delay: 0.32s; }

/* Counter elements start at 0 and count up */
.mm-stat__number {
  transition: all 0.3s var(--mm-ease);
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--mm-radius);
  font-family: var(--mm-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    background 0.22s var(--mm-ease-fast),
    color      0.22s var(--mm-ease-fast),
    border     0.22s var(--mm-ease-fast),
    box-shadow 0.22s var(--mm-ease-fast),
    transform  0.18s var(--mm-ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.mm-btn:hover   { transform: translateY(-2px); }
.mm-btn:active  { transform: translateY(0);    }
.mm-btn:focus-visible {
  outline: 3px solid var(--mm-purple-light);
  outline-offset: 3px;
}

/* Primary — purple gradient */
.mm-btn--primary {
  background: linear-gradient(135deg, var(--mm-purple-light) 0%, var(--mm-purple) 50%, var(--mm-purple-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(90, 47, 127, 0.32);
}
.mm-btn--primary:hover {
  box-shadow: 0 8px 32px rgba(90, 47, 127, 0.44);
  background: linear-gradient(135deg, #8a5fba 0%, var(--mm-purple-light) 50%, var(--mm-purple) 100%);
}

/* Gold / accent */
.mm-btn--gold {
  background: linear-gradient(135deg, var(--mm-gold-light), var(--mm-gold));
  color: #1a1200;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}
.mm-btn--gold:hover {
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.45);
}

/* Ghost / outlined (on light bg) */
.mm-btn--ghost {
  background: transparent;
  color: var(--mm-purple);
  border-color: var(--mm-purple);
}
.mm-btn--ghost:hover {
  background: var(--mm-purple-pale);
}

/* Outline on dark bg */
.mm-btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.mm-btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* White (on dark bg) */
.mm-btn--white {
  background: #fff;
  color: var(--mm-purple);
  font-weight: 700;
}
.mm-btn--white:hover {
  background: var(--mm-purple-pale);
  box-shadow: var(--mm-shadow);
}

/* White outline */
.mm-btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.mm-btn--white-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* Sizes */
.mm-btn--sm  { padding: 10px 20px; font-size: 0.85rem; border-radius: 8px; }
.mm-btn--lg  { padding: 16px 36px; font-size: 1rem;    border-radius: 14px; }
.mm-btn--block { width: 100%; }

/* ==========================================================================
   5. SKIP LINK
   ========================================================================== */

.mm-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--mm-purple);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.2s;
  text-decoration: none;
}
.mm-skip-link:focus {
  top: 0;
}

/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */

.mm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition:
    background 0.4s var(--mm-ease),
    box-shadow 0.4s var(--mm-ease),
    height     0.3s var(--mm-ease);
}

/* Scrolled state */
.mm-header.is-scrolled {
  background: rgba(13, 8, 24, 0.96);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  height: 64px;
}

.mm-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

/* Logo */
.mm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mm-logo__name {
  font-family: var(--mm-font-head);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}
.mm-logo__icon {
  flex-shrink: 0;
}

/* Nav list */
.mm-header__nav {
  margin-left: auto;
}
.mm-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mm-nav__link {
  display: block;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition:
    color      0.2s,
    background 0.2s;
}
.mm-nav__link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Header actions */
.mm-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.mm-header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-header__phone:hover { color: #fff; }

/* Hamburger */
.mm-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.mm-hamburger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--mm-ease), opacity 0.3s;
}

/* Hamburger open state */
.mm-header__hamburger[aria-expanded="true"] .mm-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mm-header__hamburger[aria-expanded="true"] .mm-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.mm-header__hamburger[aria-expanded="true"] .mm-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open state */
.mm-header__nav.is-open {
  display: block;
}

/* ==========================================================================
   7. SECTION BASE STYLES
   ========================================================================== */

.mm-section--light {
  background: var(--mm-light);
  color: var(--mm-text);
}
.mm-section--off-white {
  background: var(--mm-off-white);
}
.mm-section--dark {
  background: var(--mm-dark);
  color: var(--mm-text-light);
}
.mm-section--dark .mm-section-heading {
  color: var(--mm-text-light);
}
.mm-section--dark .mm-section-sub {
  color: var(--mm-text-dim);
}

/* Generous default section padding */
.mm-bundle,
.mm-why,
.mm-contact,
.mm-trust-strip,
.mm-proof,
.mm-reviews,
.mm-services {
  padding-top:    var(--mm-section-py);
  padding-bottom: var(--mm-section-py);
}

/* ==========================================================================
   8. HERO
   ========================================================================== */

.mm-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Background split */
.mm-hero__backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mm-hero__bg-left,
.mm-hero__bg-right {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

/* Diagonal clip for left (driveway) side */
.mm-hero__bg-left {
  clip-path: polygon(0 0, 56% 0, 44% 100%, 0 100%);
  /* CSS gradient fallback if no image */
  background-color: var(--mm-dark-2);
  background-image:
    linear-gradient(160deg, rgba(26,16,48,0.3) 0%, transparent 60%),
    var(--img, none);
}

/* Diagonal clip for right (lawn) side */
.mm-hero__bg-right {
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 36% 100%);
  background-color: #0a2010;
  background-image:
    linear-gradient(200deg, rgba(45,134,83,0.15) 0%, transparent 50%),
    var(--img, none);
}

/* Gradient fallbacks when photos aren't placed yet */
.mm-hero__bg-left:not([style*="url"]),
.mm-hero__bg-left[style*="undefined"] {
  background: linear-gradient(135deg, #1e1438 0%, #3d1f58 100%);
}
.mm-hero__bg-right:not([style*="url"]),
.mm-hero__bg-right[style*="undefined"] {
  background: linear-gradient(135deg, #0a2010 0%, #1a4a25 100%);
}

/* Dark overlays for text readability */
.mm-hero__bg-overlay {
  position: absolute;
  inset: 0;
}
.mm-hero__bg-overlay--left {
  background: linear-gradient(120deg,
    rgba(13, 8, 24, 0.75) 0%,
    rgba(13, 8, 24, 0.45) 60%,
    rgba(13, 8, 24, 0.1) 100%
  );
}
.mm-hero__bg-overlay--right {
  background: linear-gradient(240deg,
    rgba(10, 32, 16, 0.65) 0%,
    rgba(13, 8, 24, 0.4) 60%,
    transparent 100%
  );
}

/* Diagonal divider accent line */
.mm-hero__diagonal {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(44% - 1px);
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(90, 47, 127, 0.8) 20%,
    var(--mm-purple-light) 50%,
    rgba(90, 47, 127, 0.8) 80%,
    transparent 100%
  );
  transform: skewX(-8deg);
  pointer-events: none;
}
.mm-hero__diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(8px);
  opacity: 0.5;
  transform: scaleX(3);
}

/* Hero content container */
.mm-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.mm-hero__content {
  max-width: 680px;
  padding: 32px 0;
}

/* Eyebrow */
.mm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(90, 47, 127, 0.35);
  border: 1px solid rgba(122, 79, 160, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.mm-hero__eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mm-purple-light);
  animation: mm-pulse 2s ease-in-out infinite;
}
@keyframes mm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* Hero main heading */
.mm-hero__heading {
  font-family: var(--mm-font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.mm-hero__heading-accent {
  background: linear-gradient(120deg, var(--mm-purple-light), #b48cd0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/* Hero sub */
.mm-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 560px;
}

/* Hero action buttons */
.mm-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero inline trust */
.mm-hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mm-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.mm-hero__trust-item svg { color: var(--mm-purple-light); }

/* Service label chips at hero edges */
.mm-hero__labels {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  z-index: 3;
  pointer-events: none;
}
.mm-hero__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.mm-hero__label--left svg { color: var(--mm-purple-light); }
.mm-hero__label--right svg { color: var(--mm-green); }

/* Scroll hint */
.mm-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.mm-scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  position: relative;
}
.mm-scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 10px;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
  animation: mm-scroll-bounce 2s ease-in-out infinite;
}
@keyframes mm-scroll-bounce {
  0%, 100% { top: 6px; opacity: 0.8; }
  50%       { top: 18px; opacity: 0.3; }
}

/* ==========================================================================
   9. TRUST STRIP
   ========================================================================== */

.mm-trust-strip {
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mm-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.mm-stat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s var(--mm-ease);
}
.mm-stat:last-child { border-right: none; }
.mm-stat:hover { transform: translateY(-4px); }

.mm-stat__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(90, 47, 127, 0.25);
  border: 1px solid rgba(122, 79, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-purple-light);
}

.mm-stat__number {
  font-family: var(--mm-font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.mm-stat__number--text {
  font-size: 1.6rem;
}

.mm-stat__label {
  font-size: 0.82rem;
  color: var(--mm-text-dim);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   10. SPRING BUNDLE
   ========================================================================== */

.mm-bundle .mm-section-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.mm-bundle__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* Services list */
.mm-bundle__services {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mm-bundle__service {
  display: grid;
  grid-template-columns: 40px 48px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--mm-border);
  transition: background 0.2s;
}
.mm-bundle__service:last-child { border-bottom: none; }
.mm-bundle__service:hover {
  background: var(--mm-off-white);
  margin: 0 -20px;
  padding: 28px 20px;
  border-radius: var(--mm-radius);
}

.mm-bundle__service-num {
  font-family: var(--mm-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mm-purple);
  opacity: 0.5;
  padding-top: 4px;
}

.mm-bundle__service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--mm-purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-purple);
  flex-shrink: 0;
}

.mm-bundle__service-body h3 {
  font-family: var(--mm-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mm-text);
  margin: 0 0 6px;
}
.mm-bundle__service-body p {
  font-size: 0.92rem;
  color: var(--mm-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA card */
.mm-bundle__cta-card {
  background: var(--mm-dark);
  border-radius: var(--mm-radius-lg);
  padding: 40px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  box-shadow: var(--mm-shadow-lg);
  border: 1px solid rgba(122, 79, 160, 0.2);
  overflow: hidden;
}
.mm-bundle__cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mm-purple), var(--mm-green));
}

.mm-bundle__card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(45, 134, 83, 0.2);
  border: 1px solid rgba(45, 134, 83, 0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4caf70;
  margin-bottom: 20px;
}

.mm-bundle__card-heading {
  font-family: var(--mm-font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 12px;
}

.mm-bundle__card-sub {
  font-size: 0.9rem;
  color: var(--mm-text-dim);
  line-height: 1.6;
  margin: 0 0 24px;
}

.mm-bundle__card-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-bundle__card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.mm-bundle__card-checklist li svg {
  flex-shrink: 0;
  color: var(--mm-green);
  background: rgba(45,134,83,0.15);
  border-radius: 50%;
  padding: 2px;
  width: 20px; height: 20px;
}

.mm-bundle__card-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mm-gold-light);
  padding: 12px 16px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--mm-radius-sm);
  margin-bottom: 24px;
}

.mm-bundle__card-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mm-text-dim);
  margin: 12px 0 0;
}

/* ==========================================================================
   11. DRIVEWAY SEALING
   ========================================================================== */

.mm-driveway {
  position: relative;
  padding: var(--mm-section-py) 0;
  overflow: hidden;
  min-height: 600px;
}

.mm-driveway__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* CSS gradient fallback */
  background-color: #0d0818;
}

/* Fallback gradient when no image */
.mm-driveway__bg:not([style*="url"]),
.mm-driveway__bg[style*="undefined"] {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(90,47,127,0.25) 0%, transparent 60%),
    linear-gradient(135deg, #0d0818 0%, #1e1438 100%);
}

.mm-driveway__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 8, 24, 0.95) 0%,
    rgba(13, 8, 24, 0.85) 45%,
    rgba(13, 8, 24, 0.5) 100%
  );
}

.mm-driveway__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.mm-driveway__content h2 {
  font-family: var(--mm-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 24px;
}
.mm-driveway__content p {
  font-size: 1rem;
  color: var(--mm-text-dim);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 520px;
}

.mm-driveway__services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.mm-driveway__service {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mm-driveway__service svg {
  flex-shrink: 0;
  color: var(--mm-purple-light);
  background: rgba(90,47,127,0.2);
  border-radius: 50%;
  padding: 3px;
  width: 28px; height: 28px;
  margin-top: 2px;
}
.mm-driveway__service strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.mm-driveway__service span {
  font-size: 0.85rem;
  color: var(--mm-text-dim);
}

.mm-driveway__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Info card */
.mm-driveway__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mm-radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.mm-driveway__card-inner {
  padding: 40px 36px;
}
.mm-driveway__card-icon {
  color: var(--mm-gold);
  margin-bottom: 20px;
}
.mm-driveway__card h3 {
  font-family: var(--mm-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.mm-driveway__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mm-driveway__card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.mm-driveway__card-list li::before {
  content: '→';
  color: var(--mm-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   12. WHY CHOOSE US
   ========================================================================== */

.mm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mm-why__card {
  padding: 32px 28px;
  border-radius: var(--mm-radius-lg);
  background: #fff;
  border: 1px solid var(--mm-border);
  box-shadow: var(--mm-shadow-sm);
  transition:
    transform  0.3s var(--mm-ease),
    box-shadow 0.3s var(--mm-ease),
    border     0.3s;
}
.mm-why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mm-shadow-purple);
  border-color: rgba(90,47,127,0.2);
}

.mm-why__card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--mm-purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-purple);
  margin-bottom: 20px;
}

.mm-why__card h3 {
  font-family: var(--mm-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mm-text);
  margin: 0 0 10px;
}
.mm-why__card p {
  font-size: 0.9rem;
  color: var(--mm-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   13. VISUAL PROOF / BEFORE–AFTER
   ========================================================================== */

.mm-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.mm-proof__card {
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  background: var(--mm-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s var(--mm-ease);
}
.mm-proof__card:hover { transform: translateY(-4px); }

.mm-proof__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 260px;
  position: relative;
}

/* Divider between before/after */
.mm-proof__images::after {
  content: 'VS';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--mm-dark-card);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  z-index: 2;
  text-align: center;
  line-height: 36px;
}

.mm-proof__img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1030;
}
/* Gradient fallbacks for before/after images */
.mm-proof__img--before { background-color: #1a0f20; filter: grayscale(0.6) brightness(0.7); }
.mm-proof__img--after  { background-color: #0d2415; }

.mm-proof__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.65);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.mm-proof__label--after {
  background: rgba(45, 134, 83, 0.75);
  color: #fff;
}

.mm-proof__caption {
  padding: 24px 28px;
}
.mm-proof__caption h3 {
  font-family: var(--mm-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.mm-proof__caption p {
  font-size: 0.88rem;
  color: var(--mm-text-dim);
  margin: 0;
  line-height: 1.6;
}

/* Result stats bar */
.mm-proof__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--mm-radius-xl);
  padding: 32px 48px;
}

.mm-proof__stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.mm-proof__stat-num {
  font-family: var(--mm-font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mm-purple-light);
  line-height: 1;
  margin-bottom: 6px;
}
.mm-proof__stat-label {
  font-size: 0.82rem;
  color: var(--mm-text-dim);
  font-weight: 500;
}
.mm-proof__stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ==========================================================================
   14. SERVICE OVERVIEW
   ========================================================================== */

.mm-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mm-service-card {
  position: relative;
  border-radius: var(--mm-radius-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s var(--mm-ease);
}
.mm-service-card:hover { transform: scale(1.02); }
.mm-service-card:hover .mm-service-card__bg {
  transform: scale(1.05);
}

.mm-service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--mm-ease);
}

/* Gradient fallbacks */
.mm-service-card--lawn .mm-service-card__bg {
  background-color: #0a2010;
}
.mm-service-card--driveway .mm-service-card__bg {
  background-color: #1a1030;
}

.mm-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.mm-service-card__content {
  position: relative;
  z-index: 2;
  padding: 40px;
  width: 100%;
}

.mm-service-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(90,47,127,0.7);
  border: 1px solid rgba(122,79,160,0.5);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
}
.mm-service-card__tag--gold {
  background: rgba(212,160,23,0.6);
  border-color: rgba(240,192,64,0.4);
  color: #fff;
}

.mm-service-card h3 {
  font-family: var(--mm-font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.mm-service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0 0 20px;
}

.mm-service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mm-service-card__list li {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding-left: 16px;
  position: relative;
}
.mm-service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   15. TESTIMONIALS / REVIEWS
   ========================================================================== */

.mm-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mm-review {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--mm-radius-lg);
  padding: 32px;
  margin: 0;
  transition:
    transform  0.3s var(--mm-ease),
    background 0.3s;
}
.mm-review:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.mm-review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.mm-review p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.mm-review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mm-review__author {
  font-weight: 700;
  font-style: normal;
  color: #fff;
  font-size: 0.88rem;
}
.mm-review__area {
  font-size: 0.78rem;
  color: var(--mm-text-dim);
}

/* ==========================================================================
   16. CONTACT FORM
   ========================================================================== */

.mm-contact__layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 80px;
  align-items: start;
}

.mm-contact__copy h2 {
  font-family: var(--mm-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--mm-text);
  line-height: 1.2;
  margin: 0 0 18px;
}
.mm-contact__copy p {
  font-size: 1.02rem;
  color: var(--mm-text-muted);
  line-height: 1.65;
  margin: 0 0 32px;
}

.mm-contact__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.mm-contact__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mm-text);
  font-weight: 500;
}
.mm-contact__trust-item svg {
  flex-shrink: 0;
  color: var(--mm-purple);
  background: var(--mm-purple-pale);
  border-radius: 50%;
  padding: 2px;
  width: 22px; height: 22px;
}

.mm-contact__direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--mm-border);
}
.mm-contact__direct-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mm-purple);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.mm-contact__direct-link:hover {
  color: var(--mm-purple-dark);
  gap: 14px;
}

/* Form wrapper */
.mm-contact__form-wrap {
  background: #fff;
  border-radius: var(--mm-radius-xl);
  padding: 44px;
  box-shadow: var(--mm-shadow-lg);
  border: 1px solid var(--mm-border);
}

/* Form elements */
.mm-form__row { display: flex; gap: 20px; }
.mm-form__row--2col > * { flex: 1; }

.mm-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.mm-form__field:last-of-type { margin-bottom: 0; }

.mm-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mm-text);
}
.mm-form__label span { color: var(--mm-purple); }

.mm-form__input,
.mm-form__select,
.mm-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--mm-border);
  border-radius: var(--mm-radius);
  font-family: var(--mm-font-body);
  font-size: 0.9rem;
  color: var(--mm-text);
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow   0.2s,
    background   0.2s;
  outline: none;
  appearance: none;
}
.mm-form__input::placeholder,
.mm-form__textarea::placeholder {
  color: #b0b0b8;
}
.mm-form__input:focus,
.mm-form__select:focus,
.mm-form__textarea:focus {
  border-color: var(--mm-purple);
  background: #fff;
  box-shadow: 0 0 0 3px var(--mm-purple-glow);
}

.mm-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.mm-form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

/* Honeypot — hide from real users */
.mm-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
  height: 0;
  width: 0;
}

/* Submit button spinner */
.mm-form__btn-spinner {
  animation: mm-spin 0.8s linear infinite;
}
@keyframes mm-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Form response messages */
.mm-form__response {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--mm-radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.mm-form__response--success {
  background: rgba(45,134,83,0.1);
  border: 1px solid rgba(45,134,83,0.3);
  color: #1d6e3f;
}
.mm-form__response--error {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.25);
  color: #b91c1c;
}

/* ==========================================================================
   17. FINAL CTA BANNER
   ========================================================================== */

.mm-cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.mm-cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(90,47,127,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(45,134,83,0.2) 0%, transparent 55%),
    var(--mm-dark);
}

/* Animated particles (CSS only) */
.mm-cta-banner__bg::before,
.mm-cta-banner__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: mm-float 12s ease-in-out infinite;
}
.mm-cta-banner__bg::before {
  width: 400px; height: 400px;
  background: var(--mm-purple);
  top: -100px; left: -100px;
}
.mm-cta-banner__bg::after {
  width: 300px; height: 300px;
  background: var(--mm-green);
  bottom: -80px; right: 10%;
  animation-delay: -6s;
}
@keyframes mm-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 15px) scale(0.95); }
}

.mm-cta-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.mm-cta-banner__copy h2 {
  font-family: var(--mm-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.mm-cta-banner__copy p {
  font-size: 1rem;
  color: var(--mm-text-dim);
  margin: 0;
  max-width: 500px;
}

.mm-cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */

.mm-footer {
  background: var(--mm-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mm-footer__top {
  padding: 80px 0 60px;
}

.mm-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Brand */
.mm-footer__brand .mm-logo--footer .mm-logo__name {
  font-size: 0.85rem;
}
.mm-footer__tagline {
  font-size: 0.88rem;
  color: var(--mm-text-dim);
  line-height: 1.65;
  margin: 20px 0 24px;
  max-width: 260px;
}

.mm-footer__socials {
  display: flex;
  gap: 12px;
}
.mm-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition:
    background 0.2s,
    color      0.2s,
    transform  0.2s;
}
.mm-footer__social:hover {
  background: var(--mm-purple);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}

/* Footer columns */
.mm-footer__col-heading {
  font-family: var(--mm-font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 20px;
}

.mm-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-footer__list li,
.mm-footer__list a {
  font-size: 0.88rem;
  color: var(--mm-text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-footer__list a:hover { color: var(--mm-purple-light); }

.mm-footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mm-footer__list--contact svg {
  flex-shrink: 0;
  color: var(--mm-purple-light);
  margin-top: 2px;
}
.mm-footer__list--contact a:hover { color: var(--mm-purple-light); }

.mm-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mm-footer__hours strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.mm-footer__hours span {
  font-size: 0.85rem;
  color: var(--mm-text-dim);
}

/* Footer bottom bar */
.mm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.mm-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mm-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.mm-footer__bottom-nav {
  display: flex;
  gap: 20px;
}
.mm-footer__bottom-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-footer__bottom-nav a:hover { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   19. RESPONSIVE — TABLET (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {

  :root {
    --mm-section-py: 80px;
  }

  /* Header — hide phone number */
  .mm-header__phone { display: none; }

  /* Trust strip — 2x2 grid */
  .mm-trust-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .mm-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .mm-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .mm-stat:nth-child(n+3) { border-bottom: none; }

  /* Bundle */
  .mm-bundle__layout {
    grid-template-columns: 1fr;
  }
  .mm-bundle__cta-card {
    position: static;
  }

  /* Driveway */
  .mm-driveway__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mm-driveway__bg { background-attachment: scroll; }

  /* Why */
  .mm-why__grid { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .mm-reviews__grid { grid-template-columns: 1fr 1fr; }
  .mm-reviews__grid .mm-review:nth-child(3) { display: none; }

  /* Contact */
  .mm-contact__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  /* CTA banner */
  .mm-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .mm-cta-banner__copy p { max-width: 100%; }

  /* Footer */
  .mm-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .mm-footer__brand { grid-column: span 2; }

  /* Services */
  .mm-services__grid { grid-template-columns: 1fr; }
  .mm-service-card { min-height: 480px; }

}

/* ==========================================================================
   20. RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {

  :root {
    --mm-section-py: 64px;
    --header-h: 64px;
  }

  /* Header */
  .mm-header__nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(13, 8, 24, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 24px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }
  .mm-header__nav.is-open {
    display: block;
  }
  .mm-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .mm-nav__link {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .mm-header__hamburger { display: flex; }

  /* Show CTA button in header, hide phone */
  .mm-header__actions .mm-btn { display: none; }
  .mm-header__actions .mm-btn--sm { display: inline-flex; }

  /* Hero */
  .mm-hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    padding-top: var(--header-h);
  }

  /* On mobile: stack images vertically */
  .mm-hero__bg-left {
    clip-path: polygon(0 0, 100% 0, 100% 52%, 0 52%);
  }
  .mm-hero__bg-right {
    clip-path: polygon(0 48%, 100% 48%, 100% 100%, 0 100%);
  }
  .mm-hero__diagonal {
    left: 0; right: 0;
    top: calc(50% - 1px);
    width: 100%;
    height: 3px;
    transform: none;
  }

  .mm-hero__content {
    padding: 48px 0;
  }
  .mm-hero__heading {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .mm-hero__labels {
    display: none;
  }
  .mm-hero__scroll-hint { display: none; }

  /* Trust strip — single column */
  .mm-trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }
  .mm-stat {
    padding: 20px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .mm-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }

  /* Bundle */
  .mm-bundle__service {
    grid-template-columns: 36px 1fr;
  }
  .mm-bundle__service-num { display: none; }
  .mm-bundle__cta-card { padding: 28px 24px; }
  .mm-bundle__card-heading { font-size: 1.4rem; }

  /* Driveway */
  .mm-driveway__actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Why */
  .mm-why__grid { grid-template-columns: 1fr; }

  /* Proof */
  .mm-proof__grid { grid-template-columns: 1fr; }
  .mm-proof__images { height: 220px; }
  .mm-proof__stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }
  .mm-proof__stat-divider {
    width: 60px; height: 1px;
  }

  /* Services */
  .mm-services__grid { grid-template-columns: 1fr; }

  /* Reviews */
  .mm-reviews__grid {
    grid-template-columns: 1fr;
  }
  .mm-reviews__grid .mm-review:nth-child(3) { display: block; }

  /* Contact */
  .mm-contact__form-wrap {
    padding: 28px 24px;
  }
  .mm-form__row { flex-direction: column; gap: 0; }

  /* CTA banner */
  .mm-cta-banner { padding: 72px 0; }
  .mm-cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .mm-cta-banner__actions .mm-btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .mm-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mm-footer__brand { grid-column: span 1; }
  .mm-footer__tagline { max-width: 100%; }

  .mm-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ==========================================================================
   21. RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================================== */

@media (max-width: 480px) {

  .mm-hero__heading { font-size: 2rem; }
  .mm-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .mm-hero__actions .mm-btn { width: 100%; justify-content: center; }

  .mm-trust-strip__grid { grid-template-columns: 1fr; }
  .mm-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .mm-stat:nth-child(odd) { border-right: none; }

  .mm-driveway__card { display: none; } /* simplify on very small screens */

  .mm-proof__stats { padding: 24px 16px; }

}

/* ==========================================================================
   22. REDUCED-MOTION OVERRIDES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .mm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   UPDATE PATCH 1.1 — New sections & redesigned components
   ========================================================================== */

/* ---- Logo image in header ---- */
.mm-logo-img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ---- HERO: lighter overlays, 65/35 driveway emphasis ---- */
.mm-hero__bg-left {
  clip-path: polygon(0 0, 62% 0, 50% 100%, 0 100%);
}
.mm-hero__bg-right {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 38% 100%);
}
.mm-hero__bg-overlay--left {
  background: linear-gradient(115deg,
    rgba(13,8,24,0.60) 0%,
    rgba(13,8,24,0.35) 55%,
    rgba(13,8,24,0.05) 100%
  );
}
.mm-hero__bg-overlay--right {
  background: linear-gradient(245deg,
    rgba(10,32,16,0.50) 0%,
    rgba(13,8,24,0.25) 55%,
    transparent 100%
  );
}

/* Discount badge */
.mm-hero__discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212,160,23,0.22), rgba(212,160,23,0.10));
  border: 1px solid rgba(212,160,23,0.45);
  color: #f0c840;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.mm-hero__badge-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #f0c840;
  animation: mm-pulse 1.8s ease-in-out infinite;
}

/* Urgency line under sub */
.mm-hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.mm-hero__urgency svg { color: var(--mm-gold-light); flex-shrink: 0; }

/* Trust row inline */
.mm-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mm-hero__trust-divider {
  color: rgba(255,255,255,0.25);
  font-size: 1.2rem;
}

/* Ghost light button (on dark hero bg) */
.mm-btn--ghost-light {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.mm-btn--ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ---- TRUST STRIP: coloured variants ---- */
.mm-trust-strip {
  background: var(--mm-dark);
  padding: 0;
}
.mm-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.mm-stat {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: transform 0.3s var(--mm-ease);
  overflow: hidden;
}
.mm-stat::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
}
.mm-stat:last-child { border-right: none; }
.mm-stat:hover { transform: translateY(-4px); }

/* Purple stat */
.mm-stat--purple::before { background: var(--mm-purple); }
.mm-stat--purple .mm-stat__icon {
  background: rgba(90,47,127,0.20);
  border-color: rgba(122,79,160,0.35);
  color: var(--mm-purple-light);
}
.mm-stat--purple .mm-stat__number { color: var(--mm-purple-light); }

/* Green stat */
.mm-stat--green::before { background: var(--mm-green); }
.mm-stat--green .mm-stat__icon {
  background: rgba(45,134,83,0.15);
  border: 1px solid rgba(45,134,83,0.3);
  color: #4caf70;
}
.mm-stat--green .mm-stat__number { color: #4caf70; }

/* Gold stat */
.mm-stat--gold::before { background: var(--mm-gold); }
.mm-stat--gold .mm-stat__icon {
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--mm-gold-light);
}
.mm-stat--gold .mm-stat__number { color: var(--mm-gold-light); }

/* Red / maple stat */
.mm-stat--red::before { background: #d63a2f; }
.mm-stat--red .mm-stat__icon {
  background: rgba(214,58,47,0.15);
  border: 1px solid rgba(214,58,47,0.3);
  color: #e85a50;
}
.mm-stat--red .mm-stat__number { color: #e85a50; }

/* stat icon base (ensure box) */
.mm-stat__icon {
  flex-shrink:0;
  width:48px; height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid transparent;
}

/* ---- BUNDLE: italic accent heading ---- */
.mm-section-heading em { font-style: italic; font-weight: 800; }
.mm-text-green { color: var(--mm-green); }

/* Bonus service row */
.mm-bundle__service--bonus {
  position: relative;
  background: linear-gradient(135deg, rgba(212,160,23,0.06), rgba(212,160,23,0.02));
  border: 1px dashed rgba(212,160,23,0.35);
  border-radius: var(--mm-radius);
  padding: 20px 20px 20px 20px;
  margin-top: 8px;
}
.mm-bundle__service-bonus-label {
  position: absolute;
  top: -10px; left: 20px;
  background: linear-gradient(135deg,var(--mm-gold-light),var(--mm-gold));
  color: #1a1200;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 50px;
}
.mm-bundle__service-icon--bonus {
  background: rgba(212,160,23,0.15) !important;
  color: var(--mm-gold) !important;
}
.mm-bundle__bonus-tag {
  display: inline-block;
  background: rgba(45,134,83,0.12);
  color: var(--mm-green);
  border: 1px solid rgba(45,134,83,0.25);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.mm-bundle__card-checklist-bonus {
  color: var(--mm-gold-light) !important;
  font-weight: 600;
}
.mm-bundle__card-checklist-bonus svg { color: var(--mm-gold) !important; background: rgba(212,160,23,0.15) !important; }

/* ---- BEFORE/AFTER SLIDER ---- */
.mm-driveway__slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mm-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: var(--mm-shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}

.mm-slider__before,
.mm-slider__after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}

/* After is the base (full width) */
.mm-slider__after { z-index: 1; }

/* Before is clipped on top */
.mm-slider__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  /* filter for slight visual difference when no photos yet */
}

/* Slider handle */
.mm-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: col-resize;
}

.mm-slider__handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.mm-slider__handle-knob {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-purple);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mm-slider:hover .mm-slider__handle-knob,
.mm-slider.is-dragging .mm-slider__handle-knob {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.mm-slider__label {
  position: absolute;
  bottom: 14px;
  z-index: 4;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.mm-slider__label--before { left: 14px; }
.mm-slider__label--after  {
  right: 14px;
  background: rgba(45,134,83,0.75);
}

.mm-slider__caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--mm-text-dim);
  margin: 0;
}

/* ---- HOW IT WORKS ---- */
.mm-how__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-style: normal;
}

.mm-how__steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  padding-top: 20px;
}

.mm-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Initial hidden state for stagger animation */
.mm-how__step--anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--mm-ease), transform 0.5s var(--mm-ease);
}
.mm-how__step--anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mm-how__step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.mm-how__step-circle span {
  font-family: var(--mm-font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mm-purple-light);
}

.mm-how__step:hover .mm-how__step-circle {
  border-color: var(--mm-purple-light);
  background: rgba(90,47,127,0.15);
}

/* Dashed connector between circles */
.mm-how__step-connector {
  position: absolute;
  top: 35px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  border-top: 2px dashed rgba(255,255,255,0.12);
}

.mm-how__step-body h3 {
  font-family: var(--mm-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.mm-how__step-body p {
  font-size: 0.88rem;
  color: var(--mm-text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ---- CONTACT FORM: updated styles ---- */
.mm-contact__form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mm-border);
}
.mm-contact__form-header h3 {
  font-family: var(--mm-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--mm-text);
  margin: 0 0 4px;
}
.mm-contact__form-header p {
  font-size: 0.85rem;
  color: var(--mm-text-muted);
  margin: 0;
}

.mm-contact__what-happens {
  background: var(--mm-purple-pale);
  border: 1px solid rgba(90,47,127,0.12);
  border-radius: var(--mm-radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.mm-contact__wh-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mm-purple);
  margin-bottom: 6px;
}
.mm-contact__what-happens p {
  font-size: 0.88rem;
  color: var(--mm-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Service selector radio cards */
.mm-service-selector {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 4px;
}
.mm-service-selector__radio { display: none; }
.mm-service-selector__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1.5px solid var(--mm-border);
  border-radius: var(--mm-radius);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mm-text-muted);
  background: #fafafa;
  transition: border 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
}
.mm-service-selector__card svg { color: var(--mm-text-muted); transition: color 0.2s; }
.mm-service-selector__radio:checked + .mm-service-selector__card {
  border-color: var(--mm-purple);
  background: var(--mm-purple-pale);
  color: var(--mm-purple);
  box-shadow: 0 0 0 3px var(--mm-purple-glow);
}
.mm-service-selector__radio:checked + .mm-service-selector__card svg { color: var(--mm-purple); }
.mm-service-selector__option:hover .mm-service-selector__card {
  border-color: rgba(90,47,127,0.4);
  background: var(--mm-off-white);
}

/* Conditional field blocks */
.mm-form__conditional {
  background: var(--mm-off-white);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 20px;
  margin-bottom: 20px;
  animation: mm-slide-down 0.3s var(--mm-ease);
}
.mm-form__conditional[hidden] { display: none !important; }
@keyframes mm-slide-down {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}

.mm-form__footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mm-text-muted);
  margin: 10px 0 0;
}

/* ---- FAQ ACCORDION ---- */
.mm-faq {
  padding: var(--mm-section-py) 0;
}
.mm-section--off-white { background: var(--mm-off-white); }
.mm-faq__container { max-width: 860px; }

.mm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.mm-faq__item {
  background: #fff;
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, border 0.25s;
}
.mm-faq__item:hover {
  box-shadow: var(--mm-shadow);
  border-color: rgba(90,47,127,0.2);
}

.mm-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--mm-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mm-text);
  line-height: 1.4;
  transition: color 0.2s;
}
.mm-faq__question:hover { color: var(--mm-purple); }
.mm-faq__question[aria-expanded="true"] { color: var(--mm-purple); }

.mm-faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--mm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mm-purple);
  transition: transform 0.3s var(--mm-ease), background 0.2s, border 0.2s;
}
.mm-faq__question[aria-expanded="true"] .mm-faq__icon {
  transform: rotate(45deg);
  background: var(--mm-purple);
  border-color: var(--mm-purple);
  color: #fff;
}

.mm-faq__answer {
  overflow: hidden;
}
.mm-faq__answer[hidden] { display: none; }
.mm-faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--mm-text-muted);
  line-height: 1.7;
  margin: 0;
}
.mm-faq__answer strong { color: var(--mm-text); }

/* ---- SPARKLE CANVAS ---- */
#mm-sparkle-canvas {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  width: 100vw;
  height: 100vh;
}

/* ====================================================================
   RESPONSIVE UPDATES for new sections
   ==================================================================== */

@media (max-width: 1024px) {
  .mm-trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .mm-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mm-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .mm-stat:nth-child(n+3) { border-bottom: none; }

  .mm-how__steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mm-how__step-connector { display: none; }

  .mm-driveway__slider-wrap { margin-top: 40px; }
}

@media (max-width: 768px) {
  .mm-hero__bg-left  { clip-path: polygon(0 0, 100% 0, 100% 52%, 0 52%); }
  .mm-hero__bg-right { clip-path: polygon(0 48%, 100% 48%, 100% 100%, 0 100%); }
  .mm-hero__diagonal { left:0; right:0; top:calc(50% - 1px); width:100%; height:3px; transform:none; }
  .mm-hero__discount-badge { font-size: 0.75rem; }

  .mm-trust-strip__grid { grid-template-columns: 1fr 1fr; }

  .mm-how__steps { grid-template-columns: 1fr; gap: 32px; }
  .mm-how__step { flex-direction: row; text-align: left; gap: 20px; }
  .mm-how__step-circle { margin-bottom: 0; }

  .mm-service-selector { grid-template-columns: 1fr; }

  .mm-faq__question { padding: 16px 20px; font-size: 0.9rem; }
  .mm-faq__answer p { padding: 0 20px 16px; }

  .mm-slider { aspect-ratio: 3/4; }
  .mm-driveway__container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mm-trust-strip__grid { grid-template-columns: 1fr; }
  .mm-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mm-stat:nth-child(odd) { border-right: none; }
  .mm-stat:last-child { border-bottom: none; }
}

/* ==========================================================================
   PATCH 1.2 — Hero clip-path fix, bonus grid fix, scroll-reveal fallback
   ========================================================================== */

/* ---- HERO: Non-overlapping complementary clip-paths (≈65/35 driveway) ---- */
/* Both panels meet exactly at the diagonal — no overlap, no gap             */
.mm-hero__bg-left {
  clip-path: polygon(0 0, 64% 0, 50% 100%, 0 100%);
}
.mm-hero__bg-right {
  clip-path: polygon(64% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Much lighter overlays — let the photos come through */
.mm-hero__bg-overlay--left {
  background: linear-gradient(
    120deg,
    rgba(13, 8, 24, 0.50) 0%,
    rgba(13, 8, 24, 0.22) 50%,
    transparent 100%
  );
}
.mm-hero__bg-overlay--right {
  background: linear-gradient(
    240deg,
    rgba(10, 32, 16, 0.38) 0%,
    rgba(13, 8, 24, 0.12) 50%,
    transparent 100%
  );
}

/* Diagonal accent — positioned exactly at the clip-path seam (64% → 50%) */
.mm-hero__diagonal {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  width: auto;
  transform: none;
  /* Draw a precise 3px diagonal bar from (64%,0) to (50%,100%) */
  clip-path: polygon(
    calc(64% - 2px) 0%,
    calc(64% + 1px) 0%,
    calc(50% + 1px) 100%,
    calc(50% - 2px) 100%
  );
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(122, 79, 160, 0.9) 20%,
    #a875d4 50%,
    rgba(122, 79, 160, 0.9) 80%,
    transparent 100%
  );
  filter: drop-shadow(0 0 6px rgba(122, 79, 160, 0.5));
}
/* Remove the duplicated blur ::before since we're using clip-path directly */
.mm-hero__diagonal::before {
  display: none;
}

/* Mobile: horizontal split — restore simple behaviour */
@media (max-width: 768px) {
  .mm-hero__bg-left  { clip-path: polygon(0 0, 100% 0, 100% 52%, 0 52%); }
  .mm-hero__bg-right { clip-path: polygon(0 48%, 100% 48%, 100% 100%, 0 100%); }

  .mm-hero__diagonal {
    inset: auto;
    position: absolute;
    left: 0; right: 0;
    top: calc(50% - 1.5px); bottom: auto;
    height: 3px;
    width: auto;
    clip-path: none;
    transform: none;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(122, 79, 160, 0.8) 20%,
      #a875d4 50%,
      rgba(122, 79, 160, 0.8) 80%,
      transparent 100%
    );
    filter: none;
  }
}

/* ---- BUNDLE: Fix bonus row grid (no step-number column) ---- */
.mm-bundle__service--bonus {
  grid-template-columns: 48px 1fr;
}
/* Override the default hover margin shift for bonus row */
.mm-bundle__service--bonus:hover {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.10), rgba(212, 160, 23, 0.04));
  margin: 0;
  padding: 20px;
  border: 1px dashed rgba(212, 160, 23, 0.5);
}

/* ---- SCROLL REVEAL FALLBACK ---- */
/* If JS scroll-reveal doesn't fire (caching, slow load), fade in after 3.5s */
@keyframes mm-reveal-fallback {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.mm-reveal:not(.is-visible) {
  animation: mm-reveal-fallback 0.65s 3.5s ease both;
}
/* Once JS adds is-visible, animation resets and transition takes over cleanly */
.mm-reveal.is-visible {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

/* ---- SLIDER: ensure background-size covers properly ---- */
.mm-slider__before,
.mm-slider__after {
  background-size: cover;
  background-position: center;
  background-color: #1e1438; /* fallback when image not yet loaded */
}


/* ==========================================================================
   PATCH 2.0 — Comprehensive redesign styles
   ========================================================================== */

/* ---- HERO v2: Dual-fade background + service cards ---- */

/* Override old split-bg rules */
.mm-hero__backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mm-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Fade panel B in/out so both photos are seen */
.mm-hero__bg--a {
  z-index: 1;
  animation: mm-hero-fade 8s ease-in-out 4s infinite alternate;
}
.mm-hero__bg--b {
  z-index: 0;
}
@keyframes mm-hero-fade {
  0%   { opacity: 1; }
  40%  { opacity: 1; }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}
/* Single lighter overlay */
.mm-hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(13, 8, 24, 0.55) 0%,
    rgba(13, 8, 24, 0.30) 50%,
    rgba(13, 8, 24, 0.45) 100%
  );
}
/* Suppress old left/right overlays and diagonal — no longer used */
.mm-hero__bg-left,
.mm-hero__bg-right,
.mm-hero__bg-overlay--left,
.mm-hero__bg-overlay--right,
.mm-hero__diagonal {
  display: none !important;
}

/* Hero layout: stack content above service cards */
.mm-hero__container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 140px;
  padding-bottom: 80px;
}
.mm-hero__content {
  max-width: 680px;
}

/* Dual service cards */
.mm-hero__service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 820px;
}
.mm-hero__service-card {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--mm-ease), box-shadow 0.25s var(--mm-ease), border-color 0.25s;
}
.mm-hero__service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.32);
}
.mm-hero__service-card-img {
  width: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  min-height: 110px;
}
.mm-hero__service-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mm-hero__service-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.mm-hero__service-card-tag--gold {
  background: rgba(212, 160, 23, 0.22);
  color: var(--mm-gold-light);
  border: 1px solid rgba(212, 160, 23, 0.35);
}
.mm-hero__service-card-tag--green {
  background: rgba(45, 134, 83, 0.22);
  color: #6dbb8a;
  border: 1px solid rgba(45, 134, 83, 0.35);
}
.mm-hero__service-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.5;
}
.mm-hero__service-card-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: auto;
}
.mm-hero__service-card--driveway:hover .mm-hero__service-card-cta { color: var(--mm-gold-light); }
.mm-hero__service-card--lawn:hover .mm-hero__service-card-cta    { color: #6dbb8a; }

/* ---- DRIVEWAY SLIDER: Make it bigger ---- */
.mm-driveway__container {
  grid-template-columns: 1fr 520px !important;
  gap: 60px !important;
}
/* Remove hard-coded max-width from slider wrap if any */
.mm-driveway__slider-wrap {
  max-width: none;
}

/* ---- HOW IT WORKS: light bg override ---- */
.mm-how--spacious {
  padding-top: 100px;
  padding-bottom: 100px;
}
.mm-how--spacious .mm-how__heading {
  color: var(--mm-text);
}
.mm-how--spacious .mm-section-sub {
  color: var(--mm-text-muted);
}
.mm-how--spacious .mm-how__step-circle {
  background: var(--mm-purple);
  border-color: rgba(90,47,127,0.25);
  box-shadow: 0 0 0 8px rgba(90,47,127,0.10);
}
.mm-how--spacious .mm-how__step-body h3 {
  color: var(--mm-text);
}
.mm-how--spacious .mm-how__step-body p {
  color: var(--mm-text-muted);
}
.mm-how--spacious .mm-how__step-connector {
  background: rgba(90,47,127,0.25);
}

/* ---- WHY CHOOSE US v2: Dark bg, bold stats + pillars ---- */
.mm-why__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 56px 0 72px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mm-radius-xl);
  padding: 40px 0;
}
.mm-why__stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.mm-why__stat-num {
  font-family: var(--mm-font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--mm-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.mm-why__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.mm-why__stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Pillars */
.mm-why__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mm-why__pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--mm-radius-lg);
  padding: 32px 28px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--mm-ease);
}
.mm-why__pillar:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.mm-why__pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--mm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mm-why__pillar-icon--purple {
  background: rgba(90,47,127,0.25);
  color: var(--mm-purple-light);
  border: 1px solid rgba(90,47,127,0.3);
}
.mm-why__pillar-icon--gold {
  background: rgba(212,160,23,0.18);
  color: var(--mm-gold-light);
  border: 1px solid rgba(212,160,23,0.28);
}
.mm-why__pillar-icon--green {
  background: rgba(45,134,83,0.18);
  color: #6dbb8a;
  border: 1px solid rgba(45,134,83,0.28);
}
.mm-why__pillar h3 {
  font-family: var(--mm-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.mm-why__pillar p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin: 0;
}

/* ---- REVIEWS: Auto-scroll carousel ---- */
.mm-reviews__carousel {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
  padding: 12px 0 20px;
  /* Edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.mm-reviews__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: mm-scroll-reviews 36s linear infinite;
}
.mm-reviews__carousel:hover .mm-reviews__track {
  animation-play-state: paused;
}
@keyframes mm-scroll-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Individual review cards — narrower, fixed width for carousel */
.mm-reviews__track .mm-review {
  width: 340px;
  flex-shrink: 0;
  background: var(--mm-off-white);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--mm-shadow-sm);
}
.mm-reviews__track .mm-review p {
  font-size: 0.92rem;
  color: var(--mm-text);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.mm-reviews__track .mm-review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mm-reviews__google-link {
  text-align: center;
  margin-top: 40px;
}
.mm-reviews__see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mm-purple);
  text-decoration: none;
  border: 1.5px solid var(--mm-purple);
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.mm-reviews__see-all:hover {
  background: var(--mm-purple);
  color: #fff;
}
/* Hide old grid if it still renders */
.mm-reviews__grid { display: none; }

/* ---- CONTACT v2: Off-white bg, gold accent, CTA card ---- */
.mm-contact .mm-eyebrow .mm-eyebrow__dot--gold { background: var(--mm-gold); }
.mm-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mm-contact__copy h2 { margin-bottom: 16px; }
.mm-contact__copy p  { margin-bottom: 28px; color: var(--mm-text-muted); }
.mm-contact__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.mm-contact__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mm-text);
}
.mm-contact__trust-item svg { color: var(--mm-purple); flex-shrink: 0; }

.mm-contact__direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-contact__direct-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mm-text);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-contact__direct-link:hover { color: var(--mm-purple); }
.mm-contact__direct-link svg { color: var(--mm-purple-light); flex-shrink: 0; }

/* CTA card */
.mm-contact__cta-card {
  background: var(--mm-purple-darker, #3d1f58);
  border-radius: var(--mm-radius-xl);
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--mm-shadow-purple);
}
.mm-contact__cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.mm-contact__cta-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(212,160,23,0.18);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 50px;
  color: var(--mm-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.mm-contact__cta-card h3 {
  font-family: var(--mm-font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.mm-contact__cta-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
  line-height: 1.65;
}
.mm-contact__cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-contact__cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.mm-contact__cta-list svg { color: var(--mm-gold-light); flex-shrink: 0; }
.mm-contact__cta-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 12px 0 0;
}

/* ---- FOOTER v2: 3-col layout ---- */
.mm-footer__grid {
  grid-template-columns: 1.8fr 1fr 1.2fr !important;
  gap: 48px;
}
.mm-footer__service-area {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.mm-footer__quote-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--mm-gold);
  color: #1a1a2e;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.mm-footer__quote-btn:hover {
  background: var(--mm-gold-light);
  transform: translateY(-1px);
}

/* ---- RESPONSIVE: new sections ---- */
@media (max-width: 1100px) {
  .mm-hero__service-cards { max-width: 100%; }
  .mm-why__pillars { grid-template-columns: 1fr 1fr; }
  .mm-driveway__container { grid-template-columns: 1fr 420px !important; }
}

@media (max-width: 900px) {
  .mm-hero__container { gap: 40px; padding-top: 120px; }
  .mm-hero__service-cards { grid-template-columns: 1fr; max-width: 500px; }
  .mm-hero__service-card-img { width: 120px; }
  .mm-why__stats { flex-wrap: wrap; gap: 32px; padding: 32px; }
  .mm-why__stat { flex: 1 0 40%; }
  .mm-why__stat-divider { display: none; }
  .mm-why__pillars { grid-template-columns: 1fr 1fr; }
  .mm-contact__layout { grid-template-columns: 1fr; gap: 40px; }
  .mm-footer__grid { grid-template-columns: 1fr 1fr !important; gap: 36px; }
  .mm-driveway__container { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .mm-hero__service-cards { max-width: 100%; }
  .mm-hero__service-card-img { width: 90px; }
  .mm-why__pillars { grid-template-columns: 1fr; }
  .mm-why__stats { flex-direction: column; gap: 24px; padding: 28px; }
  .mm-why__stat-divider { width: 60px; height: 1px; flex: none; }
  .mm-contact__cta-card { padding: 32px 24px; }
  .mm-footer__grid { grid-template-columns: 1fr !important; }
  .mm-reviews__track .mm-review { width: 280px; }
}

/* ==========================================================================
   PATCH 3.0 — Hero diagonal split v2, Why Choose Us v3,
               Reviews visual upgrade, Header fix, Slider bigger,
               Full cohesion & personality pass
   ========================================================================== */

/* ---- HEADER FIX: button pushed to far right ---- */
.mm-header__inner {
  justify-content: space-between;
}
.mm-header__actions {
  margin-left: auto;
}

/* ---- HERO v3: Diagonal split with centered content ---- */
/* Re-enable the diagonal split panels */
.mm-hero__bg-left,
.mm-hero__bg-right,
.mm-hero__bg-overlay--left,
.mm-hero__bg-overlay--right,
.mm-hero__diagonal {
  display: block !important;
}
/* Hide the v2 single-bg panels */
.mm-hero__bg--a,
.mm-hero__bg--b,
.mm-hero > .mm-hero__backgrounds > .mm-hero__bg-overlay:not([class*="--"]) {
  display: none !important;
}

/* Split panels */
.mm-hero__bg-left,
.mm-hero__bg-right {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mm-hero__bg-left {
  clip-path: polygon(0 0, 62% 0, 48% 100%, 0 100%);
  z-index: 1;
}
.mm-hero__bg-right {
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 48% 100%);
  z-index: 1;
}
/* Lighter overlays for bright visuals */
.mm-hero__bg-overlay--left {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,8,24,0.45) 0%, rgba(13,8,24,0.20) 60%, transparent 100%);
}
.mm-hero__bg-overlay--right {
  position: absolute; inset: 0;
  background: linear-gradient(240deg, rgba(10,32,16,0.35) 0%, rgba(13,8,24,0.15) 60%, transparent 100%);
}
/* Glowing diagonal seam */
.mm-hero__diagonal {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: polygon(
    calc(62% - 1.5px) 0%,
    calc(62% + 1.5px) 0%,
    calc(48% + 1.5px) 100%,
    calc(48% - 1.5px) 100%
  );
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(168,117,212,0.85) 15%,
    #c084fc 50%,
    rgba(168,117,212,0.85) 85%,
    transparent 100%
  );
  filter: drop-shadow(0 0 8px rgba(192,132,252,0.5));
}
.mm-hero__diagonal::before { display: none; }

/* Service labels on each side */
.mm-hero__labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5% 40px;
}
.mm-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.mm-hero__label--left { margin-right: auto; }
.mm-hero__label--right { margin-left: auto; }
.mm-hero__label--left svg { color: var(--mm-gold-light); }
.mm-hero__label--right svg { color: #6dbb8a; }

/* Centered hero content — overlaps both halves */
.mm-hero__center-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 160px 24px 140px;
  max-width: 760px;
  margin: 0 auto;
}
/* Override old container if present */
.mm-hero__container { display: none; }

.mm-hero__heading {
  font-family: var(--mm-font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.mm-hero__heading-accent {
  background: linear-gradient(135deg, var(--mm-purple-light) 0%, var(--mm-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mm-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 0 28px;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.mm-hero__actions { margin-bottom: 28px; }

/* Pulsing glow on the primary CTA */
.mm-btn--glow {
  position: relative;
  overflow: visible;
}
.mm-btn--glow::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--mm-purple);
  opacity: 0;
  z-index: -1;
  animation: mm-btn-pulse 2.5s ease-in-out infinite;
}
@keyframes mm-btn-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(1.06); }
}

.mm-hero__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.mm-hero__trust-item {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.mm-hero__trust-divider { color: rgba(255,255,255,0.3); }

.mm-hero__discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 50px;
  color: var(--mm-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mm-hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mm-gold);
  animation: mm-badge-pulse 2s ease infinite;
}
@keyframes mm-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* Mobile hero */
@media (max-width: 768px) {
  .mm-hero__bg-left  { clip-path: polygon(0 0, 100% 0, 100% 52%, 0 52%); }
  .mm-hero__bg-right { clip-path: polygon(0 48%, 100% 48%, 100% 100%, 0 100%); }
  .mm-hero__diagonal {
    clip-path: none;
    inset: auto 0; top: calc(50% - 1.5px); height: 3px; width: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(192,132,252,0.8) 20%, #c084fc 50%, rgba(192,132,252,0.8) 80%, transparent 100%);
    filter: none;
  }
  .mm-hero__center-content { padding: 120px 20px 100px; }
  .mm-hero__heading { font-size: 2.2rem; }
  .mm-hero__labels { padding: 0 16px 28px; }
  .mm-hero__label { font-size: 0.68rem; padding: 6px 12px; }
}

/* ---- DRIVEWAY SLIDER: Even bigger ---- */
.mm-driveway__container {
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
}
.mm-slider {
  aspect-ratio: 16/11;
}

/* ---- WHY CHOOSE US v3: Promise-based layout ---- */
.mm-why__promises {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}
.mm-why__promise {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mm-why__promise:last-child { border-bottom: none; }
.mm-why__promise-number {
  font-family: var(--mm-font-head);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
  transition: color 0.4s;
}
.mm-why__promise:hover .mm-why__promise-number {
  color: rgba(212,160,23,0.18);
}
.mm-why__promise-body h3 {
  font-family: var(--mm-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.35;
}
.mm-why__promise-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}
.mm-text-purple-light { color: var(--mm-purple-light); }

@media (max-width: 768px) {
  .mm-why__promise { flex-direction: column; gap: 12px; }
  .mm-why__promise-number { font-size: 2.5rem; min-width: auto; }
}

/* ---- REVIEWS v2: Dark bg, bold cards, slower scroll, pizzazz ---- */
.mm-section--review-dark {
  background: linear-gradient(180deg, var(--mm-dark) 0%, #120a20 100%);
  padding: 80px 0 72px;
}
.mm-reviews__carousel {
  margin-top: 48px;
  padding: 12px 0 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.mm-reviews__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: mm-scroll-reviews 60s linear infinite; /* slower */
}
.mm-reviews__carousel:hover .mm-reviews__track {
  animation-play-state: paused;
}

/* Review cards — dark mode, big, readable */
.mm-reviews__track .mm-review {
  width: 380px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--mm-radius-xl);
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--mm-ease);
  box-shadow: none;
}
.mm-reviews__track .mm-review:hover {
  border-color: rgba(212,160,23,0.30);
  transform: translateY(-4px);
}
.mm-review__quote-icon {
  position: absolute;
  top: 16px; right: 20px;
  color: var(--mm-gold);
}
.mm-reviews__track .mm-review .mm-review__stars {
  display: flex; gap: 3px;
}
.mm-reviews__track .mm-review p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.mm-reviews__track .mm-review footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mm-reviews__track .mm-review .mm-review__author {
  font-weight: 700;
  color: #fff;
  font-style: normal;
  font-size: 0.9rem;
}
.mm-reviews__track .mm-review .mm-review__area {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
}

/* Google link — dark variant */
.mm-reviews__see-all--dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mm-gold-light);
  text-decoration: none;
  border: 1.5px solid rgba(212,160,23,0.35);
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mm-reviews__see-all--dark:hover {
  background: var(--mm-gold);
  color: #1a1a2e;
  border-color: var(--mm-gold);
}

@media (max-width: 640px) {
  .mm-reviews__track .mm-review { width: 300px; padding: 28px 24px 24px; }
}

/* ---- SECTION COLOR FLOW POLISH ---- */
/* Hero (dark imgs) → Trust (dark) → Bundle (light) → Driveway (dark) →
   How It Works (off-white) → Why Choose Us (dark) → Reviews (dark-gradient) →
   Contact (light) → FAQ (off-white) → Footer (dark) */

/* Add subtle top-border accent to certain light sections */
.mm-bundle::before,
.mm-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90,47,127,0.2), transparent);
  pointer-events: none;
}
.mm-bundle, .mm-contact { position: relative; }

/* FAQ section — slightly different tone */
.mm-faq.mm-section--off-white {
  background: #f5f3f8; /* very subtle purple tint */
}

/* ---- MAGIC PERSONALITY TOUCHES ---- */
/* Sparkle accent on certain headings */
.mm-section-heading::after,
.mm-how__heading::after {
  content: ' ✦';
  color: var(--mm-gold);
  font-size: 0.6em;
}

/* Gold accent line on CTA card */
.mm-contact__cta-card {
  border-top: 3px solid var(--mm-gold);
}

/* Bundle card gets purple left border */
.mm-bundle__cta-card {
  border-left: 3px solid var(--mm-purple);
}

/* How It Works step hover glow */
.mm-how__step:hover .mm-how__step-circle {
  box-shadow: 0 0 0 10px rgba(90,47,127,0.18), 0 0 24px rgba(90,47,127,0.12);
}

/* FAQ question hover accent */
.mm-faq__question:hover {
  color: var(--mm-purple);
}

/* Subtle animated gradient on footer top border */
.mm-footer__top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mm-purple), var(--mm-gold), var(--mm-green), var(--mm-purple));
  background-size: 200% 100%;
  animation: mm-footer-gradient 6s ease infinite;
}
.mm-footer__top { position: relative; }
@keyframes mm-footer-gradient {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* ---- CLEANUP: Hide old elements that shouldn't show ---- */
.mm-hero__service-cards,
.mm-hero__service-card { display: none !important; }
.mm-why__stats, .mm-why__pillars { display: none !important; }
.mm-why__stat, .mm-why__pillar { display: none !important; }

/* ==========================================================================
   PATCH 4.0 — Hero overlays removed, Trust strip vibrant, Bundle rebalanced,
               Slider height matched, Why Choose Us separator, Reviews widget,
               Contact rebalanced, FAQ categories
   ========================================================================== */

/* ---- HERO: Remove dark overlays for vibrant colors ---- */
.mm-hero__bg-overlay--left {
  background: none !important;
}
.mm-hero__bg-overlay--right {
  background: none !important;
}

/* Subtle frosted backdrop behind centered text for readability */
.mm-hero__center-content {
  background: radial-gradient(ellipse at center, rgba(13,8,24,0.55) 0%, rgba(13,8,24,0.30) 50%, transparent 75%);
  border-radius: 24px;
}

/* Stronger text shadows to compensate for removed overlays */
.mm-hero__heading {
  text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 4px 60px rgba(0,0,0,0.3) !important;
}
.mm-hero__sub {
  text-shadow: 0 2px 16px rgba(0,0,0,0.5) !important;
}

/* ---- TRUST STRIP: Vibrant colors, popping ---- */
.mm-trust-strip {
  background: linear-gradient(135deg, #1a0e2e 0%, #0d0818 50%, #0a1a10 100%) !important;
  padding: 40px 0 !important;
}

/* Brighter stat colors */
.mm-stat--purple .mm-stat__icon {
  color: #a855f7 !important;
  background: rgba(168,85,247,0.18) !important;
}
.mm-stat--purple .mm-stat__number { color: #c084fc !important; }
.mm-stat--purple::before { background: #a855f7 !important; }

.mm-stat--green .mm-stat__icon {
  color: #34d399 !important;
  background: rgba(52,211,153,0.18) !important;
}
.mm-stat--green .mm-stat__number { color: #6ee7b7 !important; }
.mm-stat--green::before { background: #34d399 !important; }

.mm-stat--gold .mm-stat__icon {
  color: #fbbf24 !important;
  background: rgba(251,191,36,0.18) !important;
}
.mm-stat--gold .mm-stat__number { color: #fcd34d !important; }
.mm-stat--gold::before { background: #fbbf24 !important; }

/* Maple leaf stat: teal instead of aggressive orange/red */
.mm-stat--maple::before { background: #06b6d4 !important; }
.mm-stat--maple .mm-stat__icon {
  color: #22d3ee !important;
  background: rgba(6,182,212,0.18) !important;
}
.mm-stat--maple .mm-stat__number { color: #67e8f9 !important; font-size: 1.6rem !important; }
.mm-stat--maple .mm-stat__number--text { font-size: 1.4rem !important; }

/* Make stat labels brighter */
.mm-stat__label {
  color: rgba(255,255,255,0.70) !important;
}
.mm-stat__number {
  font-weight: 800 !important;
}

/* Hide old red stat class */
.mm-stat--red { display: none !important; }

/* ---- BUNDLE: Rebalanced layout, bigger emphasis ---- */
.mm-bundle__layout {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}
.mm-bundle__cta-card {
  position: sticky !important;
  top: 100px;
}
.mm-bundle__card-heading {
  font-size: 2rem !important;
  line-height: 1.15 !important;
}
.mm-bundle__card-sub {
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}
.mm-bundle__card-urgency {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

/* ---- DRIVEWAY SLIDER: Match text height ---- */
.mm-slider {
  aspect-ratio: auto !important;
  height: 100% !important;
  min-height: 400px;
}
.mm-driveway__container {
  align-items: stretch !important;
}
.mm-driveway__slider-wrap {
  display: flex !important;
  flex-direction: column !important;
}
.mm-driveway__slider-wrap .mm-slider {
  flex: 1;
}

/* ---- WHY CHOOSE US: Visual separator from reviews ---- */
.mm-why.mm-section--dark {
  padding-bottom: 80px !important;
  position: relative;
}
.mm-why.mm-section--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.40), var(--mm-gold), rgba(212,160,23,0.40), transparent);
}

/* Subtle bottom fade for extra separation */
.mm-why.mm-section--dark::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
  pointer-events: none;
  z-index: 0;
}

/* ---- REVIEWS: TrustIndex widget styling ---- */
.mm-reviews__widget {
  margin-top: 40px;
  padding: 0 0 20px;
}

/* Override TrustIndex widget to match dark theme */
.mm-section--review-dark .mm-reviews__widget {
  border-radius: var(--mm-radius-xl);
  overflow: hidden;
}

/* ---- CONTACT: Balanced layout, bigger text, no phone/email ---- */
.mm-contact__heading-lg {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  line-height: 1.15 !important;
}
.mm-contact__intro {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  color: var(--mm-text-muted);
  margin-bottom: 28px;
}
.mm-contact__layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: center !important;
}
.mm-contact__trust {
  margin-top: 8px !important;
}
.mm-contact__trust-item {
  font-size: 1.05rem !important;
  padding: 8px 0 !important;
}
.mm-contact__cta-sub {
  font-size: 1rem !important;
  line-height: 1.65;
}
.mm-contact__cta-card h3 {
  font-size: 1.6rem !important;
}

/* Hide old direct contact links if any remain */
.mm-contact__direct {
  display: none !important;
}

/* ---- FAQ: Category headings ---- */
.mm-faq__category {
  margin-top: 36px;
  margin-bottom: 8px;
}
.mm-faq__category:first-child {
  margin-top: 0;
}
.mm-faq__category-heading {
  font-family: var(--mm-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mm-purple);
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mm-purple);
  display: inline-block;
}

/* ---- RESPONSIVE FIXES ---- */
@media (max-width: 768px) {
  .mm-bundle__layout {
    grid-template-columns: 1fr !important;
  }
  .mm-contact__layout {
    grid-template-columns: 1fr !important;
  }
  .mm-driveway__container {
    grid-template-columns: 1fr !important;
  }
  .mm-slider {
    height: auto !important;
    min-height: 300px;
    aspect-ratio: 16/11 !important;
  }
}

/* ==========================================================================
   PATCH 5.0 — Hero centered + urgency, Why Choose Us card rework,
               Reviews light bg, Button hover fix, Driveway button link
   ========================================================================== */

/* ---- HERO: Better centering & text backdrop ---- */
.mm-hero__center-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 140px 32px 120px !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  background: radial-gradient(ellipse at center, rgba(13,8,24,0.60) 0%, rgba(13,8,24,0.35) 45%, transparent 70%) !important;
}

.mm-hero__heading {
  font-size: clamp(2.6rem, 6vw, 4rem) !important;
  text-align: center !important;
}

.mm-hero__sub {
  text-align: center !important;
  max-width: 640px !important;
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
}

/* ---- BUTTONS: Fix hover to gold instead of blue ---- */
.mm-btn--primary {
  background: var(--mm-purple) !important;
  color: #fff !important;
  border: none !important;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
}
.mm-btn--primary:hover,
.mm-btn--primary:focus {
  background: var(--mm-gold) !important;
  color: #1a1a2e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}

/* Gold button hover fix */
.mm-btn--gold:hover,
.mm-btn--gold:focus {
  background: #e8b612 !important;
  color: #1a1a2e !important;
}

/* All links/buttons: never turn blue */
.mm-btn:hover,
.mm-btn:focus {
  color: #1a1a2e !important;
}
/* Exception: white outline buttons should stay white text or go dark on fill */
.mm-btn--white-outline:hover { color: var(--mm-dark) !important; }

/* Specific fix: CTA glow button in hero */
.mm-btn--glow:hover {
  background: var(--mm-gold) !important;
  color: #1a1a2e !important;
}

/* Header button */
.mm-header .mm-btn--primary:hover {
  background: var(--mm-gold) !important;
  color: #1a1a2e !important;
}

/* ---- HEADER POLISH: purple header to match quote page ---- */
.mm-header {
  background: rgba(13, 8, 24, 0.85) !important;
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.mm-header.is-scrolled {
  background: rgba(13, 8, 24, 0.97) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.mm-header__inner {
  gap: 20px;
}

.mm-header__actions {
  margin-left: auto;
  padding-left: 16px;
}

.mm-header__actions .mm-btn--sm {
  min-height: 48px;
  min-width: 172px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .mm-header__inner {
    gap: 12px;
  }

  .mm-header__actions {
    padding-left: 8px;
  }

  .mm-header__actions .mm-btn--sm {
    min-width: auto;
    min-height: 42px;
    padding: 11px 16px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
}

/* ---- WHY CHOOSE US: Complete card rework ---- */
/* Hide old promise layout */
.mm-why__promises {
  display: none !important;
}

.mm-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.mm-why__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 40px 32px 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--mm-ease), box-shadow 0.3s;
  overflow: hidden;
}
.mm-why__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mm-purple), var(--mm-gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.mm-why__card:hover {
  border-color: rgba(212,160,23,0.30);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.mm-why__card:hover::before {
  opacity: 1;
}

.mm-why__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212,160,23,0.12);
  color: var(--mm-gold);
  margin-bottom: 20px;
}

.mm-why__card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--mm-font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.mm-why__card:hover .mm-why__card-number {
  color: rgba(212,160,23,0.12);
}

.mm-why__card h3 {
  font-family: var(--mm-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.mm-why__card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin: 0;
}

/* Why section separator still applies */
.mm-why.mm-section--dark {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .mm-why__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---- REVIEWS: Dark contrast background ---- */
.mm-reviews.mm-section--review-dark,
.mm-section--review-dark {
  background: linear-gradient(180deg, var(--mm-dark) 0%, #120a20 100%) !important;
  padding: 80px 0 72px;
  color: var(--mm-text-light) !important;
  position: relative;
}
.mm-reviews.mm-section--review-dark .mm-section-heading,
.mm-reviews.mm-section--review-dark .mm-text-light {
  color: var(--mm-text-light) !important;
}
.mm-reviews.mm-section--review-dark .mm-section-sub,
.mm-reviews.mm-section--review-dark .mm-text-dim,
.mm-reviews.mm-section--review-dark .mm-eyebrow--light {
  color: rgba(255,255,255,0.72) !important;
}
.mm-reviews.mm-section--review-dark .mm-eyebrow__dot--gold {
  background: var(--mm-gold) !important;
}
.mm-reviews.mm-section--review-dark .mm-reviews__widget {
  border-radius: var(--mm-radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 16px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
}

/* ---- RESPONSIVE: Why cards + hero ---- */
@media (max-width: 768px) {
  .mm-hero__center-content {
    padding: 120px 20px 100px !important;
  }
  .mm-hero__heading {
    font-size: 2.2rem !important;
  }
  .mm-why__cards {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   PATCH 6.0 — Hero true-center, Trust strip stars animation, How It Works
               sequential highlight, Why Choose Us image cards, Contact dark,
               FAQ reorder
   ========================================================================== */

/* ---- HERO: True center over both images, standard height ---- */
.mm-hero {
  position: relative !important;
  height: auto !important;
  min-height: 520px !important;
  max-height: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: calc(var(--header-h) + 40px) !important;
  padding-bottom: 80px !important;
}
.mm-hero__center-content {
  position: relative !important;
  z-index: 4 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 40px 40px 36px !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  background: rgba(13,8,24,0.65) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4) !important;
}

/* Labels stay at bottom */
.mm-hero__labels {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  z-index: 5 !important;
  padding: 0 5% 32px !important;
}

/* Scroll hint below everything */
.mm-hero__scroll-hint {
  position: absolute !important;
  bottom: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 5 !important;
}

/* ---- TRUST STRIP: Static 1hr, animated stars ---- */
/* Static number — no countup animation */
.mm-stat__number--static {
  font-family: var(--mm-font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

/* 5-star layout */
.mm-stat__number--stars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.mm-stat__star-text {
  font-family: var(--mm-font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.mm-stat__stars-row {
  display: flex;
  gap: 3px;
}
.mm-stat__star {
  color: var(--mm-gold);
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
  animation: mm-star-pop 0.4s ease forwards;
}
.mm-stat__star:nth-child(1) { animation-delay: 0.1s; }
.mm-stat__star:nth-child(2) { animation-delay: 0.25s; }
.mm-stat__star:nth-child(3) { animation-delay: 0.4s; }
.mm-stat__star:nth-child(4) { animation-delay: 0.55s; }
.mm-stat__star:nth-child(5) { animation-delay: 0.7s; }

@keyframes mm-star-pop {
  0%   { opacity: 0; transform: scale(0.3) rotate(-20deg); }
  60%  { opacity: 1; transform: scale(1.2) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Only animate when in view (IntersectionObserver adds .mm-revealed) */
.mm-stat:not(.mm-revealed) .mm-stat__star {
  animation-play-state: paused;
}

/* ---- HOW IT WORKS: One-line heading, sequential circle highlight ---- */
.mm-how__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
}
/* Remove the sparkle after from this heading */
.mm-how__heading::after {
  display: none !important;
}

/* Step circles: start muted, become active in sequence */
.mm-how__step-circle {
  transition: background 0.5s, box-shadow 0.5s, transform 0.3s !important;
}

/* Active state for highlighted step */
.mm-how__step--active .mm-how__step-circle {
  background: var(--mm-purple) !important;
  box-shadow: 0 0 0 8px rgba(90,47,127,0.25), 0 0 20px rgba(90,47,127,0.20) !important;
  transform: scale(1.12);
}
.mm-how__step--active .mm-how__step-circle span {
  color: #fff !important;
}
.mm-how__step--active .mm-how__step-body h3 {
  color: var(--mm-purple) !important;
}

/* ---- WHY CHOOSE US: Image card layout ---- */
/* Override old card layout from patch 5 */
.mm-why__cards {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
}

.mm-why__card {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

.mm-why__card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.mm-why__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--mm-ease);
}
.mm-why__card:hover .mm-why__card-img img {
  transform: scale(1.06);
}

.mm-why__card-content {
  padding: 28px 28px 32px;
  position: relative;
  flex: 1;
}

.mm-why__card-number {
  position: absolute !important;
  top: 16px !important;
  right: 20px !important;
}

.mm-why__card-icon {
  display: none !important; /* replaced by images */
}

@media (max-width: 1024px) {
  .mm-why__cards {
    grid-template-columns: 1fr !important;
  }
  .mm-why__card-img {
    height: 220px;
  }
}

/* ---- CONTACT: Dark section ---- */
.mm-section--contact-dark {
  background: linear-gradient(165deg, #1a0e2e 0%, var(--mm-dark) 60%, #0a1a10 100%);
  padding: 80px 0;
  position: relative;
}
.mm-section--contact-dark .mm-contact__layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 56px !important;
  align-items: center !important;
}

/* Left side text */
.mm-section--contact-dark .mm-contact__heading-lg {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  color: #fff !important;
}
.mm-section--contact-dark .mm-contact__intro {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.60) !important;
}
.mm-section--contact-dark .mm-eyebrow--light {
  color: rgba(255,255,255,0.60) !important;
}

/* Social proof stats */
.mm-contact__social-proof {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mm-contact__proof-item {
  text-align: left;
}
.mm-contact__proof-number {
  font-family: var(--mm-font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--mm-gold);
  line-height: 1.2;
}
.mm-contact__proof-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Right CTA card on dark bg */
.mm-section--contact-dark .mm-contact__cta-card {
  background: rgba(90,47,127,0.20) !important;
  border: 1px solid rgba(168,85,247,0.25) !important;
  border-top: 3px solid var(--mm-gold) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mm-section--contact-dark .mm-contact__cta-card h3 {
  color: #fff !important;
}
.mm-section--contact-dark .mm-contact__cta-sub {
  color: rgba(255,255,255,0.70) !important;
}
.mm-section--contact-dark .mm-contact__cta-card-badge {
  background: rgba(212,160,23,0.15) !important;
  color: var(--mm-gold-light) !important;
  border: 1px solid rgba(212,160,23,0.25);
}
.mm-section--contact-dark .mm-contact__cta-list li {
  color: rgba(255,255,255,0.80) !important;
}
.mm-section--contact-dark .mm-contact__cta-list svg {
  color: var(--mm-gold) !important;
}
.mm-section--contact-dark .mm-contact__cta-note {
  color: rgba(255,255,255,0.40) !important;
}

/* Remove old light section accent borders from contact */
.mm-contact::before {
  display: none !important;
}

/* ---- CONTACT: Light section after dark reviews ---- */
.mm-contact.mm-section--light {
  background: var(--mm-light) !important;
}
.mm-contact.mm-section--light::before {
  display: block !important;
}
.mm-contact.mm-section--light .mm-contact__intro {
  color: var(--mm-text-muted) !important;
}
.mm-contact.mm-section--light .mm-contact__social-proof {
  border-top: 1px solid rgba(26,26,46,0.08);
}
.mm-contact.mm-section--light .mm-contact__proof-label {
  color: rgba(26,26,46,0.58);
}

/* ---- FAQ: first item (area) has no category header, just starts ---- */
/* The first FAQ item before any category should just sit at the top cleanly */

/* ---- RESPONSIVE: Patch 6 ---- */
@media (max-width: 768px) {
  .mm-hero__center-content {
    padding: 30px 20px 28px !important;
    max-width: min(92vw, 560px) !important;
    margin: 32px auto 0 !important;
  }
  .mm-hero {
    min-height: clamp(560px, 88svh, 720px) !important;
    padding-top: calc(var(--header-h) + 20px) !important;
    padding-bottom: 32px !important;
  }
  .mm-section--contact-dark .mm-contact__layout {
    grid-template-columns: 1fr !important;
  }
  .mm-contact__social-proof {
    gap: 20px;
  }
  .mm-contact__proof-number {
    font-size: 1.3rem;
  }
}


/* ==========================================================================
   PATCH 7.0 — Performance & Accessibility Hardening  (v6.1.0)
   - Gold button WCAG AA contrast guarantee
   - Skip link focus visibility
   - Focus-visible outline for all interactive elements
   ========================================================================== */

/* ---- Gold button: guarantee dark text for WCAG AA 4.5:1 ---- */
.mm-btn--gold,
.mm-btn--gold:link,
.mm-btn--gold:visited {
  color: #0d0800 !important;
}
.mm-btn--gold:hover,
.mm-btn--gold:focus,
.mm-btn--gold:active {
  background: var(--mm-gold) !important;
  color: #0d0800 !important;
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.5) !important;
}

/* ---- Skip link: strong focus outline for keyboard users ---- */
.mm-skip-link:focus,
.mm-skip-link:focus-visible {
  position: fixed !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 99999 !important;
  display: block !important;
  padding: 10px 18px !important;
  background: #fff !important;
  color: var(--mm-purple) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  outline: 4px solid var(--mm-purple) !important;
  outline-offset: 2px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
}

/* ---- Focus-visible: consistent outline for all interactive elements ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--mm-purple-light) !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

/* ---- Ensure nav buttons and icon links are clearly focusable ---- */
.mm-footer__social:focus-visible,
.mm-faq__question:focus-visible,
.mm-hamburger:focus-visible {
  outline: 3px solid var(--mm-gold) !important;
  outline-offset: 3px !important;
  border-radius: 6px !important;
}

/* ---- Footer: "We're Hiring" button ---- */
.mm-footer .mm-footer__hiring-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 18px;
  background: rgba(212, 160, 23, 0.10);
  border: 1px solid rgba(212, 160, 23, 0.30);
  border-radius: 50px;
  color: var(--mm-gold-light) !important;
  font-family: var(--mm-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.mm-footer .mm-footer__hiring-btn:hover {
  background: var(--mm-gold) !important;
  border-color: var(--mm-gold) !important;
  color: #0d0800 !important;
  transform: translateY(-1px);
}

.mm-footer .mm-footer__hiring-btn:hover .mm-footer__hiring-dot {
  background: #0d0800;
}

.mm-footer__hiring-dot {
  width: 6px;
  height: 6px;
  background: var(--mm-green);
  border-radius: 50%;
  animation: mm-footer-hiring-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes mm-footer-hiring-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ==========================================================================
   PATCH 7.1 - Mobile driveway overflow guard
   Keep the driveway block fully contained on narrow screens.
   ========================================================================== */

@media (max-width: 768px) {
  .mm-driveway__container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;
  }

  .mm-driveway__content {
    display: contents;
  }

  .mm-driveway__slider-wrap {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .mm-driveway__content p {
    max-width: none;
    margin-bottom: 12px;
  }

  .mm-driveway__content > .mm-eyebrow {
    order: 1;
  }

  .mm-driveway__content > h2 {
    order: 2;
    margin-bottom: 10px;
  }

  .mm-driveway__content > p {
    order: 3;
    margin-top: 0;
  }

  .mm-driveway__slider-wrap {
    order: 4;
    margin-top: 0;
    margin-bottom: 4px;
  }

  .mm-driveway__services {
    order: 5;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .mm-driveway__actions {
    order: 6;
  }

  .mm-driveway__service {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .mm-driveway__service > div {
    min-width: 0;
  }

  .mm-driveway__service strong,
  .mm-driveway__service span,
  .mm-driveway__content p,
  .mm-driveway .mm-eyebrow {
    overflow-wrap: anywhere;
  }

  .mm-driveway__actions {
    width: 100%;
  }

  .mm-driveway__actions .mm-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  .mm-slider__caption {
    margin: 0;
  }
}
