html, body { overflow-x: hidden; max-width: 100vw; }

.mz-wrap {
  --accent: #ff3d7f;
  --accent2: #7c3aed;
  --gold: #ffb800;
  --ink: #0a0a18;
  --ink2: #14142b;
  --soft: #f4f4ff;
  position: relative;
  padding: 0;
  color: var(--fg);
}

.mz-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp4, 2rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  margin: var(--sp3, 1.5rem) 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #0a0a18 0%, #2d1b69 50%, #ff3d7f 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(124, 58, 237, .5);
}

.mz-hero::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 0, .4), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.mz-hero-content { position: relative; z-index: 2; }

.mz-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 184, 0, .12);
  border: 1px solid rgba(255, 184, 0, .3);
  border-radius: 100px;
}

.mz-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: mz-pulse 2s infinite;
}

@keyframes mz-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.mz-hero h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.mz-hero h1 span {
  background: linear-gradient(90deg, #ffb800, #ff3d7f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mz-hero p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
}

.mz-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.mz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  color: #0a0a18;
  background: linear-gradient(135deg, #ffb800, #ff3d7f);
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 15px 40px -10px rgba(255, 61, 127, .6);
  transition: transform .3s, box-shadow .3s;
}

.mz-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(255, 61, 127, .8);
}

.mz-trust {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.mz-stars { color: var(--gold); letter-spacing: 2px; }

.mz-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mz-phone-frame {
  position: relative;
  width: 240px;
  height: 480px;
  padding: 12px;
  background: linear-gradient(145deg, #1a1a2e, #0a0a18);
  border-radius: 40px;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, .6),
    inset 0 0 0 2px rgba(255, 255, 255, .08);
  transform: rotate(-6deg);
  transition: transform .5s;
}

.mz-phone-frame:hover { transform: rotate(0deg) scale(1.03); }

.mz-screen {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #2d1b69, #ff3d7f);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  overflow: hidden;
}

.mz-screen-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.mz-tile {
  flex: 1;
  padding: .6rem;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  font-size: .75rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .15);
}

.mz-tile strong { color: var(--gold); }

.mz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: var(--sp4, 2rem) 0;
}

.mz-stat {
  padding: 1.5rem 1.2rem;
  text-align: center;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 20px;
  transition: transform .3s, box-shadow .3s;
}

.mz-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, .25);
}

.mz-stat-num {
  display: block;
  margin-bottom: .3rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, #7c3aed, #ff3d7f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mz-stat-label {
  font-size: .85rem;
  color: var(--muted, #666);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mz-section { margin: clamp(3rem, 6vw, 5rem) 0; }

.mz-section h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.15;
}

.mz-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin-top: .8rem;
  background: linear-gradient(90deg, #ff3d7f, #ffb800);
  border-radius: 4px;
}

.mz-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.mz-feat {
  position: relative;
  padding: 1.8rem;
  background: linear-gradient(145deg, #14142b, #0a0a18);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s;
  border: 1px solid rgba(255, 255, 255, .06);
}

.mz-feat:hover { transform: translateY(-6px); }

.mz-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #ff3d7f);
}

.mz-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffb800;
  background: rgba(255, 184, 0, .12);
  border-radius: 14px;
}

.mz-feat h3 {
  margin: 0 0 .5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.mz-feat p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
}

.mz-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mz-platform {
  position: relative;
  padding: 2rem;
  background: #fff;
  color: #0a0a18;
  border-radius: 24px;
  box-shadow: 0 20px 50px -25px rgba(0, 0, 0, .2);
  transition: transform .3s;
  border: 2px solid transparent;
}

.mz-platform:hover {
  transform: translateY(-4px);
  border-color: #ff3d7f;
}

.mz-platform-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.mz-os-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 14px;
}

.mz-os-android { background: linear-gradient(135deg, #7c3aed, #2d1b69); }
.mz-os-ios { background: linear-gradient(135deg, #0a0a18, #14142b); }

.mz-platform h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.mz-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.mz-steps li {
  position: relative;
  padding: .8rem 0 .8rem 3rem;
  counter-increment: step;
  font-size: .95rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(0, 0, 0, .08);
}

.mz-steps li:last-child { border-bottom: none; }

.mz-steps li::before {
  content: counter(step);
  position: absolute;
  top: .8rem;
  left: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  background: linear-gradient(135deg, #ff3d7f, #ffb800);
  border-radius: 10px;
}

.mz-table-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(145deg, #0a0a18, #2d1b69);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 60px -25px rgba(124, 58, 237, .4);
}

.mz-table-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .95rem;
}

.mz-table-card th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid rgba(255, 184, 0, .3);
}

.mz-table-card td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mz-table-card tr:last-child td { border-bottom: none; }

.mz-table-card td:first-child { font-weight: 700; color: #fff; }
.mz-table-card td:last-child { color: rgba(255, 255, 255, .75); }

.mz-payment {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(135deg, #ffb800 0%, #ff3d7f 100%);
  color: #0a0a18;
  border-radius: 28px;
  box-shadow: 0 25px 60px -20px rgba(255, 61, 127, .5);
}

.mz-payment h2 { color: #0a0a18; }
.mz-payment h2::after { background: #0a0a18; }
.mz-payment p { font-size: 1.05rem; line-height: 1.6; }

.mz-pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem;
}

.mz-chip {
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  background: rgba(10, 10, 24, .12);
  border-radius: 100px;
  border: 1px solid rgba(10, 10, 24, .2);
}

.mz-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.mz-spec {
  padding: 1.5rem;
  background: var(--card, #fff);
  border-radius: 18px;
  border-left: 4px solid #ff3d7f;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .15);
}

.mz-spec strong {
  display: block;
  margin-bottom: .3rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7c3aed;
}

.mz-spec span { font-size: 1rem; font-weight: 600; }

.mz-faq { display: flex; flex-direction: column; gap: .8rem; }

.mz-faq details {
  padding: 1.2rem 1.5rem;
  background: var(--card, #fff);
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 16px;
  transition: box-shadow .3s, border-color .3s;
}

.mz-faq details[open] {
  border-color: #ff3d7f;
  box-shadow: 0 15px 40px -20px rgba(255, 61, 127, .3);
}

.mz-faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
}

.mz-faq summary::-webkit-details-marker { display: none; }

.mz-faq summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #ff3d7f);
  border-radius: 50%;
  transition: transform .3s;
}

.mz-faq details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.mz-faq details p {
  margin: 1rem 0 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--muted, #666);
}

.mz-final {
  margin: clamp(3rem, 6vw, 5rem) 0 var(--sp3, 1.5rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 184, 0, .2), transparent 50%),
    linear-gradient(135deg, #0a0a18, #2d1b69);
  color: #fff;
  border-radius: 28px;
}

.mz-final h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
}

.mz-final h2::after { margin: 1rem auto 0; }

.mz-final p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
}

@media (max-width: 768px) {
  .mz-hero { grid-template-columns: 1fr; padding: 2rem 1.2rem; }
  .mz-phone { order: -1; }
  .mz-phone-frame { width: 200px; height: 400px; transform: rotate(0); }
  .mz-stats { grid-template-columns: 1fr; }
  .mz-platforms { grid-template-columns: 1fr; }
  .mz-payment { grid-template-columns: 1fr; }
}