.elementor-150 .elementor-element.elementor-element-f2ba3ce{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-c6d777d *//* ===== MIRAGEMATRIX CLEAN RESPONSIVE HEADER ===== */

.mm-clean-header {
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 9999;
}

.mm-clean-header__inner {
  width: min(94%, 1380px);
  margin: 0 auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
}

/* LOGO */
.mm-clean-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mm-clean-header__logo img {
  display: block;
  width: auto;
  max-width: 360px;
  height: auto;
}

/* NAV */
.mm-clean-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.mm-clean-header__link {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.mm-clean-header__link:hover {
  color: #ffffff;
  opacity: 0.92;
}

.mm-clean-header__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ff, #6ee7ff);
  box-shadow:
    0 0 8px rgba(47,128,255,0.75),
    0 0 14px rgba(110,231,255,0.35);
  transition: width 0.25s ease;
}

.mm-clean-header__link:hover::after {
  width: 38px;
}

/* RIGHT SIDE */
.mm-clean-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

/* CTA */
.mm-clean-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background:
    linear-gradient(rgba(9,12,22,0.96), rgba(9,12,22,0.96)) padding-box,
    linear-gradient(90deg, #2f80ff 0%, #5ec0ff 40%, #ff8a2a 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 14px rgba(47,128,255,0.22),
    0 0 18px rgba(255,138,42,0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mm-clean-header__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 0 20px rgba(47,128,255,0.30),
    0 0 24px rgba(255,138,42,0.22);
}

/* TOGGLE */
.mm-clean-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mm-clean-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mm-clean-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mm-clean-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mm-clean-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* LARGE TABLET */
@media (max-width: 1240px) {
  .mm-clean-header__inner {
    width: min(96%, 1200px);
    column-gap: 18px;
  }

  .mm-clean-header__logo img {
    max-width: 300px;
  }

  .mm-clean-header__nav {
    gap: 22px;
  }

  .mm-clean-header__link {
    font-size: 14px;
  }

  .mm-clean-header__cta {
    padding: 0 18px;
    font-size: 13px;
  }
}

/* TABLET + MOBILE */
@media (max-width: 1024px) {
  .mm-clean-header__inner {
    min-height: 82px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mm-clean-header__logo img {
    max-width: 280px;
  }

  .mm-clean-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 24px 20px 28px;
    background: rgba(0, 0, 0, 0.97);
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
  }

  .mm-clean-header__nav.is-open {
    display: flex;
  }

  .mm-clean-header__actions {
    gap: 10px;
  }

  .mm-clean-header__cta {
    display: none;
  }

  .mm-clean-header__toggle {
    display: inline-block;
  }
}

/* SMALL PHONES */
@media (max-width: 640px) {
  .mm-clean-header__inner {
    width: min(90%, 100%);
    min-height: 74px;
  }

  .mm-clean-header__logo img {
    max-width: 220px;
  }

  .mm-clean-header__nav {
    padding: 20px 16px 24px;
    gap: 16px;
  }

  .mm-clean-header__link {
    font-size: 15px;
  }

  .mm-clean-header__toggle {
    width: 42px;
    height: 42px;
  }
}
.mm-mobile-cta {
  background:
    linear-gradient(#0b0f1f, #0b0f1f) padding-box,
    linear-gradient(90deg, #2f80ff, #ff8a2a) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 0 16px rgba(47,128,255,0.35),
    0 0 20px rgba(255,138,42,0.25);
}.mm-glow-line {
  position: relative;
  height: 3px;
  width: 135%;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}

.mm-glow-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(47,128,255,0.9) 20%,
    rgba(255,138,42,0.9) 45%,
    rgba(110,231,255,0.95) 65%,
    transparent 100%
  );

  box-shadow:
    0 0 10px rgba(47,128,255,0.6),
    0 0 14px rgba(255,138,42,0.5),
    0 0 18px rgba(110,231,255,0.5);

  animation: mmGlowFlow 7s linear infinite;
}

@keyframes mmGlowFlow {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(140%);
  }
}.mm-audio-page {
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.mm-audio-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.mm-audio-section {
  padding: 90px 0;
  position: relative;
}

.mm-audio-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7fe7ff;
  margin-bottom: 14px;
  font-weight: 700;
}

.mm-section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.mm-section-heading h2,
.mm-audio-intro h2,
.mm-audio-bundle__content h2,
.mm-audio-cta__box h2 {
  font-size: 42px;
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 700;
  color: #ffffff;
}

.mm-audio-page p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
}

.mm-audio-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(0, 255, 200, 0.12), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(0, 110, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #030303 0%, #0a0a0a 45%, #050505 100%);
}

.mm-audio-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.mm-audio-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 120px 24px;
  text-align: center;
}

.mm-audio-hero__content h1 {
  font-size: 74px;
  line-height: 0.98;
  margin: 0 0 22px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.mm-audio-subheadline {
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

.mm-audio-hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.mm-btn--primary {
  background: linear-gradient(90deg, #00d0ff 0%, #00ffa3 100%);
  color: #041014;
  box-shadow: 0 10px 28px rgba(0, 208, 255, 0.18);
}

.mm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 208, 255, 0.24);
}

.mm-btn--secondary {
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  background: rgba(255,255,255,0.04);
}

.mm-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.mm-audio-intro {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mm-audio-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.mm-audio-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.mm-audio-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #00e8ff;
  border: 1px solid rgba(0,232,255,0.35);
  background: rgba(0,232,255,0.08);
}

.mm-audio-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
  color: #ffffff;
}

.mm-audio-bundle {
  background:
    linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(6,6,6,1) 100%);
}

.mm-audio-bundle__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: stretch;
}

.mm-audio-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
}

.mm-audio-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.mm-audio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00d0ff 0%, #00ffa3 100%);
}

.mm-audio-panel {
  height: 100%;
  border-radius: 24px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(0,208,255,0.12) 0%, rgba(255,255,255,0.03) 50%, rgba(0,255,163,0.09) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 45px rgba(0,0,0,0.28);
}

.mm-audio-panel__label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7fe7ff;
}

.mm-audio-panel h3 {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #ffffff;
}

.mm-audio-brand-box {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.mm-audio-brand-note {
  margin-top: 14px;
  color: #a9f5ff;
}

.mm-audio-cta {
  padding-top: 30px;
}

.mm-audio-cta__box {
  text-align: center;
  padding: 50px 30px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,208,255,0.09) 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.mm-audio-cta__box p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .mm-audio-hero__content h1 {
    font-size: 58px;
  }

  .mm-section-heading h2,
  .mm-audio-intro h2,
  .mm-audio-bundle__content h2,
  .mm-audio-cta__box h2 {
    font-size: 36px;
  }

  .mm-audio-intro__grid,
  .mm-audio-bundle__grid,
  .mm-audio-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mm-audio-section {
    padding: 70px 0;
  }

  .mm-audio-hero {
    min-height: auto;
  }

  .mm-audio-hero__content {
    padding: 90px 20px 80px;
  }

  .mm-audio-hero__content h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .mm-audio-subheadline {
    font-size: 17px;
  }

  .mm-section-heading h2,
  .mm-audio-intro h2,
  .mm-audio-bundle__content h2,
  .mm-audio-cta__box h2 {
    font-size: 29px;
  }

  .mm-audio-page p {
    font-size: 16px;
  }

  .mm-btn {
    width: 100%;
    max-width: 100%;
  }
}

Best Elementor sectio/* End custom CSS */