html, body {
  scroll-behavior: smooth;
}

.mm-main {
  padding-top: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .mm-hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .mm-booking-cta__inner,
  .mm-map__grid,
  .mm-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mm-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-usp__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-nav__links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    background: rgba(5, 6, 17, 0.98);
    padding: 0.8rem 1.25rem 1rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .mm-nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .mm-nav__toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .mm-services__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mm-usp__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .container {
    width: min(100% - 1.6rem, 100%);
  }

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

/* ===========================
   HERO WRAPPER & BACKGROUND
   =========================== */

.mmh-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.mmh-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.mmh-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.05);
}

.mmh-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 170, 225, 0.26), transparent 55%),
    linear-gradient(115deg, rgba(7, 10, 24, 0.96) 0%, rgba(7, 10, 24, 0.65) 38%, rgba(7, 10, 24, 0.15) 100%);
}

/* ===========================
   GRID LAYOUT
   =========================== */

.mmh-hero__grid {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
}

/* ===========================
   LEFT COLUMN (COPY)
   =========================== */

.mmh-hero__copy {
  max-width: 640px;
}

.mmh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 10, 28, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 1rem;
}

.mmh-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-accent, #23AAE1);
}

.mmh-hero__badge-text {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(210, 240, 255, 0.9);
}

.mmh-hero__title {
  font-size: clamp(2.2rem, 3vw + 1.4rem, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1rem;
}

.mmh-hero__subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 36rem;
  color: rgba(240, 244, 255, 0.9);
  margin: 0 0 1.7rem;
}

/* CTA buttons */

.mmh-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.mmh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease,
              border-color 160ms ease, box-shadow 160ms ease,
              transform 110ms ease;
}

.mmh-btn--primary {
  background: linear-gradient(135deg,
              var(--mm-accent, #23AAE1),
              var(--mm-accent-strong, #1C8FC4));
  color: #0a0d18;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.6);
}

.mmh-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.7);
}

.mmh-btn--ghost {
  background: rgba(7, 10, 28, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(14px);
}

.mmh-btn--ghost:hover {
  background: rgba(7, 10, 28, 0.7);
}

/* Highlights row */

.mmh-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

.mmh-hero__highlight {
  padding: 0.6rem 0.85rem;
  border-radius: 1rem;
  background: rgba(7, 10, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 150px;
}

.mmh-hero__highlight dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(210, 240, 255, 0.9);
  margin-bottom: 0.15rem;
}

.mmh-hero__highlight dd {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(220, 228, 250, 0.9);
}

/* ===========================
   RIGHT COLUMN (PANEL)
   =========================== */

.mmh-hero__side {
  display: flex;
  justify-content: flex-end;
}

.mmh-hero-panel {
  width: 100%;
  max-width: 380px;
  padding: 1.6rem 1.7rem;
  border-radius: 1.7rem;
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.10),
              rgba(4, 6, 20, 0.98));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.mmh-hero-panel__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(210, 240, 255, 0.9);
  margin-bottom: 0.9rem;
}

.mmh-hero-panel__tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.mmh-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem 0.7rem;
  border-radius: 1.1rem;
  background: rgba(7, 10, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mmh-tile--accent {
  background: linear-gradient(135deg,
              rgba(35, 170, 225, 0.18),
              rgba(7, 10, 28, 0.98));
  border-color: rgba(138, 216, 247, 0.55);
}

.mmh-tile__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
}

.mmh-tile__title {
  font-size: 0.9rem;
  margin: 0 0 0.12rem;
}

.mmh-tile__text {
  font-size: 0.78rem;
  color: rgba(215, 224, 246, 0.9);
  margin: 0;
}

/* Panel footer */

.mmh-hero-panel__footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0.9rem;
  font-size: 0.8rem;
}

.mmh-hero-panel__block {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.mmh-hero-panel__label {
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(246, 248, 255, 0.96);
}

.mmh-hero-panel__phone {
  color: var(--mm-accent, #23AAE1);
  font-weight: 600;
  text-decoration: none;
}

.mmh-hero-panel__phone:hover {
  text-decoration: underline;
}

.mmh-hero-panel__hint {
  color: rgba(215, 224, 246, 0.85);
}

/* ===========================
   SCROLL HINT
   =========================== */

.mmh-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(220, 228, 250, 0.85);
  pointer-events: none;
}

.mmh-hero__scroll-line {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom,
              rgba(255, 255, 255, 0.9),
              transparent);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 960px) {
  .mmh-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    padding-top: 5.3rem;
    padding-bottom: 3.4rem;
  }

  .mmh-hero__side {
    justify-content: flex-start;
  }

  .mmh-hero-panel {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .mmh-hero {
    min-height: auto;
  }

  .mmh-hero__grid {
    padding-top: 4.5rem;
    padding-bottom: 2.6rem;
  }

  .mmh-hero__cta-row {
    flex-direction: column;
  }

  .mmh-btn {
    width: 100%;
  }

  .mmh-hero__highlights {
    gap: 0.7rem;
  }

  .mmh-hero-panel__footer {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Force mobile CTA behaviour */
@media (max-width: 640px) {
  .mmh-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .mmh-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}
/* Darker left-side gradient behind the copy (desktop & tablet) */
.mmh-hero__gradient {
  background:
    radial-gradient(circle at 20% 20%, rgba(35, 170, 225, 0.25), transparent 55%),
    linear-gradient(110deg,
      rgba(7, 10, 24, 0.98) 0%,
      rgba(7, 10, 24, 0.85) 32%,
      rgba(7, 10, 24, 0.35) 58%,
      rgba(7, 10, 24, 0.05) 100%);
}

/* Slight text glow so white text doesn’t get lost */
.mmh-hero__title,
.mmh-hero__subtitle {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

/* Mobile: subtle panel behind the copy so small text stays readable */
@media (max-width: 640px) {
  .mmh-hero__copy {
    position: relative;
    padding: 1rem 1.1rem 1.3rem;
    margin: 0 -0.75rem 0;
    border-radius: 1.25rem;
    background: linear-gradient(
      165deg,
      rgba(7, 10, 24, 0.95),
      rgba(7, 10, 24, 0.82)
    );
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  }

  /* reduce subtitle size slightly for very small screens */
  .mmh-hero__subtitle {
    font-size: 0.9rem;
  }
}


/* HERO CTA BUTTONS — NEW STYLE */

.mmh-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

/* Base button */

.mmh-cta {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  min-height: 3rem;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 110ms ease;
}

/* Primary */

.mmh-cta--primary {
  background: linear-gradient(
    135deg,
    var(--mm-accent, #23AAE1),
    var(--mm-accent-strong, #1C8FC4)
  );
  color: #080a14;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.6);
}

.mmh-cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.7);
}

/* Ghost */

.mmh-cta--ghost {
  background: rgba(7, 10, 28, 0.35);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.mmh-cta--ghost:hover {
  background: rgba(7, 10, 28, 0.7);
}

/* Responsive behaviour */

@media (max-width: 768px) {
  .mmh-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .mmh-cta {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
}

/* Desktop typography refinements for hero */

@media (min-width: 1024px) {
  /* Make heading a touch smaller + tighter */
  .mmh-hero__title {
    font-size: 3rem;          /* was up to ~3.5rem via clamp */
    line-height: 1.06;
    max-width: 18ch;          /* keeps nicer line breaks */
  }

  /* Subtitle a little calmer */
  .mmh-hero__subtitle {
    font-size: 0.95rem;
    max-width: 34rem;
  }

  /* Badge text slightly less spaced out */
  .mmh-hero__badge-text {
    letter-spacing: 0.14em;
    font-size: 0.72rem;
  }

  /* Highlights: lighter and smaller so they don’t compete with body text */
  .mmh-hero__highlight dt {
    font-size: 0.78rem;
  }

  .mmh-hero__highlight dd {
    font-size: 0.78rem;
  }
}

/* Slightly softer shadow so fonts stay crisp */
.mmh-hero__title,
.mmh-hero__subtitle {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
}

/* ============================
   SERVICES SECTION
   ============================ */

.mmh-services {
  padding: 4.5rem 0 4.8rem;
  background: #f5f6fb;
}

.mmh-services__head {
  max-width: 720px;
  margin: 0 auto 2.8rem;
  text-align: left;
}

/* Badge */

.mmh-services__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(13, 20, 46, 0.08);
  margin-bottom: 0.85rem;
}

.mmh-services__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-accent, #23AAE1);
}

.mmh-services__badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(122, 132, 164, 0.95);
}

/* Heading + text */

.mmh-services__title {
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.1rem);
  margin: 0 0 0.4rem;
  color: #141727;
}

.mmh-services__kicker {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(97, 107, 138, 0.98);
}

/* ============================
   GRID & CARDS
   ============================ */

.mmh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

/* Card */

.mmh-service-card {
  background: #ffffff;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 19, 36, 0.16);
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.mmh-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 19, 36, 0.22);
}

/* Image */

.mmh-service-card__media {
  position: relative;
  padding-top: 60%; /* 5:3-ish ratio */
  overflow: hidden;
}

.mmh-service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 220ms ease;
}

.mmh-service-card:hover .mmh-service-card__media img {
  transform: scale(1.08);
}

/* Body */

.mmh-service-card__body {
  padding: 1.1rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mmh-service-card__title {
  font-size: 1rem;
  margin: 0;
  color: #151828;
}

.mmh-service-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(96, 106, 137, 0.98);
}

/* "View details" link */

.mmh-service-card__link {
  margin-top: 0.3rem;
  padding: 0;
  border: none;
  background: none;
  align-self: flex-start;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--mm-accent, #23AAE1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.mmh-service-card__link::after {
  content: "›";
  font-size: 0.95em;
  transition: transform 140ms ease;
}

.mmh-service-card__link:hover::after {
  transform: translateX(2px);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .mmh-services {
    padding: 3.8rem 0 4.1rem;
  }

  .mmh-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .mmh-services__head {
    text-align: left;
    margin-bottom: 2.1rem;
  }

  .mmh-services__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mmh-service-card__body {
    padding: 1rem 1rem 1.1rem;
  }
}

/* SERVICES HEADER */

.mmh-services__head {
  max-width: 720px;
  margin: 0 auto 2.8rem;   /* auto centers the block */
  text-align: center;      /* <— change from left to center */
}

/* SERVICE MODALS – ensure high contrast text on white card */

.mmh-services .mm-modal__dialog,
.mmh-services .mm-modal__content {
  background: #ffffff;
  color: #151828;
}

.mmh-services .mm-modal__content h2 {
  color: #151828;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.mmh-services .mm-modal__content p,
.mmh-services .mm-modal__content li {
  color: #495067;
  font-size: 0.95rem;
  line-height: 1.6;
}

.mmh-services .mm-modal__content .mm-list {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.mmh-services .mm-modal__content .mm-list li {
  margin-bottom: 0.25rem;
}

/* ============================
   WHY MECHMASTER SECTION
   ============================ */

.mmh-why {
  position: relative;
  padding: 4.5rem 0 4.8rem;
  color: #f5f7ff;
  overflow: hidden;
}

.mmh-why__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(35, 170, 225, 0.14), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(79, 112, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #050814 0%, #050814 40%, #080b1a 100%);
}

/* Header */

.mmh-why__head {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.mmh-why__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 11, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 0.85rem;
}

.mmh-why__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-accent, #23AAE1);
}

.mmh-why__badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 222, 200, 0.95);
}

.mmh-why__title {
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2rem);
  margin: 0;
  color: #ffffff;
}

/* Grid */

.mmh-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Cards */

.mmh-why-card {
  position: relative;
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: 1.4rem;
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.08),
              rgba(5, 7, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.mmh-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.78);
  border-color: rgba(255, 196, 150, 0.9);
}

/* Icon pill */

.mmh-why-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.3rem;
}

/* Text */

.mmh-why-card__title {
  font-size: 1rem;
  margin: 0;
  color: #ffffff;
}

.mmh-why-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(215, 224, 246, 0.92);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .mmh-why {
    padding: 4rem 0 4.3rem;
  }

  .mmh-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mmh-why__head {
    margin-bottom: 2rem;
  }

  .mmh-why__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .mmh-why-card {
    padding: 1.2rem 1.1rem 1.3rem;
  }
}


/* ============================
   WORKSHOP GALLERY STRIP
   ============================ */

.mmh-gallery {
  position: relative;
  padding: 3.8rem 0 4.2rem;
  background:
    radial-gradient(circle at 5% 0%, rgba(35, 170, 225, 0.18), transparent 55%),
    linear-gradient(180deg, #070915 0%, #050712 60%, #050814 100%);
  color: #f5f7ff;
  overflow: hidden;
}

.mmh-gallery__head {
  max-width: 720px;
  margin: 0 auto 1.9rem;
  text-align: center;
}

/* Badge */

.mmh-gallery__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(7, 11, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 0.8rem;
}

.mmh-gallery__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-accent, #23AAE1);
}

.mmh-gallery__badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 222, 200, 0.95);
}

.mmh-gallery__title {
  margin: 0;
  font-size: clamp(1.5rem, 1.3rem + 0.7vw, 1.9rem);
  color: #ffffff;
}

/* Rail + track (horizontal scroll) */

.mmh-gallery__rail {
  margin-top: 1.4rem;
  padding-inline: min(4vw, 2rem);
}

.mmh-gallery__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

/* Hide scrollbar (webkit) */
.mmh-gallery__track::-webkit-scrollbar {
  height: 6px;
}
.mmh-gallery__track::-webkit-scrollbar-track {
  background: transparent;
}
.mmh-gallery__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

/* Item */

.mmh-gallery__item {
  flex: 0 0 320px;
  max-width: 360px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #050814;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  scroll-snap-align: center;
  position: relative;
}

/* Media */

.mmh-gallery__media {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
}

.mmh-gallery__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 220ms ease;
}

.mmh-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 18, 0.1) 0%,
    rgba(5, 7, 18, 0.7) 100%
  );
}

.mmh-gallery__item:hover .mmh-gallery__media img {
  transform: scale(1.08);
}

/* Caption */

.mmh-gallery__caption {
  margin: 0;
  padding: 0.8rem 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(226, 233, 252, 0.96);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .mmh-gallery__item {
    flex: 0 0 280px;
  }
}

@media (max-width: 640px) {
  .mmh-gallery {
    padding: 3.4rem 0 3.8rem;
  }

  .mmh-gallery__rail {
    padding-inline: 1rem;
  }

  .mmh-gallery__item {
    flex: 0 0 82vw;
    max-width: none;
  }

  .mmh-gallery__caption {
    font-size: 0.88rem;
  }
}

/* Wrap so nav can sit over rail */
.mmh-gallery__shell {
  position: relative;
}

/* Rail + track (unchanged, just extended) */

.mmh-gallery__rail {
  margin-top: 1.4rem;
  padding-inline: min(4vw, 2rem);
}

/* HIDE NATIVE SCROLLBAR, keep scrolling enabled */
.mmh-gallery__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;

  /* hide scrollbar cross-browser */
  scrollbar-width: none;        /* Firefox */
}
.mmh-gallery__track::-webkit-scrollbar {
  display: none;                /* Chrome/Safari/Edge */
}

/* Items etc. keep what we had before… */

/* NAV BUTTONS */

.mmh-gallery__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;   /* so only buttons receive clicks */
}

.mmh-gallery__nav-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), rgba(5, 7, 20, 0.96));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.mmh-gallery__nav-btn--prev {
  left: min(1.3rem, 4vw);
}

.mmh-gallery__nav-btn--next {
  right: min(1.3rem, 4vw);
}

.mmh-gallery__nav-btn:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  background: radial-gradient(circle at 30% 20%, rgba(35, 170, 225, 0.6), rgba(5, 7, 20, 0.96));
}

/* Hide nav on very small screens if you only want swipe */
@media (max-width: 640px) {
  .mmh-gallery__nav-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* WRAPPER */

.mm-brands {
  padding: 2.8rem 0 3rem;
}

.mm-brands__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* HEADING (pill style like other sections) */

.mmh-brands__head {
  text-align: center;
}

.mmh-brands__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(8, 12, 40, 0.08);
  box-shadow: 0 10px 30px rgba(15, 24, 60, 0.08);
  margin-bottom: 0.4rem;
}

.mmh-brands__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-accent, #23AAE1);
}

.mmh-brands__badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #23AAE1;
}

.mmh-brands__sub {
  margin: 0;
  font-size: 0.85rem;
  color: #7e8497;
}

/* LOGO ROW */

.mm-brands__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}

/* Logos + animation – keep what we had, or use this slightly bigger height */

.mm-brands__logo {
  height: 38px;               /* 34px → 38px if you want them a bit stronger */
  width: auto;
  filter: grayscale(100%) opacity(0.75);
  transform-origin: center;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  animation: mm-brand-fadeIn 480ms ease-out forwards;
}

.mm-brands__logo:nth-child(1) { animation-delay: 80ms; }
.mm-brands__logo:nth-child(2) { animation-delay: 160ms; }
.mm-brands__logo:nth-child(3) { animation-delay: 240ms; }
.mm-brands__logo:nth-child(4) { animation-delay: 320ms; }
.mm-brands__logo:nth-child(5) { animation-delay: 400ms; }

.mm-brands__logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-3px) scale(1.02);
  transition: transform 160ms ease-out, filter 160ms ease-out;
}

@keyframes mm-brand-fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive tweaks */

@media (max-width: 640px) {
  .mm-brands {
    padding: 2.3rem 0 2.5rem;
  }

  .mm-brands__logos {
    gap: 1.5rem;
  }

  .mm-brands__logo {
    height: 32px;
  }
}


/* FAQ – layout */

.mmh-faq {
  padding: 3.5rem 0 4.2rem;
}

.mmh-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Intro column */

.mmh-faq__intro {
  position: sticky;
  top: 5.5rem;
  align-self: flex-start;
}

.mmh-faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(8, 12, 40, 0.08);
  box-shadow: 0 12px 30px rgba(15, 24, 60, 0.08);
  margin-bottom: 0.5rem;
}

.mmh-faq__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mm-accent, #23AAE1);
}

.mmh-faq__badge-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #23AAE1;
}

.mmh-faq__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 2.2vw, 2.1rem);
  line-height: 1.15;
  color: #111322;
}

.mmh-faq__lead {
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7285;
}

.mmh-faq__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.mmh-faq__btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, transform 120ms ease;
}

.mmh-faq__btn--primary {
  background: linear-gradient(135deg, #23AAE1, #5BC7F0);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(35, 170, 225, 0.45);
}

.mmh-faq__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(35, 170, 225, 0.6);
}

.mmh-faq__btn--ghost {
  background: #ffffff;
  color: #1f2432;
  border-color: rgba(15, 23, 42, 0.08);
}

.mmh-faq__btn--ghost:hover {
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.mmh-faq__small {
  margin: 0;
  font-size: 0.82rem;
  color: #9a9fb3;
}

/* FAQ items (accordion) */

.mmh-faq__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mmh-faq__item {
  border-radius: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.03);
  transition: border-color 140ms ease, box-shadow 140ms ease,
    background 140ms ease, transform 120ms ease;
}

.mmh-faq__item[open] {
  border-color: rgba(35, 170, 225, 0.26);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.mmh-faq__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 500;
  font-size: 0.98rem;
  color: #111322;
}

.mmh-faq__question::-webkit-details-marker {
  display: none;
}

.mmh-faq__question::after {
  content: '';
  flex: 0 0 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mmh-faq__question::after {
  /* plus icon via pseudo element lines */
  box-shadow:
    0 -4px 0 0 rgba(148, 163, 184, 0.9),
    -4px 0 0 0 rgba(148, 163, 184, 0.9),
    4px 0 0 0 rgba(148, 163, 184, 0.9),
    0 4px 0 0 rgba(148, 163, 184, 0.9);
}

.mmh-faq__item[open] .mmh-faq__question::after {
  border-color: rgba(35, 170, 225, 0.18);
  background: rgba(35, 170, 225, 0.12);
  box-shadow:
    0 0 0 0 rgba(148, 163, 184, 0),  /* remove plus vertical */
    -4px 0 0 0 rgba(35, 170, 225, 0.18),
    4px 0 0 0 rgba(35, 170, 225, 0.26),
    0 0 0 0 rgba(148, 163, 184, 0);   /* minus icon */
}

.mmh-faq__answer {
  margin-top: 0.45rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.55);
}

.mmh-faq__answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5565;
}

/* Responsive */

@media (max-width: 960px) {
  .mmh-faq__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }

  .mmh-faq__intro {
    position: static;
    text-align: center;
  }

  .mmh-faq__cta {
    justify-content: center;
  }

  .mmh-faq__small {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .mmh-faq {
    padding: 3rem 0 3.6rem;
  }

  .mmh-faq__item {
    padding: 0.85rem 0.9rem;
  }

  .mmh-faq__question {
    font-size: 0.95rem;
  }
}

.mm-booking-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mm-form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7285;
}

.mm-form-status--pending {
  color: #6b7285;
}

.mm-form-status--ok {
  color: #0f766e;
}

.mm-form-status--error {
  color: #b91c1c;
}

/* BOOKING SECTION – layout + header pill */

.mmh-booking {
  position: relative;
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at 10% -10%, #8AD8F7 0, #23AAE1 40%, #1C8FC4 100%);
  color: #160f1e;
}

.mmh-booking__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: stretch;
}

.mmh-booking__col--copy {
  max-width: 540px;
}

.mmh-booking__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.08);
  color: #ffe0c2;
  margin-bottom: 0.9rem;
}

.mmh-booking__title {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 0.9rem;
  color: #fff9f4;
}

.mmh-booking__intro {
  margin: 0 0 1.6rem;
  font-size: 0.98rem;
  max-width: 32rem;
  color: rgba(21, 10, 5, 0.92);
}

.mmh-booking__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mmh-booking__points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.96rem;
  color: rgba(17, 7, 3, 0.96);
}

.mmh-booking__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #23AAE1, #23AAE1);
  box-shadow: 0 0 0 3px rgba(255, 250, 245, 0.25);
}

/* FORM CARD */

.mmh-booking__col--form {
  display: flex;
  justify-content: flex-end;
}

.mmh-booking__card {
  width: 100%;
  max-width: 640px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 55%),
              linear-gradient(145deg, #221f2f, #0c0d16 45%, #181422 100%);
  border-radius: 28px;
  padding: 2rem 2.25rem 2.2rem;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  color: #f6f2ff;
}

/* tidy label + fields (override only inside booking section) */

.mmh-booking .mm-booking-form__row {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
  flex-wrap: nowrap;
}

.mmh-booking .mm-booking-form__row--full {
  flex-direction: column;
}

.mmh-booking .mm-field {
  flex: 1 1 0;
  min-width: 0;
}

.mmh-booking .mm-field__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.mmh-booking .mm-field__control {
  width: 100%;
  box-sizing: border-box;
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: #fff;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 60%),
              #070b16;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.mmh-booking select.mm-field__control {
  padding-right: 2.5rem;
  appearance: none;
  background-image: linear-gradient(135deg, #23AAE1, #23AAE1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* textarea: keep inside card, rounded but not full pill */

.mmh-booking textarea.mm-field__control {
  border-radius: 18px;
  min-height: 7.2rem;
  resize: vertical;
}

/* button + note */

.mmh-booking .mm-booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.8rem;
}

.mmh-booking .mm-booking-form__submit {
  padding-inline: 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.mmh-booking .mm-booking-form__note {
  flex: 1 1 0;
  min-width: 220px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(241, 237, 255, 0.75);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mmh-booking__inner {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .mmh-booking__col--copy {
    max-width: 100%;
    text-align: left;
  }

  .mmh-booking__col--form {
    justify-content: center;
  }

  .mmh-booking__card {
    max-width: 100%;
    padding: 1.6rem 1.6rem 1.9rem;
  }
}

@media (max-width: 640px) {
  .mmh-booking {
    padding: 3.5rem 0 4rem;
  }

  .mmh-booking__title {
    font-size: 1.75rem;
  }

  .mmh-booking .mm-booking-form__row {
    flex-direction: column;
  }

  .mmh-booking .mm-booking-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mmh-booking .mm-booking-form__submit {
    width: 100%;
    text-align: center;
  }
}


/* CONTACT / MAP SECTION */

.mmh-contact {
  background: radial-gradient(circle at 10% 0, #272437 0, #0b0c16 55%, #050610 100%);
  color: #f5f2ff;
  padding: 4.5rem 0 4.8rem;
}

.mmh-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 3.5rem;
  align-items: stretch;
}

/* LEFT COLUMN */

.mmh-contact__info {
  max-width: 520px;
}

.mmh-contact__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: #ffcaa3;
  margin-bottom: 1rem;
}

.mmh-contact__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.9rem, 2.3vw, 2.3rem);
  line-height: 1.15;
  font-weight: 700;
}

.mmh-contact__kicker {
  margin: 0 0 1.7rem;
  font-size: 0.98rem;
  color: rgba(236, 231, 255, 0.78);
  max-width: 30rem;
}

.mmh-contact__details {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.9rem;
}

.mmh-contact__block-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.2rem;
  color: rgba(255, 255, 255, 0.72);
}

.mmh-contact__block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(238, 234, 255, 0.9);
}

.mmh-contact__block a {
  color: #23AAE1;
  text-decoration: none;
}

.mmh-contact__block a:hover {
  text-decoration: underline;
}

.mmh-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* reuse hero/button visual language */
.mmh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mmh-btn--primary {
  background: linear-gradient(135deg, #23AAE1, #23AAE1);
  color: #1c0b06;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.mmh-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.mmh-btn--ghost {
  background: transparent;
  color: #23AAE1;
  box-shadow: 0 0 0 1px rgba(255, 184, 112, 0.45);
}

.mmh-btn--ghost:hover {
  background: rgba(255, 184, 112, 0.08);
}

/* RIGHT COLUMN – MAP CARD */

.mmh-contact__map {
  display: flex;
  justify-content: flex-end;
}

.mmh-contact__map-card {
  width: 100%;
  max-width: 640px;
  border-radius: 26px;
  padding: 1.7rem 1.7rem 1.4rem;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 55%),
    linear-gradient(145deg, #201f31, #101120 45%, #191424 100%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mmh-contact__map-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.mmh-contact__map-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.mmh-contact__map-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(235, 231, 255, 0.75);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .mmh-contact__inner {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .mmh-contact__info {
    max-width: 100%;
  }

  .mmh-contact__map {
    justify-content: center;
  }

  .mmh-contact__map-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .mmh-contact {
    padding: 3.4rem 0 3.9rem;
  }

  .mmh-contact__title {
    font-size: 1.8rem;
  }

  .mmh-contact__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mmh-contact__actions .mmh-btn {
    width: 100%;
    justify-content: center;
  }

  .mmh-contact__map-card {
    padding: 1.3rem 1.2rem 1.3rem;
    border-radius: 24px;
  }

  .mmh-contact__map-inner {
    border-radius: 18px;
  }
}

.mmh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;      
  max-width: 100%;             
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

@media (max-width: 640px) {
  .mmh-contact__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mmh-contact__actions .mmh-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
  }
}


.mm-legal {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mm-legal__header {
  margin-bottom: 2.5rem;
}

.mm-legal__meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.mm-legal__grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.mm-legal__nav {
  position: sticky;
  top: 7rem;
  align-self: flex-start;
}

.mm-legal__nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(12, 18, 32, 0.03);
}

.mm-legal__nav li + li {
  margin-top: 0.4rem;
}

.mm-legal__nav a {
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
  color: #555;
}

.mm-legal__nav a:hover {
  color: #23AAE1;
}

.mm-legal__content {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 60px rgba(10, 16, 32, 0.08);
}

.mm-legal__section + .mm-legal__section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.mm-legal__section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.mm-legal__section p,
.mm-legal__section li {
  font-size: 0.96rem;
  line-height: 1.6;
}

.mm-legal__section ul {
  padding-left: 1.2rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .mm-legal__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mm-legal__nav {
    position: static;
  }

  .mm-legal__nav ul {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
  }

  .mm-legal__nav li {
    white-space: nowrap;
  }

  .mm-legal__content {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }
}

/* ============================
   4x4 BUILDS SHOWCASE
   ============================ */

.mmh-builds {
  padding: 4.75rem 0;
  background: radial-gradient(circle at 18% 10%, rgba(35, 170, 225, 0.18), transparent 45%),
              radial-gradient(circle at 90% 0%, rgba(124, 92, 255, 0.14), transparent 42%),
              linear-gradient(180deg, #050611 0%, #07081a 55%, #050611 100%);
  color: var(--mm-text-main);
}

.mmh-builds__head {
  max-width: 60rem;
  margin-bottom: 2.2rem;
}

.mmh-builds__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 25, 0.55);
  backdrop-filter: blur(12px);
}

.mmh-builds__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--mm-accent);
  box-shadow: 0 0 0 4px rgba(35, 170, 225, 0.18);
}

.mmh-builds__badge-text {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.mmh-builds__title {
  margin: 0.95rem 0 0.75rem;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.mmh-builds__kicker {
  margin: 0;
  max-width: 52rem;
  color: rgba(225, 227, 244, 0.82);
  font-size: 1rem;
}

.mmh-builds__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.mmh-build {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  min-height: 320px;
}

.mmh-build__media {
  position: absolute;
  inset: 0;
}

.mmh-build__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 280ms ease;
}

.mmh-build:hover .mmh-build__media img {
  transform: scale(1.09);
}

.mmh-build__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 17, 0) 0%, rgba(5, 6, 17, 0.55) 42%, rgba(5, 6, 17, 0.92) 100%);
}

.mmh-build__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.25rem 1.35rem;
}

.mmh-build__title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.mmh-build__text {
  margin: 0;
  color: rgba(225, 227, 244, 0.82);
  font-size: 0.95rem;
}

.mmh-builds__cta {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 960px) {
  .mmh-builds__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mmh-builds {
    padding: 4.1rem 0;
  }
  .mmh-builds__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .mmh-build {
    min-height: 280px;
  }
}

/* =========================================================
   BRAND OVERRIDE — FORCE BLUE CTA GRADIENTS (MechMaster logo)
   Put this at the END of main.css
========================================================= */

:root{
  --mm-accent: #23AAE1;
  --mm-accent-strong: #1C8FC4;
  --mm-accent-soft-solid: #8AD8F7;
}

/* Primary CTA buttons (all variants used across pages) */
.mmh-btn--primary,
.mmh-cta--primary,
.mm-btn--primary,
.mm-btn-primary,
.btn-primary,
.mm-nav__cta,
a.mm-nav__cta,
button.mm-nav__cta{
  background: linear-gradient(135deg, var(--mm-accent), var(--mm-accent-strong)) !important;
  color: #061019 !important;
  border-color: transparent !important;
}

/* Hover */
.mmh-btn--primary:hover,
.mmh-cta--primary:hover,
.mm-btn--primary:hover,
.mm-btn-primary:hover,
.btn-primary:hover,
.mm-nav__cta:hover{
  background: linear-gradient(135deg, var(--mm-accent-strong), var(--mm-accent)) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 0 0 2px rgba(35,170,225,.18) !important;
  transform: translateY(-1px);
}

/* Focus ring */
.mmh-btn--primary:focus,
.mmh-cta--primary:focus,
.mm-btn--primary:focus,
.mm-btn-primary:focus,
.btn-primary:focus,
.mm-nav__cta:focus{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(35,170,225,.35) !important;
}

/* Any inline orange badges inside buttons (rare) */
.mmh-btn--primary * ,
.mmh-cta--primary * ,
.mm-nav__cta *{
  color: inherit !important;
}

/* *****REVIEW SECTION ***********/
.mmh-review-form__status{
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: rgba(220,228,250,0.8);
}
.mmh-review-form__status.is-pending{ color: rgba(220,228,250,0.75); }
.mmh-review-form__status.is-ok{ color: #43e1b5; }
.mmh-review-form__status.is-error{ color: #ff6b6b; }

/* ============================
   REVIEWS (WHITE THEME OVERRIDES)
   ============================ */

.mmh-reviews {
  padding: 4.5rem 0 5rem;
  background: #ffffff; /* <-- white background */
  color: #0f172a;
}

/* Header text */
.mmh-reviews__title {
  color: #0f172a;
}

.mmh-reviews__kicker {
  color: rgba(15, 23, 42, 0.68);
}

/* Badge */
.mmh-reviews__badge {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.mmh-reviews__badge-text {
  color: rgba(71, 85, 105, 0.95);
}

/* Carousel track */
.mmh-reviews__track {
  padding: 0.25rem 0.1rem 0.8rem;
}

/* Review card */
.mmh-review {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

/* Card texts */
.mmh-review__name {
  color: #0f172a;
}

.mmh-review__sub {
  color: rgba(71, 85, 105, 0.75);
}

.mmh-review__text {
  color: rgba(30, 41, 59, 0.85);
}

/* Stars (keep readable on white) */
.mmh-review__stars {
  color: rgba(37, 99, 235, 0.95); /* blue stars */
}

/* Avatar */
.mmh-review__avatar {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(13, 20, 46, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: rgba(15, 23, 42, 0.85);
}

/* Nav buttons (on white section) */
.mmh-reviews__nav-btn {
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.10), rgba(255, 255, 255, 0.98));
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.mmh-reviews__nav-btn:hover {
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.20), rgba(255, 255, 255, 0.98));
}

/* Buttons inside review head (keep your same classes, just make sure they look good on white) */
.mmh-reviews .mmh-btn--ghost {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.85);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mmh-reviews .mmh-btn--ghost:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

/* Modal should stay clean on white */
.mmh-modal__dialog {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.mmh-review-form__label {
  color: rgba(71, 85, 105, 0.9);
}

.mmh-review-form__input,
.mmh-review-form__textarea {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.mmh-review-form__hint {
  color: rgba(71, 85, 105, 0.75);
}

/* ============================
   REVIEWS SECTION (WHITE BG)
   ============================ */

.mmh-reviews{
  background:#ffffff;
  padding:4.5rem 0 4.8rem;
}

.mmh-reviews__head{
  max-width: 820px;
  margin: 0 auto 2.2rem;
  text-align:center;
}

.mmh-reviews__badge{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.25rem .85rem;
  border-radius:999px;
  background:#f6f8ff;
  border:1px solid rgba(12,18,40,.08);
  margin:0 0 .75rem;
}

.mmh-reviews__badge-dot{
  width:7px;height:7px;border-radius:999px;
  background: var(--mm-accent, #1ea7ff);
}

.mmh-reviews__badge-text{
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#5a647a;
}

.mmh-reviews__title{
  margin:0 0 .45rem;
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.2rem);
  color:#111322;
}

.mmh-reviews__kicker{
  margin:0 auto 1.2rem;
  max-width: 62ch;
  color:#6b7285;
  line-height:1.6;
  font-size:.98rem;
}

.mmh-reviews__actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.75rem;
}

/* Carousel shell */
.mmh-reviews__shell{
  position:relative;
  max-width: 1020px;
  margin: 0 auto;
}

.mmh-reviews__track{
  display:flex;
  gap: 1.1rem;
  overflow-x:auto;
  padding: .25rem .25rem 1rem;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.mmh-reviews__track::-webkit-scrollbar{display:none;}

.mmh-review{
  flex: 0 0 360px;
  scroll-snap-align:center;
  border-radius: 18px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 55px rgba(15,23,42,.08);
  padding: 1.05rem 1.05rem 1.1rem;
}

.mmh-review__top{
  display:grid;
  grid-template-columns: 42px 1fr auto;
  gap:.8rem;
  align-items:center;
  margin-bottom:.75rem;
}

.mmh-review__avatar{
  width:42px;height:42px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  color:#0a1224;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), rgba(30,167,255,.22));
  border:1px solid rgba(30,167,255,.25);
}

.mmh-review__name{
  margin:0;
  font-size:1rem;
  color:#111322;
}

.mmh-review__sub{
  margin:.15rem 0 0;
  font-size:.85rem;
  color:#6b7285;
}

.mmh-review__stars{
  font-size: 1rem;
  letter-spacing:.05em;
  color: var(--mm-accent, #1ea7ff);
  white-space:nowrap;
}

.mmh-review__text{
  margin:0;
  color:#394150;
  line-height:1.65;
  font-size:.95rem;
}

/* Nav buttons */
.mmh-reviews__nav{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.mmh-reviews__nav-btn{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 38px rgba(15,23,42,.12);
  cursor:pointer;
  font-size: 1.3rem;
  line-height: 1;
  display:flex;align-items:center;justify-content:center;
  color:#0a1224;
}

.mmh-reviews__nav-btn--prev{ left: -10px; }
.mmh-reviews__nav-btn--next{ right: -10px; }

@media (max-width: 640px){
  .mmh-review{ flex: 0 0 86vw; }
  .mmh-reviews__nav-btn--prev{ left: 6px; }
  .mmh-reviews__nav-btn--next{ right: 6px; }
}

/* ============================
   MODAL (fixed overlay)
   ============================ */

.mmh-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display:none;                 /* hidden by default */
}

.mmh-modal.is-open{ display:block; }

.mmh-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(5, 8, 20, 0.55);
  backdrop-filter: blur(6px);
}

.mmh-modal__dialog{
  position: relative;
  width: min(720px, calc(100% - 1.6rem));
  margin: 7vh auto 0;
  background:#ffffff;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0,0,0,.35);
  border:1px solid rgba(15,23,42,.12);
  overflow:hidden;
}

.mmh-modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding: 1rem 1.1rem;
  background:#f6f8ff;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.mmh-modal__title{
  margin:0;
  font-size:1rem;
  color:#0a1224;
}

.mmh-modal__close{
  width: 34px; height: 34px;
  border-radius: 10px;
  border:1px solid rgba(15,23,42,.12);
  background:#ffffff;
  cursor:pointer;
  font-size: 1.2rem;
  line-height:1;
}

.mmh-review-form{
  padding: 1.1rem 1.1rem 1.2rem;
}

.mmh-review-form__row{ margin-bottom: .9rem; }

.mmh-review-form__label{
  display:block;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6b7285;
  margin-bottom:.35rem;
}

.mmh-review-form__input,
.mmh-review-form__textarea{
  width:100%;
  box-sizing:border-box;
  border-radius: 12px;
  border:1px solid rgba(15,23,42,.12);
  padding: .7rem .85rem;
  font-size: .95rem;
  outline:none;
}

.mmh-review-form__textarea{
  min-height: 130px;
  resize: vertical;
}

.mmh-review-form__input:focus,
.mmh-review-form__textarea:focus{
  border-color: rgba(30,167,255,.55);
  box-shadow: 0 0 0 4px rgba(30,167,255,.14);
}

.mmh-review-form__hint{
  margin:.45rem 0 0;
  font-size:.85rem;
  color:#6b7285;
}

.mmh-review-form__actions{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin-top: 1rem;
}

.mmh-review-form__status{
  margin:.8rem 0 0;
  font-size:.9rem;
  color:#6b7285;
}
