.page-mlmhf {
  display: block;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;

  & *, & *::before, & *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  & img { max-width: 100%; display: block; }
  & a { text-decoration: none; }

  /* ── Shared tokens ─────────────────────────────── */
  --blue: #06357a;
  --blue-light: rgba(6, 53, 122, 0.08);
  --blue-mid: rgba(6, 53, 122, 0.16);
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #ffffff;
  --bg: #f8fafc;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(6,53,122,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.1), 0 8px 24px rgba(6,53,122,0.1);

  /* ── Material Symbols ──────────────────────────── */
  .msi {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  }
  .msi.filled { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

  /* ── Container ─────────────────────────────────── */
  .mlmhf-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
  }

  /* ── Buttons ───────────────────────────────────── */
  .mlmhf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 1.5rem;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    border: none;
    text-decoration: none;
  }
  .mlmhf-btn-primary {
    background: var(--blue);
    color: #fff;
    &:hover { background: #0a4db3; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(6,53,122,0.3); }
  }
  .mlmhf-btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    &:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
  }
  .mlmhf-btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    &:hover { background: rgba(255,255,255,0.22); }
  }

  /* ── Kicker chip ───────────────────────────────── */
  .mlmhf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(6,53,122,0.08);
    .msi { font-size: 16px; }
  }
  .mlmhf-kicker-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
  }

  /* ── Section headings ──────────────────────────── */
  .mlmhf-section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    h2 {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.6rem;
      span { color: var(--blue); }
    }
    p {
      color: var(--muted);
      font-size: 0.97rem;
      max-width: 38rem;
      margin: 0 auto;
    }
  }

  /* ── Breadcrumb ────────────────────────────────── */
  .mlmhf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    a { color: var(--blue); &:hover { text-decoration: underline; } }
    .msi { font-size: 14px; }
  }

  /* ═══════════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════════ */
  .mlmhf-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(24rem, calc(100svh - 12rem), 34rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0 2.5rem;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
  }

  .mlmhf-hero-noise {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(6,53,122,0.13) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.75;
    pointer-events: none;
  }

  .mlmhf-hero-glow {
    position: absolute; border-radius: 999px;
    filter: blur(70px); opacity: 0.4; pointer-events: none;
  }
  .mlmhf-hero-glow-a { width: 18rem; height: 18rem; top: 1rem; right: 6%; background: rgba(6,53,122,0.15); }
  .mlmhf-hero-glow-b { width: 12rem; height: 12rem; bottom: 0; left: 6%; background: rgba(6,53,122,0.09); }

  .mlmhf-hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .mlmhf-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 1rem;
    span { color: var(--blue); }
  }

  .mlmhf-hero-sub {
    font-size: 0.97rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 1.75rem;
    line-height: 1.65;
  }

  .mlmhf-hero-ctas {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
  }

  .mlmhf-hero-trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .mlmhf-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    .msi { font-size: 16px; color: var(--blue); }
  }

  /* Hero panel (right side) */
  .mlmhf-hero-panel {
    background: #fff;
    border-radius: 1.1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    position: relative;
  }
  .mlmhf-hero-panel-bar {
    display: flex; gap: 6px; margin-bottom: 1rem;
    span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
    span:first-child { background: #f87171; }
    span:nth-child(2) { background: #fbbf24; }
    span:nth-child(3) { background: #34d399; }
  }
  .mlmhf-hero-panel-label {
    font-size: 0.72rem; font-weight: 600;
    color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
  }
  .mlmhf-hero-panel-title {
    font-size: 0.95rem; font-weight: 700;
    color: var(--text); margin-bottom: 1rem;
  }
  .mlmhf-hero-panel-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.6rem; margin-bottom: 1rem;
  }
  .mlmhf-hero-panel-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 0.65rem 0.75rem;
    display: flex; flex-direction: column; gap: 0.25rem;
    .msi { font-size: 18px; color: var(--muted); }
    strong { font-size: 0.78rem; font-weight: 700; color: var(--text); }
    small { font-size: 0.71rem; color: var(--muted); }
    &.is-primary { background: var(--blue); border-color: var(--blue);
      .msi, strong, small { color: #fff; }
    }
  }
  .mlmhf-hero-panel-footer {
    display: flex; gap: 1.5rem; padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    div { display: flex; flex-direction: column; }
    span.metric { font-size: 1.1rem; font-weight: 700; color: var(--blue); }
    span.caption { font-size: 0.72rem; color: var(--muted); }
  }

  /* ═══════════════════════════════════════════════
     SEARCH BAR
  ═══════════════════════════════════════════════ */
  .mlmhf-search-bar {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    .msi { color: var(--muted); flex-shrink: 0; }
    input {
      flex: 1; border: none; outline: none;
      font-family: inherit; font-size: 0.95rem;
      color: var(--text); background: transparent;
      &::placeholder { color: var(--muted); }
    }
  }

  /* ═══════════════════════════════════════════════
     STATS BAR
  ═══════════════════════════════════════════════ */
  .mlmhf-stats-bar {
    background: var(--blue);
    padding: 1.25rem 0;
  }
  .mlmhf-stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    text-align: center;
  }
  .mlmhf-stat-value {
    font-size: 1.5rem; font-weight: 700; color: #fff;
  }
  .mlmhf-stat-label {
    font-size: 0.78rem; color: rgba(255,255,255,0.72); margin-top: 0.1rem;
  }
  .mlmhf-stat-divider {
    width: 1px; height: 2.5rem; background: rgba(255,255,255,0.2);
  }

  /* ═══════════════════════════════════════════════
     STATE DIRECTORY
  ═══════════════════════════════════════════════ */
  .mlmhf-directory {
    padding: 4rem 0;
    background: var(--bg);
  }

  .mlmhf-region-filters {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    justify-content: center; margin-bottom: 2.5rem;
  }
  .mlmhf-region-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    font-family: inherit; font-size: 0.82rem; font-weight: 600;
    color: var(--muted); cursor: pointer;
    transition: all 0.15s ease;
    &:hover, &.is-active {
      border-color: var(--blue); background: var(--blue); color: #fff;
    }
  }

  .mlmhf-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1rem;
  }

  .mlmhf-state-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.2s ease;
    color: var(--text);
    position: relative;
    overflow: hidden;
  }
  .mlmhf-state-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,53,122,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }
  .mlmhf-state-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
  .mlmhf-state-card:hover::after { opacity: 1; }
  .mlmhf-state-card .mlmhf-state-abbr {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.6rem;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: 0.03em;
  }
  .mlmhf-state-card:hover .mlmhf-state-abbr { background: var(--blue); color: #fff; }
  .mlmhf-state-card .mlmhf-state-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    transition: color 0.2s ease;
    margin-bottom: 0.3rem;
  }
  .mlmhf-state-card:hover .mlmhf-state-name { color: var(--blue); }
  .mlmhf-state-card .mlmhf-state-meta {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .mlmhf-state-card .mlmhf-state-meta .msi { font-size: 13px; }
  .mlmhf-state-card .mlmhf-state-arrow {
    position: absolute;
    bottom: 0.9rem;
    right: 0.9rem;
    color: var(--blue);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
  }
  .mlmhf-state-card .mlmhf-state-arrow .msi { font-size: 16px; }
  .mlmhf-state-card:hover .mlmhf-state-arrow { opacity: 1; transform: translateX(0); }

  /* ═══════════════════════════════════════════════
     HOW IT WORKS
  ═══════════════════════════════════════════════ */
  .mlmhf-how {
    padding: 4.5rem 0;
    background: #fff;
  }

  .mlmhf-how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .mlmhf-how-card {
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    position: relative;
  }
  .mlmhf-how-number {
    font-size: 0.72rem; font-weight: 700;
    color: var(--blue); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 0.75rem;
  }
  .mlmhf-how-icon {
    width: 2.5rem; height: 2.5rem; border-radius: 0.6rem;
    background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    .msi { font-size: 20px; }
  }
  .mlmhf-how-card h4 {
    font-size: 0.95rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.5rem;
  }
  .mlmhf-how-card p {
    font-size: 0.85rem; color: var(--muted); line-height: 1.6;
  }

  /* ═══════════════════════════════════════════════
     CTA BANNER
  ═══════════════════════════════════════════════ */
  .mlmhf-cta-banner {
    background: var(--blue);
    padding: 3.5rem 0;
    text-align: center;
    position: relative; overflow: hidden;
    &::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
      background-size: 20px 20px;
    }
  }
  .mlmhf-cta-banner-inner {
    position: relative; z-index: 1;
    h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
    p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1.75rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
  }
  .mlmhf-cta-banner-actions {
    display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap;
  }

  /* ═══════════════════════════════════════════════
     STATE PAGE — topics
  ═══════════════════════════════════════════════ */
  .mlmhf-page-hero {
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
  }
  .mlmhf-page-hero-noise {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(6,53,122,0.1) 1px, transparent 1px);
    background-size: 20px 20px; opacity: 0.6; pointer-events: none;
  }
  .mlmhf-page-hero-inner {
    position: relative; z-index: 1;
    h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); margin-bottom: 0.65rem; }
    p { color: var(--muted); font-size: 0.97rem; max-width: 38rem; }
  }

  .mlmhf-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .mlmhf-topic-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.18s ease;
    color: var(--text);
    display: flex; flex-direction: column; gap: 0.5rem;
    &:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
    .mlmhf-topic-icon {
      width: 2.2rem; height: 2.2rem; border-radius: var(--radius-sm);
      background: var(--blue-light); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.25rem;
      .msi { font-size: 18px; }
    }
    h3 { font-size: 0.95rem; font-weight: 700; }
    p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
  }

  /* ═══════════════════════════════════════════════
     QUESTION LIST
  ═══════════════════════════════════════════════ */
  .mlmhf-content-section {
    padding: 3.5rem 0;
    background: var(--bg);
  }
  .mlmhf-content-layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 17rem);
    gap: 2.5rem;
    align-items: start;
  }

  .mlmhf-question-list {
    display: flex; flex-direction: column; gap: 1rem;
  }

  .mlmhf-question-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: all 0.18s ease;
    color: var(--text);
    &:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-1px); }
    .mlmhf-q-icon {
      width: 2rem; height: 2rem; border-radius: 50%;
      background: var(--blue-light); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 0.1rem;
      .msi { font-size: 16px; }
    }
    .mlmhf-q-title {
      font-size: 0.93rem; font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .mlmhf-q-meta {
      font-size: 0.77rem; color: var(--muted);
      display: flex; align-items: center; gap: 0.5rem;
    }
    .mlmhf-q-arrow { margin-left: auto; flex-shrink: 0; color: var(--muted); align-self: center; }
  }

  /* ═══════════════════════════════════════════════
     SIDEBAR
  ═══════════════════════════════════════════════ */
  .mlmhf-sidebar {
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  .mlmhf-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
  }
  .mlmhf-sidebar-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .mlmhf-sidebar-card p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.85rem;
  }
  .mlmhf-sidebar-card.is-accent {
    background: var(--blue);
    border-color: var(--blue);
  }
  .mlmhf-sidebar-card.is-accent h4 { color: #fff; }
  .mlmhf-sidebar-card.is-accent p { color: rgba(255,255,255,0.82); }
  .mlmhf-btn-white {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
  }

  /* ═══════════════════════════════════════════════
     QUESTION DETAIL
  ═══════════════════════════════════════════════ */
  .mlmhf-answer-hero {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0 2rem;
  }
  .mlmhf-short-answer {
    background: var(--blue);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0 2rem;
    color: #fff;
    .mlmhf-short-answer-label {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; opacity: 0.75; margin-bottom: 0.5rem;
    }
    p { font-size: 1rem; line-height: 1.65; }
  }
  .mlmhf-answer-body {
    font-size: 0.95rem; line-height: 1.75; color: #334155;
    h2,h3 { color: var(--text); margin: 1.5rem 0 0.5rem; }
    p { margin-bottom: 1rem; }
  }
  .mlmhf-answer-meta {
    display: flex; gap: 1.25rem; flex-wrap: wrap;
    padding: 1rem 0; border-top: 1px solid var(--border);
    font-size: 0.8rem; color: var(--muted);
    align-items: center;
    span { display: flex; align-items: center; gap: 0.3rem; }
    .msi { font-size: 15px; }
  }
  .mlmhf-validated-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.75rem; border-radius: 999px;
    background: #dcfce7; color: #166534;
    font-size: 0.75rem; font-weight: 600;
    .msi { font-size: 14px; }
  }

  /* ═══════════════════════════════════════════════
     ASK FORM
  ═══════════════════════════════════════════════ */
  .mlmhf-ask-layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 16rem);
    gap: 2.5rem;
    align-items: start;
    padding: 3.5rem 0;
  }

  .mlmhf-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
  }
  .mlmhf-form-group {
    margin-bottom: 1.25rem;
    label {
      display: block; font-size: 0.84rem; font-weight: 600;
      color: var(--text); margin-bottom: 0.4rem;
    }
    input, select, textarea {
      width: 100%; padding: 0.7rem 0.9rem;
      border: 1.5px solid var(--border); border-radius: var(--radius-sm);
      font-family: inherit; font-size: 0.9rem; color: var(--text);
      background: var(--bg);
      transition: border-color 0.15s ease;
      outline: none;
      &:focus { border-color: var(--blue); background: #fff; }
    }
    textarea { min-height: 7rem; resize: vertical; }
    select { appearance: none; cursor: pointer; }
  }
  .mlmhf-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .mlmhf-required { color: #ef4444; margin-left: 0.15rem; }

  .mlmhf-success-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    .mlmhf-success-icon {
      width: 4rem; height: 4rem; border-radius: 50%;
      background: #dcfce7; color: #166534;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      .msi { font-size: 28px; }
    }
    h2 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
    p { font-size: 0.9rem; color: var(--muted); max-width: 24rem; margin: 0 auto 1.5rem; line-height: 1.6; }
  }

  /* ═══════════════════════════════════════════════
     MEDIATORS CONTRIBUTE
  ═══════════════════════════════════════════════ */
  .mlmhf-contribute-hero {
    background: linear-gradient(160deg, #0a1f44 0%, #06357a 100%);
    padding: 4rem 0 3.5rem;
    position: relative; overflow: hidden;
    &::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
    p { color: rgba(255,255,255,0.78); font-size: 0.97rem; max-width: 36rem; margin-bottom: 2rem; line-height: 1.65; }
  }
  .mlmhf-contribute-inner { position: relative; z-index: 1; }

  .mlmhf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1.25rem;
    padding: 3.5rem 0;
  }
  .mlmhf-benefit-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.5rem;
    .mlmhf-benefit-icon {
      width: 2.5rem; height: 2.5rem; border-radius: 0.6rem;
      background: var(--blue-light); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.85rem;
      .msi { font-size: 20px; }
    }
    h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
    p { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }
  }

  /* ═══════════════════════════════════════════════
     FLOATING MEDIATOR WIDGET
  ═══════════════════════════════════════════════ */
  .mlmhf-float-widget {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .mlmhf-float-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(6,53,122,0.14), 0 2px 8px rgba(0,0,0,0.08);
    padding: 1.25rem 1.25rem 1rem;
    width: 17rem;
    display: none;
    animation: mlmhfSlideUp 0.22s ease;
    transform-origin: bottom right;
  }
  .mlmhf-float-panel.is-open { display: block; }

  @keyframes mlmhfSlideUp {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .mlmhf-float-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.75rem;
    h4 {
      font-size: 0.9rem; font-weight: 700; color: var(--text);
      display: flex; align-items: center; gap: 0.4rem;
      .msi { font-size: 18px; color: var(--blue); }
    }
    button {
      background: none; border: none; cursor: pointer;
      color: var(--muted); padding: 0; line-height: 1;
      &:hover { color: var(--text); }
      .msi { font-size: 18px; }
    }
  }

  .mlmhf-float-panel p {
    font-size: 0.82rem; color: var(--muted);
    line-height: 1.55; margin-bottom: 0.85rem;
  }

  .mlmhf-float-trigger {
    width: 3.2rem; height: 3.2rem;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(6,53,122,0.35);
    transition: all 0.18s ease;
    position: relative;
    .msi { font-size: 22px; transition: transform 0.2s ease; }
    &:hover { background: #0a4db3; transform: scale(1.08); }
    &.is-open .msi { transform: rotate(45deg); }
  }

  .mlmhf-float-badge {
    position: absolute;
    top: -4px; right: -4px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
    animation: mlmhfPulse 2s infinite;
  }

  @keyframes mlmhfPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  }

  @media (max-width: 480px) {
    .mlmhf-float-widget { bottom: 1rem; left: 1rem; }
    .mlmhf-float-panel { width: calc(100vw - 3rem); }
  }

  /* ═══════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .mlmhf-hero-inner { grid-template-columns: 1fr; }
    .mlmhf-hero-panel { display: none; }
    .mlmhf-content-layout { grid-template-columns: 1fr; }
    .mlmhf-ask-layout { grid-template-columns: 1fr; }
    .mlmhf-form-row { grid-template-columns: 1fr; }
    .mlmhf-stat-divider { display: none; }
  }
}
