/* Theme tokens from the reference image: deep navy stage, electric blue panels, orange CTA, gold highlights. */
body.mb-site,
.mb-site-header,
.mb-page-strip,
.mb-site-footer,
.mb-site-drawer,
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  --mb-font: "Inter", "Noto Sans", "Segoe UI", Arial, sans-serif;

  --mb-container: 1120px;
  --mb-shell-gutter: clamp(12px, 3vw, 24px);
  --mb-content-pad: clamp(16px, 3.2vw, 30px);
  --mb-section-gap: clamp(28px, 5vw, 56px);
  --mb-row-gap: clamp(18px, 3.2vw, 34px);
  --mb-card-gap: clamp(16px, 2.5vw, 24px);

  --mb-bg: #061237;
  --mb-bg-2: #08245c;
  --mb-bg-3: #0a3b86;

  --mb-panel: rgba(7, 19, 52, 0.94);
  --mb-panel-2: rgba(9, 35, 86, 0.88);
  --mb-panel-3: rgba(12, 55, 126, 0.72);

  --mb-primary: #ff5a0a;
  --mb-primary-2: #ff8a16;
  --mb-red: #ff2f08;
  --mb-gold: #ffbd42;
  --mb-gold-2: #ffd66b;
  --mb-teal: #39c9ff;

  --mb-text: #ffffff;
  --mb-text-soft: #dbe8ff;
  --mb-muted: #9fb4da;
  --mb-muted-2: #7189b6;

  --mb-border: rgba(126, 176, 255, 0.22);
  --mb-border-strong: rgba(255, 138, 22, 0.55);
  --mb-line: rgba(126, 176, 255, 0.22);
  --mb-line-strong: rgba(255, 138, 22, 0.55);

  --mb-radius-sm: 12px;
  --mb-radius: 20px;
  --mb-radius-lg: 28px;
  --mb-pill: 999px;

  --mb-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --mb-glow: 0 18px 48px rgba(255, 90, 10, 0.22), 0 0 34px rgba(57, 201, 255, 0.12);
}

body.mb-site {
  direction: ltr;
  text-align: left;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 78% 8%, rgba(57, 201, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 20% 0%, rgba(255, 90, 10, 0.16), transparent 24rem),
    linear-gradient(135deg, #030a25 0%, #061237 38%, #08245c 72%, #061237 100%);
}

/* Scoped sizing only; this does not reset Elementor globally. */
.mb-article,
.mb-article *,
.mb-article *::before,
.mb-article *::after,
.mbpk-article,
.mbpk-article *,
.mbpk-article *::before,
.mbpk-article *::after,
.mbpk-page .mb-article,
.mbpk-page .mb-article *,
.mbpk-page .mb-article *::before,
.mbpk-page .mb-article *::after,
.mb-site-header,
.mb-site-header *,
.mb-site-header *::before,
.mb-site-header *::after,
.mb-page-strip,
.mb-page-strip *,
.mb-page-strip *::before,
.mb-page-strip *::after,
.mb-site-footer,
.mb-site-footer *,
.mb-site-footer *::before,
.mb-site-footer *::after,
.mb-site-drawer,
.mb-site-drawer *,
.mb-site-drawer *::before,
.mb-site-drawer *::after {
  box-sizing: border-box;
}

/* Header and top chrome. */
.mb-site-header,
.mb-page-strip,
.mb-site-footer,
.mb-site-drawer {
  font-family: var(--mb-font);
}

.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--mb-text);
  background: linear-gradient(180deg, rgba(4, 12, 38, 0.88), rgba(6, 18, 55, 0.72));
  border-bottom: 1px solid var(--mb-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mb-site-header__inner {
  width: min(var(--mb-container), calc(100% - 24px));
  max-width: 100%;
  margin-inline: auto;
  padding-block: clamp(8px, 1.8vw, 14px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.8vw, 18px);
  min-width: 0;
}

.mb-site-brand {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mb-text);
  text-decoration: none;
}

.mb-site-brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 40px;
  aspect-ratio: 800 / 128;
  object-fit: contain;
}

.mb-site-brand__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--mb-text);
}

.mb-site-nav {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.mb-site-nav__list {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  scrollbar-width: none;
}

.mb-site-nav__list::-webkit-scrollbar {
  display: none;
}

.mb-site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(126, 176, 255, 0.22);
  border-radius: var(--mb-pill);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible,
.mb-site-nav__link[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 90, 10, 0.9), rgba(255, 47, 8, 0.9));
  border-color: rgba(255, 189, 66, 0.55);
  transform: translateY(-1px);
  outline: none;
}

.mb-site-header__actions {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.mb-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: min(42vw, 12rem);
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 189, 66, 0.4);
  border-radius: var(--mb-pill);
  color: #ffffff;
  background: linear-gradient(135deg, var(--mb-primary-2), var(--mb-red));
  box-shadow: 0 10px 24px rgba(255, 90, 10, 0.25);
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 14px 30px rgba(255, 90, 10, 0.34);
  outline: none;
}

.mb-site-btn--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 189, 66, 0.5);
  box-shadow: none;
}

.mb-site-btn--apk:hover,
.mb-site-btn--apk:focus-visible {
  color: #061237;
  background: linear-gradient(135deg, var(--mb-gold-2), var(--mb-primary-2));
}

.mb-site-burger {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid var(--mb-border);
  border-radius: 12px;
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.06);
}

/* Off-canvas drawer sizing and visual skin. */
.mb-site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  color: var(--mb-text);
  background: rgba(0, 5, 20, 0.62);
  z-index: 999;
}

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--mb-text);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 90, 10, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(7, 19, 52, 0.98), rgba(4, 12, 38, 0.98));
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.mb-site-drawer__panel::-webkit-scrollbar {
  display: none;
}

.mb-site-drawer__link {
  color: var(--mb-text-soft);
  text-decoration: none;
  border-color: var(--mb-border);
}

.mb-site-drawer__link:hover,
.mb-site-drawer__link:focus-visible {
  color: #ffffff;
  background: rgba(255, 90, 10, 0.14);
  outline: none;
}

.mb-site-drawer__cta,
.mb-site-drawer__cta--apk {
  color: #ffffff;
  background: linear-gradient(135deg, var(--mb-primary-2), var(--mb-red));
  border-color: rgba(255, 189, 66, 0.42);
  text-decoration: none;
  text-align: center;
}

.mb-site-drawer__cta--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 255, 255, 0.055);
}

/* Compact page strip and breadcrumbs. */
.mb-page-strip {
  color: var(--mb-muted);
  background: rgba(4, 12, 38, 0.56);
  border-bottom: 1px solid rgba(126, 176, 255, 0.14);
}

.mb-page-strip__inner {
  width: min(var(--mb-container), calc(100% - 24px));
  max-width: 100%;
  margin-inline: auto;
  padding-block: 8px;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.mb-breadcrumbs,
.mb-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mb-breadcrumbs a,
.mb-page-strip a {
  color: var(--mb-text-soft);
  text-decoration: none;
}

.mb-breadcrumbs a:hover,
.mb-page-strip a:hover {
  color: var(--mb-gold-2);
}

/* Optional topbar. */
.mb-topbar {
  color: var(--mb-muted);
  background: #030a25;
  border-bottom: 1px solid rgba(126, 176, 255, 0.12);
  font-family: var(--mb-font);
}

.mb-topbar__inner {
  width: min(var(--mb-container), calc(100% - 24px));
  max-width: 100%;
  margin-inline: auto;
  padding-block: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  min-width: 0;
}

.mb-topbar a {
  color: var(--mb-gold-2);
  text-decoration: none;
}

/* Footer. */
.mb-site-footer {
  margin-block-start: clamp(32px, 6vw, 72px);
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 90, 10, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(6, 18, 55, 0.82), rgba(3, 10, 37, 0.98));
  border-top: 1px solid var(--mb-border);
}

.mb-site-footer__inner {
  width: min(var(--mb-container), calc(100% - 24px));
  max-width: 100%;
  margin-inline: auto;
  padding-block: clamp(24px, 4.5vw, 44px);
  display: grid;
  /* было две колонки: меню сворачивалось в рваный столбик. Футер — одна колонка. */
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 4vw, 42px);
  min-width: 0;
}

.mb-site-footer__brand,
.mb-footer-brand {
  min-width: 0;
  color: var(--mb-text);
}

.mb-site-footer__logo,
.mb-footer-brand__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 42px;
  aspect-ratio: 800 / 128;
  object-fit: contain;
}

.mb-footer-nav {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mb-footer-nav__list {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}

.mb-footer-nav__list > li {
  flex: 1 1 auto;
  min-width: min(12rem, 100%);
  max-width: 100%;
}

.mb-footer-nav__link {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(126, 176, 255, 0.18);
  border-radius: var(--mb-pill);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.mb-footer-nav__link:hover,
.mb-footer-nav__link:focus-visible {
  color: #ffffff;
  background: rgba(255, 90, 10, 0.16);
  border-color: rgba(255, 189, 66, 0.38);
  outline: none;
}

.mb-site-footer__copy {
  margin-block-start: 18px;
  color: var(--mb-muted);
  font-size: 0.92rem;
}

/* Article root: self-contained readable content column. */
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  width: min(var(--mb-container), calc(100% - 24px));
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: clamp(18px, 4vw, 44px);
  padding: var(--mb-content-pad);
  min-width: 0;
  direction: ltr;
  text-align: left;
  font-family: var(--mb-font);
  color: var(--mb-text-soft);
  background:
    radial-gradient(circle at 78% 4%, rgba(57, 201, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 7% 16%, rgba(255, 90, 10, 0.11), transparent 18rem),
    linear-gradient(180deg, rgba(8, 23, 62, 0.96), rgba(4, 12, 38, 0.98));
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-lg);
  box-shadow: var(--mb-shadow);
}

.mb-article__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  min-width: 0;
}

/* Direction compatibility if a specific article is explicitly marked RTL. */
.mb-article[dir="rtl"],
.mbpk-article[dir="rtl"],
.mbpk-page .mb-article[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* Typography. */
.mb-article :is(h1, h2, h3, h4, h5, h6),
.mbpk-article :is(h1, h2, h3, h4, h5, h6),
.mbpk-page .mb-article :is(h1, h2, h3, h4, h5, h6) {
  margin-block: 0 0.65em;
  color: var(--mb-text);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.mb-article h1,
.mbpk-article h1,
.mbpk-page .mb-article h1 {
  font-size: clamp(2.15rem, 6.2vw, 4.55rem);
  text-shadow: 0 3px 0 rgba(255, 90, 10, 0.32), 0 18px 42px rgba(0, 0, 0, 0.35);
}

.mb-article h2,
.mbpk-article h2,
.mbpk-page .mb-article h2 {
  font-size: clamp(1.65rem, 4vw, 2.85rem);
}

.mb-article h3,
.mbpk-article h3,
.mbpk-page .mb-article h3 {
  font-size: clamp(1.28rem, 2.5vw, 1.85rem);
}

.mb-article h4,
.mbpk-article h4,
.mbpk-page .mb-article h4 {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.mb-article :is(p, li, dd, figcaption, td, th, summary),
.mbpk-article :is(p, li, dd, figcaption, td, th, summary),
.mbpk-page .mb-article :is(p, li, dd, figcaption, td, th, summary) {
  overflow-wrap: anywhere;
}

.mb-article p,
.mbpk-article p,
.mbpk-page .mb-article p {
  max-width: 100%;
  margin-block: 0 1em;
  margin-inline: 0;
  color: var(--mb-text-soft);
  font-size: clamp(1rem, 1.2vw, 1.075rem);
  line-height: 1.75;
}

.mb-article :is(p, ul, ol):last-child,
.mbpk-article :is(p, ul, ol):last-child,
.mbpk-page .mb-article :is(p, ul, ol):last-child {
  margin-block-end: 0;
}

.mb-article .mb-lead,
.mbpk-article .mb-lead,
.mbpk-page .mb-article .mb-lead {
  color: #eef5ff;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.65;
}

.mb-article .mb-kicker,
.mbpk-article .mb-kicker,
.mbpk-page .mb-article .mb-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-block-end: 0.85rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(255, 189, 66, 0.34);
  border-radius: var(--mb-pill);
  color: var(--mb-gold-2);
  background: rgba(255, 189, 66, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mb-article a:not(.mb-btn),
.mbpk-article a:not(.mb-btn),
.mbpk-page .mb-article a:not(.mb-btn) {
  color: var(--mb-gold-2);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.mb-article a:not(.mb-btn):hover,
.mbpk-article a:not(.mb-btn):hover,
.mbpk-page .mb-article a:not(.mb-btn):hover {
  color: #ffffff;
}

/* Full-width text by default; only explicit measure class narrows copy. */
.mb-copy,
.mb-hero__copy,
.mb-cta__copy,
.mb-card__body,
.mb-card__content,
.mb-card__copy,
.mb-article .mb-copy :is(p, ul, ol),
.mb-article .mb-hero__copy :is(p, ul, ol),
.mb-article .mb-cta__copy :is(p, ul, ol),
.mb-article .mb-card__copy,
.mbpk-article .mb-copy :is(p, ul, ol),
.mbpk-article .mb-hero__copy :is(p, ul, ol),
.mbpk-article .mb-cta__copy :is(p, ul, ol),
.mbpk-article .mb-card__copy,
.mbpk-page .mb-article .mb-copy :is(p, ul, ol),
.mbpk-page .mb-article .mb-hero__copy :is(p, ul, ol),
.mbpk-page .mb-article .mb-cta__copy :is(p, ul, ol),
.mbpk-page .mb-article .mb-card__copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: 0;
}

.mb-measure,
.mb-article .mb-measure,
.mbpk-article .mb-measure,
.mbpk-page .mb-article .mb-measure {
  max-width: min(72ch, 100%);
  margin-inline: auto;
}

/* Reusable sections. */
.mb-section,
.mb-row,
.mb-hero,
.mb-cta,
.mb-grid,
.mb-slot-grid,
.mb-table-wrap,
.mb-faq,
.mb-divider {
  min-width: 0;
  max-width: 100%;
}

.mb-row,
.mb-cta,
.mb-hero {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
}

.mb-row {
  margin-block: 0 var(--mb-section-gap);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  align-items: start;
  gap: var(--mb-row-gap);
}

.mb-row--reverse {
  grid-template-areas:
    "copy"
    "media";
}

.mb-row > .mb-copy {
  grid-area: copy;
}

.mb-row > .mb-media {
  grid-area: media;
}

.mb-copy,
.mb-media {
  padding-block-start: clamp(0.25rem, 1vw, 0.75rem);
}

.mb-copy {
  display: block;
  align-self: start;
}

/* Long and stacked rows remain one column and are never applied to hero. */
.mb-row--stack:not(.mb-hero),
.mb-row--long:not(.mb-hero) {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
}

.mb-row--reverse.mb-row--stack:not(.mb-hero),
.mb-row--reverse.mb-row--long:not(.mb-hero) {
  grid-template-areas:
    "copy"
    "media";
}

.mb-row--stack:not(.mb-hero) > .mb-media,
.mb-row--long:not(.mb-hero) > .mb-media {
  width: 100%;
  max-width: 100%;
}

/* Hero: single-column grid at every breakpoint, visual order image, CTA, copy. */
.mb-hero {
  --mb-hero-edge: var(--mb-content-pad);
  margin-block: 0 var(--mb-section-gap);
  padding-inline: 0;
  padding-block-start: 0;
  padding-block-end: clamp(18px, 3.8vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
  border: 1px solid rgba(126, 176, 255, 0.22);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 80% 16%, rgba(57, 201, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 16% 72%, rgba(255, 90, 10, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(10, 39, 92, 0.68), rgba(5, 14, 43, 0.86));
  box-shadow: var(--mb-glow);
}

.mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
}

.mb-hero__copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  padding-inline: var(--mb-hero-edge);
  padding-block-end: 2px;
  min-width: 0;
}

.mb-hero > .mb-cta {
  grid-area: cta;
  width: calc(100% - var(--mb-hero-edge) - var(--mb-hero-edge));
  max-width: calc(100% - var(--mb-hero-edge) - var(--mb-hero-edge));
  margin-inline: var(--mb-hero-edge);
  margin-block: clamp(2px, 1vw, 8px);
}

.mb-hero__badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-block-end: 0.9rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(255, 189, 66, 0.36);
  border-radius: var(--mb-pill);
  color: var(--mb-gold-2);
  background: rgba(255, 189, 66, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}

.mb-hero__title {
  margin-block-end: 0.36em;
}

.mb-hero__lead {
  max-width: 100%;
  margin-inline: 0;
  color: #eaf3ff;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.62;
}

.mb-hero__actions,
.mb-cta__actions,
.mb-actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Media blocks: images fill rounded corners with no inner padding. */
.mb-hero__media,
.mb-media,
.mb-card__media,
.mb-figure {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  overflow: clip;
  border-radius: var(--mb-radius);
  background: #061237;
  border: 1px solid rgba(126, 176, 255, 0.18);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28), 0 0 34px rgba(57, 201, 255, 0.08);
}

.mb-hero__media {
  aspect-ratio: 16 / 9;
  border-radius: var(--mb-radius-lg) var(--mb-radius-lg) var(--mb-radius) var(--mb-radius);
}

.mb-media,
.mb-card__media,
.mb-figure {
  aspect-ratio: 2 / 3;
}

.mb-hero__media img,
.mb-media img,
.mb-card__media img,
.mb-figure img,
.mb-article img,
.mbpk-article img,
.mbpk-page .mb-article img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.mb-hero__media img,
.mb-media img,
.mb-card__media img,
.mb-figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.mb-media:hover img,
.mb-card:hover .mb-card__media img,
.mb-hero__media:hover img,
.mb-figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.07) contrast(1.04);
  cursor: pointer;
}

/* CTA and buttons. */
.mb-cta {
  margin-block: 0 var(--mb-section-gap);
  padding: clamp(18px, 3.4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2.5vw, 22px);
  min-width: 0;
  border: 1px solid rgba(255, 138, 22, 0.46);
  border-radius: var(--mb-radius-lg);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 189, 66, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(255, 90, 10, 0.20), rgba(10, 39, 92, 0.72) 52%, rgba(6, 18, 55, 0.94));
  box-shadow: var(--mb-glow);
}

.mb-cta__title {
  margin-block-end: 0.35em;
}

.mb-cta__copy {
  color: var(--mb-text-soft);
}

.mb-btn,
.mb-article a.mb-btn,
.mbpk-article a.mb-btn,
.mbpk-page .mb-article a.mb-btn,
.mb-article button.mb-btn,
.mbpk-article button.mb-btn,
.mbpk-page .mb-article button.mb-btn {
  appearance: none;
  -webkit-appearance: none;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.18rem;
  border: 1px solid rgba(255, 189, 66, 0.46);
  border-radius: var(--mb-pill);
  color: #ffffff;
  background: linear-gradient(135deg, var(--mb-primary-2), var(--mb-primary) 48%, var(--mb-red));
  box-shadow: 0 14px 30px rgba(255, 90, 10, 0.30);
  text-decoration: none;
  text-align: center;
  font-family: var(--mb-font);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -0.01em;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mb-btn:visited,
.mb-article a.mb-btn:visited,
.mbpk-article a.mb-btn:visited,
.mbpk-page .mb-article a.mb-btn:visited {
  color: #ffffff;
}

.mb-btn:hover,
.mb-btn:focus-visible,
.mb-article a.mb-btn:hover,
.mb-article a.mb-btn:focus-visible,
.mbpk-article a.mb-btn:hover,
.mbpk-article a.mb-btn:focus-visible,
.mbpk-page .mb-article a.mb-btn:hover,
.mbpk-page .mb-article a.mb-btn:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 18px 38px rgba(255, 90, 10, 0.42);
  outline: none;
}

.mb-btn--secondary,
.mb-article a.mb-btn--secondary,
.mbpk-article a.mb-btn--secondary,
.mbpk-page .mb-article a.mb-btn--secondary {
  color: var(--mb-gold-2);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 189, 66, 0.52);
  box-shadow: none;
}

.mb-btn--secondary:visited,
.mb-article a.mb-btn--secondary:visited,
.mbpk-article a.mb-btn--secondary:visited,
.mbpk-page .mb-article a.mb-btn--secondary:visited {
  color: var(--mb-gold-2);
}

.mb-btn--secondary:hover,
.mb-btn--secondary:focus-visible,
.mb-article a.mb-btn--secondary:hover,
.mb-article a.mb-btn--secondary:focus-visible,
.mbpk-article a.mb-btn--secondary:hover,
.mbpk-article a.mb-btn--secondary:focus-visible,
.mbpk-page .mb-article a.mb-btn--secondary:hover,
.mbpk-page .mb-article a.mb-btn--secondary:focus-visible {
  color: #061237;
  background: linear-gradient(135deg, var(--mb-gold-2), var(--mb-primary-2));
  border-color: rgba(255, 214, 107, 0.78);
}

.mb-btn--ghost,
.mb-article a.mb-btn--ghost,
.mbpk-article a.mb-btn--ghost,
.mbpk-page .mb-article a.mb-btn--ghost {
  color: var(--mb-text);
  background: rgba(57, 201, 255, 0.08);
  border-color: rgba(57, 201, 255, 0.32);
  box-shadow: none;
}

/* Grids and cards. */
.mb-article .mb-grid,
.mb-article .mb-slot-grid,
.mbpk-article .mb-grid,
.mbpk-article .mb-slot-grid,
.mbpk-page .mb-article .mb-grid,
.mbpk-page .mb-article .mb-slot-grid {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 var(--mb-section-gap);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--mb-card-gap);
  align-items: stretch;
  min-width: 0;
}

.mb-article .mb-grid > .mb-card,
.mb-article .mb-slot-grid > .mb-card,
.mbpk-article .mb-grid > .mb-card,
.mbpk-article .mb-slot-grid > .mb-card,
.mbpk-page .mb-article .mb-grid > .mb-card,
.mbpk-page .mb-article .mb-slot-grid > .mb-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-column: auto;
}

.mb-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(126, 176, 255, 0.19);
  border-radius: var(--mb-radius);
  background:
    linear-gradient(180deg, rgba(10, 39, 92, 0.58), rgba(5, 14, 43, 0.88));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.mb-card__media {
  flex: 0 0 auto;
  border-radius: var(--mb-radius) var(--mb-radius) 14px 14px;
}

.mb-card__body,
.mb-card__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 24px);
}

.mb-card__title,
.mb-card h3,
.mb-card h4 {
  margin-block-end: 0.45em;
}

.mb-card__copy {
  color: var(--mb-text-soft);
  line-height: 1.7;
}

.mb-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-block-start: 12px;
  color: var(--mb-muted);
  font-size: 0.9rem;
}

/* Lists. */
.mb-article ul,
.mb-article ol,
.mbpk-article ul,
.mbpk-article ol,
.mbpk-page .mb-article ul,
.mbpk-page .mb-article ol {
  max-width: 100%;
  margin-block: 0 1.1em;
  margin-inline: 0;
  padding-inline-start: 1.35em;
  padding-inline-end: 0;
  color: var(--mb-text-soft);
  line-height: 1.72;
}

.mb-article li + li,
.mbpk-article li + li,
.mbpk-page .mb-article li + li {
  margin-block-start: 0.45em;
}

.mb-list-clean {
  padding-inline-start: 0 !important;
  list-style: none;
}

.mb-list-check {
  padding-inline-start: 0 !important;
  list-style: none;
}

.mb-list-check > li {
  position: relative;
  padding-inline-start: 1.9rem;
}

.mb-list-check > li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.48em;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mb-gold-2), var(--mb-primary));
  box-shadow: 0 0 18px rgba(255, 90, 10, 0.46);
}

/* FAQ. */
.mb-faq {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 var(--mb-section-gap);
  display: grid;
  gap: 12px;
  min-width: 0;
}

.mb-faq details {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(126, 176, 255, 0.20);
  border-radius: var(--mb-radius);
  background: rgba(255, 255, 255, 0.045);
}

.mb-faq summary {
  min-width: 0;
  padding: 1rem 1.1rem;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
}

.mb-faq details[open] summary {
  color: var(--mb-gold-2);
  border-bottom: 1px solid rgba(126, 176, 255, 0.14);
}

.mb-faq details > :not(summary) {
  padding-inline: 1.1rem;
}

.mb-faq details > :last-child {
  padding-block-end: 1.1rem;
}

/* Tables: wide tables scroll inside the wrapper only. */
.mb-table-wrap {
  width: 100%;
  max-width: 100%;
  margin-block: clamp(18px, 3vw, 30px) var(--mb-section-gap);
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  border: 1px solid rgba(126, 176, 255, 0.20);
  border-radius: var(--mb-radius);
  background: rgba(255, 255, 255, 0.035);
  scrollbar-color: var(--mb-primary) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

table.mb-table,
.mb-article table.mb-table,
.mbpk-article table.mb-table,
.mbpk-page .mb-article table.mb-table {
  width: 100%;
  min-width: 620px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  direction: ltr;
  text-align: left;
  color: var(--mb-text-soft);
  background: rgba(5, 14, 43, 0.72);
}

table.mb-table caption {
  padding: 0.9rem 1rem;
  color: var(--mb-muted);
  text-align: left;
  caption-side: bottom;
}

table.mb-table th,
table.mb-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(126, 176, 255, 0.16);
  vertical-align: top;
  line-height: 1.45;
}

table.mb-table th {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 90, 10, 0.24), rgba(10, 39, 92, 0.62));
  font-weight: 900;
}

table.mb-table tr:last-child td {
  border-bottom: 0;
}

table.mb-table tbody tr:hover td {
  background: rgba(57, 201, 255, 0.055);
}

/* Standalone divider between sections only. */
.mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  height: 1px;
  margin: 0 auto var(--mb-section-gap);
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 22, 0.62), rgba(57, 201, 255, 0.38), transparent);
}

/* Scoped form elements for Elementor HTML blocks. */
.mb-article :is(input, select, textarea),
.mbpk-article :is(input, select, textarea),
.mbpk-page .mb-article :is(input, select, textarea) {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(126, 176, 255, 0.25);
  border-radius: 14px;
  color: var(--mb-text);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--mb-font);
}

.mb-article :is(input, select, textarea):focus,
.mbpk-article :is(input, select, textarea):focus,
.mbpk-page .mb-article :is(input, select, textarea):focus {
  border-color: rgba(255, 189, 66, 0.58);
  box-shadow: 0 0 0 3px rgba(255, 90, 10, 0.16);
  outline: none;
}

/* Tablet layout: card grids are exactly two equal columns, never three. */
@media (min-width: 640px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop rows and card grids. Hero remains one column. */
@media (min-width: 860px) {
  .mb-row {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    grid-template-areas: "copy media";
    align-items: start;
  }

  .mb-row--reverse {
    grid-template-areas: "media copy";
  }

  .mb-row--stack:not(.mb-hero),
  .mb-row--long:not(.mb-hero) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "copy";
  }

  .mb-row--reverse.mb-row--stack:not(.mb-hero),
  .mb-row--reverse.mb-row--long:not(.mb-hero) {
    grid-template-areas:
      "copy"
      "media";
  }

  .mb-cta--split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

@media (min-width: 980px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mb-article .mb-grid--orphan-fix,
  .mb-article .mb-slot-grid--orphan-fix,
  .mbpk-article .mb-grid--orphan-fix,
  .mbpk-article .mb-slot-grid--orphan-fix,
  .mbpk-page .mb-article .mb-grid--orphan-fix,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mb-article .mb-grid--orphan-fix > .mb-card,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card {
    grid-column: span 2;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2) {
    grid-column: span 3;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0;
    align-items: stretch;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    align-self: stretch;
    border-radius: 14px var(--mb-radius) var(--mb-radius) 14px;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content) {
    grid-column: 1;
    min-width: 0;
    margin-inline: clamp(16px, 2.5vw, 24px);
  }
}

/* Mobile safety: no element should force horizontal viewport scroll. */
@media (max-width: 639.98px) {
  .mb-site-brand__logo {
    max-height: clamp(26px, 7.5vw, 40px);
  }

  .mb-site-header__inner {
    gap: 7px;
  }

  .mb-site-btn {
    min-height: 30px;
    padding: 0.48rem 0.62rem;
    font-size: 0.78rem;
  }

  .mb-site-burger {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 10px;
  }

  .mb-site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .mb-footer-nav__list > li {
    flex-basis: 100%;
  }

  .mb-article,
  .mbpk-article,
  .mbpk-page .mb-article {
    width: min(100%, calc(100% - 20px));
    padding: clamp(14px, 4vw, 18px);
    border-radius: 22px;
  }

  .mb-row,
  .mb-hero,
  .mb-cta,
  .mb-grid,
  .mb-slot-grid,
  .mb-faq,
  .mb-table-wrap {
    width: 100%;
    max-width: 100%;
  }

  .mb-hero {
    --mb-hero-edge: clamp(14px, 4vw, 18px);
  }

  .mb-hero__actions,
  .mb-cta__actions,
  .mb-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mb-btn,
  .mb-article a.mb-btn,
  .mbpk-article a.mb-btn,
  .mbpk-page .mb-article a.mb-btn,
  .mb-article button.mb-btn,
  .mbpk-article button.mb-btn,
  .mbpk-page .mb-article button.mb-btn {
    width: 100%;
    max-width: 100%;
  }

  .mb-hero__media,
  .mb-media,
  .mb-card__media,
  .mb-figure,
  .mb-hero__media img,
  .mb-media img,
  .mb-card__media img,
  .mb-figure img {
    max-width: 100%;
  }

  table.mb-table,
  .mb-article table.mb-table,
  .mbpk-article table.mb-table,
  .mbpk-page .mb-article table.mb-table {
    min-width: 620px;
  }

  table.mb-table th,
  table.mb-table td {
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .mb-site-nav__link {
    padding-inline: 0.65rem;
    font-size: 0.84rem;
  }

  .mb-article h1,
  .mbpk-article h1,
  .mbpk-page .mb-article h1 {
    font-size: clamp(1.95rem, 12vw, 3rem);
  }

  .mb-cta {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mb-article *,
  .mb-article *::before,
  .mb-article *::after,
  .mbpk-article *,
  .mbpk-article *::before,
  .mbpk-article *::after,
  .mbpk-page .mb-article *,
  .mbpk-page .mb-article *::before,
  .mbpk-page .mb-article *::after,
  .mb-site-header *,
  .mb-site-header *::before,
  .mb-site-header *::after,
  .mb-site-footer *,
  .mb-site-footer *::before,
  .mb-site-footer *::after,
  .mb-site-drawer *,
  .mb-site-drawer *::before,
  .mb-site-drawer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Ссылки внутри юридических страниц: их разметка пришла из архива без наших классов,
   и браузер красил их дефолтным синим поверх тёмного фона. Цвет — тот же токен, что
   у ссылок статьи. */
.mb-site-main a:not([class]) {
  color: var(--mb-accent, #f5c518);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mb-site-main a:not([class]):hover { opacity: .85; }

/* fair-pages-kit: Beautiful Site TOC (converter-injected) */
.mb-article .mb-toc,
.mbpk-article .mb-toc,
.mbpk-page .mb-article .mb-toc {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-stack-gap, var(--mb-space-7, clamp(20px, 4vw, 42px)));
  padding: clamp(20px, 4vw, 36px) var(--mb-page-pad, var(--mb-gutter, clamp(16px, 3.4vw, 28px)));
  border: 1px solid var(--mb-border, rgba(255, 255, 255, 0.12));
  border-radius: var(--mb-radius-lg, 22px);
  background:
    radial-gradient(circle at 88% 10%, rgba(227, 178, 87, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(36, 16, 8, 0.94), rgba(27, 11, 5, 0.88));
  box-shadow: var(--mb-shadow, 0 22px 70px rgba(0, 0, 0, 0.42));
}

.mb-article .mb-toc__summary,
.mbpk-article .mb-toc__summary,
.mbpk-page .mb-article .mb-toc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-article .mb-toc__summary::-webkit-details-marker,
.mbpk-article .mb-toc__summary::-webkit-details-marker,
.mbpk-page .mb-article .mb-toc__summary::-webkit-details-marker {
  display: none;
}

.mb-article .mb-toc__summary::after,
.mbpk-article .mb-toc__summary::after,
.mbpk-page .mb-article .mb-toc__summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--mb-border-strong, rgba(255, 255, 255, 0.24));
  border-radius: var(--mb-radius-sm, 12px);
  color: var(--mb-gold-2, #ffd985);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mb-article .mb-toc[open] .mb-toc__summary::after,
.mbpk-article .mb-toc[open] .mb-toc__summary::after,
.mbpk-page .mb-article .mb-toc[open] .mb-toc__summary::after {
  content: "−";
}

.mb-article .mb-toc__title,
.mbpk-article .mb-toc__title,
.mbpk-page .mb-article .mb-toc__title {
  margin: 0;
  color: var(--mb-gold-2, #ffd985);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.25;
}

.mb-article .mb-toc__list,
.mbpk-article .mb-toc__list,
.mbpk-page .mb-article .mb-toc__list {
  margin: clamp(14px, 2.5vw, 20px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(8px, 1.5vw, 12px);
}

.mb-article .mb-toc__list--sub,
.mbpk-article .mb-toc__list--sub,
.mbpk-page .mb-article .mb-toc__list--sub {
  margin: clamp(8px, 1.5vw, 10px) 0 0;
  padding-left: clamp(12px, 2vw, 18px);
  border-left: 1px solid var(--mb-border, rgba(255, 255, 255, 0.12));
}

.mb-article .mb-toc__item,
.mbpk-article .mb-toc__item,
.mbpk-page .mb-article .mb-toc__item {
  margin: 0;
}

.mb-article .mb-toc__link,
.mbpk-article .mb-toc__link,
.mbpk-page .mb-article .mb-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--mb-radius-sm, 12px);
  color: var(--mb-text, var(--mb-ink, #f2f2ee));
  text-decoration: none;
  background: rgba(255, 246, 220, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mb-article .mb-toc__num,
.mbpk-article .mb-toc__num,
.mbpk-page .mb-article .mb-toc__num {
  flex: 0 0 auto;
  min-width: 2.2rem;
  color: var(--mb-gold, #e3b257);
  font-variant-numeric: tabular-nums;
}

.mb-article .mb-toc__text,
.mbpk-article .mb-toc__text,
.mbpk-page .mb-article .mb-toc__text {
  flex: 1 1 auto;
}

.mb-article .mb-toc__link:hover,
.mbpk-article .mb-toc__link:hover,
.mbpk-page .mb-article .mb-toc__link:hover,
.mb-article .mb-toc__link:focus-visible,
.mbpk-article .mb-toc__link:focus-visible,
.mbpk-page .mb-article .mb-toc__link:focus-visible {
  color: var(--mb-gold-2, #ffd985);
  border-color: var(--mb-border-strong, rgba(255, 255, 255, 0.24));
  background: rgba(227, 178, 87, 0.08);
}

@media (max-width: 640px) {
  .mb-article .mb-toc,
  .mbpk-article .mb-toc,
  .mbpk-page .mb-article .mb-toc {
    max-width: 100%;
  }
}

