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

:root {
  --mm-navy: #144787;
  --mm-navy-deep: #0f3775;
  --mm-blue: #3680d3;
  --mm-sky: #78d1f6;
  --mm-ink: #1d2939;
  --mm-muted: #667085;
  --mm-line: #eaecf0;
  --mm-mist: #ebf0f3;
  --mm-white: #ffffff;
  --mm-radius: 12px;
  --mm-radius-lg: 16px;
  --mm-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
  --mm-font: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body.mm {
  margin: 0;
  font-family: var(--mm-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-ink);
  background: var(--mm-white);
  overflow-x: hidden;
}

:where(.mm) img { display: block; max-width: 100%; height: auto; border-radius: var(--mm-radius); }

:where(.mm) a { color: var(--mm-navy); }

:where(.mm) :is(h1, h2, h3) { font-family: var(--mm-font); line-height: 1.2; margin: 0; }

:where(.mm) p { margin: 0; }

:where(.mm) ul { margin: 0; padding: 0; list-style: none; }

:where(.mm) figure { margin: 0; }

:where(.mm) :focus-visible { outline: 3px solid var(--mm-blue); outline-offset: 3px; border-radius: 4px; }

.mm-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.mm-skip {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--mm-white);
  color: var(--mm-navy);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.mm-skip:focus { top: 8px; }

.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--mm-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.mm-btn:hover { transform: translateY(-1px); }

.mm .mm-btn-sky { background: var(--mm-sky); color: var(--mm-navy); }

.mm .mm-btn-sky:hover { background: var(--mm-white); color: var(--mm-navy); }

.mm .mm-btn-navy { background: var(--mm-navy); color: var(--mm-white); }

.mm .mm-btn-navy:hover { background: var(--mm-navy-deep); color: var(--mm-white); }

.mm .mm-btn-outline { background: var(--mm-white); color: var(--mm-navy); border-color: var(--mm-navy); }

.mm .mm-btn-outline:hover { background: var(--mm-navy); color: var(--mm-white); }

.mm-btn-small { min-height: 36px; padding: 6px 16px; font-size: 12.5px; }

.mm-topbar { background: var(--mm-navy); color: var(--mm-white); font-size: 14px; }

.mm-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-block: 6px;
}

.mm .mm-topbar-call { color: var(--mm-white); font-weight: 700; text-decoration: none; white-space: nowrap; }

.mm .mm-topbar-call:hover { text-decoration: underline; }

.mm .mm-topbar :focus-visible { outline-color: var(--mm-sky); }

.mm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mm-white);
  box-shadow: 0 1px 0 var(--mm-line), 0 6px 18px rgba(16, 24, 40, 0.06);
}

.mm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.mm-brand { flex: 0 0 auto; display: block; }

.mm .mm-brand img { height: 60px; width: auto; border-radius: 6px; }

.mm-nav > ul { display: flex; align-items: center; gap: 2px; }

.mm-nav a {
  display: block;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--mm-navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.mm-nav a:hover { color: var(--mm-navy-deep); background: #eaf3fc; }

.mm-has-sub { position: relative; }

.mm-has-sub > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.mm-nav .mm-sub {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 260px;
  padding: 8px;
  background: var(--mm-white);
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
}

.mm-has-sub:hover > .mm-sub,
.mm-has-sub:focus-within > .mm-sub { display: flex; }

.mm-nav .mm-sub a { font-size: 14.5px; font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--mm-ink); white-space: normal; }

.mm-nav .mm-sub a:hover { color: var(--mm-navy); }

.mm-header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.mm-menu { display: none; }

.mm-menu > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 2px solid var(--mm-line);
  border-radius: 8px;
  color: var(--mm-navy);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.mm-menu > summary::-webkit-details-marker { display: none; }

.mm-burger,
.mm-burger::before,
.mm-burger::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mm-burger { position: relative; }

.mm-burger::before, .mm-burger::after { content: ""; position: absolute; left: 0; }

.mm-burger::before { top: -6px; }

.mm-burger::after { top: 6px; }

.mm-menu[open] > summary { background: var(--mm-navy); border-color: var(--mm-navy); color: var(--mm-white); }

.mm-menu-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 8px clamp(16px, 4vw, 32px) 24px;
  background: var(--mm-white);
  border-top: 1px solid var(--mm-line);
  box-shadow: var(--mm-shadow);
}

.mm-menu-panel a {
  display: block;
  padding: 11px 4px;
  border-bottom: 1px solid var(--mm-line);
  color: var(--mm-navy);
  font-weight: 800;
  text-decoration: none;
}

.mm-menu-panel ul ul a { padding-left: 20px; font-weight: 600; color: var(--mm-ink); }

.mm-menu-group { margin-top: 16px; }

.mm-menu-group a { color: var(--mm-navy); font-weight: 700; }

.mm-subnav { background: var(--mm-navy); }

.mm-subnav ul { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 0 6px; }

.mm-subnav a {
  display: block;
  padding: 11px 10px;
  color: var(--mm-white);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
}

.mm-subnav a:hover { color: var(--mm-sky); }

.mm-subnav :focus-visible { outline-color: var(--mm-sky); }

.mm-hero {
  color: var(--mm-white);
  background: linear-gradient(90deg, var(--mm-navy-deep) 0%, var(--mm-navy) 45%, var(--mm-sky) 100%);
  padding-block: clamp(40px, 6vw, 80px) clamp(40px, 5vw, 64px);
}

.mm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.mm-hero h1 {
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.mm-hero-sub { font-size: clamp(18px, 1.8vw, 22px); line-height: 1.45; margin-bottom: 28px; max-width: 34ch; }

.mm .mm-hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--mm-radius-lg);
  box-shadow: 0 24px 48px rgba(10, 30, 70, 0.35);
}

.mm .mm-hero :focus-visible { outline-color: var(--mm-white); }

.mm-products { margin-top: clamp(40px, 5vw, 64px); }

.mm-products h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

.mm-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.mm .mm-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  height: 100%;
  padding: 18px 10px;
  border-radius: 10px;
  background: var(--mm-white);
  color: var(--mm-navy);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(10, 30, 70, 0.18);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.mm .mm-tile:hover { background: var(--mm-sky); transform: translateY(-2px); }

.mm-icon { flex: 0 0 auto; color: var(--mm-blue); }

.mm-tile:hover .mm-icon { color: var(--mm-navy); }

.mm-more { margin-top: 18px; }

.mm-more > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  background: rgba(15, 55, 117, 0.35);
  color: var(--mm-white);
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.mm-more > summary::-webkit-details-marker { display: none; }

.mm-more > summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.mm-more[open] > summary::after { transform: rotate(-135deg); }

.mm-more > .mm-tiles { margin-top: 14px; }

.mm-welcome { padding-block: clamp(48px, 6vw, 80px); }

.mm-welcome > .mm-container > h2,
.mm-section-title {
  color: var(--mm-navy);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
}

.mm-lede {
  max-width: 62ch;
  margin: 12px auto 0;
  color: var(--mm-ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  text-align: center;
}

.mm-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.mm-value {
  padding: 28px 26px;
  border: 1px solid var(--mm-line);
  border-top: 4px solid var(--mm-sky);
  border-radius: var(--mm-radius-lg);
  background: var(--mm-white);
  text-align: center;
}

.mm-value h3 { color: var(--mm-navy); font-size: 19px; font-weight: 800; margin-bottom: 12px; }

.mm-value p { color: var(--mm-muted); font-size: 15.5px; }

.mm-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 72px);
}

.mm-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--mm-radius-lg);
  background: linear-gradient(135deg, var(--mm-navy-deep) 0%, var(--mm-navy) 55%, var(--mm-blue) 100%);
  color: var(--mm-white);
}

.mm .mm-panel img { width: min(240px, 70%); height: auto; border-radius: 8px; }

.mm-panel-line { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; line-height: 1.2; }

.mm .mm-panel :focus-visible { outline-color: var(--mm-sky); }

.mm-best h2 { color: var(--mm-navy); font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; margin-bottom: 14px; }

.mm-best > p { color: var(--mm-muted); }

.mm-ticks { display: grid; gap: 10px; margin: 20px 0; }

.mm-ticks li { position: relative; padding-left: 34px; color: var(--mm-ink); font-weight: 600; }

.mm-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mm-navy);
}

.mm-ticks li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--mm-white);
  border-bottom: 2px solid var(--mm-white);
  transform: rotate(45deg);
}

.mm-strong { color: var(--mm-navy); font-weight: 800; }

.mm-cards-band { padding-block: clamp(48px, 6vw, 80px); background: linear-gradient(180deg, #f5f8fb 0%, var(--mm-white) 100%); }

.mm-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.mm-card {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 20px;
  background: var(--mm-white);
  box-shadow: var(--mm-shadow);
  scroll-margin-top: 140px;
}

.mm .mm-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--mm-radius); }

.mm-card-body { display: flex; flex-direction: column; flex: 1; gap: 12px; padding: 20px 14px 14px; text-align: center; }

.mm-card-body h2 { color: var(--mm-navy); font-size: 22px; font-weight: 800; }

.mm-card-body p { color: var(--mm-muted); font-size: 15.5px; flex: 1; }

.mm-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 6px; }

.mm .mm-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--mm-line);
  border-radius: 999px;
  color: var(--mm-navy);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.mm .mm-chips a:hover { border-color: var(--mm-navy); background: #f0f6fd; }

.mm-scheme-band { padding-block: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 88px); }

.mm-scheme {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.mm-scheme-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border: 2px solid var(--mm-navy);
  border-radius: var(--mm-radius-lg);
  background: var(--mm-white);
}

.mm .mm-scheme-card img { width: 96px; height: auto; border-radius: 10px; }

.mm-scheme-card h3 { color: var(--mm-navy); font-size: 20px; font-weight: 800; margin-bottom: 14px; }

.mm-feature-band { padding-block: clamp(40px, 5vw, 64px); background: var(--mm-mist); }

.mm-feature-band + .mm-feature-band { padding-top: 0; }

.mm-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 36px);
}

.mm .mm-feature-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--mm-radius-lg);
}

.mm-feature-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--mm-radius-lg);
  background: var(--mm-navy);
  color: var(--mm-white);
  text-align: center;
}

.mm-feature-panel h2 { font-size: clamp(26px, 2.8vw, 34px); font-weight: 800; }

.mm-kicker { display: block; font-size: 0.72em; font-weight: 700; color: var(--mm-sky); margin-bottom: 4px; }

.mm-kicker-after { margin: 6px 0 0; }

.mm-feature-panel p { max-width: 48ch; font-size: 17px; }

.mm .mm-feature-panel :focus-visible { outline-color: var(--mm-sky); }

.mm-group-band {
  padding-block: clamp(48px, 6vw, 72px);
  background: linear-gradient(180deg, var(--mm-navy) 0%, var(--mm-blue) 70%, var(--mm-sky) 100%);
}

.mm-group-band .mm-section-title { color: var(--mm-white); }

.mm-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.mm .mm-group-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 14px 14px 18px;
  border-radius: var(--mm-radius-lg);
  background: var(--mm-white);
  color: var(--mm-navy);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mm .mm-group-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(10, 30, 70, 0.3); }

.mm .mm-group-card img { width: 100%; height: 110px; object-fit: contain; border-radius: 10px; }

.mm .mm-group-band :focus-visible { outline-color: var(--mm-white); }

.mm-strip {
  padding: 18px 16px;
  background: var(--mm-navy-deep);
  color: var(--mm-white);
  font-size: 17px;
  text-align: center;
}

.mm-strip strong { color: var(--mm-sky); font-weight: 800; }

.mm-footer { background: var(--mm-navy); color: rgba(255, 255, 255, 0.88); font-size: 15px; }

.mm-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px 28px;
  padding-block: 56px 40px;
}

.mm-footer h2 {
  color: var(--mm-white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mm-foot-list { display: grid; gap: 8px; }

.mm .mm-footer a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }

.mm .mm-footer a:hover { color: var(--mm-sky); text-decoration: underline; }

.mm .mm-footer :focus-visible { outline-color: var(--mm-sky); }

.mm-foot-strong { margin-top: 16px; color: var(--mm-white); font-weight: 800; }

.mm .mm-foot-logo { width: 200px; margin-top: 24px; border-radius: 8px; }

.mm-contact { margin: 0; display: grid; gap: 4px; }

.mm-contact dt { color: var(--mm-white); font-weight: 800; }

.mm-contact dd { margin: 0 0 12px; }

.mm-contact address { font-style: normal; }

.mm-filetype { font-size: 0.85em; opacity: 0.75; }

.mm-foot-socials-title { margin-top: 28px; }

.mm-socials { display: flex; flex-wrap: wrap; gap: 8px; }

.mm .mm-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-weight: 700;
}

.mm-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.18); }

.mm-footer-bottom p { padding-block: 18px; font-size: 13.5px; text-align: center; }

@media (max-width: 1140px) {
  .mm-nav a { padding: 10px 8px; font-size: 12px; }
}

@media (max-width: 1024px) {
  .mm-nav, .mm-subnav { display: none; }
  .mm-menu { display: block; }
  .mm-header-row { min-height: 68px; }
  .mm .mm-brand img { height: 48px; }
  .mm-hero-grid, .mm-split, .mm-feature { grid-template-columns: minmax(0, 1fr); }
  .mm-hero { background: linear-gradient(180deg, var(--mm-navy-deep) 0%, var(--mm-navy) 55%, var(--mm-blue) 100%); }
  .mm-hero-sub { max-width: none; }
  .mm .mm-feature-photo { min-height: 0; height: auto; aspect-ratio: 16 / 10; }
  .mm-footer-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .mm-header-actions { gap: 6px; }
  .mm .mm-brand img { height: 42px; }
  .mm .mm-signin, .mm-menu > summary { padding-inline: 10px; font-size: 13px; }
  .mm-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mm-scheme { grid-template-columns: minmax(0, 1fr); }
  .mm-scheme-card { grid-template-columns: 64px minmax(0, 1fr); gap: 16px; padding: 20px; }
  .mm .mm-scheme-card img { width: 64px; }
  .mm-cards, .mm-group { grid-template-columns: minmax(0, 1fr); }
  .mm-topbar-row { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mm *, .mm *::before, .mm *::after { transition: none !important; }
  .mm .mm-btn:hover, .mm .mm-tile:hover, .mm .mm-group-card:hover { transform: none; }
}
