/*
 * MihanArz Clear Market visual system
 * Loaded after page-level styles so the shared experience stays consistent.
 */
:root {
  --mz-ink: #152238;
  --mz-text: #26364d;
  --mz-muted: #667085;
  --mz-line: #e4eaf2;
  --mz-soft: #f6f8fb;
  --mz-surface: #ffffff;
  --mz-brand: #2368c4;
  --mz-brand-dark: #1b56a5;
  --mz-brand-soft: #eef6ff;
  --mz-green: #087a55;
  --mz-green-soft: #eafbf3;
  --mz-red: #c83c3c;
  --mz-red-soft: #fff1f1;
  --mz-gold: #805c00;
  --mz-gold-soft: #fff8e5;
  --mz-radius-sm: 8px;
  --mz-radius: 12px;
  --mz-radius-lg: 18px;
  --mz-shadow-sm: 0 1px 2px rgba(21, 34, 56, .035), 0 4px 14px rgba(21, 34, 56, .035);
  --mz-shadow: 0 10px 30px rgba(21, 34, 56, .065);
  --mz-shadow-lg: 0 20px 54px rgba(21, 34, 56, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--mz-soft);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--mz-text);
  background-color: var(--mz-soft);
  font-family: "Yekan Bakh", "YekanBakh", Tahoma, sans-serif;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(23, 92, 211, .28);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--mz-brand);
}

.mz-icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -.18em;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 50%;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--mz-brand);
  border-radius: var(--mz-radius-sm);
  transform: translate(-50%, -150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

main {
  min-height: 60vh;
}

.pg,
.header-inner,
.footer-inner {
  width: min(1240px, calc(100% - 40px));
  max-width: 1240px;
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: auto;
  border: 0;
  border-bottom: 1px solid rgba(228, 234, 242, .95);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: auto;
  height: 42px;
  max-width: 174px;
  object-fit: contain;
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--mz-brand);
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(23, 92, 211, .22);
}

.logo-mark {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text {
  color: var(--mz-ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.7px;
}

.logo-text span {
  color: var(--mz-brand);
}

.main-nav {
  height: 72px;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.main-nav > a,
.nav-drop-toggle {
  height: 72px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #344054;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.main-nav > a:hover,
.nav-drop-toggle:hover,
.main-nav > a.active,
.nav-drop-toggle.active {
  color: var(--mz-brand);
  border-bottom-color: var(--mz-brand);
  background: var(--mz-brand-soft);
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform .18s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: -16px;
  width: 440px;
  padding: 14px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--mz-line);
  border-radius: var(--mz-radius);
  box-shadow: var(--mz-shadow-lg);
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-drop-head {
  margin-bottom: 10px;
  padding: 4px 5px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--mz-ink);
  border-bottom: 1px solid var(--mz-line);
  font-size: 13px;
  font-weight: 800;
}

.nav-drop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.nav-drop-grid a {
  min-height: 43px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #344054;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  transition: color .16s ease, background .16s ease;
}

.nav-drop-grid a:hover {
  color: var(--mz-brand);
  background: var(--mz-brand-soft);
}

.nav-code,
.nav-mini-icon {
  min-width: 36px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  color: var(--mz-brand);
  background: var(--mz-brand-soft);
  border-radius: 7px;
  direction: ltr;
  font-size: 10px;
  font-weight: 800;
}

.nav-mini-icon .mz-icon {
  width: 15px;
  height: 15px;
}

.nav-drop-all {
  margin-top: 10px;
  padding: 11px 10px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--mz-brand);
  border-top: 1px solid var(--mz-line);
  font-size: 12px;
  font-weight: 800;
}

.header-actions {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.live-badge {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mz-green);
  background: var(--mz-green-soft);
  border: 1px solid #abefc6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.live-badge.stale {
  color: var(--mz-gold);
  background: var(--mz-gold-soft);
  border-color: #fedf89;
}

.live-badge .mz-icon {
  width: 14px;
  height: 14px;
}

.live-dot {
  width: 7px;
  height: 7px;
  position: relative;
  background: #17b26a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(23, 178, 106, .13);
}

.hamburger {
  width: 40px;
  height: 40px;
  padding: 0;
  display: none;
  place-items: center;
  color: var(--mz-ink);
  background: #fff;
  border: 1px solid var(--mz-line);
  border-radius: 10px;
  cursor: pointer;
}

.hamburger .mz-icon {
  width: 21px;
  height: 21px;
}

.menu-open-icon,
.menu-close-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-close-icon,
.hamburger.open .menu-open-icon {
  display: none;
}

.hamburger.open .menu-close-icon {
  display: block;
}

.mobile-nav {
  display: none;
}

/* Layout and page surfaces */
.pg {
  padding-top: 28px;
  padding-bottom: 48px;
}

.bcrumb {
  margin: 0 0 16px;
  color: var(--mz-muted);
  font-size: 12px;
}

.bcrumb a:hover {
  color: var(--mz-brand);
}

.sc,
.info-card,
.about-section,
.cv-card,
.wg-builder,
.wg-preview,
.contact-note,
.news-page-head,
.art-wrap,
.art-sidebar > div {
  background: var(--mz-surface) !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: var(--mz-radius) !important;
  box-shadow: var(--mz-shadow-sm) !important;
}

.s-hero,
.pghd,
.cp-hero,
.cv-hero,
.wg-hero,
.about-hero,
.contact-hero {
  color: var(--mz-ink) !important;
  background: var(--mz-surface) !important;
  background-image: none !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: var(--mz-radius-lg) !important;
  box-shadow: var(--mz-shadow-sm) !important;
  overflow: hidden;
}

.shero-glow,
.cp-hero-bg {
  display: none !important;
}

.s-hero {
  padding: 28px !important;
  border-top: 4px solid var(--mz-brand) !important;
}

.sh-title,
.pghd-title,
.cp-name,
.news-page-title {
  color: var(--mz-ink) !important;
  letter-spacing: -.6px;
}

.sh-title,
.pghd-title {
  font-size: clamp(21px, 2.6vw, 32px) !important;
  font-weight: 850 !important;
}

.shero-top {
  margin-bottom: 20px !important;
}

.sh-pill,
.pghd-pill {
  color: var(--mz-brand) !important;
  background: var(--mz-brand-soft) !important;
  border: 1px solid #cfe1f8 !important;
  border-radius: 999px !important;
}

.shero-cards {
  gap: 12px !important;
}

.shc {
  min-height: 152px;
  background: #fff !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: var(--mz-radius) !important;
  box-shadow: var(--mz-shadow-sm) !important;
  transform: none !important;
}

.shc:hover {
  border-color: #a9c8ef !important;
  box-shadow: var(--mz-shadow) !important;
  transform: translateY(-2px) !important;
}

.shc-name,
.shc-val {
  color: var(--mz-ink) !important;
}

.shc-sub,
.shc-unit {
  color: var(--mz-muted) !important;
}

.market-icon,
.ri-em,
.hce,
.ci-em,
.gi-em,
.cri-em,
.cp-ico-em {
  width: 42px;
  height: 42px;
  position: relative;
  display: inline-grid !important;
  place-items: center;
  color: var(--mz-brand);
  background: #f8fbff;
  border: 1px solid #dbe8f7;
  border-radius: 10px;
  overflow: hidden;
}

.market-icon--custom {
  padding: 3px;
  background: #fff;
  border-color: var(--mz-line);
}

.market-icon-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 7px;
}

.market-icon-svg {
  width: 19px;
  height: 19px;
  margin-top: -7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.market-icon-code {
  position: absolute;
  inset: auto 2px 2px;
  color: #1849a9;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.sh {
  margin: 0 0 12px !important;
}

.sh-t {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mz-ink) !important;
  font-size: 17px !important;
  font-weight: 850 !important;
}

.sh-ic {
  width: 34px !important;
  height: 34px !important;
  display: inline-grid !important;
  place-items: center;
  color: var(--mz-brand) !important;
  background: var(--mz-brand-soft) !important;
  border-radius: 9px !important;
  font-size: 0 !important;
}

.sh-ic .mz-icon {
  width: 18px;
  height: 18px;
  font-size: initial;
}

.sh-a,
.more,
.na-read-more {
  color: var(--mz-brand) !important;
  font-weight: 750 !important;
}

/* Tables */
.sc {
  overflow: hidden;
}

.pt {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.pt th {
  padding: 12px 14px !important;
  color: #475467 !important;
  background: #f8fafc !important;
  border-bottom: 1px solid var(--mz-line) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.pt td {
  padding: 13px 14px !important;
  border-bottom: 1px solid #eef1f5 !important;
  vertical-align: middle;
}

.pt tbody tr:last-child td {
  border-bottom: 0 !important;
}

.pt tbody tr {
  transition: background .15s ease;
}

.pt tbody tr:hover {
  background: #f8faff !important;
}

.tc-lnk:hover,
.pt a:hover {
  color: var(--mz-brand);
}

.tbl-toolbar {
  padding: 14px !important;
  background: #fff !important;
  border-bottom: 1px solid var(--mz-line) !important;
}

.tbl-search,
input,
select,
textarea {
  color: var(--mz-ink);
  background-color: #fff;
  border-color: #d0d5dd !important;
  border-radius: 10px !important;
}

.tbl-search:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #84adff !important;
  box-shadow: 0 0 0 4px rgba(23, 92, 211, .1) !important;
  outline: none;
}

.tbl-count {
  color: var(--mz-brand) !important;
  background: var(--mz-brand-soft) !important;
  border-radius: 999px !important;
}

/* Comparison and detail pages */
.cmp-wrap {
  margin: 18px 0 28px !important;
}

.cmp-title {
  margin-bottom: 12px !important;
  color: var(--mz-ink) !important;
  font-size: 16px !important;
  font-weight: 850 !important;
}

.cmp-grid {
  gap: 12px !important;
}

.cmp-card {
  background: #fff !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: var(--mz-radius) !important;
  box-shadow: var(--mz-shadow-sm) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.cmp-card:hover {
  border-color: #b2ccff !important;
  box-shadow: var(--mz-shadow) !important;
  transform: translateY(-3px) !important;
}

.exc-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--mz-brand);
  background: var(--mz-brand-soft);
  border: 1px solid #c7d7fe;
  border-radius: 10px;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.pghd {
  padding: 26px !important;
  border-inline-start: 4px solid var(--mz-brand) !important;
}

body.page-arz .pghd {
  background: linear-gradient(115deg, #fff 0%, #f3f8ff 100%) !important;
  border-inline-start-color: var(--mz-brand) !important;
}

body.page-gold .pghd {
  background: linear-gradient(115deg, #fff 0%, #fffaf0 100%) !important;
  border-inline-start-color: #b98200 !important;
}

body.page-crypto .pghd {
  background: linear-gradient(115deg, #fff 0%, #fff7ef 100%) !important;
  border-inline-start-color: #d76b12 !important;
}

.pghd-sub,
.pghd-meta,
.cp-h2,
.cp-name-en,
.cp-chg-period {
  color: var(--mz-muted) !important;
}

.pghd-usd,
.pghd-gold,
.pghd-btc {
  background: var(--mz-brand-soft) !important;
  border: 1px solid #d5e6f8 !important;
  border-radius: var(--mz-radius) !important;
  box-shadow: 0 8px 22px rgba(21, 34, 56, .055) !important;
}

.pghd-gold {
  background: var(--mz-gold-soft) !important;
  border-color: #f2dfaa !important;
}

.pghd-btc {
  background: #fff5eb !important;
  border-color: #f5d5b6 !important;
}

.pghd-usd-label,
.pghd-usd-val,
.pghd-usd-unit {
  color: #174f91 !important;
  opacity: 1 !important;
}

.pghd-usd-val {
  color: #123d70 !important;
}

.pghd-usd-unit {
  color: #57789e !important;
}

.pghd-gold-label,
.pghd-gold-val,
.pghd-gold-unit {
  color: #725200 !important;
  opacity: 1 !important;
}

.pghd-gold-val {
  color: #5c4200 !important;
}

.pghd-gold-unit {
  color: #806d3b !important;
}

.pghd-btc-label,
.pghd-btc-usd,
.pghd-btc-toman {
  color: #8a450e !important;
  opacity: 1 !important;
}

.pghd-btc-usd {
  color: #713606 !important;
}

.pghd-btc-toman {
  color: #98643a !important;
}

body.page-gold .pghd-pill {
  color: #725200 !important;
  background: var(--mz-gold-soft) !important;
  border-color: #ecd89c !important;
}

body.page-crypto .pghd-pill {
  color: #9a4b0b !important;
  background: #fff1e4 !important;
  border-color: #f2d1b3 !important;
}

.cp-hero {
  padding: 30px !important;
  background: linear-gradient(115deg, #fff 0%, #f7fbff 100%) !important;
  border-top: 4px solid var(--mz-brand) !important;
}

.cp-ico-wrap {
  width: 66px !important;
  height: 66px !important;
  display: grid !important;
  place-items: center !important;
  background: #fff !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: 17px !important;
}

.cp-ico-wrap .market-icon {
  width: 50px;
  height: 50px;
}

.cp-sym-badge {
  color: var(--mz-brand) !important;
  background: var(--mz-brand-soft) !important;
  border-color: #cfe1f8 !important;
}

.cp-price-val,
.cp-price-irr,
.cp-stat2-val {
  color: var(--mz-ink) !important;
}

.cp-stat2 {
  background: #fff !important;
  border-color: var(--mz-line) !important;
  border-radius: 12px !important;
}

.cp-stat2-label {
  color: var(--mz-muted) !important;
}

.cp-two {
  gap: 18px !important;
}

/* Content pages */
.about-hero,
.contact-hero,
.cv-hero,
.wg-hero {
  margin: 0 auto !important;
  padding: 48px 24px !important;
  background: #eef6ff !important;
  border-width: 0 0 1px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.about-hero .brand,
.about-hero h1,
.contact-hero h1,
.cv-hero h1,
.wg-hero h1 {
  color: var(--mz-ink) !important;
}

.about-logo {
  width: min(210px, 60vw);
  height: auto;
  margin: 0 auto 14px;
  display: block;
  object-fit: contain;
}

.about-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 850;
  letter-spacing: -.02em;
}

.tagline,
.wg-hero p,
.cv-hero p,
.contact-hero p {
  color: var(--mz-muted) !important;
}

.stats-row {
  gap: 12px !important;
}

.stat,
.feat {
  background: #fff !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: var(--mz-radius) !important;
  box-shadow: var(--mz-shadow-sm) !important;
}

.stat-n {
  color: var(--mz-brand) !important;
}

.stat-l {
  color: var(--mz-muted) !important;
}

.about-cta {
  color: var(--mz-ink) !important;
  background: var(--mz-brand-soft) !important;
  background-image: none !important;
  border: 1px solid #cfe1f8 !important;
  border-radius: var(--mz-radius-lg) !important;
  box-shadow: none !important;
}

.about-cta h2,
.about-cta p {
  color: var(--mz-ink) !important;
}

.wg-badge {
  color: var(--mz-brand) !important;
  background: #fff !important;
  border-color: #cfe1f8 !important;
}

.wg-builder-head {
  color: var(--mz-ink) !important;
  background: linear-gradient(115deg, #eaf4ff 0%, #f5f9ff 100%) !important;
  border-bottom-color: var(--mz-line) !important;
}

.wg-builder-head h2 {
  color: #123d70 !important;
}

.wg-builder-head p {
  color: #5d718b !important;
  opacity: 1 !important;
}

.wg-builder-head > .mz-icon,
.wg-builder-head h2 .mz-icon {
  color: var(--mz-brand) !important;
}

body.page-widget .wg-hero {
  background: linear-gradient(115deg, #edf6ff 0%, #f8fbff 100%) !important;
  border-bottom-color: #d5e6f8 !important;
}

body.page-widget .wg-hero h1 {
  color: #123d70 !important;
}

.feat {
  padding: 22px !important;
}

.feat-ic,
.cc-icon,
.is-icon {
  width: 44px !important;
  height: 44px !important;
  display: inline-grid !important;
  place-items: center;
  color: var(--mz-brand) !important;
  background: var(--mz-brand-soft) !important;
  border-radius: 12px !important;
  font-size: 0 !important;
}

.feat-ic .mz-icon,
.cc-icon .mz-icon,
.is-icon .mz-icon {
  width: 22px;
  height: 22px;
  font-size: initial;
}

.wg-hero h1 .mz-icon,
.news-page-title .mz-icon {
  width: .9em;
  height: .9em;
  margin-left: 6px;
}

.wg-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.wg-badge .mz-icon,
.wg-builder-head .mz-icon,
.wg-how h3 .mz-icon,
.wg-copy .mz-icon,
.art-meta .mz-icon,
.na-card-meta .mz-icon,
.na-featured-meta .mz-icon,
.art-cat .mz-icon,
.na-cat-badge .mz-icon,
.art-comments-title .mz-icon,
.art-cmt-success .mz-icon,
.art-cmt-error .mz-icon {
  width: 15px;
  height: 15px;
}

.wg-scb b {
  color: var(--mz-brand);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 9px;
}

.cv-card,
.wg-builder,
.wg-preview {
  box-shadow: var(--mz-shadow) !important;
}

.cv-swap-btn,
.art-cmt-submit,
.cc-btn,
.wg-copy-btn {
  color: #fff !important;
  background: var(--mz-brand) !important;
  border-color: var(--mz-brand) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 18px rgba(23, 92, 211, .2);
}

.cv-swap-btn:hover,
.art-cmt-submit:hover,
.cc-btn:hover,
.wg-copy-btn:hover {
  background: var(--mz-brand-dark) !important;
}

.cv-sel-trigger,
.cv-dropdown,
.wg-opt,
.wg-scb {
  border-color: var(--mz-line) !important;
  border-radius: 11px !important;
}

.cv-sel-emoji,
.cv-opt-emoji {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
}

.cv-asset-image {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  border-radius: 7px;
}

/* News */
.news-page-head {
  padding: 26px !important;
}

.news-page-title {
  color: var(--mz-ink) !important;
}

.na-featured,
.na-card {
  overflow: hidden;
  background: #fff !important;
  border: 1px solid var(--mz-line) !important;
  border-radius: var(--mz-radius) !important;
  box-shadow: var(--mz-shadow-sm) !important;
  transition: transform .18s ease, box-shadow .18s ease !important;
}

.na-featured:hover,
.na-card:hover {
  box-shadow: var(--mz-shadow) !important;
  transform: translateY(-3px) !important;
}

.na-cat-badge,
.art-cat {
  color: var(--mz-brand) !important;
  background: var(--mz-brand-soft) !important;
  border: 1px solid #c7d7fe !important;
  border-radius: 999px !important;
}

.art-body {
  color: #344054 !important;
  font-size: 16px !important;
  line-height: 2.05 !important;
}

.art-body h2,
.art-body h3 {
  color: var(--mz-ink) !important;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  color: var(--mz-text);
  background: #fff;
  border-top: 1px solid var(--mz-line);
}

.footer-inner {
  padding-top: 54px;
  padding-bottom: 22px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-logo .logo-text {
  color: var(--mz-ink);
}

.footer-brand > p,
.footer-contact > p {
  margin: 20px 0;
  color: var(--mz-muted);
  font-size: 13px;
  line-height: 2;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust span {
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mz-brand);
  background: var(--mz-brand-soft);
  border: 1px solid #d5e6f8;
  border-radius: 8px;
  font-size: 11px;
}

.footer-col h2 {
  margin: 3px 0 18px;
  color: var(--mz-ink);
  font-size: 14px;
  font-weight: 800;
}

.footer-col > a:not(.footer-contact-link) {
  margin: 0 0 11px;
  display: block;
  color: var(--mz-muted);
  font-size: 12px;
  transition: color .16s ease, transform .16s ease;
}

.footer-col > a:not(.footer-contact-link):hover {
  color: var(--mz-brand);
  transform: translateX(-3px);
}

.footer-contact-link {
  min-height: 43px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mz-brand);
  background: var(--mz-brand-soft);
  border: 1px solid #d5e6f8;
  border-radius: 10px;
  font-size: 12px;
}

.footer-contact-link .mz-icon:last-child {
  margin-inline-start: auto;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--mz-muted);
  border-top: 1px solid var(--mz-line);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom a:hover {
  color: var(--mz-brand);
}

/* Responsive */
@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav > a,
  .nav-drop-toggle {
    padding-inline: 8px;
    font-size: 13px;
  }

  .main-nav > a[href="/about"] {
    display: none;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .mobile-nav {
    width: min(calc(100% - 24px), 520px);
    max-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 8px;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--mz-line);
    border-radius: 14px;
    box-shadow: var(--mz-shadow-lg);
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    min-height: 48px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #344054;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--mz-brand);
    background: var(--mz-brand-soft);
  }

  .mobile-nav .mz-icon {
    width: 18px;
    height: 18px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .pg,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, 1240px);
  }

  .header-inner {
    min-height: 64px;
  }

  .logo-img {
    height: 33px;
    max-width: 136px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 19px;
  }

  .live-badge {
    min-width: 34px;
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .live-badge span:last-child {
    display: none;
  }

  .pg {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .s-hero,
  .pghd,
  .cp-hero {
    padding: 20px !important;
    border-radius: 17px !important;
  }

  .shero-cards,
  .cmp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .shc {
    min-height: 142px;
  }

  .pt {
    min-width: 620px;
  }

  .sc {
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .s2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .s2-col,
  .g2-col,
  .s3 {
    min-width: 0;
    max-width: 100%;
  }

  .g2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-home .pt {
    min-width: 0;
  }

  body.page-home .pt .th-num,
  body.page-home .pt .tn {
    display: none;
  }

  body.page-home .pt th,
  body.page-home .pt td {
    padding-inline: 8px !important;
  }

  body.page-home .pt .tnm {
    font-size: 11px;
  }

  body.page-home .pt .tcd,
  body.page-home .pt .tp,
  body.page-home .pt .chg {
    font-size: 9px !important;
  }

  .tbl-toolbar {
    position: sticky;
    right: 0;
    min-width: min(100vw - 48px, 620px);
  }

  .cp-two {
    grid-template-columns: 1fr !important;
  }

  .cp-two > * {
    min-width: 0;
    max-width: 100%;
  }

  .about-hero,
  .contact-hero,
  .cv-hero,
  .wg-hero {
    padding: 34px 18px !important;
    border-radius: 0 !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .shero-cards,
  .cmp-grid {
    grid-template-columns: 1fr !important;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .shc {
    min-height: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
