/*
Theme Name: MLS Magic
Author: MLS Magic
Version: 1.1
*/

/* =========================
MLS MAGIC BRAND TOKENS
========================= */
:root {
  --mm-black: #000000;
  --mm-white: #FFFFFF;

  --mm-deep-azul: #11111C;

  --mm-gold-dark: #e9b617;
  --mm-gold-mid: #f6ea39;
  --mm-gold-light: #FFC857;
  --mm-gold-soft: #FFD77A;

  --mm-evergreen: #35a135;
  --mm-silver: #b8b8b8;
  --mm-link-blue: #0F4761;

  --mm-text-main: #FFFFFF;
  --mm-text-soft: #d7d7df;
  --mm-text-muted: #8e8e9d;

  --mm-panel: #171724;
  --mm-panel-2: #1c1c2b;
  --mm-border-soft: rgba(255,255,255,0.10);
  --mm-border-gold: rgba(255,200,87,0.40);

  --mm-radius-sm: 8px;
  --mm-radius-md: 12px;
  --mm-radius-lg: 18px;

  --mm-shadow-soft: 0 10px 30px rgba(0,0,0,0.30);
  --mm-shadow-hover: 0 16px 38px rgba(0,0,0,0.38);

  --mm-max-width: 1100px;
  --mm-transition-fast: 0.22s ease;
  --mm-transition-med: 0.32s ease;
}

/* =========================
BASE RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--mm-deep-azul);
  color: var(--mm-text-main);
  font-family: "Open Sans", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =========================
GLOBAL LAYOUT
========================= */
.container {
  width: 100%;
  max-width: var(--mm-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  padding: 24px 0 10px;
}

.site-brand {
  display: inline-block;
  text-decoration: none;
  color: var(--mm-white);
}

.site-brand:hover {
  opacity: 0.94;
}

.site-brand-title {
  margin: 0;
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  color: var(--mm-gold-light);
  letter-spacing: 0.02em;
}

.site-brand-subtitle {
  margin: 10px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.98rem;
  color: var(--mm-silver);
  letter-spacing: 0.02em;
}

.site-main {
  padding: 10px 0 60px;
}

.site-footer {
  padding: 40px 0 30px;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--mm-text-muted);
  text-align: center;
}

/* =========================
TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
}

h1 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--mm-white);
}

h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
  color: var(--mm-white);
}

h3 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.18;
  color: var(--mm-white);
}

p {
  margin: 0 0 18px;
  color: var(--mm-text-soft);
}

a {
  color: var(--mm-gold-light);
  text-decoration: none;
  transition: color var(--mm-transition-fast), opacity var(--mm-transition-fast);
}

a:hover {
  color: var(--mm-gold-soft);
}

strong {
  color: var(--mm-white);
}

small,
.text-muted,
.version-note {
  color: var(--mm-text-muted);
}

/* =========================
SECTION HELPERS
========================= */
.section {
  padding: 42px 0;
}

.section-tight {
  padding: 26px 0;
}

.section-title {
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-gold-dark);
  text-align: center;
}

.section-subtext {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--mm-text-soft);
}

.divider-gold {
  width: 120px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    rgba(255,200,87,0),
    var(--mm-gold-light),
    rgba(255,200,87,0)
  );
}

/* =========================
BUTTON SYSTEM
========================= */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--mm-radius-md);
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  transition:
    transform var(--mm-transition-fast),
    box-shadow var(--mm-transition-fast),
    background-color var(--mm-transition-fast),
    border-color var(--mm-transition-fast),
    color var(--mm-transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--mm-gold-light);
  color: var(--mm-black);
  box-shadow: var(--mm-shadow-soft);
}

.btn-primary:hover {
  color: var(--mm-black);
  background: var(--mm-gold-soft);
}

.btn-outline {
  background: transparent;
  color: var(--mm-gold-light);
  border: 1px solid var(--mm-gold-light);
}

.btn-outline:hover {
  background: rgba(255,200,87,0.08);
  color: var(--mm-gold-soft);
  border-color: var(--mm-gold-soft);
}

/* =========================
CARD / PANEL SYSTEM
========================= */
.card,
.panel {
  background: var(--mm-panel);
  border: 1px solid var(--mm-border-soft);
  border-radius: var(--mm-radius-lg);
  padding: 22px;
  box-shadow: var(--mm-shadow-soft);
  transition:
    transform var(--mm-transition-med),
    box-shadow var(--mm-transition-med),
    border-color var(--mm-transition-fast);
}

.card:hover,
.panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow-hover);
  border-color: var(--mm-border-gold);
}

/* =========================
UTILITY COLORS / TIERS
========================= */
.tier-luminary {
  color: var(--mm-gold-light);
}

.tier-artisan {
  color: var(--mm-evergreen);
}

.tier-strategist {
  color: var(--mm-silver);
}

.link-special {
  color: var(--mm-link-blue);
}

/* =========================
WORDPRESS CONTENT SANITY
========================= */
main .wp-block-group,
main .wp-block-columns,
main .wp-block-cover,
main .wp-block-media-text {
  margin-bottom: 24px;
}

main .wp-block-heading {
  font-family: "Playfair Display SC", serif;
  color: var(--mm-white);
}

main .wp-block-paragraph,
main .wp-block-list,
main .wp-block-quote {
  color: var(--mm-text-soft);
}

main .wp-block-button__link {
  background: var(--mm-gold-light);
  color: var(--mm-black);
  border-radius: var(--mm-radius-md);
  font-weight: 700;
}

main .wp-block-button__link:hover {
  background: var(--mm-gold-soft);
  color: var(--mm-black);
}

/* =========================
REVEAL SYSTEM
========================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 700px) {
  .site-header {
    padding-top: 18px;
  }

  .site-main {
    padding-bottom: 48px;
  }

  .card,
  .panel {
    padding: 18px;
  }
}

/* =====================================================
MLS MAGIC HOMEPAGE SYSTEM V1
APPEND BELOW EXISTING THEME CSS
===================================================== */

:root {
  --mm-page-max: 1100px;
  --mm-content-max: 900px;
  --mm-gold: #FFC857;
  --mm-gold-soft: #FFD77A;
  --mm-gold-faint: rgba(255, 200, 87, 0.12);

  --mm-text: #DDDDDD;
  --mm-text-soft: #CCCCCC;
  --mm-text-dim: #999999;
  --mm-white: #FFFFFF;

  --mm-bg-page: #11111C;
  --mm-bg-panel: #12121a;
  --mm-bg-panel-2: #16161f;
  --mm-bg-card: #1a1a1a;

  --mm-border: #333333;
  --mm-border-soft: #2F2F37;

  --mm-radius-sm: 8px;
  --mm-radius-md: 10px;
  --mm-radius-lg: 12px;
  --mm-radius-xl: 14px;

  --mm-shadow-soft: 0 10px 26px rgba(0,0,0,0.18);
  --mm-shadow-hover: 0 18px 36px rgba(0,0,0,0.28);
  --mm-shadow-glow: 0 0 0 1px rgba(255,200,87,0.16), 0 0 24px rgba(255,200,87,0.08);

  --mm-transition-fast: 0.2s ease;
  --mm-transition-med: 0.35s ease;
}

body {
  background: var(--mm-bg-page);
}

#top,
#diagnostic,
#listing-diagnostic,
#interactive-diagnostic,
#proof,
#services,
#brokers,
#broker-faq,
#faq {
  scroll-margin-top: 90px;
}

.mm-page {
  width: 100%;
}

.mm-wrap {
  width: 100%;
  max-width: var(--mm-page-max);
  margin: 0 auto;
  padding: 0 20px;
}

.mm-wrap-narrow {
  width: 100%;
  max-width: var(--mm-content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.mm-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  background: rgba(17,17,28,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mm-nav {
  max-width: var(--mm-page-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
}

.mm-nav a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--mm-text);
  transition: all var(--mm-transition-fast);
}

.mm-nav a:hover {
  border-color: rgba(255,200,87,0.55);
  color: var(--mm-white);
  background: rgba(255,200,87,0.08);
}

.mm-logo-block {
  max-width: 900px;
  margin: 10px auto 30px;
}

.mm-logo-block img {
  display: block;
  width: 100%;
  height: auto;
}

.mm-hero {
  text-align: center;
  color: var(--mm-text);
  font-family: "Open Sans", sans-serif;
  max-width: var(--mm-page-max);
  margin: 0 auto 40px;
  padding: 0 20px;
}

.mm-hero h1 {
  font-family: "Playfair Display SC", serif;
  font-size: 2.5rem;
  color: var(--mm-white);
  margin-bottom: 10px;
}

.mm-hero h2 {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--mm-text-soft);
  margin: 0 auto 22px;
  max-width: 760px;
  line-height: 1.5;
}

.mm-hero p {
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0 auto 26px;
  max-width: 980px;
}

.mm-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.mm-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: var(--mm-radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--mm-transition-fast);
}

.mm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.mm-btn-gold {
  background: var(--mm-gold);
  color: var(--mm-black);
}

.mm-btn-gold:hover {
  background: var(--mm-gold-soft);
  color: var(--mm-black);
}

.mm-btn-outline {
  border: 2px solid var(--mm-gold);
  color: var(--mm-gold);
  background: transparent;
}

.mm-btn-outline:hover {
  background: var(--mm-gold-soft);
  color: var(--mm-black);
  border-color: var(--mm-gold-soft);
}

.mm-hero-note {
  max-width: 850px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--mm-text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.mm-section {
  margin: 70px auto;
  font-family: "Open Sans", sans-serif;
  color: var(--mm-text);
}

.mm-kicker {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 8px;
  text-align: center;
}

.mm-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-family: "Playfair Display SC", serif;
  color: var(--mm-white);
}

.mm-heading::after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(
    90deg,
    rgba(255,200,87,0),
    var(--mm-gold),
    rgba(255,200,87,0)
  );
}

.mm-center {
  text-align: center;
}

.mm-subtext {
  text-align: center;
  color: var(--mm-text-soft);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.mm-panel,
.mm-card,
.mm-step,
.mm-outcome,
.mm-faq-item {
  background: var(--mm-bg-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg);
  box-shadow: var(--mm-shadow-soft);
  transition:
    transform var(--mm-transition-med),
    box-shadow var(--mm-transition-med),
    border-color var(--mm-transition-fast);
}

.mm-card:hover,
.mm-outcome:hover {
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow-hover), var(--mm-shadow-glow);
  border-color: rgba(255, 200, 87, 0.55);
}

.mm-panel {
  padding: 22px;
  margin: 22px 0;
}

.mm-test {
  background: #111;
  border-left: 4px solid var(--mm-gold);
  padding: 18px;
  border-radius: 10px;
  margin: 22px 0;
}

.mm-panel strong,
.mm-test strong {
  color: var(--mm-gold);
}

.mm-selector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.mm-selector-btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  background: var(--mm-bg-panel-2);
  border: 1px solid var(--mm-border);
  color: var(--mm-text);
  transition: all var(--mm-transition-fast);
}

.mm-selector-btn:hover {
  border-color: rgba(255,200,87,0.6);
  color: var(--mm-white);
  background: rgba(255,200,87,0.08);
}

.mm-step {
  padding: 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--mm-gold);
}

.mm-step h3 {
  margin-top: 0;
  color: var(--mm-gold);
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
}

.mm-example-box {
  background: #1e1e1e;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: monospace;
  color: var(--mm-text-soft);
  margin-top: 10px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}

.mm-result-box {
  background: #111;
  border-left: 4px solid var(--mm-gold);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.mm-result-box ul {
  margin: 12px 0 0 18px;
}

.mm-tool-shell,
.mm-broker-shell,
.mm-faq-shell {
  background: #12121a;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.mm-type-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mm-type-chip {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid #333;
  background: #16161f;
  color: #DDDDDD;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mm-type-chip:hover,
.mm-type-chip.active {
  border-color: rgba(255,200,87,0.55);
  background: rgba(255,200,87,0.10);
  color: #FFFFFF;
}

.mm-progress-wrap {
  margin: 0 auto 18px;
  max-width: 720px;
}

.mm-progress-bar {
  width: 100%;
  height: 10px;
  background: #1b1b25;
  border: 1px solid #333;
  border-radius: 999px;
  overflow: hidden;
}

.mm-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #FFC857, #FFD77A);
  transition: width 0.25s ease;
}

.mm-progress-label {
  margin-top: 8px;
  font-size: 0.92rem;
  color: #AAAAAA;
  text-align: center;
}

.mm-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mm-q-block {
  background: #16161f;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 18px;
}

.mm-q-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.5;
}

.mm-q-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mm-yn-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #DDDDDD;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mm-yn-btn:hover {
  border-color: rgba(255,200,87,0.55);
  background: rgba(255,200,87,0.08);
  color: #FFFFFF;
}

.mm-yn-btn.active-yes {
  background: rgba(110, 214, 154, 0.12);
  border-color: rgba(110, 214, 154, 0.55);
  color: #B8F0CB;
}

.mm-yn-btn.active-no {
  background: rgba(255, 158, 158, 0.12);
  border-color: rgba(255, 158, 158, 0.55);
  color: #FFC2C2;
}

.mm-result-panel {
  margin-top: 22px;
  background: #111;
  border: 1px solid #333;
  border-left: 4px solid #FFC857;
  border-radius: 12px;
  padding: 20px;
}

.mm-result-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.mm-result-copy,
.mm-result-meta {
  color: #DDDDDD;
  line-height: 1.6;
}

.mm-result-meta {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #AAAAAA;
}

.mm-proof {
  max-width: 1160px;
}

.mm-proof-example {
  margin-bottom: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid #2F2F37;
}

.mm-proof-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.mm-proof-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.mm-proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mm-proof-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255,200,87,0.10);
  border: 1px solid rgba(255,200,87,0.25);
  color: #FFC857;
}

.mm-proof-column {
  background: #16161f;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 18px;
}

.mm-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.mm-proof-label {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mm-proof-label.original {
  color: #FF9E9E;
}

.mm-proof-label.rewrite {
  color: #87E6A7;
}

.mm-proof-box {
  background: #1e1e1e;
  padding: 15px 18px;
  border-radius: 10px;
  white-space: pre-wrap;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

.mm-proof-note,
.mm-proof-why {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 12px;
}

.mm-proof-note {
  color: #AAAAAA;
}

.mm-proof-why {
  color: #DDDDDD;
  padding-top: 14px;
  border-top: 1px solid #2F2F37;
}

.mm-pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.mm-service-card {
  width: 320px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 22px;
}

.mm-service-card h3 {
  margin: 0 0 6px;
  color: #FFC857;
  font-size: 1.15rem;
  font-family: "Open Sans", sans-serif;
}

.mm-service-price {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 10px;
}

.mm-service-card ul {
  margin: 10px 0 0 18px;
  color: #DDDDDD;
  line-height: 1.6;
}

.mm-service-card a {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid #FFC857;
  color: #FFC857;
  text-decoration: none;
  font-weight: 700;
}

.mm-service-card a:hover {
  background: #FFD77A;
  color: #000;
  border-color: #FFD77A;
}

.mm-broker-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin: 0 0 26px;
}

.mm-outcome {
  background: #16161f;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.mm-outcome strong {
  display: block;
  color: #FFC857;
  margin-bottom: 8px;
  font-size: 1rem;
}

.mm-workshop-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-top: 8px;
}

.mm-workshop-main,
.mm-workshop-side {
  background: #16161f;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 22px;
}

.mm-workshop-main h3,
.mm-workshop-side h3 {
  margin: 0 0 12px;
  color: #FFC857;
  font-size: 1.18rem;
  font-family: "Open Sans", sans-serif;
}

.mm-workshop-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #FFC857;
  margin-bottom: 8px;
}

.mm-workshop-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
  color: #DDDDDD;
}

.mm-workshop-promise {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #2F2F37;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.6;
}

.mm-broker-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.mm-broker-mini {
  flex: 1 1 220px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 16px;
}

.mm-broker-mini strong {
  display: block;
  color: #FFC857;
  margin-bottom: 6px;
}

.mm-broker-cta {
  text-align: center;
  margin-top: 24px;
}

.mm-broker-cta-note {
  color: #999;
  margin-top: 10px;
  font-size: 0.95rem;
  text-align: center;
}

.mm-faq-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.mm-faq-item {
  border-bottom: 1px solid #333;
  padding: 15px 0;
  background: transparent;
  box-shadow: none;
}

.mm-faq-item input[type="checkbox"] {
  display: none;
}

.mm-faq-question {
  font-weight: 700;
  cursor: pointer;
  color: #FFC857;
  display: inline-block;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.mm-faq-question:hover {
  text-decoration: underline;
  color: #FFD77A;
}

.mm-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #DDDDDD;
}

.mm-faq-item input[type="checkbox"]:checked ~ .mm-faq-answer {
  max-height: 300px;
  padding-top: 10px;
  opacity: 1;
}

.mm-footer-cta {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #11111C;
  color: #CCCCCC;
  text-align: center;
  border-top: 1px solid #333333;
}

.mm-footer-buttons {
  margin-bottom: 25px;
}

.mm-footer-buttons a {
  background-color: #FFC857;
  color: #000000;
  padding: 12px 20px;
  margin: 5px;
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  max-width: 100%;
  box-sizing: border-box;
}

.mm-footer-buttons a:hover {
  background-color: #FFD77A;
  color: #000000;
}

.mm-mobile-cta {
  display: none;
}

@media (min-width: 860px) {
  .mm-proof-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .mm-tool-grid,
  .mm-broker-outcomes,
  .mm-workshop-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .mm-hero h1 {
    font-size: 2rem;
  }

  .mm-mobile-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
  }

  .mm-mobile-cta a {
    display: block;
    text-align: center;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    background: #FFC857;
    color: #000;
    box-shadow: 0 12px 28px rgba(0,0,0,0.30);
  }
}