/* ==========================================================================
   gov.michaelism.org — Government & Institutional Services
   Clean, formal, no-animation professional stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-color: #ffffff;
  --section-bg: #f8f9fa;
  --primary: #1a365d;
  --accent: #b8860b;
  --text-color: #1a1a2e;
  --text-secondary: #475569;
  --border: #e2e8f0;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: 2.25rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--section-bg);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0.75rem 0 1rem;
}

/* ---------- Page Navigation ---------- */
.gov-page-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 5%;
  background: rgba(10, 15, 30, 0.95);
  border-bottom: 1px solid rgba(26, 54, 93, 0.25);
  position: relative;
  overflow: hidden;
}
.gov-page-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.gov-page-nav a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(59, 130, 246, 0.3);
}
.gov-page-nav a.page-active {
  color: #fff;
}
.gov-page-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent, #b8860b), transparent);
  animation: nav-scan 4s linear infinite;
}
@keyframes nav-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (max-width: 600px) {
  .gov-page-nav { flex-wrap: wrap; gap: 0.8rem 1.5rem; }
}

/* ---------- Header / Navigation ---------- */
.mm-header {
  background: var(--bg-color);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.mm-header--institutional {
  background: var(--bg-color);
}

.mm-nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.mm-logo {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.mm-logo img {
  flex-shrink: 0;
  height: 32px;
  width: auto;
}

.mm-logo:hover {
  text-decoration: none;
}

.mm-links {
  display: flex;
  gap: 0.6rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.mm-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mm-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.mm-links a[aria-current="page"],
.mm-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.mm-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.35rem 0.6rem;
  font-size: 1.25rem;
  color: var(--primary);
  cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: var(--primary);
  color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ---------- Trusted Section ---------- */
.trusted {
  padding: 3rem 0;
  background: var(--section-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-item {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.trusted-item strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
}

.btn--primary:hover {
  background: #0f2440;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn--hero {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn--hero:hover {
  background: #9a7209;
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--primary);
  color: #ffffff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}
.hero-img-container {
  margin: 2rem auto 0;
  width: 100%;
  max-width: 1200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-img-container img {
  width: 100%;
  height: auto;
  display: block;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 0;
}

/* ---------- Services / Tabs ---------- */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 0;
  overflow-x: auto;
}

.tab-btn {
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
  font-weight: 600;
  border-bottom-color: var(--accent);
}

.tab-panel {
  display: none;
  padding: 2rem 0;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin-bottom: 1rem;
}

.tab-panel ul {
  list-style: none;
  padding: 0;
}

.tab-panel li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.tab-panel li:last-child {
  border-bottom: none;
}

.tab-panel li::before {
  content: "\2014\00a0";
  color: var(--accent);
}

/* ---------- Tech Stack ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tech-item {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

/* ---------- Engagement Models ---------- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.model-card {
  background: var(--bg-color);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 4px;
  padding: 2rem;
}

.model-card h3 {
  margin-bottom: 0.5rem;
}

.model-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-color);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- Metrics ---------- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ---------- Service Context Box ---------- */
.context-box {
  background: var(--section-bg);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.context-box p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-style: italic;
}

/* ---------- Partnership Types ---------- */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.partnership-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.partnership-card h3 {
  margin-bottom: 0.5rem;
}

.partnership-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.partnership-card ul {
  list-style: none;
  padding: 0;
}

.partnership-card li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
}

.partnership-card li::before {
  content: "\2014\00a0";
  color: var(--accent);
}

/* ---------- Case Studies ---------- */
.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-study {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.case-study-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.case-study h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.case-study p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ---------- Blockquote ---------- */
.pullquote {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.pullquote blockquote {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.pullquote cite {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: normal;
}

/* ---------- Contact Form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-color);
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.contact-sidebar h3 {
  margin-bottom: 1rem;
}

.contact-sidebar p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-info-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 0.15rem;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---------- Volunteer Service Section ---------- */
.service-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  break-inside: avoid;
}

.service-list li::before {
  content: "\2014\00a0";
  color: var(--accent);
}

/* ---------- Footer ---------- */
.mm-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
}

.mm-footer-links {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.mm-footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.mm-footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  padding: 0.2rem 0;
}

.mm-footer-col a:hover {
  color: #ffffff;
  text-decoration: none;
}

.mm-footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.8rem;
}

.mm-footer-bottom p {
  margin-bottom: 0.25rem;
}

/* ---------- Dropdown Navigation ---------- */
.mm-dropdown {
  position: relative;
  display: inline-block;
}
.mm-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.mm-dropdown-toggle:hover,
.mm-dropdown.active .mm-dropdown-toggle {
  opacity: 1;
}
.mm-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 160px;
  z-index: 1001;
}
.mm-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.mm-dropdown:hover .mm-dropdown-menu,
.mm-dropdown.open .mm-dropdown-menu {
  display: flex;
  flex-direction: column;
}
.mm-dropdown-menu a {
  padding: 0.5rem 1.2rem;
  white-space: nowrap;
  color: var(--text-secondary);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s, background 0.3s;
}
.mm-dropdown-menu a:hover {
  opacity: 1;
  background: var(--section-bg);
}
.mm-dropdown-menu a.active {
  color: var(--primary);
  font-weight: 600;
  opacity: 1;
}
.mm-ecosystem-link {
  opacity: 0.6;
  font-size: 0.85em;
}
.mm-ecosystem-link:hover {
  opacity: 1;
}

/* ---------- Utility ---------- */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-studies {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mm-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  .mm-links.open {
    display: flex;
  }

  .mm-menu-toggle {
    display: block;
  }

  .mm-nav {
    position: relative;
  }

  .mm-dropdown {
    width: 100%;
  }
  .mm-dropdown-toggle {
    display: none;
  }
  .mm-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    transform: none;
    background: none;
    border: none;
    padding: 0;
    min-width: auto;
  }
  .mm-dropdown-menu a {
    padding: 0.75rem 1rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .cards-grid,
  .models-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    min-width: 50%;
  }

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .tabs {
    overflow-x: auto;
  }

  .mm-footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-list {
    columns: 1;
  }

  .section {
    padding: 3rem 0;
  }
}

/* ---------- Print ---------- */
@media print {
  .mm-header,
  .mm-footer,
  .mm-menu-toggle,
  .btn,
  .cta-section {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
    font-size: 11pt;
  }

  h1, h2, h3, h4 {
    color: #000000;
  }

  .hero {
    background: #ffffff;
    color: #000000;
    padding: 1rem 0;
  }

  .hero h1 {
    color: #000000;
  }

  .hero .subtitle {
    color: #333333;
  }

  .page-header {
    background: #ffffff;
    color: #000000;
    padding: 1rem 0;
  }

  .page-header h1 {
    color: #000000;
  }

  .page-header p {
    color: #333333;
  }

  .section--alt {
    background: #ffffff;
  }

  .card,
  .model-card,
  .partnership-card,
  .case-study,
  .metric,
  .tech-item {
    border: 1px solid #cccccc;
    break-inside: avoid;
  }

  a {
    color: #000000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666666;
  }

  .mm-nav a[href]::after,
  .mm-footer a[href]::after {
    content: none;
  }
}
