/*
  company-v2.css — MyMinistries.app Landing Page V2
  Design tokens from Stitch Blue/Slate system
  Copyright (C) by Luis Silva & Adelino Camara. All Rights Reserved.
*/

/* ═══ CSS CUSTOM PROPERTIES ═══════════════════════════════════════════════ */
:root {
  --mm-primary: #805dca;
  --mm-primary-light: #a78bfa;
  --mm-primary-dark: #5b40a3;
  --mm-navy: #1B2A6B;
  --mm-navy-dark: #0f172a;
  --mm-cyan: #1FACD4;
  --mm-success: #00AB55;
  --mm-alert: #FFAB00;
  --mm-urgency: #FF5630;
  --mm-bg: #fafbff;
  --mm-surface: #ffffff;
  --mm-border: #e8ecf4;
  --mm-text: #1e293b;
  --mm-text-muted: #64748b;
  --mm-radius-card: 22px;
  --mm-radius-btn: 12px;
  --mm-radius-pill: 30px;
  --mm-gradient-hero: linear-gradient(135deg, #805dca 0%, #1FACD4 100%);
  --mm-gradient-cta: linear-gradient(90deg, #805dca 0%, #1FACD4 100%);
}

/* ═══ TYPOGRAPHY ══════════════════════════════════════════════════════════ */
.mm-font-heading {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
}

.mm-font-body {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

/* ═══ DOT PATTERN BACKGROUND ══════════════════════════════════════════════ */
.mm-dot-pattern {
  background-image: radial-gradient(circle, rgba(128, 93, 202, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.mm-dot-pattern-light {
  background-image: radial-gradient(circle, rgba(128, 93, 202, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ═══ PILL TAGS ══════════════════════════════════════════════════════════ */
.mm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--mm-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mm-pill-primary {
  background: rgba(128, 93, 202, 0.12);
  color: var(--mm-primary);
  border: 1px solid rgba(128, 93, 202, 0.25);
}

.mm-pill-cyan {
  background: rgba(31, 172, 212, 0.12);
  color: var(--mm-cyan);
  border: 1px solid rgba(31, 172, 212, 0.25);
}

.mm-pill-success {
  background: rgba(0, 171, 85, 0.1);
  color: var(--mm-success);
  border: 1px solid rgba(0, 171, 85, 0.25);
}

.mm-pill-navy {
  background: rgba(27, 42, 107, 0.1);
  color: var(--mm-navy);
  border: 1px solid rgba(27, 42, 107, 0.25);
}

/* ═══ GRADIENT TEXT ══════════════════════════════════════════════════════ */
.mm-gradient-text {
  background: var(--mm-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mm-text-purple { color: var(--mm-primary); }
.mm-text-cyan { color: var(--mm-cyan); }

/* ═══ HERO SECTION ═══════════════════════════════════════════════════════ */
.mm-hero {
  background: var(--mm-bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.mm-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(128, 93, 202, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mm-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 172, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mm-hero-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--mm-navy-dark);
  letter-spacing: -0.02em;
}

.mm-hero-subtitle {
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--mm-text-muted);
  max-width: 520px;
}

/* CTA Buttons */
.mm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--mm-gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--mm-radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(128, 93, 202, 0.3);
}

.mm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(128, 93, 202, 0.4);
  color: #fff;
  text-decoration: none;
}

.mm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--mm-surface);
  color: var(--mm-navy);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--mm-radius-btn);
  border: 1.5px solid var(--mm-border);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mm-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--mm-primary);
  color: var(--mm-primary);
  text-decoration: none;
}

/* Trust Bar */
.mm-trust-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.mm-avatar-stack {
  display: flex;
  align-items: center;
}

.mm-avatar-stack span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.mm-avatar-stack span:first-child { margin-left: 0; background: var(--mm-primary); }
.mm-avatar-stack span:nth-child(2) { background: var(--mm-cyan); }
.mm-avatar-stack span:nth-child(3) { background: var(--mm-success); }
.mm-avatar-stack span:nth-child(4) { background: var(--mm-alert); filter: brightness(0.9); }

/* Browser Mockup */
.mm-browser-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--mm-border);
}

.mm-browser-bar {
  background: #f1f5f9;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--mm-border);
}

.mm-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mm-browser-dot:nth-child(1) { background: #ff5f57; }
.mm-browser-dot:nth-child(2) { background: #febc2e; }
.mm-browser-dot:nth-child(3) { background: #28c840; }

.mm-browser-url {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--mm-text-muted);
  margin: 0 8px;
  border: 1px solid var(--mm-border);
}

.mm-browser-content {
  padding: 16px;
  background: #f8faff;
  min-height: 280px;
}

/* Stat Cards in mockup */
.mm-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--mm-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mm-stat-value {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--mm-navy-dark);
  line-height: 1;
}

.mm-stat-label {
  font-size: 11px;
  color: var(--mm-text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* Module Grid in mockup */
.mm-module-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--mm-border);
  font-size: 11px;
  font-weight: 600;
  color: var(--mm-text);
  white-space: nowrap;
}

/* Floating badges on hero */
.mm-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border-radius: var(--mm-radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  border: 1px solid var(--mm-border);
}

.mm-floating-badge-top {
  top: -12px;
  right: 20px;
}

.mm-floating-badge-bottom {
  bottom: -12px;
  left: 20px;
}

/* ═══ STATS BAR ══════════════════════════════════════════════════════════ */
.mm-stats-bar {
  background: var(--mm-navy);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.mm-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(31, 172, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mm-stat-number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--mm-gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mm-stat-desc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ═══ SUPER VENTAJAS SECTION ════════════════════════════════════════════ */
.mm-ventajas {
  background: var(--mm-bg);
  padding: 80px 0;
  position: relative;
}

.mm-ventajas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .mm-ventajas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .mm-ventajas-grid { grid-template-columns: repeat(3, 1fr); }
}

.mm-ventaja-card {
  background: var(--mm-surface);
  border-radius: var(--mm-radius-card);
  padding: 28px 24px 24px;
  border: 1.5px solid var(--mm-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mm-ventaja-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(128, 93, 202, 0.12);
  border-color: rgba(128, 93, 202, 0.3);
}

.mm-ventaja-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mm-gradient-cta);
  border-radius: var(--mm-radius-card) var(--mm-radius-card) 0 0;
}

.mm-ventaja-card:nth-child(1) .mm-ventaja-accent { background: linear-gradient(90deg, #805dca, #a78bfa); }
.mm-ventaja-card:nth-child(2) .mm-ventaja-accent { background: linear-gradient(90deg, #1FACD4, #0ea5e9); }
.mm-ventaja-card:nth-child(3) .mm-ventaja-accent { background: linear-gradient(90deg, #00AB55, #10b981); }
.mm-ventaja-card:nth-child(4) .mm-ventaja-accent { background: linear-gradient(90deg, #FF5630, #f97316); }
.mm-ventaja-card:nth-child(5) .mm-ventaja-accent { background: linear-gradient(90deg, #FFAB00, #f59e0b); }
.mm-ventaja-card:nth-child(6) .mm-ventaja-accent { background: linear-gradient(90deg, #1B2A6B, #3b82f6); }

.mm-ventaja-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(128, 93, 202, 0.12);
  color: var(--mm-primary);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mm-ventaja-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.mm-ventaja-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--mm-navy-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.mm-ventaja-bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--mm-text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.mm-ventaja-bullet::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mm-primary);
  margin-top: 6px;
  flex-shrink: 0;
}

.mm-unique-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 10px;
  background: linear-gradient(90deg, #FF5630, #ff8c60);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ═══ CERTIFICATES SECTION V2 ═══════════════════════════════════════════ */
.mm-certs-section {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mm-certs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(128, 93, 202, 0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.mm-cert-card {
  background: var(--mm-surface);
  border-radius: 16px;
  padding: 20px 18px;
  border: 1.5px solid var(--mm-border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mm-cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(128, 93, 202, 0.1);
  border-color: rgba(128, 93, 202, 0.25);
}

.mm-cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.mm-cert-name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--mm-navy-dark);
  margin-bottom: 3px;
}

.mm-cert-desc {
  font-size: 12px;
  color: var(--mm-text-muted);
  line-height: 1.4;
}

/* QR Highlight Panel */
.mm-qr-panel {
  background: linear-gradient(135deg, var(--mm-navy) 0%, #1B2A6B 100%);
  border-radius: var(--mm-radius-card);
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mm-qr-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(31, 172, 212, 0.15);
}

.mm-qr-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  min-height: 120px;
}

.mm-qr-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease;
}

.mm-qr-verify-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
}

/* ═══ SECTION HEADERS ════════════════════════════════════════════════════ */
.mm-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.mm-section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--mm-navy-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}

.mm-section-subtitle {
  font-size: 1rem;
  color: var(--mm-text-muted);
  line-height: 1.6;
}

/* ═══ MOBILE RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .mm-hero { padding: 40px 0 40px; }
  .mm-hero-title { font-size: 1.8rem; }
  .mm-hero-subtitle { font-size: 0.95rem; }
  .mm-ventaja-card { padding: 22px 18px 18px; }
  .mm-qr-panel { padding: 24px 20px; }
  .mm-browser-content { min-height: 200px; }
}

@media (max-width: 768px) {
  .mm-floating-badge-top { top: -8px; right: 12px; }
  .mm-floating-badge-bottom { bottom: -8px; left: 12px; }
}

/* ═══ HERO DARK PANEL ════════════════════════════════════════════════════ */
.mm-hero-dark-panel {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--mm-radius-card);
  padding: 28px 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ═══ TOGGLE SECTION (A) ═════════════════════════════════════════════════ */
.mm-toggle-card {
  background: white;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.mm-toggle-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.mm-toggle-card .mm-tc-icon { font-size: 28px; margin-bottom: 8px; }
.mm-toggle-card .mm-tc-title { font-size: 13px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.mm-toggle-card .mm-tc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.mm-tc-badge-sin { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.mm-tc-badge-con { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* Dark mode toggle */
.dark .mm-toggle-card { background: #1e293b; border-color: #334155; }
.dark .mm-toggle-card .mm-tc-title { color: #f1f5f9; }

/* ═══ MODULES SECTION (B) ════════════════════════════════════════════════ */
.mm-mod-tile {
  background: white;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mm-mod-tile:hover { border-color: var(--mm-primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(128,93,202,0.15); }
.mm-mod-tile.active { border-color: var(--mm-primary); background: #f5f3ff; }
.mm-mod-tile .mm-mt-icon { font-size: 32px; margin-bottom: 8px; display: block; }
.mm-mod-tile .mm-mt-name { font-size: 13px; font-weight: 700; color: #1e293b; }

.mm-mod-detail {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  padding: 32px;
  margin-top: 16px;
  border: 1px solid #e2e8f0;
  animation: mmSlideDown 0.3s ease;
}

@keyframes mmSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dark .mm-mod-tile { background: #1e293b; }
.dark .mm-mod-tile:hover { background: #2d3a52; }
.dark .mm-mod-tile.active { background: #2d3a52; }
.dark .mm-mod-tile .mm-mt-name { color: #f1f5f9; }
.dark .mm-mod-detail { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-color: #334155; }

/* ═══ FORMALIZATION SECTION (C) ══════════════════════════════════════════ */
.mm-country-tab {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  background: white;
  color: #64748b;
  transition: all 0.2s ease;
}
.mm-country-tab:hover { border-color: var(--mm-primary); color: var(--mm-primary); }
.mm-country-tab.active { background: var(--mm-primary); color: white; border-color: var(--mm-primary); }

.mm-journey-step {
  position: relative;
  padding-left: 40px;
  padding-bottom: 24px;
}
.mm-journey-step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}
.mm-journey-step:last-child::before { display: none; }
.mm-journey-step .mm-js-number {
  position: absolute;
  left: 4px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mm-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-journey-step .mm-js-title { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.mm-journey-step .mm-js-desc { font-size: 13px; color: #64748b; margin-bottom: 8px; }
.mm-js-doc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin: 2px 4px 2px 0;
}
.mm-js-doc-auto { background: #dbeafe; color: #2563eb; }
.mm-js-doc-manual { background: #fef3c7; color: #d97706; }
.mm-js-unlock-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #f0fdf4;
  color: #16a34a;
  margin: 2px 4px 2px 0;
}

.dark .mm-country-tab { background: #1e293b; border-color: #334155; color: #94a3b8; }
.dark .mm-country-tab:hover { border-color: var(--mm-primary-light); color: var(--mm-primary-light); }
.dark .mm-country-tab.active { background: var(--mm-primary); color: white; border-color: var(--mm-primary); }
.dark .mm-journey-step .mm-js-title { color: #f1f5f9; }
.dark .mm-journey-step .mm-js-desc { color: #94a3b8; }
.dark .mm-journey-step::before { background: #334155; }

/* ═══ HERO TABS (Panel Switcher) ═════════════════════════════════════════ */
.mm-hero-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--mm-radius-pill);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--mm-border);
  background: var(--mm-surface);
  color: var(--mm-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.mm-hero-tab:hover {
  border-color: var(--mm-primary);
  color: var(--mm-primary);
}
.mm-hero-tab-active {
  background: var(--mm-primary) !important;
  color: #fff !important;
  border-color: var(--mm-primary) !important;
  box-shadow: 0 4px 12px rgba(128, 93, 202, 0.3);
}
.mm-hero-tab-inactive {
  /* default state — handled by base .mm-hero-tab */
}
.mm-hero-panel {
  animation: mmPanelFadeIn 0.3s ease;
}
@keyframes mmPanelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dark .mm-hero-tab { background: #1e293b; border-color: #334155; color: #94a3b8; }
.dark .mm-hero-tab:hover { border-color: var(--mm-primary-light); color: var(--mm-primary-light); }
.dark .mm-hero-tab-active { background: var(--mm-primary) !important; color: #fff !important; border-color: var(--mm-primary) !important; }

@media (max-width: 640px) {
  .mm-hero-tab { padding: 6px 12px; font-size: 11px; }
}

/* ═══ RESPONSIVE: INTERACTIVE SECTIONS ═══════════════════════════════════ */
@media (max-width: 640px) {
  .mm-mod-tile { padding: 16px 10px; }
  .mm-mod-tile .mm-mt-icon { font-size: 24px; }
  .mm-mod-tile .mm-mt-name { font-size: 11px; }
  .mm-mod-detail { padding: 20px 16px; }
  .mm-country-tab { padding: 8px 14px; font-size: 12px; }
  .mm-journey-step { padding-left: 32px; }
}
