/*
 * MLeads Mega Menu – Stylesheet v2.0.0
 * Full-width two-panel flyout for Features.
 * All selectors prefixed with .ml- to avoid theme conflicts.
 */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand – MLeads blue */
  --ml-brand:        #2563EB;
  --ml-brand-dark:   #1d4ed8;
  --ml-brand-light:  #eff6ff;
  --ml-brand-glow:   rgba(37,99,235,0.18);

  /* Colour palette */
  --ml-c-blue:      #3b82f6; --ml-c-blue-bg:    #eff6ff;
  --ml-c-indigo:    #6366f1; --ml-c-indigo-bg:  #eef2ff;
  --ml-c-violet:    #8b5cf6; --ml-c-violet-bg:  #f5f3ff;
  --ml-c-pink:      #ec4899; --ml-c-pink-bg:    #fdf2f8;
  --ml-c-emerald:   #10b981; --ml-c-emerald-bg: #ecfdf5;
  --ml-c-teal:      #14b8a6; --ml-c-teal-bg:    #f0fdfa;
  --ml-c-sky:       #0ea5e9; --ml-c-sky-bg:     #f0f9ff;
  --ml-c-amber:     #f59e0b; --ml-c-amber-bg:   #fffbeb;
  --ml-c-rose:      #f43f5e; --ml-c-rose-bg:    #fff1f2;
  --ml-c-lime:      #65a30d; --ml-c-lime-bg:    #f7fee7;
  --ml-c-orange:    #f97316; --ml-c-orange-bg:  #fff7ed;
  --ml-c-cyan:      #06b6d4; --ml-c-cyan-bg:    #ecfeff;

  --ml-text-primary:   #0f172a;
  --ml-text-secondary: #475569;
  --ml-text-muted:     #94a3b8;
  --ml-bg-white:  #ffffff;
  --ml-bg-soft:   #f8fafc;
  --ml-border:    rgba(15,23,42,0.08);
  --ml-divider:   rgba(15,23,42,0.14);
  --ml-shadow-lg: 0 24px 60px rgba(0,0,0,0.13), 0 8px 24px rgba(0,0,0,0.07);
  --ml-r:    14px;
  --ml-r-sm:  8px;
  --ml-font: 'Plus Jakarta Sans', sans-serif;
  --ml-ease: cubic-bezier(0.4,0,0.2,1);
}

/* ══ Colour chips (icon backgrounds) ══════════════════════════ */
.ml-color-blue    { background: var(--ml-c-blue-bg);    color: var(--ml-c-blue);    }
.ml-color-emerald { background: var(--ml-c-emerald-bg); color: var(--ml-c-emerald); }
.ml-color-indigo  { background: var(--ml-c-indigo-bg);  color: var(--ml-c-indigo);  }
.ml-color-pink    { background: var(--ml-c-pink-bg);    color: var(--ml-c-pink);    }
.ml-color-violet  { background: var(--ml-c-violet-bg);  color: var(--ml-c-violet);  }
.ml-color-sky     { background: var(--ml-c-sky-bg);     color: var(--ml-c-sky);     }
.ml-color-amber   { background: var(--ml-c-amber-bg);   color: var(--ml-c-amber);   }
.ml-color-teal    { background: var(--ml-c-teal-bg);    color: var(--ml-c-teal);    }

/* ═══════════════════════════════════════════════════════════
   TOP UTILITY BAR
   ═══════════════════════════════════════════════════════════ */
.ml-utility-bar {
  background: #1e3a5f;
  color: #fff;
  font-family: var(--ml-font);
  font-size: 13px;
  position: relative;
  z-index: 102;
}
.ml-utility-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Social icons */
.ml-utility-left {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.ml-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px;
  transition: color 0.2s, background 0.2s;
}
.ml-social-icon:hover { color: #fff; background: rgba(255,255,255,0.12); }
.ml-utility-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.2); margin: 0 6px; flex-shrink: 0; }

/* App store badges */
.ml-store-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.25); border-radius: 7px;
  text-decoration: none; color: #fff; transition: border-color 0.2s, background 0.2s; flex-shrink: 0;
}
.ml-store-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.ml-store-icon { font-size: 18px; flex-shrink: 0; }
.ml-gplay-icon { color: #3ddc84; }
.ml-apple-icon { color: #fff; }
.ml-store-text { display: flex; flex-direction: column; line-height: 1.2; }
.ml-store-avail { font-size: 8px; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); text-transform: uppercase; }
.ml-store-name  { font-size: 11px; font-weight: 700; color: #fff; }

/* Right utility links */
.ml-utility-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.ml-util-link {
  padding: 4px 9px; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,0.82); text-decoration: none; border-radius: 5px;
  transition: color 0.18s, background 0.18s; white-space: nowrap;
}
.ml-util-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.ml-cart-icon {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 6px;
  padding: 5px 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px; color: #fff; font-size: 12px; font-weight: 600;
  text-decoration: none; white-space: nowrap; transition: background 0.18s, border-color 0.18s;
}
.ml-cart-icon:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.45); }
.ml-cart-label { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   MAIN HEADER
   ═══════════════════════════════════════════════════════════ */
#ml-site-header {
  position: sticky; top: 0; z-index: 100;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
  font-family: var(--ml-font);
  -webkit-font-smoothing: antialiased;
}
#ml-site-header.ml-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.ml-header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 20px;
  height: 66px; display: flex; align-items: center; gap: 16px;
}

/* ── Logo ── */
.ml-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.ml-logo-img { height: 40px; width: auto; }
.ml-logo-icon { flex-shrink: 0; }
.ml-logo-text { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.ml-logo-text span { color: var(--ml-brand); }

/* ── Desktop Nav ── */
.ml-desktop-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.ml-nav-item { position: relative; height: 66px; display: flex; align-items: center; }
.ml-nav-trigger {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 12px; border-radius: var(--ml-r-sm);
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.78);
  cursor: pointer; background: none; border: none; font-family: var(--ml-font);
  text-decoration: none; white-space: nowrap; line-height: 1;
  transition: color 0.18s, background 0.18s;
}
.ml-nav-trigger:hover { color: #fff; background: rgba(255,255,255,0.08); }
.ml-chev { font-size: 9px; color: rgba(255,255,255,0.35); transition: transform 0.2s, color 0.18s; }
.ml-nav-item.ml-open .ml-nav-trigger { color: var(--ml-brand); background: rgba(37,99,235,0.12); }
.ml-nav-item.ml-open .ml-chev { transform: rotate(180deg); color: var(--ml-brand); }

/* ── CTA Buttons ── */
.ml-header-ctas { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.ml-btn-gradient {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; min-height: 40px; color: #fff;
  background: linear-gradient(325deg, rgba(1,126,228,1) 0%, rgba(184,0,255,1) 100%);
  border-radius: 6px; border: 0; text-decoration: none; white-space: nowrap;
  font-size: 13.5px; font-weight: 700; line-height: 1; font-family: var(--ml-font);
  transition: transform 0.25s, opacity 0.25s, background 0.3s; cursor: pointer;
}
.ml-btn-gradient:hover {
  color: #fff; opacity: 0.92; transform: translateY(-1px);
  background: linear-gradient(310deg, rgba(184,0,255,1) 0%, rgba(1,126,228,1) 100%);
}

/* ── Hamburger ── */
.ml-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 38px; height: 38px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--ml-r-sm); transition: background 0.15s;
}
.ml-hamburger:hover { background: rgba(255,255,255,0.1); }
.ml-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ml-ease), opacity 0.3s; }
.ml-hamburger.ml-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ml-hamburger.ml-open span:nth-child(2) { opacity: 0; }
.ml-hamburger.ml-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   MEGA MENU PANEL — shared base
   ═══════════════════════════════════════════════════════════ */
.ml-mega-menu {
  position: fixed;
  /* full-width: stretch from left edge to right edge of viewport */
  left: 0;
  right: 0;
  margin-top: 2px;
  background: var(--ml-bg-white);
  border-top: 1px solid var(--ml-border);
  border-bottom: 1px solid var(--ml-border);
  box-shadow: var(--ml-shadow-lg);
  display: none;
  z-index: 999;
  font-family: var(--ml-font);
  -webkit-font-smoothing: antialiased;
  max-height: calc(100vh - 120px);
  overflow: hidden;
  /* remove left transform - not centred any more */
  transform: none;
}
.ml-mega-menu.ml-visible {
  display: flex;
  flex-direction: column;
  animation: mlMenuPop 0.18s var(--ml-ease) forwards;
}
@keyframes mlMenuPop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Reports & Resources — constrained width, centred ── */
#ml-menu-reports,
#ml-menu-resources {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  /*border-radius: 18px;*/
  border: 1px solid var(--ml-divider);
  margin-top: 6px;
}
#ml-menu-reports  { width: 760px; max-width: 96vw; }
#ml-menu-resources{ width: 660px; max-width: 96vw; }
#ml-menu-reports.ml-visible,
#ml-menu-resources.ml-visible {
  animation: mlMenuPopCentered 0.18s var(--ml-ease) forwards;
}
@keyframes mlMenuPopCentered {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Scrollable inner for non-features menus */
.ml-bsm-wrap {
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 26px 30px 28px; flex: 1;
}
.ml-bsm-wrap::-webkit-scrollbar { width: 5px; }
.ml-bsm-wrap::-webkit-scrollbar-track { background: transparent; }
.ml-bsm-wrap::-webkit-scrollbar-thumb { background: rgba(15,23,42,0.14); border-radius: 10px; }
.ml-bsm-wrap::-webkit-scrollbar-thumb:hover { background: rgba(15,23,42,0.28); }

/* Section label */
.ml-bsm-header { margin-bottom: 16px; }
.ml-bsm-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ml-brand);
}
.ml-bsm-label i { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   FEATURES MEGA MENU — Full-width Two-Panel Flyout
   ═══════════════════════════════════════════════════════════ */

/* Outer wrapper stretches full width — constrain content inside */
.ml-mega-features { border-radius: 0; }
.ml-mega-menu.ml-visible {max-width: 1400px; margin: 0 auto;}
.ml-features-inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  min-height: 340px;
  max-height: calc(100vh - 120px);
}

/* ── LEFT PANEL (category list) ── */
.ml-feat-sidebar {
  width: 280px;
  flex-shrink: 0;
  padding: 28px 0 28px 28px;
  background: var(--ml-bg-soft);
  border-right: 1px solid var(--ml-border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.ml-feat-sidebar-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ml-brand);
  margin-bottom: 18px;
  padding-right: 20px;
}
.ml-feat-sidebar-label i { font-size: 11px; }

.ml-feat-cats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}

.ml-feat-cat-item { position: relative; }

.ml-feat-cat-btn {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 11px 20px 11px 12px;
  background: transparent; border: none; cursor: pointer;
  border-radius: 10px; font-family: var(--ml-font);
  text-align: left; transition: background 0.15s;
}
.ml-feat-cat-btn:hover {
  background: rgba(37,99,235,0.06);
}
.ml-feat-cat-item.ml-feat-cat-active .ml-feat-cat-btn {
  background: var(--ml-brand-light);
}

.ml-feat-cat-ico {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: box-shadow 0.15s;
}
.ml-feat-cat-item.ml-feat-cat-active .ml-feat-cat-ico { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }

.ml-feat-cat-name {
  flex: 1; font-size: 13.5px; font-weight: 600;
  color: var(--ml-text-secondary); line-height: 1.3;
  transition: color 0.15s;
}
.ml-feat-cat-btn:hover .ml-feat-cat-name { color: var(--ml-text-primary); }
.ml-feat-cat-item.ml-feat-cat-active .ml-feat-cat-name { color: var(--ml-brand); font-weight: 700; }

.ml-feat-cat-arrow {
  font-size: 9px; color: var(--ml-text-muted); flex-shrink: 0;
  transition: transform 0.15s, color 0.15s;
}
.ml-feat-cat-btn:hover .ml-feat-cat-arrow { transform: translateX(2px); color: var(--ml-brand); }
.ml-feat-cat-item.ml-feat-cat-active .ml-feat-cat-arrow { color: var(--ml-brand); }

/* Indicator bar on active item */
.ml-feat-cat-item.ml-feat-cat-active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 28px;
  background: var(--ml-brand);
  border-radius: 0 3px 3px 0;
}

/* ── DIVIDER ── */
.ml-feat-divider {
  width: 1px;
  background: var(--ml-border);
  flex-shrink: 0;
}

/* ── RIGHT PANEL (content area) ── */
.ml-feat-content {
  flex: 1;
  position: relative;
  overflow-y: auto;
  padding: 32px 36px;
  min-width: 0;
}

.ml-feat-panel {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: mlPanelFade 0.18s var(--ml-ease) forwards;
}
.ml-feat-panel.ml-feat-panel-active { display: flex; }
@keyframes mlPanelFade {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Panel header */
.ml-feat-panel-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ml-border);
}
.ml-feat-panel-ico {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ml-feat-panel-title {
  font-size: 18px; font-weight: 800;
  color: var(--ml-text-primary); line-height: 1.2;
}
.ml-feat-panel-sub {
  font-size: 12.5px; color: var(--ml-text-muted); margin-top: 2px;
}

/* Child links grid */
.ml-feat-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px;
}

.ml-feat-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 11px;
  border: 1.5px solid transparent; text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.ml-feat-link:hover {
  background: var(--ml-bg-soft);
  border-color: var(--ml-border);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.ml-feat-link-ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: box-shadow 0.15s;
}
.ml-feat-link:hover .ml-feat-link-ico { box-shadow: 0 3px 10px rgba(0,0,0,0.12); }

.ml-feat-link-label {
  flex: 1; font-size: 13px; font-weight: 600;
  color: var(--ml-text-secondary); line-height: 1.35;
  transition: color 0.15s;
}
.ml-feat-link:hover .ml-feat-link-label { color: var(--ml-text-primary); }

.ml-feat-link-arrow {
  font-size: 10px; color: transparent; flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.ml-feat-link:hover .ml-feat-link-arrow { color: var(--ml-brand); transform: translateX(2px); }

/* Accent border on hover per category colour */
.ml-feat-link-color-blue:hover    { border-color: rgba(59,130,246,0.3); }
.ml-feat-link-color-emerald:hover { border-color: rgba(16,185,129,0.3); }
.ml-feat-link-color-indigo:hover  { border-color: rgba(99,102,241,0.3); }
.ml-feat-link-color-pink:hover    { border-color: rgba(236,72,153,0.3); }
.ml-feat-link-color-violet:hover  { border-color: rgba(139,92,246,0.3); }
.ml-feat-link-color-sky:hover     { border-color: rgba(14,165,233,0.3); }

/* ── Resources / Reports card grid ── */
.ml-res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ml-res-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--ml-border); text-decoration: none; background: #fff;
  transition: border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.ml-res-card:hover {
  border-color: var(--ml-brand); background: var(--ml-brand-light);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.1);
}
.ml-res-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: box-shadow 0.15s;
}
.ml-res-card:hover .ml-res-icon { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.ml-res-body { flex: 1; min-width: 0; }
.ml-res-title { font-size: 13.5px; font-weight: 700; color: var(--ml-text-primary); margin-bottom: 4px; }
.ml-res-desc  { font-size: 12px; color: var(--ml-text-muted); line-height: 1.45; }
.ml-res-arrow { font-size: 11px; color: var(--ml-text-muted); flex-shrink: 0; margin-top: 4px; transition: transform 0.15s, color 0.15s; }
.ml-res-card:hover .ml-res-arrow { transform: translateX(3px); color: var(--ml-brand); }

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════ */
.ml-mobile-menu {
  display: none; position: fixed;
  top: 110px; left: 0; right: 0; bottom: 0;
  background: var(--ml-bg-white); z-index: 98;
  overflow-y: auto; padding: 12px 20px 40px;
  font-family: var(--ml-font);
}
.ml-mobile-menu.ml-open { display: block; }
.ml-mobile-direct {
  display: block; padding: 13px 4px; font-size: 15px; font-weight: 700;
  color: var(--ml-text-primary); border-bottom: 1px solid var(--ml-border); text-decoration: none;
}
.ml-mobile-direct:hover { color: var(--ml-brand); }
.ml-mobile-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 4px; font-size: 15px; font-weight: 700;
  color: var(--ml-text-primary); border-bottom: 1px solid var(--ml-border);
  cursor: pointer; background: none;
  border-top: none; border-left: none; border-right: none;
  width: 100%; font-family: var(--ml-font); text-align: left;
}
.ml-chev-m { font-size: 10px; color: var(--ml-text-muted); transition: transform 0.2s; }
.ml-mobile-trigger.ml-open .ml-chev-m { transform: rotate(180deg); color: var(--ml-brand); }
.ml-mobile-sub { display: none; padding: 8px 0 14px 4px; }
.ml-mobile-sub.ml-open { display: block; }
.ml-mobile-sub ul { list-style: none; padding: 0; margin: 0; }
.ml-mobile-sub ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px; font-size: 13.5px; font-weight: 500;
  color: var(--ml-text-secondary); text-decoration: none;
  border-radius: var(--ml-r-sm); transition: color 0.15s, background 0.15s;
}
.ml-mobile-sub ul li a:hover { color: var(--ml-brand); background: var(--ml-brand-light); }
.ml-m-cat {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ml-brand); padding: 12px 4px 4px;
}
.ml-m-cat:first-child { padding-top: 4px; }
.ml-m-icon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.ml-mobile-ctas {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ml-border);
}
.ml-mobile-ctas .ml-btn-gradient { width: 100%; justify-content: center; padding: 12px; }

/* ═══════════════════════════════════════════════════════════
   BOTTOM ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════ */
.ml-bottom-bar {
  background: #0f172a; color: rgba(255,255,255,0.82);
  text-align: center; padding: 10px 20px;
  font-family: var(--ml-font); font-size: 13.5px; font-weight: 500;
  position: relative; z-index: 99;
}
.ml-bottom-bar-sep  { color: rgba(255,255,255,0.3); margin: 0 2px; }
.ml-bottom-bar-link { color: var(--ml-brand); font-weight: 700; text-decoration: none; transition: color 0.18s; }
.ml-bottom-bar-link:hover { color: #60a5fa; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .ml-features-inner { max-width: 100%; }
  .ml-feat-links { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (max-width: 1100px) {
  .ml-desktop-nav { gap: 0; }
  .ml-nav-trigger { font-size: 13.5px; padding: 7px 9px; }
  .ml-feat-sidebar { width: 240px; }
}

@media (max-width: 900px) {
  .ml-desktop-nav { display: none; }
  .ml-hamburger { display: flex; }
  .ml-header-ctas .ml-btn-gradient { display: none; }
  .ml-header-ctas .ml-btn-gradient:last-of-type { display: inline-flex; }
}

@media (max-width: 860px) {
  /* Stack features sidebar above content on small screens */
  .ml-features-inner { flex-direction: column; }
  .ml-feat-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--ml-border); }
  .ml-feat-cats { flex-direction: row; flex-wrap: wrap; gap: 6px; padding-right: 28px; }
  .ml-feat-cat-item::before { display: none; }
  .ml-feat-cat-btn { padding: 8px 10px; border-radius: 8px; border: 1.5px solid var(--ml-border); }
  .ml-feat-cat-item.ml-feat-cat-active .ml-feat-cat-btn { border-color: var(--ml-brand); }
  .ml-feat-cat-arrow { display: none; }
  .ml-feat-divider { display: none; }
  .ml-feat-content { padding: 20px 20px; }
  .ml-feat-links { grid-template-columns: 1fr; }
  .ml-res-grid { grid-template-columns: 1fr; }
  #ml-menu-reports, #ml-menu-resources { left: 0; right: 0; transform: none; border-radius: 0; width: auto; max-width: none; }
}

@media (max-width: 700px) {
  .ml-utility-inner { height: auto; padding: 6px 14px; flex-wrap: wrap; gap: 8px; }
  .ml-utility-left  { flex-wrap: wrap; gap: 4px; }
  .ml-store-badge   { display: none; }
  .ml-util-link     { font-size: 11.5px; padding: 3px 7px; }
}

@media (max-width: 480px) {
  .ml-utility-right { display: none; }
}
