/* ════════════════════════════════════════════════════════
   MAIN  —  Paylaşılan / global stiller
   ════════════════════════════════════════════════════════ */


/* ── Base ────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  background-color: var(--c-ink);
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--c-ink) !important;
  font-family: var(--font-sans);
}

code,
pre {
  font-family: var(--font-mono);
}

main,
header,
nav,
footer,
section {
  margin: 0;
}

main {
  background-color: var(--c-white);
}


/* ── Global utilities ────────────────────────────────── */

.mst-text-brand { color: var(--c-brand); }


/* ── Section offset ──────────────────────────────────── */

.mst-first-section {
  margin-top: var(--nav-h);
}

.admin-bar.page:not(.home) .mst-first-section {
  margin-top: calc(var(--nav-h) + 32px) !important;
}


/* ── Logo ────────────────────────────────────────────── */

.mst-logo {
  display: block;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.mst-logo--header {
  height: 68px;
  max-width: 280px;
}

.mst-logo--badge {
  height: 58px;
  max-width: 200px;
}

.mst-logo--footer {
  height: 68px;
  max-width: 320px;
}

.mst-logo--badge-footer {
  height: 36px;
  max-width: 160px;
}

.mst-footer-logo-panel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgb(255, 255, 255, 0.6);
  background: rgba(255, 255, 255);
  border-radius: 6px;
}

@media (max-width: 782px) {
  .mst-logo--header      { height: 48px; max-width: 220px; }
  .mst-logo--badge       { height: 40px; max-width: 150px; }
  .mst-logo--footer      { height: 56px; max-width: 260px; }
  .mst-logo--badge-footer{ height: 28px; max-width: 130px; }
}


/* ════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════ */

.mst-nav {
  position: fixed;
  inset-x: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.mst-nav.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 1px 0 var(--c-border), 0 4px 24px rgba(17, 17, 17, 0.07);
}

.admin-bar .mst-nav { top: 32px; }

@media (max-width: 782px) {
  .admin-bar .mst-nav { top: 0; }
}

/* ─ Inner container ─────────────────────── */

.mst-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
}

/* ─ Brand ───────────────────────────────── */

.mst-nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 0;
}

/* ─ Sağ grup (menü + toggle) ────────────── */

.mst-nav__right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* ─ Desktop menu ────────────────────────── */

.mst-nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
  gap: 0;
}

.mst-nav__item {
  display: flex;
  align-items: center;
  height: 100%;
}

.mst-nav__item--cta {
  height: auto;
  margin-left: 8px;
}

.mst-nav__link {
  display: flex;
  align-items: center;
  height: auto;
  align-self: center;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--c-body);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  border-radius: var(--radius);
  transition: background var(--t-fast), color var(--t-fast);
}

.mst-nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--ease);
}

.mst-nav__link:hover {
  background: var(--c-brand);
  color: var(--c-white);
}

.mst-nav__link:hover::after {
  transform: scaleX(0);
}

.mst-nav__link--active::after {
  transform: scaleX(1);
}

.mst-nav__link--active {
  color: var(--c-ink);
  font-weight: 500;
}

.mst-nav__link--cta {
  height: auto;
  padding: 9px 20px;
  background: var(--c-brand);
  color: var(--c-white) !important;
  font-weight: 500;
  font-size: 13px;
  border-radius: var(--radius);
  transition: background var(--t-fast);
}

.mst-nav__link--cta::after { display: none; }

.mst-nav__link--cta:hover {
  background: var(--c-brand-dark);
}

/* ─ Burger button ───────────────────────── */

.mst-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--c-ink);
  cursor: pointer;
  flex-shrink: 0;
}

.mst-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.mst-nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}

.mst-nav__toggle[aria-expanded="true"] .mst-nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mst-nav__toggle[aria-expanded="true"] .mst-nav__burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mst-nav__toggle[aria-expanded="true"] .mst-nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─ Mobile panel ────────────────────────── */

.mst-nav__mobile {
  display: none;
}

.mst-nav__mobile.is-open {
  display: block;
  position: fixed;
  inset-x: 0;
  top: var(--nav-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
  z-index: 99;
  overflow-y: auto;
  max-height: calc(100svh - var(--nav-h));
  width: 93%;
}

.admin-bar .mst-nav__mobile.is-open {
  top: calc(var(--nav-h) + 32px);
}

@media (max-width: 782px) {
  .admin-bar .mst-nav__mobile.is-open {
    top: var(--nav-h);
  }
}

.mst-nav__mobile-list {
  list-style: none;
  margin: 0;
  padding: 8px 20px 20px;
  display: flex;
  flex-direction: column;
}

.mst-nav__mobile-link {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-ink);
  text-decoration: none;
  transition: color var(--t-fast);
}

.mst-nav__mobile-list li:last-child .mst-nav__mobile-link {
  border-bottom: 0;
}

.mst-nav__mobile-link:hover {
  color: var(--c-brand);
}

.mst-nav__mobile-link--active {
  color: var(--c-brand);
  font-weight: 500;
}

.mst-nav__mobile-link--cta {
  margin-top: 12px;
  padding: 14px 20px;
  background: var(--c-brand);
  color: var(--c-white) !important;
  font-weight: 500;
  justify-content: center;
  border-bottom: 0;
}

.mst-nav__mobile-link--cta:hover {
  background: var(--c-brand-dark);
  color: var(--c-white);
}

/* ─ Responsive ──────────────────────────── */

@media (min-width: 768px) {
  .mst-nav__menu   { display: flex; }
  .mst-nav__toggle { display: none; }
  .mst-nav__inner  { padding: 0 48px; }
}


/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */

.mst-footer {
  background: var(--c-ink);
  padding: 0 24px;
}

.mst-footer__grid {
  display: grid;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0;
}

.mst-footer__brand {
  padding: 48px 0;
}

.mst-footer__brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mst-footer__desc {
  margin: 16px 0 0;
  max-width: 280px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

.mst-footer__col {
  padding: 40px 0;
}

.mst-footer__col-title {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.mst-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mst-footer__link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--t-fast);
}

.mst-footer__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.mst-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
}

.mst-footer__bottom a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

.mst-footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.mst-footer__copy em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

@media (min-width: 992px) {
  .mst-footer {
    padding: 0 48px;
  }

  .mst-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .mst-footer__brand {
    padding: 56px 48px 56px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mst-footer__col {
    padding: 56px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mst-footer__col:last-child {
    border-right: 0;
  }

  .mst-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}


/* ════════════════════════════════════════════════════════
   PDF VIEWER
   ════════════════════════════════════════════════════════ */

body.mst-pdf-viewer-open {
  overflow: hidden;
}

.mst-pdf-viewer {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.mst-pdf-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
}

.mst-pdf-viewer__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1240px, calc(100vw - 24px));
  height: calc(100vh - 24px);
  margin: 12px auto;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.2);
}

.mst-pdf-viewer__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-border);
}

.mst-pdf-viewer__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-brand);
}

.mst-pdf-viewer__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

.mst-pdf-viewer__actions {
  display: flex;
  flex-wrap: wrap;
}

.mst-pdf-viewer__link,
.mst-pdf-viewer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--c-ink);
  cursor: pointer;
  transition: background var(--t-fast);
}

.mst-pdf-viewer__link--primary {
  border-color: var(--c-brand);
  background: var(--c-brand);
  color: var(--c-white);
}

.mst-pdf-viewer__close:hover,
.mst-pdf-viewer__link:hover {
  background: var(--c-surface);
}

.mst-pdf-viewer__link--primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
}

.mst-pdf-viewer__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f3f3f3;
}

@media (max-width: 782px) {
  .mst-pdf-viewer__dialog {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    margin: 8px auto;
  }

  .mst-pdf-viewer__header {
    padding: 16px;
  }
}


/* ════════════════════════════════════════════════════════
   404 PAGE
   ════════════════════════════════════════════════════════ */

.mst-404 {
  border-bottom: 1px solid var(--c-border);
}

.mst-404__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  gap: 40px;
  align-items: start;
}

.mst-404__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-brand);
}

.mst-404__heading {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

.mst-404__heading strong {
  display: block;
  font-weight: 600;
}

.mst-404__text {
  margin: 20px 0 0;
  max-width: 620px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-body);
}

.mst-404__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}

.mst-404__btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}

.mst-404__btn--primary {
  background: var(--c-brand);
  color: var(--c-white);
}

.mst-404__btn--primary:hover {
  background: var(--c-brand-dark);
}

.mst-404__btn--secondary {
  border: 1px solid var(--c-border);
  border-left: 0;
  background: var(--c-white);
  color: var(--c-ink);
}

.mst-404__btn--secondary:hover {
  background: var(--c-surface);
}

.mst-404__sidebar {
  padding: 24px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}

.mst-404__sidebar-label {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-brand);
}

.mst-404__sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mst-404__sidebar-links a {
  font-size: 14px;
  color: var(--c-ink);
  text-decoration: none;
}

.mst-404__sidebar-links a:hover {
  text-decoration: underline;
}

.mst-404__contact {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-body);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mst-404__contact strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--c-ink);
}

@media (min-width: 992px) {
  .mst-404__inner {
    grid-template-columns: 1fr 360px;
    padding: 96px 48px;
  }
}


/* ════════════════════════════════════════════════════════
   FALLBACK (index.php)
   ════════════════════════════════════════════════════════ */

.mst-fallback {
  display: flex;
  min-height: calc(100vh - var(--nav-h));
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.mst-fallback__inner {
  max-width: 480px;
  text-align: center;
}

.mst-fallback__title {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}

.mst-fallback__text {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-body);
}


/* ════════════════════════════════════════════════════════
   SCROLL REVEAL  —  tüm sayfalarda geçerli
   ════════════════════════════════════════════════════════ */

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-reveal] { opacity: 0; }

[data-reveal].is-visible {
  animation: reveal-up 0.6s var(--ease-smooth) both;
}

[data-reveal][data-delay="1"].is-visible { animation-delay: 0.08s; }
[data-reveal][data-delay="2"].is-visible { animation-delay: 0.16s; }
[data-reveal][data-delay="3"].is-visible { animation-delay: 0.24s; }
[data-reveal][data-delay="4"].is-visible { animation-delay: 0.32s; }
[data-reveal][data-delay="5"].is-visible { animation-delay: 0.40s; }
[data-reveal][data-delay="6"].is-visible { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal]            { opacity: 1; }
  [data-reveal].is-visible { animation: none; }
}


/* ════════════════════════════════════════════════════════
   NAV DROPDOWN  —  desktop hover + keyboard, mobil accordion
   ════════════════════════════════════════════════════════ */


/* ── Dropdown parent item ──────────────────────────────── */

.mst-nav__item--has-dropdown { position: relative; }


/* ── Dropdown trigger (button — link ile birebir aynı görünüm) ── */

.mst-nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  gap: 4px;
}

/* ::after underline animasyonu link ile aynı şekilde çalışır */
.mst-nav__item--has-dropdown:hover .mst-nav__link--dropdown::after,
.mst-nav__item--has-dropdown.is-kbd-open .mst-nav__link--dropdown::after,
.mst-nav__link--dropdown.mst-nav__link--active::after {
  transform: scaleX(1);
}

/* ::after right'ı chevron genişliğini hesaba katarak ayarla */
.mst-nav__link--dropdown::after {
  right: 20px; /* 14px padding + 6px chevron alanı */
}

.mst-nav__chevron {
  flex-shrink: 0;
  opacity: 0.45;
  transition: transform 0.2s var(--ease), opacity 0.15s;
}

.mst-nav__item--has-dropdown:hover .mst-nav__chevron,
.mst-nav__item--has-dropdown.is-kbd-open .mst-nav__chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}


/* ── Dropdown panel ────────────────────────────────────── */

.mst-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-brand);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.09);
  z-index: 200;
}

.mst-nav__item--has-dropdown:hover .mst-nav__dropdown,
.mst-nav__item--has-dropdown.is-kbd-open .mst-nav__dropdown {
  display: block;
}

.mst-nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--c-body);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}

.mst-nav__dropdown-item:hover {
  background: var(--c-surface);
  color: var(--c-ink);
}

.mst-nav__dropdown-item--active {
  color: var(--c-brand);
  font-weight: 500;
}

.mst-nav__dropdown-item--active:hover {
  color: var(--c-brand-dark);
}


/* ── Mobil accordion ───────────────────────────────────── */

.mst-nav__mobile-item--has-children { display: flex; flex-direction: column; }

.mst-nav__mobile-link--group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--c-border);
  padding: 15px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-ink);
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}

.mst-nav__mobile-link--group:hover { color: var(--c-brand); }

.mst-nav__mobile-link--group.mst-nav__mobile-link--active { color: var(--c-brand); font-weight: 500; }

.mst-nav__mobile-chevron {
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.mst-nav__mobile-link--group[aria-expanded="true"] .mst-nav__mobile-chevron {
  transform: rotate(180deg);
}

.mst-nav__mobile-children {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 4px 12px;
  background: var(--c-surface-alt);
  border-bottom: 1px solid var(--c-border);
}

.mst-nav__mobile-children.is-open { display: block; }

.mst-nav__mobile-child {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--c-border);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-body);
  text-decoration: none;
  transition: color var(--t-fast);
}

.mst-nav__mobile-children li:last-child .mst-nav__mobile-child { border-bottom: 0; }

.mst-nav__mobile-child:hover { color: var(--c-brand); }

.mst-nav__mobile-child--active { color: var(--c-brand); font-weight: 500; }


/* ════════════════════════════════════════════════════════
   BUTON HOVER ANİMASYONU  —  tüm sayfalarda geçerli
   ════════════════════════════════════════════════════════ */

.mst-nav__link--cta,
.mst-404__btn,
.mst-home-hero__button,
.mst-home-doc-card__button,
.mst-home-cta__btn,
.mst-cta-band__btn,
.mst-custom-dev__btn,
.mst-maint-split__btn {
  transition:
    background var(--t-fast),
    color var(--t-fast),
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
  will-change: transform;
}
.mst-home-cta { margin: 0;}

.mst-nav__link--cta:hover,
.mst-404__btn:hover,
.mst-home-hero__button:hover,
.mst-home-doc-card__button:hover,
.mst-home-cta__btn:hover,
.mst-cta-band__btn:hover,
.mst-custom-dev__btn:hover,
.mst-maint-split__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.12);
}

.mst-nav__link--cta:active,
.mst-404__btn:active,
.mst-home-hero__button:active,
.mst-home-doc-card__button:active,
.mst-home-cta__btn:active,
.mst-cta-band__btn:active,
.mst-custom-dev__btn:active,
.mst-maint-split__btn:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .mst-nav__link--cta,
  .mst-404__btn,
  .mst-home-hero__button,
  .mst-home-doc-card__button,
  .mst-home-cta__btn,
  .mst-cta-band__btn,
  .mst-custom-dev__btn,
  .mst-maint-split__btn {
    transition: background var(--t-fast), color var(--t-fast);
  }

  .mst-nav__link--cta:hover,
  .mst-404__btn:hover,
  .mst-home-hero__button:hover,
  .mst-home-doc-card__button:hover,
  .mst-home-cta__btn:hover,
  .mst-cta-band__btn:hover,
  .mst-custom-dev__btn:hover,
  .mst-maint-split__btn:hover {
    transform: none;
    box-shadow: none;
  }
}
section { margin: 24px 10px; } 
@media (max-width: 1200px) {
  section { margin: 48px 10px !important; }
}