/* ═══════════════════════════════════════════════════════════════
   APPDRIVES HEADER v2 — White · Gradient glow · Unique mega
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; margin: 0; padding: 0; padding-top: 68px; }
@media (max-width: 960px) { body { padding-top: 60px; } }

/* Default header height var — JS overwrites this after load */
:root { --mm-header-h: 68px; }
@media (max-width: 960px) { :root { --mm-header-h: 60px; } }
h2 { font-family: 'Lora', Georgia, serif !important; font-size: 36px !important; font-weight: 800 !important; letter-spacing: -1px !important; line-height: 1.15 !important; }
@media(max-width:486px){
  h2{
    font-size:24px !important;
  }
}
/* ─────────────────────────────────────────────
   HEADER BAR
───────────────────────────────────────────── */
.mm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid rgba(12,8,30,0.08);
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  font-family: 'Roboto Serif', Georgia, serif;
  isolation: isolate;
}

/* Slide header up when scrolling down */
.mm-header.nav--hidden {
  transform: translateY(-110%);
  pointer-events: none;
}

/* Signature purple→cyan glow line at very bottom */
.mm-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8B5CF6 25%,
    #06B6D4 75%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mm-header.scrolled {
  box-shadow: 0 4px 24px rgba(12,8,30,0.10), 0 1px 4px rgba(12,8,30,0.06);
  border-bottom-color: transparent;
}
.mm-header.scrolled::after { opacity: 1; }

/* ── Bar ── */
.mm-bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  height: 68px;
  position: relative;
}

/* ─────────────────────────────────────────────
   LOGO
───────────────────────────────────────────── */
.mm-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.mm-logo-img {
  display: block; height: 38px; width: auto;
  transition: opacity 0.2s ease;
}
.mm-logo:hover .mm-logo-img { opacity: 0.82; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.mm-nav { flex: 1; display: flex; justify-content: center; }
.mm-list {
  display: flex; align-items: center; gap: 2px;
  list-style: none; padding: 0; margin: 0;
}
.mm-li { position: relative; }

.mm-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 10px;
  background: transparent; border: none;
  font-size: 15px; font-weight: 600;
  color: #2d2550;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: 'Roboto Serif', Georgia, serif;
  letter-spacing: -0.1px;
  position: relative;
  white-space: nowrap;
}
/* Gradient underline indicator — the unique signature touch */
.mm-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 16px; right: 16px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #8B5CF6, #06B6D4);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.26s cubic-bezier(0.34,1.56,0.64,1);
}
.mm-link:hover { color: #6d28d9; background: rgba(139,92,246,0.05); }
.mm-link:hover::after,
.mm-li.is-open .mm-link::after { transform: scaleX(1); }
.mm-li.is-open .mm-link { color: #6d28d9; background: rgba(139,92,246,0.06); }

.mm-chev {
  transition: transform 0.26s ease; opacity: 0.5; flex-shrink: 0;
}
.mm-li.is-open .mm-chev { transform: rotate(180deg); opacity: 1; }

/* ─────────────────────────────────────────────
   MEGA PANEL — White / light
───────────────────────────────────────────── */
.mm-panel {
  position: absolute;
  top: calc(100% + 10px);
  background: #ffffff;
  border: 1px solid rgba(12,8,30,0.08);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(12,8,30,0.13),
    0 4px 14px rgba(12,8,30,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.99);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0s linear 0.22s;
  z-index: 100;
}
.mm-li.is-open .mm-panel {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s;
}

/* Top accent line on every panel */
.mm-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8B5CF6 40%, #06B6D4 60%, transparent);
  border-radius: 0 0 2px 2px;
  pointer-events: none;
}

/* Wide / mid — fixed, viewport-centered */
.mm-panel--wide,
.mm-panel--mid {
  position: fixed;
  top: var(--mm-header-h, 74px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.99);
}
.mm-li.is-open .mm-panel--wide,
.mm-li.is-open .mm-panel--mid {
  transform: translateX(-50%) translateY(0) scale(1);
}
.mm-panel--wide  { width: min(1160px, 96vw); }
.mm-panel--mid   { width: 680px; }
.mm-panel--narrow { width: 380px; left: 0; }
.mm-panel--simple { width: 278px; left: 0; padding: 8px; }
.mm-li:nth-last-child(-n+2) .mm-panel--simple { left: auto; right: 0; }

/* ══════════════════════════════════════════════════════════
   SOLUTIONS PANEL — Full-width mega menu
══════════════════════════════════════════════════════════ */
.mm-panel--mega {
  width: 100%;
  position: fixed;
  top: var(--mm-header-h, 74px);
  left: 0;
  right: 0;
  transform: translateY(-10px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  background: #fff;
  border-radius: 0 0 20px 20px;
  border: none;
  border-top: none;
  box-shadow: 0 32px 80px rgba(12,8,30,.16), 0 4px 20px rgba(12,8,30,.08);
  overflow: hidden;
}
.mm-li.is-open .mm-panel--mega {
  transform: translateY(0);
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}

/* Top accent bar — full width */
.mm-panel--mega::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B5CF6 0%, #7c3aed 30%, #06B6D4 70%, #0891b2 100%);
  pointer-events: none; z-index: 10;
}

/* Outer wrapper — fixed height for consistent panel */
.mm-sol-wrap { display: flex; align-items: stretch; height: 520px; }

/* Left sidebar — light Zoho-style */
.mm-sol-sidebar {
  width: 210px;
  flex-shrink: 0;
  background: #f7f6fb;
  border-right: 1px solid rgba(12,8,30,.07);
  padding: 18px 0 16px;
  display: flex;
  flex-direction: column;
}
.mm-sol-sidebar-label {
  font-size: 9.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(12,15,29,.38);
  font-family: 'Roboto Serif', Georgia, serif;
  padding: 0 18px 10px;
}
.mm-sol-sidebar-tag {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  text-decoration: none;
  -webkit-appearance: none; appearance: none;
  background: none; border: none; border-left: 3px solid transparent; outline: none; box-shadow: none;
  width: 100%; text-align: left; cursor: pointer;
  color: rgba(12,15,29,.65);
  font-size: 13.5px; font-weight: 500;
  font-family: 'Roboto Serif', Georgia, serif;
  transition: background .15s, color .15s;
  position: relative;
}
.mm-sol-sidebar-tag:hover {
  background: rgba(12,8,30,.04);
  color: #1e1a2e;
}
.mm-sol-sidebar-tag.is-active {
  background: #fff;
  border-left-color: #7c3aed;
  color: #7c3aed;
  font-weight: 700;
}
.mm-sol-tag-ic { display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(12,15,29,.35); }
.mm-sol-tag-ic .mm-svg-ic { width: 15px; height: 15px; }
.mm-sol-sidebar-tag.is-active .mm-sol-tag-ic { color: inherit; }
.mm-sol-tag-label { flex: 1; }
.mm-sol-tag-arr {
  flex-shrink: 0;
  opacity: 0; color: #7c3aed;
  transition: opacity .15s, transform .15s;
}
.mm-sol-sidebar-tag.is-active .mm-sol-tag-arr { opacity: 1; }
.mm-sol-sidebar-tag:hover .mm-sol-tag-arr { opacity: .5; transform: translateX(2px); }

.mm-sol-sidebar-footer {
  margin-top: auto; padding: 16px 14px 0;
}
.mm-sol-sidebar-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px 14px; border-radius: 9px;
  font-size: 12px; font-weight: 700; color: #7c3aed;
  background: rgba(124,58,237,.09);
  border: 1px solid rgba(124,58,237,.18);
  text-decoration: none;
  font-family: 'Roboto Serif', Georgia, serif;
  transition: background .18s, border-color .18s;
}
.mm-sol-sidebar-cta-btn .mm-svg-ic { width: 14px; height: 14px; }
.mm-sol-sidebar-cta-btn:hover { background: rgba(124,58,237,.15); border-color: rgba(124,58,237,.30); }

/* Right content area */
.mm-sol-content { flex: 1; padding: 0; display: flex; flex-direction: column; overflow: hidden; }


/* ══════════════════════════════════════════════════════════
   SOLUTIONS — Tab panels: cards + featured side
══════════════════════════════════════════════════════════ */

/* Each category panel = row: [cards area] + [featured side] */
.mm-sol-cat-panel {
  display: none;
  flex-direction: row;
  flex: 1;
  overflow: hidden;
}
.mm-sol-cat-panel.is-active { display: flex; }

/* Cards scrollable area */
.mm-sol-cards-area {
  flex: 1;
  padding: 22px 28px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Category heading row */
.mm-sol-cat-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(12,8,30,.07);
  flex-shrink: 0;
}
.mm-sol-cat-header-ic {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mm-sol-cat-header-ic .mm-svg-ic { width: 20px; height: 20px; }
.mm-sol-cat-h {
  margin: 0 0 3px;
  font-family: 'Lora', Georgia, serif;
  font-size: 18px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
}
.mm-sol-cat-sub {
  margin: 0;
  font-size: 12px; color: rgba(12,15,29,.46);
  font-family: 'Roboto Serif', Georgia, serif; line-height: 1.4;
}

/* 3-column card grid */
.mm-sol-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  align-content: start;
}

/* Individual card */
.mm-sol-card {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.mm-sol-card:hover {
  background: #faf8ff;
  border-color: rgba(139,92,246,.14);
  box-shadow: 0 2px 12px rgba(12,8,30,.07);
}
.mm-sol-card-ic {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.mm-sol-card-ic .mm-svg-ic { width: 17px; height: 17px; }
.mm-sol-card-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mm-sol-card-name {
  font-size: 13px; font-weight: 700; color: #0c0f1d;
  font-family: 'Lora', Georgia, serif; line-height: 1.25;
  transition: color .15s;
}
.mm-sol-card:hover .mm-sol-card-name { color: #7c3aed; }
.mm-sol-card-desc {
  font-size: 11.5px; color: rgba(12,15,29,.48);
  font-family: 'Roboto Serif', Georgia, serif; line-height: 1.4;
}

/* ── Featured right panel ── */
.mm-sol-feat-side {
  width: 280px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #0d0920 0%, #16104a 45%, #0d1830 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.05);
}
/* Colour glow radial */
.mm-sol-feat-side::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% 10%, var(--feat-color, #8B5CF6), transparent 60%);
  opacity: .18; pointer-events: none;
}
/* Subtle grid texture */
.mm-sol-feat-side::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.mm-sol-feat-badge-top {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-size: 9px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--feat-color, #8B5CF6);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: 3px 10px; border-radius: 100px;
  font-family: 'Roboto Serif', Georgia, serif;
}
.mm-sol-feat-img-wrap {
  flex: 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  padding: 10px 0 6px;
}
.mm-sol-feat-img {
  height: 220px; width: auto; object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.65));
  transition: transform .3s ease;
}
.mm-sol-feat-side:hover .mm-sol-feat-img { transform: translateY(-6px); }
.mm-sol-feat-no-img {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.mm-sol-feat-no-img .mm-svg-ic { width: 80px; height: 80px; opacity: .18; }

/* SVG illustration wrap — used in Clone Apps featured panel */
.mm-sol-feat-svg-wrap {
  flex: 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  padding: 14px 10px 8px;
}
.mm-sol-feat-svg-wrap svg {
  width: 108px; height: 220px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.7));
  transition: transform .35s ease;
}
.mm-sol-feat-side:hover .mm-sol-feat-svg-wrap svg { transform: translateY(-7px) scale(1.04); }
.mm-sol-feat-info {
  width: 100%; z-index: 2;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  flex-shrink: 0;
}
.mm-sol-feat-name {
  font-size: 14px; font-weight: 800;
  color: #fff;
  font-family: 'Lora', Georgia, serif;
  margin-bottom: 5px; text-align: center; line-height: 1.3;
}
.mm-sol-feat-tagline {
  font-size: 11.5px; color: rgba(255,255,255,.48);
  font-family: 'Roboto Serif', Georgia, serif;
  text-align: center; margin: 0 0 14px; line-height: 1.5;
}
.mm-sol-feat-btns {
  display: flex; flex-direction: column; gap: 8px; width: 100%;
}
.mm-sol-feat-btn-know {
  display: block; text-align: center; width: 100%;
  padding: 9px 14px; border-radius: 9px;
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  font-family: 'Roboto Serif', Georgia, serif;
  transition: background .18s, color .18s, border-color .18s;
  box-sizing: border-box;
}
.mm-sol-feat-btn-know:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.30);
  color: #fff;
}
.mm-sol-feat-btn-contact {
  display: block; text-align: center; width: 100%;
  padding: 10px 14px; border-radius: 9px;
  font-size: 12.5px; font-weight: 700; color: #fff;
  text-decoration: none;
  font-family: 'Roboto Serif', Georgia, serif;
  transition: opacity .18s, transform .18s;
  position: relative; overflow: hidden;
  box-sizing: border-box;
}
.mm-sol-feat-btn-contact::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}
.mm-sol-feat-btn-contact:hover { opacity: .88; transform: translateY(-1px); }

.mm-panel-inner { padding: 26px 28px 22px; }
.mm-panel-head  { margin-bottom: 18px; }
.mm-panel-head h4 {
  margin: 0 0 5px;
  font-family: 'Lora', Georgia, serif;
  font-size: 19px; font-weight: 800;
  color: #0c0f1d; letter-spacing: -0.3px;
}
.mm-panel-head p {
  margin: 0; font-size: 12.5px;
  color: rgba(12,15,29,0.55);
  line-height: 1.65;
  font-family: 'Roboto Serif', Georgia, serif;
}

/* Divider */
.mm-panel-divider {
  height: 1px; margin-bottom: 18px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.22), rgba(6,182,212,0.18), transparent);
}

.mm-grid { display: grid; gap: 16px 20px; }
.mm-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.mm-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }

.mm-svg-ic { width: 18px; height: 18px; display: block; flex-shrink: 0; }

/* ── Category heads ── */
.mm-cat-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 8px; margin-bottom: 6px;
  border-bottom: 1px dashed rgba(12,15,29,0.10);
}
.mm-cat-ic {
  width: 30px; height: 30px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(139,92,246,0.10);
  color: #7c3aed;
}
.mm-cat-ic .mm-svg-ic { width: 15px; height: 15px; }
.mm-cat-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 13.5px; font-weight: 800;
  color: #0c0f1d; letter-spacing: -0.2px;
}
.mm-cat-list { list-style: none; padding: 0; margin: 0; }
.mm-cat-list li a {
  display: block;
  padding: 6px 5px 6px 16px; border-radius: 8px;
  font-size: 13px; color: rgba(12,15,29,0.68);
  font-family: 'Roboto Serif', Georgia, serif;
  text-decoration: none; line-height: 1.45;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
  position: relative;
}
.mm-cat-list li a::before {
  content: ''; position: absolute; left: 6px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: transparent; transform: translateY(-50%);
  transition: background 0.18s;
}
.mm-cat-list li a:hover { color: #6d28d9; background: rgba(139,92,246,0.06); padding-left: 20px; }
.mm-cat-list li a:hover::before { background: #8B5CF6; }

/* ── Clone tiles ── */
.mm-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: 12px;
  background: linear-gradient(180deg, #fff, #faf8ff);
  border: 1px solid rgba(12,15,29,0.07);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mm-tile:hover {
  border-color: rgba(139,92,246,0.32);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(12,8,30,0.10);
}
.mm-tile--active {
  background: linear-gradient(180deg, #f5f3ff, #ede9fe);
  border-color: rgba(139,92,246,0.35);
}
.mm-tile-ic {
  width: 34px; height: 34px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(139,92,246,0.10); color: #7c3aed;
}
.mm-tile-ic .mm-svg-ic { width: 17px; height: 17px; }
.mm-tile-tx { display: flex; flex-direction: column; min-width: 0; }
.mm-tile-name {
  font-size: 13.5px; font-weight: 700; color: #0c0f1d; line-height: 1.3;
  font-family: 'Lora', Georgia, serif; letter-spacing: -0.2px;
}
.mm-tile-tag {
  font-size: 11px; color: rgba(12,15,29,0.50);
  margin-top: 3px; letter-spacing: 0.04em;
  font-family: 'Roboto Serif', Georgia, serif;
}

/* ── Industries ── */
.mm-vlist { list-style: none; padding: 0; margin: 0; }
.mm-vlist li a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: #1e1740;
  text-decoration: none;
  font-family: 'Roboto Serif', Georgia, serif;
  transition: background 0.18s, color 0.18s;
}
.mm-vlist li a:hover { background: rgba(139,92,246,0.07); color: #6d28d9; }
.mm-v-ic {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(139,92,246,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: #7c3aed; flex-shrink: 0;
}
.mm-v-ic .mm-svg-ic { width: 16px; height: 16px; }
.mm-v-arr {
  margin-left: auto; opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
  color: #8B5CF6; font-weight: 700;
}
.mm-vlist li a:hover .mm-v-arr { opacity: 1; transform: translateX(2px); }

/* ── Simple list (Resources / Company) ── */
.mm-simple-list { display: flex; flex-direction: column; gap: 2px; }
.mm-simple-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s;
}
.mm-simple-item:hover { background: rgba(139,92,246,0.06); }
.mm-simple-ic {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(139,92,246,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #7c3aed;
}
.mm-simple-ic .mm-svg-ic { width: 16px; height: 16px; }
.mm-simple-name {
  display: block; font-size: 14px; font-weight: 700; color: #0c0f1d;
  line-height: 1.25; font-family: 'Lora', Georgia, serif; letter-spacing: -0.2px;
}
.mm-simple-desc {
  display: block; font-size: 12px; color: rgba(12,15,29,0.52);
  margin-top: 3px; font-family: 'Roboto Serif', Georgia, serif;
}

/* ── Panel footer ── */
.mm-panel-foot {
  margin-top: 18px; padding: 12px 16px;
  background: linear-gradient(135deg, rgba(139,92,246,0.05), rgba(6,182,212,0.05));
  border: 1px dashed rgba(139,92,246,0.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(12,15,29,0.60);
  font-family: 'Roboto Serif', Georgia, serif;
}
.mm-foot-link {
  color: #6d28d9; font-weight: 700; text-decoration: none;
  transition: transform 0.2s, color 0.2s;
}
.mm-foot-link:hover { transform: translateX(3px); color: #5b21b6; }

/* ── Featured strip (Clone Apps) ── */
.mm-featured-strip {
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(12,15,29,0.07);
}
.mm-featured-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(109,40,217,0.6); margin-bottom: 9px;
  font-family: 'Roboto Serif', Georgia, serif;
}
.mm-featured-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mm-feat-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; padding: 13px 10px; border-radius: 12px;
  border: 1px solid rgba(12,15,29,0.08);
  background: #faf9ff;
  text-decoration: none; text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mm-feat-card:hover {
  border-color: rgba(139,92,246,0.30);
  background: #f5f3ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(12,8,30,0.09);
}
.mm-feat-card--active { border-color: rgba(139,92,246,0.38); background: #ede9fe; }
.mm-feat-ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.mm-feat-ic .mm-svg-ic { width: 18px; height: 18px; }
.mm-feat-ic--purple { background: rgba(124,58,237,0.10); color: #7c3aed; }
.mm-feat-ic--amber  { background: rgba(217,119,6,0.10);  color: #d97706; }
.mm-feat-ic--rose   { background: rgba(225,29,72,0.10);  color: #e11d48; }
.mm-feat-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 12px; font-weight: 700; color: #0c0f1d; line-height: 1.2;
}
.mm-feat-tag {
  font-size: 9px; font-weight: 600; color: #7c3aed;
  background: rgba(139,92,246,0.08); border-radius: 100px; padding: 2px 8px;
  font-family: 'Roboto Serif', Georgia, serif;
}

/* ─────────────────────────────────────────────
   CTA BUTTON
───────────────────────────────────────────── */
.mm-actions { flex-shrink: 0; }
.mm-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 11px;
  background: linear-gradient(125deg, #8B5CF6 0%, #7c3aed 55%, #0891b2 100%);
  background-size: 200% auto;
  color: #fff; font-size: 14px; font-weight: 700;
  text-decoration: none;
  font-family: 'Roboto Serif', Georgia, serif;
  letter-spacing: -0.1px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 18px rgba(124,58,237,0.30), 0 1px 4px rgba(0,0,0,0.10);
  transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
  animation: ctaGlow 3.5s ease-in-out infinite;
}
.mm-cta::before {
  content: '';
  position: absolute; top: -50%; left: -70%;
  width: 45%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 4.5s ease-in-out infinite 1.2s;
  pointer-events: none;
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 4px 18px rgba(124,58,237,0.28), 0 1px 4px rgba(0,0,0,0.10); }
  50%      { box-shadow: 0 6px 26px rgba(124,58,237,0.48), 0 1px 4px rgba(0,0,0,0.12); }
}
@keyframes ctaShine {
  0%         { left: -70%; }
  28%, 100%  { left: 130%; }
}
.mm-cta:hover {
  background-position: right center;
  box-shadow: 0 8px 30px rgba(124,58,237,0.45), 0 2px 8px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.mm-cta-arrow { transition: transform 0.22s ease; }
.mm-cta:hover .mm-cta-arrow { transform: translateX(3px); }

/* ─────────────────────────────────────────────
   BURGER
───────────────────────────────────────────── */
.mm-burger {
  display: none; margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid rgba(12,8,30,0.12);
  border-radius: 11px;
  background: rgba(12,8,30,0.04);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mm-burger:hover { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.30); }
.mm-burger span {
  display: block; height: 2px; border-radius: 2px;
  background: #2d2550;
  transition: transform 0.28s cubic-bezier(0.68,-0.55,0.27,1.55), opacity 0.22s, width 0.22s;
}
.mm-burger span:nth-child(1) { width: 22px; }
.mm-burger span:nth-child(2) { width: 15px; }
.mm-burger span:nth-child(3) { width: 22px; }
.mm-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.mm-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mm-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ─────────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────────── */
.mm-mobile {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 100vw);
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid rgba(12,8,30,0.10);
  z-index: 210;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
  padding: 72px 20px 80px;
  box-shadow: -12px 0 40px rgba(12,8,30,0.12);
}
.mm-mobile.open { transform: translateX(0); }

.mm-mobile-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 209;
  background: rgba(12,8,30,0.40);
  opacity: 0; transition: opacity 0.3s ease;
}
.mm-mobile-backdrop.open { display: block; opacity: 1; }

.mm-mobile-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border: 1px solid rgba(12,8,30,0.12);
  border-radius: 10px;
  background: rgba(12,8,30,0.04);
  color: #2d2550; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mm-mobile-close:hover { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.30); }

.mm-mobile-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 0 4px 18px;
  border-bottom: 1px solid rgba(12,8,30,0.08);
  margin-bottom: 10px;
  text-decoration: none;
}
.mm-mobile-logo img { height: 28px; width: auto; }

.mm-mobile-inner { display: flex; flex-direction: column; gap: 2px; }

.mm-m-group {
  border-bottom: 1px solid rgba(12,8,30,0.07);
  padding: 2px 0;
}
.mm-m-group summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 8px; cursor: pointer;
  font-size: 15.5px; font-weight: 700; color: #1e1740;
  font-family: 'Lora', Georgia, serif; letter-spacing: -0.2px;
  list-style: none;
  transition: color 0.2s;
}
.mm-m-group summary::-webkit-details-marker { display: none; }
.mm-m-group summary svg { transition: transform 0.25s; opacity: 0.45; }
.mm-m-group[open] summary { color: #6d28d9; }
.mm-m-group[open] summary svg { transform: rotate(180deg); opacity: 1; }

.mm-m-cat { padding: 4px 0 10px; }
.mm-m-cat-head {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(12,15,29,0.40);
  margin: 10px 8px 5px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Roboto Serif', Georgia, serif;
}
.mm-m-cat-head .mm-cat-ic { width: 22px; height: 22px; }

.mm-m-link {
  display: block; padding: 9px 12px; border-radius: 9px;
  font-size: 14px; color: rgba(12,15,29,0.72);
  font-family: 'Roboto Serif', Georgia, serif;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mm-m-link:hover, .mm-m-link--cur { background: rgba(139,92,246,0.07); color: #6d28d9; }
.mm-m-link--ic { display: flex; align-items: center; gap: 10px; }
.mm-m-ic {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(139,92,246,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: #7c3aed; flex-shrink: 0;
}
.mm-m-ic .mm-svg-ic { width: 14px; height: 14px; }

.mm-cta--mobile {
  margin-top: 20px; justify-content: center;
  padding: 14px 22px; font-size: 15px; border-radius: 13px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .mm-bar { padding: 0 18px; gap: 16px; }
  .mm-link { font-size: 14px; padding: 9px 12px; }
}
@media (max-width: 960px) {
  .mm-nav, .mm-actions { display: none; }
  .mm-burger { display: inline-flex; }
  .mm-bar { height: 60px; }
}
