.mrdm-shell,
.mrdm-floating-panel,
.mrdm-mobile-drawer,
.mrdm-mobile-overlay,
.mrdm-toast {
  --mrdm-orange: #ff6500;
  --mrdm-orange-2: #ff8a00;
  --mrdm-navy: #121048;
  --mrdm-navy-2: #09082c;
  --mrdm-ink: #17172f;
  --mrdm-muted: #74768b;
  --mrdm-line: rgba(18, 16, 72, .1);
  --mrdm-soft: #f6f6fb;
  --mrdm-shadow: 0 28px 80px rgba(18, 16, 72, .18);
  box-sizing: border-box;
  color: var(--mrdm-ink);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

.mrdm-shell *,
.mrdm-floating-panel *,
.mrdm-mobile-drawer *,
.mrdm-toast * { box-sizing: border-box; }

.mrdm-shell {
  position: sticky;
  top: 0;
  z-index: 99990;
  width: 100%;
  direction: rtl;
}

body.admin-bar .mrdm-shell { top: 32px; }

.mrdm-shell a,
.mrdm-floating-panel a,
.mrdm-mobile-drawer a,
.mrdm-toast a { color: inherit; text-decoration: none; }

.mrdm-shell button,
.mrdm-floating-panel button,
.mrdm-mobile-drawer button { font: inherit; }

.mrdm-shell p,
.mrdm-shell h2,
.mrdm-floating-panel p,
.mrdm-floating-panel h2,
.mrdm-floating-panel ul,
.mrdm-mobile-drawer p { margin: 0; padding: 0; }

.mrdm-floating-panel ul { list-style: none; }

.mrdm-shell svg,
.mrdm-floating-panel svg,
.mrdm-mobile-drawer svg,
.mrdm-toast svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mrdm-container { width: min(calc(100% - 40px), 1440px); margin-inline: auto; }

.mrdm-progress {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.mrdm-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mrdm-orange), #ffb000);
  box-shadow: 0 0 10px rgba(255, 101, 0, .65);
}

.mrdm-topbar {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(95deg, var(--mrdm-navy-2), var(--mrdm-navy));
}

.mrdm-topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% -90%, rgba(255, 101, 0, .42), transparent 35%);
  pointer-events: none;
}

.mrdm-topbar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 20px;
  font-size: 10px;
}

.mrdm-topbar-inner > p { display: flex; align-items: center; gap: 8px; }

.mrdm-live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #70e3a2;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(112, 227, 162, .08);
}

.mrdm-live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid #70e3a2;
  border-radius: 50%;
  animation: mrdm-pulse 2.4s ease-out infinite;
}

.mrdm-topbar-actions,
.mrdm-topbar-actions > a,
.mrdm-socials { display: flex; align-items: center; }
.mrdm-topbar-actions { gap: 12px; }
.mrdm-topbar-actions > a { gap: 6px; transition: color .2s ease; }
.mrdm-topbar-actions > a:hover { color: #fff; }
.mrdm-topbar-actions svg { width: 14px; height: 14px; }

.mrdm-socials { gap: 5px; padding-inline: 7px; border-inline: 1px solid rgba(255, 255, 255, .14); }
.mrdm-socials a { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; transition: background .2s, color .2s, transform .2s; }
.mrdm-socials a:hover { color: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-1px); }
.mrdm-socials svg { width: 13px; height: 13px; }
.mrdm-topbar-consult { font-weight: 800; }

.mrdm-header {
  position: relative;
  height: 82px;
  color: var(--mrdm-ink);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--mrdm-line);
  box-shadow: 0 4px 20px rgba(18, 16, 72, .035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.mrdm-shell.mrdm-is-scrolled .mrdm-header { height: 70px; background: rgba(255, 255, 255, .98); box-shadow: 0 10px 36px rgba(18, 16, 72, .1); }
.mrdm-main-row { display: flex; align-items: center; height: 100%; gap: 24px; }

.mrdm-brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 10px; direction: rtl; }
.mrdm-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--mrdm-orange-2), var(--mrdm-orange) 58%, #e74b00);
  border-radius: 15px 6px 15px 15px;
  box-shadow: 0 9px 22px rgba(255, 101, 0, .25);
  transition: transform .28s ease, box-shadow .28s ease;
}
.mrdm-brand:hover .mrdm-brand-mark { transform: rotate(-3deg) translateY(-1px); box-shadow: 0 12px 28px rgba(255, 101, 0, .33); }
.mrdm-brand-mark b { position: relative; z-index: 2; font: 900 22px/1 Arial, sans-serif; }
.mrdm-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.mrdm-brand-orbit { position: absolute; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; transform: translate(10px, -10px); }
.mrdm-brand-orbit::after { content: ""; position: absolute; width: 5px; height: 5px; right: 1px; bottom: 3px; background: #fff; border-radius: 50%; box-shadow: 0 0 8px #fff; }
.mrdm-brand-copy { display: grid; gap: 2px; }
.mrdm-brand-copy strong { color: var(--mrdm-navy); font-size: 17px; font-weight: 900; line-height: 1.2; }
.mrdm-brand-copy small { color: #9293a4; font: 700 7px/1.3 Arial, sans-serif; letter-spacing: .09em; }

.mrdm-desktop-nav { display: flex; align-items: stretch; align-self: stretch; flex: 1 1 auto; justify-content: center; min-width: 0; }
.mrdm-main-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 100%;
  padding: 0 12px;
  color: #39394f;
  background: transparent;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  transition: color .2s ease;
}
.mrdm-main-link::before { content: ""; position: absolute; right: 50%; bottom: 0; width: 0; height: 3px; background: var(--mrdm-orange); border-radius: 3px 3px 0 0; transform: translateX(50%); transition: width .25s ease; }
.mrdm-main-link:hover,
.mrdm-main-link:focus-visible,
.mrdm-main-link.mrdm-current,
.mrdm-main-link[aria-expanded="true"] { color: var(--mrdm-orange); }
.mrdm-main-link:hover::before,
.mrdm-main-link:focus-visible::before,
.mrdm-main-link.mrdm-current::before,
.mrdm-main-link[aria-expanded="true"]::before { width: 24px; }
.mrdm-main-link > svg { width: 14px; height: 14px; transition: transform .25s; }
.mrdm-main-link[aria-expanded="true"] > svg { transform: rotate(180deg); }
.mrdm-main-link .mrdm-link-copy strong { font: inherit; }
.mrdm-menu-host { display: flex; align-items: stretch; }

.mrdm-actions { display: flex; align-items: center; flex: 0 0 auto; gap: 8px; }
.mrdm-account { display: inline-flex; align-items: center; gap: 6px; min-height: 42px; padding: 0 10px; color: #54556b; border-radius: 11px; font-size: 10.5px; font-weight: 750; transition: color .2s, background .2s; }
.mrdm-account:hover { color: var(--mrdm-navy); background: var(--mrdm-soft); }
.mrdm-account svg { width: 19px; height: 19px; }
.mrdm-cta { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 0 16px; overflow: hidden; color: #fff !important; background: linear-gradient(120deg, var(--mrdm-orange), #ff7e00); border: 1px solid rgba(255, 101, 0, .4); border-radius: 13px; box-shadow: 0 10px 25px rgba(255, 101, 0, .22); font-size: 11px; font-weight: 900; transition: transform .25s, box-shadow .25s; }
.mrdm-cta::before { content: ""; position: absolute; top: -70%; left: -55%; width: 45%; height: 240%; background: rgba(255, 255, 255, .25); transform: rotate(25deg); transition: left .55s; }
.mrdm-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 101, 0, .32); }
.mrdm-cta:hover::before { left: 120%; }
.mrdm-cta svg { width: 16px; height: 16px; }

.mrdm-floating-panel {
  position: fixed;
  z-index: 999991;
  color: var(--mrdm-ink);
  background: #fff;
  border: 1px solid rgba(18, 16, 72, .09);
  box-shadow: var(--mrdm-shadow);
  font-family: inherit;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .2s ease, transform .24s ease, visibility .2s ease;
}
.mrdm-floating-panel[inert] { opacity: 0; visibility: hidden; pointer-events: none; }

.mrdm-mega-panel {
  left: 50%;
  top: var(--mrdm-panel-top, 126px);
  width: min(calc(100vw - 40px), 1420px);
  max-height: calc(100vh - var(--mrdm-panel-top, 126px) - 16px);
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 20px;
  transform: translate(-50%, 0);
}
.mrdm-mega-panel[inert] { transform: translate(-50%, 10px) scale(.992); }
.mrdm-mega-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--mrdm-orange), #ffad32 30%, var(--mrdm-navy) 72%); }
.mrdm-mega-panel::after { content: ""; position: fixed; top: calc(var(--mrdm-panel-top, 126px) - 8px); left: var(--mrdm-arrow-left, 50%); width: 16px; height: 16px; background: #fff; border-top: 1px solid var(--mrdm-line); border-left: 1px solid var(--mrdm-line); transform: rotate(45deg); }
.mrdm-mega-glow { position: absolute; width: 340px; height: 340px; left: calc(var(--mouse-x, 70%) - 170px); top: calc(var(--mouse-y, 40%) - 170px); background: radial-gradient(circle, rgba(255, 101, 0, .07), transparent 68%); pointer-events: none; transition: left .15s, top .15s; }
.mrdm-mega-grid { position: relative; display: grid; grid-template-columns: 280px minmax(0, 1fr); min-height: 330px; }
.mrdm-mega-intro { padding: 30px 25px; color: #fff; background: radial-gradient(circle at 20% 0, rgba(255, 101, 0, .33), transparent 34%), linear-gradient(150deg, var(--mrdm-navy-2), var(--mrdm-navy)); }
.mrdm-eyebrow { display: inline-flex; align-items: center; gap: 7px; color: #ffad73; font-size: 9px; font-weight: 850; }
.mrdm-eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--mrdm-orange); border-radius: 2px; }
.mrdm-mega-intro h2 { margin-top: 17px; color: #fff; font-size: 22px; font-weight: 950; line-height: 1.55; }
.mrdm-mega-intro > p { margin-top: 11px; color: rgba(255, 255, 255, .58); font-size: 10px; line-height: 1.95; }
.mrdm-view-all { display: flex; align-items: center; justify-content: space-between; min-height: 43px; margin-top: 20px; padding: 0 13px; color: #fff !important; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .11); border-radius: 11px; font-size: 10px; font-weight: 850; transition: background .2s, transform .2s; }
.mrdm-view-all:hover { background: var(--mrdm-orange); transform: translateY(-1px); }
.mrdm-view-all svg { width: 16px; height: 16px; }
.mrdm-intro-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 15px; }
.mrdm-intro-metrics span { padding: 9px; color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .05); border-radius: 9px; font-size: 8px; }
.mrdm-intro-metrics b { display: block; margin-bottom: 2px; color: #fff; font-size: 14px; }

.mrdm-service-columns { display: grid; align-items: stretch; min-width: 0; padding: 19px 10px; }
.mrdm-columns-1 { grid-template-columns: 1fr; }
.mrdm-columns-2 { grid-template-columns: repeat(2, 1fr); }
.mrdm-columns-3 { grid-template-columns: repeat(3, 1fr); }
.mrdm-columns-4 { grid-template-columns: repeat(4, 1fr); }
.mrdm-columns-5 { grid-template-columns: repeat(5, 1fr); }
.mrdm-service-group { min-width: 0; padding: 12px 14px; border-left: 1px solid var(--mrdm-line); }
.mrdm-service-group:last-child { border-left: 0; }
.mrdm-service-heading { display: flex; align-items: center; gap: 9px; min-height: 49px; margin-bottom: 12px; color: var(--mrdm-navy); border-radius: 10px; }
.mrdm-service-icon { display: grid; place-items: center; width: 39px; height: 39px; flex: 0 0 auto; color: var(--group-color, var(--mrdm-orange)); background: rgba(255, 101, 0, .08); background: color-mix(in srgb, var(--group-color, var(--mrdm-orange)) 10%, white); border: 1px solid rgba(255, 101, 0, .15); border: 1px solid color-mix(in srgb, var(--group-color, var(--mrdm-orange)) 18%, white); border-radius: 11px; transition: transform .2s, box-shadow .2s; }
.mrdm-service-heading:hover .mrdm-service-icon { transform: rotate(-4deg) translateY(-1px); box-shadow: 0 8px 18px color-mix(in srgb, var(--group-color, var(--mrdm-orange)) 18%, transparent); }
.mrdm-service-icon svg { width: 19px; height: 19px; }
.mrdm-service-heading > span:last-child { min-width: 0; }
.mrdm-service-heading strong,
.mrdm-service-heading small { display: block; overflow: hidden; text-overflow: ellipsis; }
.mrdm-service-heading strong { color: var(--mrdm-navy); font-size: 10.5px; font-weight: 900; white-space: normal; line-height: 1.55; }
.mrdm-service-heading small { margin-top: 2px; color: #9a9baa; font: 700 6.5px/1.3 Arial, sans-serif; letter-spacing: .015em; white-space: nowrap; }
.mrdm-color-orange { --group-color: #ff7b29; }
.mrdm-color-violet { --group-color: #846fff; }
.mrdm-color-cyan { --group-color: #13b9d7; }
.mrdm-color-green { --group-color: #25b979; }
.mrdm-color-pink { --group-color: #ef5ca3; }
.mrdm-color-auto { --group-color: var(--mrdm-orange); }
.mrdm-service-group li + li { margin-top: 2px; }
.mrdm-service-group li a { position: relative; display: flex; align-items: center; min-height: 34px; padding: 5px 13px 5px 5px; color: #696a7c; border-radius: 8px; font-size: 9.5px; line-height: 1.55; transition: color .2s, background .2s, transform .2s; }
.mrdm-service-group li a::before { content: ""; position: absolute; right: 2px; width: 4px; height: 4px; background: #d5d5de; border-radius: 50%; transition: background .2s, box-shadow .2s; }
.mrdm-service-group li a:hover { color: var(--mrdm-navy); background: var(--mrdm-soft); transform: translateX(-2px); }
.mrdm-service-group li a:hover::before { background: var(--mrdm-orange); box-shadow: 0 0 8px var(--mrdm-orange); }
.mrdm-service-group .mrdm-link-copy strong { font: inherit; }
.mrdm-soon { display: inline-flex; align-items: center; flex: 0 0 auto; min-height: 17px; margin-right: auto; padding: 1px 5px; color: #a1a2ae; background: #f1f1f6; border: 1px solid #e8e8ee; border-radius: 5px; font-size: 6.5px; font-weight: 750; white-space: nowrap; }
.mrdm-is-planned { cursor: help !important; }
.mrdm-mega-footer { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 59px; padding: 10px 22px; background: #f7f7fb; border-top: 1px solid var(--mrdm-line); }
.mrdm-mega-footer p { display: flex; align-items: center; gap: 7px; color: #77788b; font-size: 9.5px; }
.mrdm-mega-footer strong { color: var(--mrdm-navy); }
.mrdm-mini-mark { display: grid; place-items: center; width: 29px; height: 29px; color: #fff; background: var(--mrdm-orange); border-radius: 8px; font: 800 8px/1 Arial, sans-serif; }
.mrdm-mega-footer > a { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 11px; color: var(--mrdm-navy); background: #fff; border: 1px solid var(--mrdm-line); border-radius: 9px; font-size: 9px; font-weight: 850; transition: color .2s, border .2s; }
.mrdm-mega-footer > a:hover { color: var(--mrdm-orange); border-color: rgba(255, 101, 0, .3); }
.mrdm-mega-footer svg { width: 14px; height: 14px; }

.mrdm-small-drop { width: min(calc(100vw - 28px), 355px); max-height: calc(100vh - 100px); padding: 9px; overflow-y: auto; border-radius: 16px; transform: translateY(0); }
.mrdm-small-drop[inert] { transform: translateY(8px); }
.mrdm-drop-head { padding: 10px 11px 13px; border-bottom: 1px solid var(--mrdm-line); }
.mrdm-drop-head strong,
.mrdm-drop-head small { display: block; }
.mrdm-drop-head strong { color: var(--mrdm-navy); font-size: 11px; }
.mrdm-drop-head small { margin-top: 3px; color: #999aa9; font-size: 8px; }
.mrdm-drop-link { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 58px; padding: 8px 9px; border-radius: 12px; transition: background .2s, transform .2s; }
.mrdm-drop-link:hover { background: var(--mrdm-soft); transform: translateX(-2px); }
.mrdm-drop-icon { display: grid; place-items: center; width: 34px; height: 34px; color: var(--mrdm-orange); background: rgba(255, 101, 0, .08); border-radius: 9px; }
.mrdm-drop-icon svg { width: 17px; height: 17px; }
.mrdm-drop-link strong,
.mrdm-drop-link small { display: block; }
.mrdm-drop-link strong { color: var(--mrdm-ink); font-size: 10.5px; font-weight: 850; }
.mrdm-drop-link small { margin-top: 3px; color: #9293a2; font-size: 8px; }

.mrdm-mobile-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--mrdm-line); border-radius: 12px; background: #fff; cursor: pointer; }
.mrdm-mobile-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--mrdm-navy); transition: transform .25s, opacity .25s; }
.mrdm-mobile-overlay { position: fixed; inset: 0; z-index: 999994; background: rgba(8, 7, 38, .6); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s; }
.mrdm-mobile-overlay.mrdm-is-open { opacity: 1; visibility: visible; }
.mrdm-mobile-drawer { position: fixed; z-index: 999995; top: 0; right: 0; bottom: 0; display: flex; flex-direction: column; width: min(92vw, 440px); overflow: hidden; background: #fff; box-shadow: -25px 0 70px rgba(8, 7, 38, .22); visibility: hidden; transform: translateX(105%); transition: transform .42s cubic-bezier(.22, .8, .22, 1), visibility .42s; }
.mrdm-mobile-drawer.mrdm-is-open { visibility: visible; transform: translateX(0); }
body.admin-bar .mrdm-mobile-drawer { top: 32px; }
.mrdm-mobile-head { display: flex; align-items: center; justify-content: space-between; flex: 0 0 auto; min-height: 82px; padding: 15px 18px; border-bottom: 1px solid var(--mrdm-line); }
.mrdm-mobile-close { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; color: var(--mrdm-navy); background: var(--mrdm-soft); border: 0; border-radius: 12px; cursor: pointer; }
.mrdm-mobile-close svg { width: 19px; height: 19px; }
.mrdm-mobile-scroll { flex: 1 1 auto; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: rgba(18, 16, 72, .2) transparent; }
.mrdm-mobile-nav { padding: 15px 17px 28px; }
.mrdm-mobile-home { display: flex; align-items: center; justify-content: space-between; min-height: 54px; margin-bottom: 10px; padding: 0 14px; color: #fff !important; background: radial-gradient(circle at 15% 0, rgba(255, 101, 0, .3), transparent 34%), var(--mrdm-navy); border-radius: 14px; font-size: 12px; font-weight: 850; }
.mrdm-mobile-home > span { display: flex; align-items: center; gap: 8px; }
.mrdm-mobile-home svg { width: 17px; height: 17px; }
.mrdm-mobile-section { border-bottom: 1px solid var(--mrdm-line); }
.mrdm-mobile-accordion { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 61px; padding: 0 4px; color: var(--mrdm-ink); background: transparent; border: 0; cursor: pointer; font-size: 12.5px; font-weight: 850; text-align: right; }
.mrdm-mobile-accordion > span { display: flex; align-items: center; gap: 10px; }
.mrdm-mobile-accordion > svg { width: 17px; height: 17px; color: var(--mrdm-orange); transition: transform .3s; }
.mrdm-mobile-accordion[aria-expanded="true"] > svg { transform: rotate(45deg); }
.mrdm-mobile-num { display: grid; place-items: center; width: 28px; height: 28px; color: var(--mrdm-orange); background: rgba(255, 101, 0, .075); border-radius: 8px; font: 700 8px/1 Arial, sans-serif; font-style: normal; letter-spacing: .04em; }
.mrdm-mobile-sub { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .34s, opacity .25s, padding-bottom .34s; }
.mrdm-mobile-section.mrdm-mobile-expanded .mrdm-mobile-sub { max-height: 720px; padding-bottom: 12px; opacity: 1; }
.mrdm-mobile-sub a { display: flex; align-items: center; min-height: 39px; margin-right: 38px; padding: 7px 11px; color: #66677a; border-radius: 9px; font-size: 10.5px; line-height: 1.65; }
.mrdm-mobile-sub a:hover { color: var(--mrdm-navy); background: var(--mrdm-soft); }
.mrdm-mobile-sub .mrdm-link-copy strong,
.mrdm-mobile-plain .mrdm-link-copy strong { font: inherit; }
.mrdm-mobile-sub .mrdm-soon { margin-right: auto; }
.mrdm-mobile-depth-2 { margin-right: 54px !important; font-size: 9.5px !important; opacity: .9; }
.mrdm-mobile-plain { border-bottom: 1px solid var(--mrdm-line); }
.mrdm-mobile-plain > a { display: flex; align-items: center; min-height: 52px; padding: 7px 12px; color: #4e4f61; border-radius: 10px; font-size: 11.5px; font-weight: 800; }
.mrdm-mobile-plain > a:hover { background: var(--mrdm-soft); }
.mrdm-mobile-footer { flex: 0 0 auto; padding: 15px 18px 18px; color: #fff; background: radial-gradient(circle at 85% 0, rgba(255, 101, 0, .28), transparent 37%), var(--mrdm-navy); }
.mrdm-mobile-footer p { margin-bottom: 9px; color: rgba(255, 255, 255, .58); font-size: 9.5px; }
.mrdm-mobile-footer a { display: flex; align-items: center; justify-content: space-between; min-height: 46px; padding: 0 14px; color: #fff !important; background: var(--mrdm-orange); border-radius: 12px; font-size: 11px; font-weight: 900; }
.mrdm-mobile-footer svg { width: 17px; height: 17px; }

.mrdm-toast { position: fixed; right: 24px; bottom: 24px; z-index: 999999; display: grid; grid-template-columns: 39px 1fr; align-items: center; gap: 10px; width: min(calc(100vw - 32px), 360px); min-height: 72px; padding: 11px 13px; color: #fff; background: rgba(15, 13, 57, .96); border: 1px solid rgba(255, 255, 255, .1); border-radius: 15px; box-shadow: 0 20px 50px rgba(8, 7, 38, .28); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .25s, visibility .25s, transform .3s; }
.mrdm-toast.mrdm-toast-show { opacity: 1; visibility: visible; transform: translateY(0); }
.mrdm-toast > span { display: grid; place-items: center; width: 39px; height: 39px; color: #ff9956; background: rgba(255, 101, 0, .12); border-radius: 11px; }
.mrdm-toast svg { width: 19px; height: 19px; }
.mrdm-toast p { margin: 0; }
.mrdm-toast strong,
.mrdm-toast small { display: block; }
.mrdm-toast strong { margin-bottom: 4px; font-size: 10.5px; font-weight: 850; }
.mrdm-toast small { color: rgba(255, 255, 255, .55); font-size: 8.5px; line-height: 1.7; }

.mrdm-setup-note { margin: 10px; padding: 14px 18px; direction: rtl; color: #7a3e00; background: #fff5e8; border: 1px solid #ffd8aa; border-radius: 10px; font-family: inherit; }

@keyframes mrdm-pulse { 0% { opacity: .8; transform: scale(.65); } 70%, 100% { opacity: 0; transform: scale(1.45); } }

@media (max-width: 1280px) {
  .mrdm-container { width: min(calc(100% - 28px), 1440px); }
  .mrdm-main-row { gap: 14px; }
  .mrdm-main-link { padding-inline: 9px; font-size: 11px; }
  .mrdm-account span { display: none; }
  .mrdm-service-group { padding-inline: 9px; }
  .mrdm-service-heading strong { font-size: 9.5px; }
  .mrdm-service-group li a { font-size: 8.8px; }
}

@media (max-width: 1050px) {
  .mrdm-topbar { display: none; }
  .mrdm-header,
  .mrdm-shell.mrdm-is-scrolled .mrdm-header { height: 74px; }
  .mrdm-desktop-nav,
  .mrdm-account { display: none; }
  .mrdm-actions { margin-right: auto; }
  .mrdm-mobile-toggle { display: block; }
  .mrdm-floating-panel { display: none !important; }
}

@media (max-width: 782px) {
  body.admin-bar .mrdm-shell { top: 46px; }
  body.admin-bar .mrdm-mobile-drawer { top: 46px; }
}

@media (max-width: 580px) {
  .mrdm-container { width: calc(100% - 24px); }
  .mrdm-brand { gap: 8px; }
  .mrdm-brand-mark { width: 42px; height: 42px; border-radius: 13px 5px 13px 13px; }
  .mrdm-brand-mark b { font-size: 20px; }
  .mrdm-brand-copy strong { font-size: 15px; }
  .mrdm-brand-copy small { font-size: 6px; }
  .mrdm-cta { min-height: 42px; padding-inline: 12px; font-size: 9.5px; }
  .mrdm-cta svg { display: none; }
  .mrdm-mobile-toggle { width: 42px; height: 42px; }
  .mrdm-toast { right: 16px; bottom: 16px; }
}

@media (max-width: 380px) {
  .mrdm-brand-copy small { display: none; }
  .mrdm-cta { display: none; }
}

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

@supports not (backdrop-filter: blur(1px)) {
  .mrdm-header { background: rgba(255, 255, 255, .98); }
  .mrdm-mobile-overlay { background: rgba(8, 7, 38, .76); }
}
