/* ─────────────────────────────────────────
   HARMONY — Site header (top bar, main bar, mega menu),
   mobile menu and footer. Loaded on every page after style.css.
   Harmony design system: flat colors, no shadows, 1px borders.
   ───────────────────────────────────────── */

@font-face { font-family: 'IRANSansX'; src: url('../fonts/IRANSansXFaNum-Regular.woff2') format('woff2');   font-weight: 400; font-display: swap; }
@font-face { font-family: 'IRANSansX'; src: url('../fonts/IRANSansXFaNum-Medium.woff2') format('woff2');    font-weight: 500; font-display: swap; }
@font-face { font-family: 'IRANSansX'; src: url('../fonts/IRANSansXFaNum-DemiBold.woff2') format('woff2');  font-weight: 600; font-display: swap; }
@font-face { font-family: 'IRANSansX'; src: url('../fonts/IRANSansXFaNum-Bold.woff2') format('woff2');      font-weight: 700; font-display: swap; }
@font-face { font-family: 'IRANSansX'; src: url('../fonts/IRANSansXFaNum-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }

:root {
  --header-h: 64px;
  --l-bg: #0A0A0A;
  --l-surface: #111111;
  --l-border: #1E1E1E;
  --l-border-h: #2E2E2E;
  --l-muted: #888888;
  --l-link: rgba(255,255,255,.72);
  --l-green: #24C76A;
  --l-green-t: rgba(36,199,106,.10);
  --l-green-b: rgba(36,199,106,.30);
  --l-ease: cubic-bezier(.22,1,.36,1);
}

.hdr svg, .mobile-menu svg, .ftr svg { width: 18px; height: 18px; flex-shrink: 0; }
.hdr-wrap, .ftr-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ══════════════════ HEADER ══════════════════ */
.hdr {
  position: fixed; top: 0; right: 0; left: 0; z-index: 200;
  font-family: 'IRANSansX', 'IRANSans', sans-serif;
  background: rgba(10,10,10,.86);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
          backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--l-border);
  animation: hdrIn .5s var(--l-ease) both;
}
@keyframes hdrIn { from { transform: translateY(-100%); } to { transform: none; } }

/* Top bar */
.hdr-top { height: 36px; border-bottom: 1px solid var(--l-border); overflow: hidden; transition: margin-top .3s var(--l-ease), opacity .3s ease; }
.hdr-top > .hdr-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hdr-top-note { display: inline-flex; align-items: center; gap: 8px; margin: 0; font-size: 12.5px; color: var(--l-muted); }
.hdr-top-note i { width: 6px; height: 6px; border-radius: 50%; background: var(--l-green); flex-shrink: 0; }
.hdr-top-links { display: flex; align-items: center; gap: 20px; }
.hdr-top-links a { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--l-muted); text-decoration: none; transition: color .15s; }
.hdr-top-links a:hover { color: #fff; }
.hdr-top-links svg { width: 14px; height: 14px; }
.hdr-top-sep { width: 1px; height: 14px; background: var(--l-border-h); }
.hdr.scrolled .hdr-top { margin-top: -37px; opacity: 0; }

/* Main bar */
.hdr-bar > .hdr-wrap { height: 72px; display: flex; align-items: center; gap: 32px; transition: height .3s var(--l-ease); }
.hdr.scrolled .hdr-bar > .hdr-wrap { height: 64px; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark { width: 34px; height: 34px; flex-shrink: 0; transform-origin: center; will-change: transform; }
.nav-logo-name { font-family: 'Inter', 'IRANSansX', sans-serif; font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 3px; }
@keyframes logoSpin {
  0%   { transform: rotate(0deg)   scale(1);    }
  35%  { transform: rotate(420deg) scale(1.12); }
  65%  { transform: rotate(680deg) scale(0.94); }
  82%  { transform: rotate(715deg) scale(1.05); }
  92%  { transform: rotate(705deg) scale(0.98); }
  100% { transform: rotate(720deg) scale(1);    }
}
.nav-logo-mark.spinning { animation: logoSpin 1.2s cubic-bezier(.23,1,.32,1) forwards; }

.hdr-nav { flex: 1; display: flex; justify-content: center; align-self: stretch; }
.nav-links { display: flex; align-items: stretch; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { display: flex; align-items: center; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 14px; border-radius: 10px;
  font-size: 14.5px; font-weight: 500; color: var(--l-link); text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-link:hover, .has-mega:hover > .nav-link, .has-mega:focus-within > .nav-link { color: #fff; background: var(--l-surface); }
.nav-link.is-active { color: #fff; }
.nav-link.is-active::after { content: ''; position: absolute; bottom: 2px; left: 50%; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--l-green); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s var(--l-ease); }
.has-mega:hover > .nav-link svg, .has-mega:focus-within > .nav-link svg { transform: rotate(180deg); }

.hdr-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hdr-phone { display: inline-flex; align-items: center; gap: 10px; padding: 6px 10px 6px 6px; border-radius: 10px; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; transition: background .15s; }
.hdr-phone:hover { background: var(--l-surface); }
.hdr-phone-ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--l-green-t); color: var(--l-green); }
.hdr-phone-ic svg { width: 16px; height: 16px; }
.hdr-phone small { display: block; font-size: 11px; font-weight: 400; color: var(--l-muted); line-height: 1.3; }
.hdr-phone b { display: block; font-weight: 700; line-height: 1.4; direction: ltr; text-align: right; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IRANSansX', 'IRANSans', sans-serif;
  padding: 11px 22px; border: 0; border-radius: 10px;
  background: var(--l-green); color: #0A0A0A;
  font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: opacity .15s;
}
.btn-cta:hover { opacity: .85; }
.btn-cta svg { width: 16px; height: 16px; }

.nav-ham {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--l-border); background: var(--l-surface);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0;
}
.nav-ham span { display: block; width: 18px; height: 1.5px; border-radius: 2px; background: #fff; }
.nav-ham span:nth-child(2) { width: 12px; margin-right: 6px; }

/* ── Mega menu (desktop) ── */
.mega {
  position: absolute; top: 100%; right: 0; left: 0;
  background: var(--l-bg); border-top: 1px solid var(--l-border); border-bottom: 1px solid var(--l-border);
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .2s var(--l-ease), transform .2s var(--l-ease), visibility 0s linear .2s;
}
.mega::after { content: ''; position: absolute; top: 100%; right: 0; left: 0; height: 100vh; background: rgba(0,0,0,.55); pointer-events: none; }
.has-mega:hover > .mega, .has-mega:focus-within > .mega, .has-mega.is-open > .mega {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s;
}
.has-mega.is-closed > .mega { opacity: 0; visibility: hidden; pointer-events: none; }

.mega-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr; gap: 40px; padding-top: 36px; padding-bottom: 40px; }
.mega-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 0 12px; }
.mega-label { font-size: 12.5px; font-weight: 600; color: var(--l-muted); }
.mega-all { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--l-green); text-decoration: none; }
.mega-all svg { width: 14px; height: 14px; }
.mega-all:hover { opacity: .85; }

.mega-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; }
.mega-item { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 10px; color: #fff; text-decoration: none; transition: background .15s; }
.mega-item:hover, .mega-item:focus-visible { background: var(--l-surface); outline: none; }
.mega-item b { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.5; }
.mega-item small { display: block; font-size: 12.5px; color: var(--l-muted); line-height: 1.6; }
.mega-ic { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; background: var(--l-surface); border: 1px solid var(--l-border); color: var(--l-green); transition: background .15s, border-color .15s; }
.mega-ic svg { width: 18px; height: 18px; }
.mega-item:hover .mega-ic { background: var(--l-green-t); border-color: var(--l-green-b); }
.mega-ic--solid { background: var(--l-green); border-color: var(--l-green); color: #0A0A0A; }

.mega-col--media { border-right: 1px solid var(--l-border); padding-right: 40px; }
.mega-parent { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 14px; background: var(--l-surface); border: 1px solid var(--l-border); color: #fff; text-decoration: none; transition: border-color .2s; }
.mega-parent:hover { border-color: var(--l-border-h); }
.mega-parent b { display: block; font-size: 15px; font-weight: 700; line-height: 1.5; }
.mega-parent small { display: block; font-size: 12px; color: var(--l-muted); line-height: 1.6; }
.mega-plats { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 6px; }
.mega-plats a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: 13.5px; color: var(--l-link); text-decoration: none; transition: background .15s, color .15s; }
.mega-plats a:hover { background: var(--l-surface); color: #fff; }

.mega-card { background: var(--l-surface); border: 1px solid var(--l-border); border-radius: 14px; padding: 14px; }
.mega-card img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 10px; background: #EDEDED; display: block; }
.mega-card b { display: block; margin: 14px 4px 6px; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.6; }
.mega-card p { margin: 0 4px 14px; font-size: 13px; line-height: 1.8; color: var(--l-muted); }
.mega-card .btn-cta { width: 100%; justify-content: center; }

/* ── Official Yektanet logo (inline with text) ── */
.yk-logo { display: inline-block; height: 15px; width: auto; margin: 0 3px; vertical-align: -3px; }

/* ── Platform logo tile (brand-tinted) ── */
.plat-ic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  background: color-mix(in srgb, var(--pc, #24C76A) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--pc, #24C76A) 28%, transparent);
}
.plat-ic img { width: 58%; height: 58%; object-fit: contain; display: block; }
.plat-ic--mono { color: var(--pc, #24C76A); font-size: 12px; font-weight: 800; }
.plat-ic--xs { width: 22px; height: 22px; border-radius: 6px; }
.plat-ic--sm { width: 28px; height: 28px; border-radius: 8px; }
.plat-ic--lg { width: 48px; height: 48px; border-radius: 10px; }

/* ══════════════════ MOBILE MENU ══════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; flex-direction: column;
  background: var(--l-bg); color: #fff;
  font-family: 'IRANSansX', 'IRANSans', sans-serif;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s var(--l-ease), transform .25s var(--l-ease), visibility 0s linear .25s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }

.mm-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 20px; background: var(--l-bg); border-bottom: 1px solid var(--l-border); flex-shrink: 0; }
.mm-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mm-logo img { width: 30px; height: 30px; }
.mm-logo span { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 3px; }
.mobile-close { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--l-border); background: var(--l-surface); color: #fff; display: grid; place-items: center; cursor: pointer; padding: 0; }

.mm-nav { flex: 1; padding: 8px 20px 24px; }
.mm-list { list-style: none; margin: 0; padding: 0; }
.mm-list > li { border-bottom: 1px solid var(--l-border); }
.mm-link, .mm-acc > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 60px; padding: 0; font-size: 17px; font-weight: 600; color: #fff; text-decoration: none;
  cursor: pointer; list-style: none;
}
.mm-acc > summary::-webkit-details-marker { display: none; }
.mm-link svg { width: 16px; height: 16px; color: #444; }
.mm-link.is-active { color: var(--l-green); }
.mm-link.is-active svg { color: var(--l-green); }
.mm-chev { width: 32px; height: 32px; border-radius: 10px; border: 1px solid var(--l-border); display: grid; place-items: center; transition: background .2s, border-color .2s, color .2s; }
.mm-chev svg { width: 16px; height: 16px; transition: transform .25s var(--l-ease); }
.mm-acc[open] .mm-chev { background: var(--l-green); border-color: var(--l-green); color: #0A0A0A; }
.mm-acc[open] .mm-chev svg { transform: rotate(180deg); }

.mm-panel { padding: 4px 0 20px; }
.mm-svc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.mm-svc a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; background: var(--l-surface); border: 1px solid var(--l-border); color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 500; }
.mm-svc a:active { border-color: var(--l-green-b); }
.mm-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--l-green-t); color: var(--l-green); flex-shrink: 0; }
.mm-ic svg { width: 16px; height: 16px; }
.mm-group { margin-top: 12px; padding: 16px; border-radius: 14px; background: var(--l-surface); border: 1px solid var(--l-border-h); }
.mm-group-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; text-decoration: none; }
.mm-group-head b { display: block; font-size: 15px; font-weight: 700; }
.mm-group-head small { display: block; font-size: 12px; color: var(--l-muted); margin-top: 2px; }
.mm-group-head svg { width: 16px; height: 16px; color: var(--l-green); }
.mm-plats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.mm-plats a { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border-radius: 100px; border: 1px solid var(--l-border-h); color: var(--l-link); font-size: 13px; text-decoration: none; }
.mm-plats .plat-ic { border-radius: 50%; }
.mm-plats a:active { color: var(--l-green); border-color: var(--l-green-b); }
.mm-all { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--l-green); text-decoration: none; }
.mm-all svg { width: 14px; height: 14px; }

.mm-foot { position: sticky; bottom: 0; display: grid; gap: 10px; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); background: var(--l-bg); border-top: 1px solid var(--l-border); }
.mm-btn { display: flex; align-items: center; justify-content: center; gap: 10px; height: 52px; border-radius: 10px; font-family: inherit; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer; border: 1px solid transparent; }
.mm-btn--primary { background: var(--l-green); color: #0A0A0A; }
.mm-btn--ghost { background: transparent; border-color: #333; color: #fff; }
.mm-btn svg { width: 16px; height: 16px; }
.mm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mm-social { display: flex; justify-content: center; gap: 10px; }
.mm-social a { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--l-border); display: grid; place-items: center; color: var(--l-muted); }

/* ══════════════════ FOOTER ══════════════════ */
.ftr { position: relative; background: var(--l-bg); border-top: 1px solid var(--l-border); font-family: 'IRANSansX', 'IRANSans', sans-serif; color: #fff; }
.ftr-top { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; padding: 80px 0 56px; border-bottom: 1px solid var(--l-border); }
.ftr-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.ftr-logo img { width: 40px; height: 40px; }
.ftr-logo span { font-family: 'Inter', 'IRANSansX', sans-serif; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: 4px; }
.ftr-tag { margin: 20px 0 14px; max-width: 380px; font-size: 15px; line-height: 1.9; color: var(--l-muted); }
.ftr-holding { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 100px; border: 1px solid var(--l-border); background: var(--l-surface); font-size: 13px; color: #fff; }
.ftr-holding i { width: 6px; height: 6px; border-radius: 50%; background: var(--l-green); }
.ftr-holding .yk-logo { height: 18px; }
.ftr-social { display: flex; gap: 8px; margin-top: 24px; }
.ftr-social a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--l-border); display: grid; place-items: center; color: var(--l-muted); transition: color .15s, border-color .15s, background .15s; }
.ftr-social a:hover { color: var(--l-green); border-color: var(--l-green-b); background: var(--l-green-t); }

.ftr-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ftr-tile { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: 14px; background: var(--l-surface); border: 1px solid var(--l-border); color: #fff; text-decoration: none; transition: border-color .2s; min-width: 0; }
a.ftr-tile:hover { border-color: var(--l-border-h); }
.ftr-tile--wide { grid-column: 1 / -1; }
.ftr-tile-ic { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: var(--l-green-t); color: var(--l-green); flex-shrink: 0; }
.ftr-tile small { display: block; font-size: 12.5px; color: var(--l-muted); }
.ftr-tile b { display: block; margin-top: 2px; font-size: 16px; font-weight: 700; line-height: 1.6; overflow-wrap: anywhere; }
.ftr-tile b[dir="ltr"] { text-align: right; }

.ftr-grid { display: grid; grid-template-columns: 1.7fr 1fr .8fr auto; gap: 48px; padding: 56px 0; }
.ftr-h { display: flex; align-items: center; gap: 8px; margin: 0 0 20px; font-size: 14px; font-weight: 700; color: #fff; }
.ftr-h::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--l-green); }
.ftr-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ftr-links--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.ftr-links a { font-size: 14px; line-height: 1.6; color: var(--l-muted); text-decoration: none; transition: color .15s; }
.ftr-links a:hover { color: #fff; }
.ftr-links .is-parent a { color: #fff; font-weight: 600; }
.ftr-enamad { display: grid; place-items: center; width: 124px; min-height: 132px; padding: 12px; border-radius: 14px; background: var(--l-surface); border: 1px solid var(--l-border); }
.ftr-enamad img { max-width: 100%; height: auto; display: block; }

.ftr-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0 32px; border-top: 1px solid var(--l-border); }
.ftr-copy { margin: 0; font-size: 13px; color: var(--l-muted); }
.ftr-bottom-links { display: flex; align-items: center; gap: 24px; }
.ftr-bottom-links a { font-size: 13px; color: var(--l-muted); text-decoration: none; transition: color .15s; }
.ftr-bottom-links a:hover { color: #fff; }
.ftr-top-btn { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--l-border-h); background: transparent; color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.ftr-top-btn:hover { background: var(--l-green); border-color: var(--l-green); color: #0A0A0A; }

.ftr-rv { opacity: 0; transform: translateY(24px); transition: opacity .5s var(--l-ease), transform .5s var(--l-ease); transition-delay: var(--d, 0ms); }
.ftr.foot-visible .ftr-rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ftr-rv { opacity: 1; transform: none; transition: none; }
  .hdr, .mobile-menu, .mega { animation: none; transition: none; }
}

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1200px) {
  .hdr-wrap, .ftr-wrap { padding: 0 28px; }
  .hdr-bar > .hdr-wrap { gap: 20px; }
  .nav-link { padding: 0 11px; }
  .hdr-phone small, .hdr-phone b { display: none; }
  .hdr-phone { padding: 0; }
  .mega-grid { grid-template-columns: 1.7fr 1fr 1fr; gap: 28px; }
  .mega-col--media { padding-right: 28px; }
  .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .ftr-col--trust { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .hdr-top, .hdr-nav, .mega { display: none; }
  .hdr-bar > .hdr-wrap, .hdr.scrolled .hdr-bar > .hdr-wrap { height: 64px; justify-content: space-between; }
  .nav-ham { display: flex; }
  .ftr-top { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 48px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .ftr-col--svc { grid-column: 1 / -1; }
  .ftr-links--2col { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .hdr-wrap, .ftr-wrap { padding: 0 20px; }
  .hdr-actions { gap: 8px; }
  .hdr-actions .btn-cta { display: none; }
  .hdr-phone-ic { width: 44px; height: 44px; }
  .nav-logo-mark { width: 30px; height: 30px; }
  .nav-logo-name { font-size: 15px; }
  .ftr-top { padding: 48px 0 40px; }
  .ftr-contact { grid-template-columns: 1fr; gap: 12px; }
  .ftr-tile { padding: 16px 18px; }
  .ftr-grid { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .ftr-links--2col { grid-template-columns: 1fr 1fr; }
  .ftr-bottom { flex-direction: column-reverse; text-align: center; gap: 16px; padding-bottom: 96px; }
  .ftr-bottom-links { gap: 18px; }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .mm-svc { grid-template-columns: 1fr 1fr; }
}
