/* Собранный CSS сетки блоков — править модули в blocks/css/ */
    :root {
      --bg: #091121;
      --bg-soft: #111d34;
      --bg-deep: #060d1a;
      --surface: rgba(15, 26, 48, 0.34);
      --surface-strong: rgba(12, 22, 40, 0.52);
      --line: rgba(255, 255, 255, 0.16);
      --line-soft: rgba(178, 202, 255, 0.18);
      --text: #f4f6fb;
      --muted: rgba(236, 241, 250, 0.82);
      --muted-soft: rgba(220, 228, 243, 0.62);
      --gold: #ffb45a;
      --gold-deep: #ee8f1e;
      --gold-glow: rgba(255, 180, 90, 0.34);
      --blue: #7fa9ff;
      --blue-soft: rgba(127, 169, 255, 0.22);
      --shadow: 0 28px 70px rgba(2, 7, 16, 0.26);
      --text-dark: #172842;
      --text-dark-strong: #14243d;
      --text-dark-muted: rgba(43, 59, 87, 0.76);
      --text-dark-muted-strong: rgba(50, 68, 97, 0.82);
      --surface-light-top: rgba(252, 253, 255, 0.98);
      --surface-light-bottom: rgba(239, 245, 252, 0.96);
      --surface-light-raised-top: rgba(255, 255, 255, 0.92);
      --surface-light-raised-bottom: rgba(244, 248, 253, 0.98);
      --border-light: rgba(20, 39, 70, 0.08);
      --shadow-light: 0 18px 38px rgba(7, 16, 29, 0.05);
      --shadow-light-lg: 0 24px 56px rgba(7, 16, 29, 0.08);
      --gold-tint: #ffe5c2;
      --gold-tint-soft: #ffe4bb;
      --transition-smooth: 460ms cubic-bezier(0.22, 1, 0.36, 1);
      --transition-fast: 260ms ease;
      --light-text: var(--text-dark);
      --light-muted: var(--text-dark-muted);
    }


    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
      overflow-x: hidden;
    }

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

    button {
      border: 0;
      background: none;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    .material-symbols-outlined {
      font-family: "Material Symbols Outlined";
      font-weight: 200;
      font-style: normal;
      line-height: 1;
      display: inline-block;
      white-space: nowrap;
      direction: ltr;
      -webkit-font-smoothing: antialiased;
      font-feature-settings: "liga";
      font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
    }


    .header-inner,
    .hero-inner {
      width: min(1440px, calc(100% - 48px));
      margin: 0 auto;
    }


    .glass-chip,
    .floating-note,
    .stat-card {
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      background: linear-gradient(180deg, rgba(18, 31, 56, 0.24), rgba(10, 19, 35, 0.46));
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .glass-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      color: rgba(245, 248, 255, 0.9);
      white-space: nowrap;
    }

    .glass-chip span {
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 220, 172, 0.96);
    }

    .glass-chip i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffe2bc, var(--gold));
      box-shadow: 0 0 18px rgba(255, 180, 90, 0.52);
      animation: pulseDot 3.2s ease-in-out infinite;
    }

    .primary-button,
    .secondary-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 58px;
      padding: 0 24px;
      border-radius: 18px;
      overflow: hidden;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .primary-button {
      color: var(--text-dark);
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold-tint) 0%, var(--gold) 52%, var(--gold-deep) 100%);
      box-shadow: 0 18px 42px rgba(255, 180, 90, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.48);
    }

    .primary-button::after {
      content: "";
      position: absolute;
      top: -140%;
      left: -36%;
      width: 32%;
      height: 320%;
      transform: rotate(24deg);
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
      animation: shine 5.8s ease-in-out infinite;
    }

    .secondary-button {
      font-weight: 700;
      color: var(--text);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .primary-button:hover,
    .secondary-button:hover,
    .floating-note:hover {
      transform: translateY(-2px);
    }

    .primary-button:hover {
      box-shadow: 0 24px 48px rgba(255, 180, 90, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    }

    .secondary-button:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(189, 209, 255, 0.24);
    }


    @keyframes driftImage {
      0% {
        transform: scale(1.045) translate3d(0, 0, 0);
      }
      100% {
        transform: scale(1.08) translate3d(-18px, -12px, 0);
      }
    }

    @keyframes pulseLight {
      0%, 100% {
        opacity: 0.9;
      }
      50% {
        opacity: 1;
      }
    }

    @keyframes pulseDot {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.12);
        opacity: 0.78;
      }
    }

    @keyframes blinkDot {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(0.88);
        opacity: 0.42;
      }
    }

    @keyframes floatCard {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes shine {
      0%, 100% {
        left: -36%;
      }
      48% {
        left: -36%;
      }
      62% {
        left: 120%;
      }
    }


    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      padding-top: env(safe-area-inset-top, 0);
      background: transparent;
      backdrop-filter: blur(0);
      border-bottom: 1px solid transparent;
      transition: background 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .site-header.is-scrolled {
      background: linear-gradient(180deg, rgba(8, 16, 29, 0.72), rgba(8, 16, 29, 0.46));
      backdrop-filter: blur(20px);
      border-bottom-color: rgba(255, 255, 255, 0.06);
      box-shadow: 0 10px 28px rgba(4, 10, 20, 0.12);
    }

    @supports (animation-timeline: scroll()) {
      .site-header {
        animation: site-header-scrolled linear both;
        animation-timeline: scroll();
        animation-range: 0 12px;
      }

      @keyframes site-header-scrolled {
        from {
          background: transparent;
          backdrop-filter: blur(0);
          border-bottom-color: transparent;
          box-shadow: none;
        }

        to {
          background: linear-gradient(180deg, rgba(8, 16, 29, 0.72), rgba(8, 16, 29, 0.46));
          backdrop-filter: blur(20px);
          border-bottom-color: rgba(255, 255, 255, 0.06);
          box-shadow: 0 10px 28px rgba(4, 10, 20, 0.12);
        }
      }
    }

    .header-inner,
    .hero-inner {
      width: min(1440px, calc(100% - 48px));
      margin: 0 auto;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
      position: relative;
      flex-shrink: 0;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
      overflow: hidden;
    }

    /* Логотип — глобус: glow + spin, V статична */
    .compass-logo::before,
    .compass-logo::after {
      display: none;
    }

    .compass-logo .compass-dial {
      position: absolute;
      inset: 0;
      z-index: 1;
      transform: translate3d(0, 0, 0) rotate(0deg);
      transform-origin: 50% 50%;
      backface-visibility: hidden;
      pointer-events: none;
    }

    .compass-logo .compass-dial::before,
    .compass-logo .compass-dial::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .compass-logo .compass-dial::before {
      inset: 8px;
      border: 1.4px solid rgba(255, 231, 196, 0.9);
    }

    .compass-logo .compass-dial::after {
      inset: 8px 14px;
      border: 0 solid transparent;
      border-left: 1.2px solid rgba(255, 231, 196, 0.48);
      border-right: 1.2px solid rgba(255, 231, 196, 0.48);
    }

    .compass-logo .compass-glow {
      position: absolute;
      inset: -3px;
      border-radius: 17px;
      opacity: 0;
      pointer-events: none;
      z-index: 0;
      transition: opacity 480ms ease, box-shadow 480ms ease;
    }

    .compass-logo .mark-letter {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: grid;
      place-items: center;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: -0.08em;
      line-height: 1;
      background: linear-gradient(135deg, #fff4df 0%, var(--gold) 55%, #ee8f1e 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      transform: translate3d(0, -0.5px, 0);
      pointer-events: none;
    }

    .compass-anim--glow-spin {
      transform: translate3d(0, 0, 0) scale(1);
      transition: none;
    }

    .compass-anim--glow-spin .compass-dial {
      transition: transform 480ms ease-in-out;
    }

    .compass-anim--glow-spin .compass-dial::before,
    .compass-anim--glow-spin .compass-dial::after {
      transition: border-color 480ms ease-in-out, box-shadow 480ms ease-in-out;
    }

    .brand:hover .compass-anim--glow-spin .compass-dial {
      transform: translate3d(0, 0, 0) rotate(12deg) scale(1.07);
    }

    .brand:hover .compass-anim--glow-spin .compass-dial::before {
      border-color: rgba(255, 245, 228, 1);
      box-shadow:
        0 0 10px rgba(255, 195, 110, 0.5),
        inset 0 0 14px rgba(100, 150, 255, 0.18);
    }

    .brand:hover .compass-anim--glow-spin .compass-dial::after {
      border-left-color: rgba(255, 235, 200, 0.9);
      border-right-color: rgba(255, 235, 200, 0.9);
    }

    .brand:hover .compass-anim--glow-spin .compass-glow {
      opacity: 1;
      box-shadow:
        0 0 24px rgba(255, 180, 90, 0.55),
        0 0 42px rgba(127, 169, 255, 0.26),
        0 0 60px rgba(255, 150, 50, 0.14);
    }

    .brand-text {
      display: grid;
      gap: 2px;
    }

    .brand-text strong {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.05rem;
      letter-spacing: -0.04em;
    }

    .brand-text small {
      font-size: 0.74rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 223, 179, 0.9);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: clamp(16px, 2vw, 34px);
      color: rgba(245, 248, 255, 0.86);
    }

    .nav a {
      position: relative;
      font-size: 0.96rem;
      transition: color 180ms ease;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -5px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 225, 183, 0.92), transparent);
      transform: scaleX(0.16);
      opacity: 0;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav a:hover {
      color: #ffffff;
    }

    .nav a:hover::after {
      transform: scaleX(1);
      opacity: 1;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .header-actions .primary-button {
      flex-shrink: 0;
      white-space: nowrap;
    }

    .menu-button {
      display: none;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 16px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .scroll-top {
      position: fixed;
      right: max(20px, env(safe-area-inset-right, 0px));
      bottom: max(20px, env(safe-area-inset-bottom, 0px));
      z-index: 19;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      color: var(--text-dark);
      background: linear-gradient(135deg, var(--gold-tint) 0%, var(--gold) 52%, var(--gold-deep) 100%);
      border: 1px solid rgba(255, 255, 255, 0.36);
      box-shadow: 0 14px 32px rgba(255, 180, 90, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.48);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(8px) scale(0.94);
      transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .scroll-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    @supports (animation-timeline: scroll()) {
      .scroll-top {
        animation: scroll-top-reveal linear both;
        animation-timeline: scroll();
        animation-range: 320px 360px;
        pointer-events: none;
      }

      @keyframes scroll-top-reveal {
        from {
          opacity: 0;
          visibility: hidden;
          transform: translateY(8px) scale(0.94);
          pointer-events: none;
        }

        to {
          opacity: 1;
          visibility: visible;
          transform: translateY(0) scale(1);
          pointer-events: auto;
        }
      }
    }

    .scroll-top:hover {
      box-shadow: 0 18px 40px rgba(255, 180, 90, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.52);
      transform: translateY(-2px) scale(1);
    }

    .scroll-top .material-symbols-outlined {
      font-size: 1.65rem;
      line-height: 1;
      color: var(--text-dark);
    }

    @media (max-width: 760px) {
      .scroll-top {
        right: max(16px, env(safe-area-inset-right, 0px));
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        width: 48px;
        height: 48px;
      }
    }


/* Навигация «Визы» — категории + страны (данные: visa-navigation.json) */

.nav .visa-nav--desktop {
  position: relative;
}

/* Невидимый мост между триггером и панелью — иначе меню закрывается при движении мыши */
.nav .visa-nav--desktop::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 22px;
}

.nav .visa-nav--desktop .nav__trigger {
  position: relative;
  font-size: 0.96rem;
}

.nav .visa-nav--desktop .nav__trigger--has-panel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav .visa-nav--desktop .nav__trigger .visa-nav__expand--trigger {
  font-size: 1.1em;
  line-height: 1;
  color: rgba(255, 196, 110, 0.88);
  opacity: 0.72;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav .visa-nav--desktop:hover .nav__trigger .visa-nav__expand--trigger,
.nav .visa-nav--desktop:focus-within .nav__trigger .visa-nav__expand--trigger {
  opacity: 1;
  transform: translateY(1px);
}

.nav .visa-nav--desktop .nav__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 225, 183, 0.92), transparent);
  transform: scaleX(0.16);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav .visa-nav--desktop:hover .nav__trigger::after {
  transform: scaleX(1);
  opacity: 1;
}

.visa-nav__panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  max-width: min(92vw, 420px);
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 16, 29, 0.9), rgba(12, 22, 40, 0.86));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(2, 7, 16, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 30;
}

/* Мега-меню «Визы»: слева направления, справа — плоский второй уровень по hover */
.visa-nav--desktop:not(.visa-nav--services) .visa-nav__panel {
  left: 50%;
  width: 204px;
  min-width: 204px;
  max-width: 204px;
  max-height: none;
  padding: 8px;
  overflow: visible;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__list--categories {
  width: 100%;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__list--categories li {
  margin-bottom: 5px;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__list--categories li:last-child {
  margin-bottom: 0;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category + .visa-nav__item--category {
  margin-top: 1px;
  padding-top: 0;
  border-top: none;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category.has-children > .visa-nav__link--category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-right: 6px;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__expand {
  flex-shrink: 0;
  font-size: 1.2em;
  line-height: 1;
  color: rgba(255, 196, 110, 0.92);
  opacity: 0.72;
  transition: opacity 160ms ease, transform 160ms ease;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category:hover > .visa-nav__link--category,
.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category:focus-within > .visa-nav__link--category {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category:hover > .visa-nav__link--category .visa-nav__expand,
.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category:focus-within > .visa-nav__link--category .visa-nav__expand {
  opacity: 1;
  transform: translateX(2px);
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__subpanel {
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  min-width: 210px;
  max-width: min(420px, 52vw);
  padding: 8px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(8, 16, 29, 0.9), rgba(12, 22, 40, 0.86));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(2, 7, 16, 0.34);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, visibility 140ms ease;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__subpanel::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 10px;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__subpanel.is-wide {
  min-width: 300px;
  max-width: min(460px, 58vw);
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category:hover > .visa-nav__subpanel,
.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category:focus-within > .visa-nav__subpanel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__subpanel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__subpanel-list--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 8px;
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__subpanel .visa-nav__link {
  padding: 4px 7px;
  font-size: 0.94rem;
  line-height: 1.28;
  border-radius: 8px;
  color: rgba(220, 228, 243, 0.86);
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__item--category > .visa-nav__link--category {
  padding: 5px 8px;
  font-size: 0.9rem;
}

.visa-nav--desktop:hover .visa-nav__panel,
.visa-nav--desktop:focus-within .visa-nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.visa-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visa-nav__link {
  display: block;
  padding: 6px 8px;
  border-radius: 10px;
  color: rgba(245, 248, 255, 0.88);
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
}

.visa-nav__link--category {
  font-weight: 700;
  color: rgba(255, 223, 179, 0.95);
}

.visa-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.visa-nav__list--nested {
  margin: 4px 0 0 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.visa-nav--desktop:not(.visa-nav--services) .visa-nav__list--nested {
  margin: 0;
  padding-left: 0;
  border-left: none;
}

.visa-nav__list--nested .visa-nav__link {
  font-size: 0.86rem;
  color: rgba(220, 228, 243, 0.78);
}

/* Мобильное меню — визы */
.mobile-nav-visas {
  overflow: visible;
}

.mobile-nav-visas summary {
  padding: 16px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(245, 248, 255, 0.94);
  background: transparent;
  position: relative;
  z-index: 2;
}

.mobile-nav-visas summary::after {
  content: "›";
  flex-shrink: 0;
  font-size: 1.2em;
  line-height: 1;
  color: rgba(255, 196, 110, 0.88);
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-visas[open] summary::after {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile-nav-visas summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-visas[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(14, 24, 42);
}

.mobile-visa-nav {
  display: block;
  padding: 0;
  background: rgb(11, 20, 36);
}

/* Сброс карточных стилей L1 для вложенного меню */
.mobile-nav-list .mobile-visa-nav a {
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  font-size: inherit;
  text-decoration: none;
  color: inherit;
}

/* —— Уровень 2 —— */
.mobile-visa-nav__branch--l2 {
  display: block;
  border: none;
  background: none;
}

.mobile-visa-nav__branch--l2 > .mobile-visa-nav__branch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgb(11, 20, 36);
}

.mobile-visa-nav__branch-link--l2 {
  display: block;
  padding: 14px 8px 14px 16px;
  font-weight: 600;
  font-size: 0.93rem;
  color: rgba(245, 248, 255, 0.92);
  line-height: 1.3;
}

.mobile-visa-nav__leaf--l2 {
  display: block;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 0.93rem;
  color: rgba(220, 228, 243, 0.88);
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgb(11, 20, 36);
}

.mobile-visa-nav__branch--l2 > .mobile-visa-nav__branch-children {
  margin: 0;
  padding: 0;
  border: none;
  background: rgb(9, 17, 31);
  box-shadow: inset 3px 0 0 rgba(255, 196, 110, 0.35);
}

/* —— Уровень 3 —— */
.mobile-visa-nav__branch--l3 {
  display: block;
  border: none;
  background: none;
}

.mobile-visa-nav__branch--l3 > .mobile-visa-nav__branch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgb(9, 17, 31);
}

.mobile-visa-nav__branch-link--l3 {
  display: block;
  padding: 12px 8px 12px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(220, 228, 243, 0.86);
  line-height: 1.3;
}

.mobile-visa-nav__leaf--l3 {
  display: block;
  padding: 12px 16px 12px 20px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(196, 206, 226, 0.8);
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgb(9, 17, 31);
}

.mobile-visa-nav__branch--l3 > .mobile-visa-nav__branch-children {
  margin: 0;
  padding: 0;
  border: none;
  background: rgb(7, 14, 26);
  box-shadow: inset 3px 0 0 rgba(255, 196, 110, 0.22);
}

.mobile-visa-nav__branch--l3 > .mobile-visa-nav__branch-children .mobile-visa-nav__leaf--l3 {
  padding-left: 28px;
  font-size: 0.84rem;
  color: rgba(180, 192, 216, 0.78);
  background: rgb(7, 14, 26);
}

.mobile-visa-nav__branch {
  display: block;
}

.mobile-visa-nav__branch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.mobile-visa-nav__branch-link {
  text-decoration: none;
}

/* Стрелка L2/L3 — только символ › */
.mobile-visa-nav__branch-toggle {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px 14px 4px;
  color: rgba(255, 196, 110, 0.88);
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

.mobile-visa-nav__branch-toggle[aria-expanded="true"] {
  color: rgba(255, 210, 140, 1);
}

.mobile-visa-nav__chevron {
  display: block;
  width: auto;
  height: auto;
  border: none;
  font-size: 1.2em;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.mobile-visa-nav__chevron::before {
  content: "›";
}

.mobile-visa-nav__branch-toggle[aria-expanded="true"] .mobile-visa-nav__chevron {
  transform: rotate(90deg);
}

.mobile-visa-nav__branch-children {
  display: block;
}

.mobile-visa-nav__branch-children[hidden] {
  display: none !important;
}

.mobile-visa-nav--services {
  background: rgb(11, 20, 36);
}

.mobile-visa-nav--services .mobile-visa-nav__leaf--l2 {
  transition: color 160ms ease, background 160ms ease;
}

.mobile-visa-nav__branch-link--l2:hover,
.mobile-visa-nav__branch-link--l3:hover,
.mobile-visa-nav__leaf--l2:hover,
.mobile-visa-nav__leaf--l3:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.mobile-visa-nav__branch-toggle:hover {
  color: rgba(255, 210, 140, 1);
}

.mobile-visa-nav__branch-toggle:focus-visible {
  outline: 2px solid rgba(255, 196, 110, 0.55);
  outline-offset: -2px;
  border-radius: 4px;
}


    .mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 40;
      pointer-events: none;
      visibility: hidden;
    }

    .mobile-nav.is-open {
      pointer-events: auto;
      visibility: visible;
    }

    .mobile-nav-overlay {
      position: absolute;
      inset: 0;
      border: 0;
      background: rgba(4, 10, 20, 0.58);
      opacity: 0;
      transition: opacity 220ms ease;
    }

    .mobile-nav.is-open .mobile-nav-overlay {
      opacity: 1;
    }

    .mobile-nav-panel {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      max-height: 100dvh;
      padding:
        calc(12px + env(safe-area-inset-top, 0))
        0
        calc(20px + env(safe-area-inset-bottom, 0));
      background:
        radial-gradient(circle at 80% 0%, rgba(127, 169, 255, 0.18), transparent 40%),
        linear-gradient(180deg, #0c1628, #060d1a);
      border-left: none;
      box-shadow: none;
      transform: translateX(104%);
      transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-nav.is-open .mobile-nav-panel {
      transform: translateX(0);
    }

    .mobile-nav-brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-shrink: 0;
      padding: 8px 20px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-nav-brand-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
      min-width: 0;
    }

    .mobile-nav-brand-mark {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid rgba(255, 231, 196, 0.7);
      box-shadow: 0 0 16px rgba(255, 180, 90, 0.3);
      position: relative;
      background: rgba(255, 255, 255, 0.04);
    }

    .mobile-nav-brand-mark::after {
      content: "";
      position: absolute;
      inset: 5px 9px;
      border: 0 solid transparent;
      border-left: 1.5px solid rgba(255, 180, 90, 0.55);
      border-right: 1.5px solid rgba(255, 180, 90, 0.55);
      border-radius: 50%;
    }

    .mobile-nav-brand-name {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: -0.02em;
    }

    .mobile-nav-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text);
      flex-shrink: 0;
      cursor: pointer;
    }

    .mobile-nav-body {
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .mobile-nav-tiles {
      flex: 1 1 auto;
      min-height: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 14px 18px 8px;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      align-content: start;
    }

    .mobile-nav-tiles.is-hidden {
      display: none;
    }

    .mobile-nav-tile {
      display: block;
      width: 100%;
      padding: 16px 14px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(18, 31, 56, 0.55), rgba(10, 19, 35, 0.82));
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-family: inherit;
      font-weight: 600;
      font-size: 0.92rem;
      line-height: 1.3;
      text-align: left;
      text-decoration: none;
      color: rgba(245, 248, 255, 0.94);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    button.mobile-nav-tile {
      appearance: none;
    }

    .mobile-nav-tile.is-wide {
      grid-column: span 2;
    }

    .mobile-nav-tile small {
      display: block;
      margin-top: 5px;
      font-size: 0.72rem;
      font-weight: 500;
      color: rgba(196, 206, 226, 0.78);
    }

    .mobile-nav-tile:hover,
    .mobile-nav-tile:focus-visible {
      border-color: rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.06);
    }

    .mobile-nav-stack {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      padding: 8px 18px 8px;
    }

    .mobile-nav-stack.is-hidden {
      display: none;
    }

    .mobile-nav-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
      padding: 8px 4px 12px;
      border: 0;
      background: none;
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(255, 196, 110, 0.88);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 14px 4px;
      border: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background: none;
      font-family: inherit;
      font-size: 0.92rem;
      text-align: left;
      color: rgba(245, 248, 255, 0.94);
      text-decoration: none;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-row strong {
      font-weight: 600;
    }

    .mobile-nav-row.is-leaf {
      cursor: pointer;
      color: rgba(196, 206, 226, 0.88);
      font-size: 0.88rem;
    }

    .mobile-nav-row:hover,
    .mobile-nav-row:focus-visible {
      color: #ffffff;
    }

    .mobile-nav-chevron {
      flex-shrink: 0;
      color: rgba(255, 196, 110, 0.88);
      font-size: 1.1em;
      line-height: 1;
    }

    .mobile-nav-foot {
      margin-top: auto;
      flex-shrink: 0;
      display: grid;
      gap: 14px;
      padding: 16px 20px 0;
    }

    .mobile-nav-foot .glass-chip {
      white-space: normal;
      align-items: flex-start;
    }

    .mobile-nav-foot .primary-button {
      width: 100%;
    }

    body.mobile-nav-open {
      overflow: hidden;
      touch-action: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .mobile-nav-overlay,
      .mobile-nav-panel,
      .compass-anim--glow-spin .compass-dial,
      .compass-anim--glow-spin .compass-dial::before,
      .compass-anim--glow-spin .compass-dial::after,
      .compass-logo .compass-glow {
        transition: none;
      }

      .brand:hover .compass-anim--glow-spin .compass-dial {
        transform: none;
      }

      .brand:hover .compass-anim--glow-spin .compass-dial::before {
        border-color: rgba(255, 231, 196, 0.9);
        box-shadow: none;
      }

      .brand:hover .compass-anim--glow-spin .compass-dial::after {
        border-left-color: rgba(255, 231, 196, 0.48);
        border-right-color: rgba(255, 231, 196, 0.48);
      }

      .brand:hover .compass-logo .compass-glow {
        opacity: 0;
        box-shadow: none;
      }
    }


    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      isolation: isolate;
      background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
    }

    .hero-media,
    .hero-overlay,
    .hero-noise,
    .hero-light,
    .hero-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-media {
      z-index: 0;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.045);
      filter: saturate(1.03) contrast(1.03);
      animation: driftImage 28s ease-in-out infinite alternate;
    }

    .hero-media picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-media picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.045);
      filter: saturate(1.03) contrast(1.03);
      animation: driftImage 28s ease-in-out infinite alternate;
    }

    .hero-overlay {
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(7, 14, 27, 0.8) 0%, rgba(7, 14, 27, 0.63) 26%, rgba(10, 24, 46, 0.36) 48%, rgba(8, 16, 29, 0.18) 100%),
        linear-gradient(180deg, rgba(10, 18, 33, 0.28) 0%, rgba(10, 18, 33, 0.08) 32%, rgba(6, 12, 23, 0.46) 100%);
    }

    .hero-light {
      z-index: 1;
      background:
        radial-gradient(circle at 46% 42%, rgba(255, 228, 171, 0.3), transparent 11%),
        radial-gradient(circle at 14% 18%, rgba(127, 169, 255, 0.18), transparent 22%),
        radial-gradient(circle at 78% 14%, rgba(255, 180, 90, 0.12), transparent 18%);
      mix-blend-mode: screen;
      animation: pulseLight 6.8s ease-in-out infinite;
    }

    .hero-noise {
      z-index: 1;
      opacity: 0.1;
      background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 10px);
    }

    .hero-grid {
      z-index: 1;
      opacity: 0.1;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 120px 120px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 100%);
    }


    .hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding-top: 132px;
      padding-bottom: 38px;
    }

    .hero-main {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 310px;
      gap: 28px;
      align-items: start;
      flex: 1;
    }

    .hero-copy {
      max-width: 1140px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(22, 38, 67, 0.32), rgba(11, 22, 40, 0.34));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      width: fit-content;
    }

    .eyebrow i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffe7c6, var(--gold));
      box-shadow: 0 0 0 5px rgba(255, 180, 90, 0.08), 0 0 16px rgba(255, 180, 90, 0.56);
      animation: blinkDot 1.9s ease-in-out infinite;
    }

    .eyebrow span {
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 220, 172, 0.96);
    }

    .hero-title {
      margin: 28px 0 6px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.42rem, 3.95vw, 4.06rem);
      line-height: 1.12;
      letter-spacing: -0.04em;
      text-shadow: 0 10px 28px rgba(8, 13, 24, 0.18);
      max-width: min(1140px, 100%);
      white-space: normal;
      overflow-wrap: break-word;
    }

    .hero-accent-line {
      margin-bottom: 22px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.42rem, 3.95vw, 4.06rem);
      font-weight: 700;
      line-height: 1.12;
      padding-bottom: 0.06em;
      letter-spacing: -0.04em;
      max-width: min(1140px, 100%);
      white-space: normal;
      overflow-wrap: break-word;
      background: linear-gradient(135deg, var(--gold-tint-soft) 0%, var(--gold) 42%, var(--gold-deep) 78%, rgba(255, 241, 225, 0.98) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 0 20px rgba(255, 180, 90, 0.22));
    }

    .hero-subtitle {
      max-width: 660px;
      margin: 0 0 28px;
      font-size: clamp(0.94rem, 1.35vw, 1rem);
      line-height: 1.56;
      color: var(--muted);
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .service-tags span {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(245, 248, 255, 0.9);
      font-size: 0.92rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .mini-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: 24px;
      color: rgba(245, 248, 255, 0.94);
      font-size: 0.95rem;
    }

    .mini-proof span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .mini-proof span::before {
      content: "";
      display: inline-block;
      flex: 0 0 auto;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffe3c1, var(--gold));
      box-shadow: 0 0 16px rgba(255, 180, 90, 0.36);
    }

    .hero-side {
      position: relative;
      min-height: 420px;
    }

    .floating-note {
      position: absolute;
      width: min(240px, 100%);
      padding: 16px 18px;
      border-radius: 22px;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .floating-note::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255, 226, 181, 0.4), rgba(255, 255, 255, 0.06), rgba(147, 180, 255, 0.16));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.8;
    }

    .floating-note small {
      display: inline-block;
      margin-bottom: 8px;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 219, 171, 0.92);
    }

    .floating-note strong {
      display: block;
      margin-bottom: 6px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1rem;
      letter-spacing: -0.04em;
    }

    .floating-note p {
      margin: 0;
      font-size: 0.88rem;
      line-height: 1.48;
      color: rgba(229, 236, 247, 0.82);
    }

    .floating-note.top {
      top: 18px;
      right: 4px;
      animation: floatCard 7s ease-in-out infinite;
    }

    .floating-note.bottom {
      right: 46px;
      bottom: 18px;
      animation: floatCard 8.2s ease-in-out infinite reverse;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin-top: auto;
      padding-top: 42px;
    }

    .stat-card {
      position: relative;
      min-height: 176px;
      padding: 24px 22px 22px;
      border-radius: 26px;
      transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
        background 420ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
      overflow: hidden;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(255, 222, 173, 0.42), rgba(255, 255, 255, 0.08), rgba(133, 171, 255, 0.16));
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.8;
    }

    .stat-card::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 16px;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(127, 169, 255, 0.18), transparent 72%);
      pointer-events: none;
    }

    .stat-icon {
      position: absolute;
      top: 20px;
      right: 22px;
      color: rgba(209, 219, 238, 0.64);
      font-size: 44px;
      font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 48;
      transition:
        color 420ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
      font-weight: 200;
    }

    .stat-card:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 230, 190, 0.18);
      background: linear-gradient(180deg, rgba(20, 34, 61, 0.34), rgba(10, 18, 34, 0.56));
      box-shadow: 0 22px 50px rgba(6, 12, 23, 0.18);
    }

    .stat-card:hover .stat-icon {
      color: var(--gold);
      transform: translateY(-1px);
    }

    .stat-card small {
      display: inline-block;
      margin-bottom: 16px;
      font-size: 0.74rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 224, 181, 0.86);
    }

    .stat-card strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2.1rem, 3vw, 3rem);
      line-height: 1;
      letter-spacing: -0.06em;
      color: var(--gold);
      text-shadow: 0 0 20px rgba(255, 180, 90, 0.2);
    }

    .stat-card p {
      margin: 10px 0 0;
      font-size: 1rem;
      color: rgba(245, 248, 255, 0.94);
    }

    .stat-card span:not(.stat-icon) {
      display: block;
      margin-top: 10px;
      font-size: 0.92rem;
      line-height: 1.5;
      color: rgba(220, 227, 241, 0.72);
      max-width: 23ch;
    }

    .content-shell {
      position: relative;
      z-index: 2;
      width: min(1440px, calc(100% - 48px));
      margin: 0 auto;
      padding: 28px 0 72px;
    }


    .page-section {
      width: min(1440px, calc(100% - 48px));
      margin: 0 auto;
      padding: 10px 0 72px;
    }

    .directions-section {
      position: relative;
      margin-top: -16px;
      padding: 34px;
      border-radius: 34px;
      background: linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-light-lg), inset 0 1px 0 rgba(255, 255, 255, 0.72);
      overflow: hidden;
    }

    .directions-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 88% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.12), transparent 22%);
      pointer-events: none;
    }

    .directions-head,
    .image-grid,
    .country-ticker {
      position: relative;
      z-index: 1;
    }

    .directions-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 22px;
      align-items: end;
      margin-bottom: 24px;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: rgba(35, 64, 111, 0.9);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 16px rgba(255, 180, 90, 0.4);
    }

    .section-title {
      margin: 0;
      max-width: 16ch;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      color: var(--light-text);
    }

    .section-lead {
      margin: 14px 0 0;
      max-width: 66ch;
      color: var(--light-muted);
      line-height: 1.68;
    }

    .head-note {
      position: relative;
      padding: 28px 30px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 86% 18%, rgba(127, 169, 255, 0.16), transparent 26%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.12), transparent 28%),
        linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      border: 1px solid var(--border-light);
      box-shadow:
        var(--shadow-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
      overflow: hidden;
    }

    .head-note::before {
      content: "";
      position: absolute;
      left: 30px;
      right: 30px;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.06), rgba(127, 169, 255, 0.3), rgba(255, 180, 90, 0.24), rgba(127, 169, 255, 0.06));
    }

    .head-note::after {
      content: "";
      position: absolute;
      right: -26px;
      top: -26px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(127, 169, 255, 0.16), transparent 70%);
      filter: blur(8px);
      pointer-events: none;
    }

    .head-note strong {
      position: relative;
      z-index: 1;
      display: block;
      max-width: 16ch;
      margin-bottom: 12px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.18rem, 1.8vw, 1.52rem);
      line-height: 1.06;
      letter-spacing: -0.05em;
      color: var(--light-text);
    }

    .head-note p {
      position: relative;
      z-index: 1;
      margin: 0;
      max-width: 34ch;
      color: var(--text-dark-muted-strong);
      line-height: 1.66;
      font-size: 0.98rem;
    }

    .head-note .note-icon {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 1;
      width: 56px;
      height: 56px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      color: var(--gold);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), var(--surface-light-raised-bottom));
      border: 1px solid rgba(127, 169, 255, 0.14);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 12px 22px rgba(7, 16, 29, 0.05);
      backdrop-filter: blur(12px);
      font-size: 32px;
      font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 32;
      transition: transform 320ms ease, font-size 320ms ease, border-color 280ms ease, box-shadow 280ms ease;
      pointer-events: none;
      font-weight: 200;
    }

    .head-note:hover .note-icon {
      transform: translateY(-2px);
      font-size: 36px;
      border-color: rgba(255, 180, 90, 0.24);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 16px 28px rgba(7, 16, 29, 0.08);
    }

    .image-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: minmax(170px, auto);
      gap: 18px;
    }

    .directions-section--grid-only {
      margin-top: 0;
    }

    .directions-section--grid-only .image-grid--uniform .is-medium,
    .directions-section--grid-only .image-grid--uniform .is-compact {
      grid-column: span 3;
      grid-row: span 1;
      min-height: 200px;
    }

    .directions-section--grid-only .country-ticker {
      margin-top: 24px;
    }

    .direction-photo-card {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 100%;
      border-radius: 28px;
      overflow: hidden;
      isolation: isolate;
      color: #f7f9fd;
      box-shadow: 0 18px 36px rgba(9, 16, 28, 0.11);
      transform: translateY(0);
      transition:
        transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 460ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .direction-photo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 42px rgba(9, 16, 28, 0.13);
    }

    .direction-photo-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .direction-photo-card picture {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
    }

    .direction-photo-card picture img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .direction-photo-card:hover img,
    .direction-photo-card:hover picture img {
      transform: scale(1.055);
    }

    .direction-photo-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 16, 29, 0.02) 0%, rgba(7, 16, 29, 0.08) 42%, rgba(7, 16, 29, 0.22) 70%, rgba(7, 16, 29, 0.5) 100%);
      z-index: 1;
    }

    .direction-photo-card::after {
      content: "";
      position: absolute;
      inset: -40% auto auto -30%;
      width: 44%;
      height: 180%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
      transform: rotate(18deg) translateX(-180%);
      z-index: 1;
      opacity: 0;
      transition:
        transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .direction-photo-card:hover::after {
      transform: rotate(18deg) translateX(420%);
      opacity: 1;
    }

    .card-content {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 10px;
      padding: 22px;
      margin: 0;
      background: transparent;
    }

    .card-arrow {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      backdrop-filter: blur(5px);
      background: linear-gradient(180deg, rgba(8, 16, 29, 0.60), rgba(8, 16, 29, 0.45));
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom-color: rgba(255, 255, 255, 0.06);
      color: #ffffff;
      text-shadow: 0 0 0 rgba(255, 180, 90, 0);
      font-size: 20px;
      font-variation-settings: "FILL" 0, "wght" 120, "GRAD" 0, "opsz" 20;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 8px 18px rgba(0, 0, 0, 0.06);
      opacity: 0;
      transform: translate3d(0, -4px, 0);
      transition:
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        background 520ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
        color 760ms cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
    }

    .direction-photo-card:hover .card-arrow {
      transform: translate3d(0, 0, 0);
      opacity: 1;
      color: var(--gold);
      text-shadow: 0 0 12px rgba(255, 180, 90, 0.22);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 28px rgba(0, 0, 0, 0.14),
        0 0 24px rgba(255, 255, 255, 0.12);
    }

    .direction-photo-card strong {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.08rem, 1.6vw, 1.42rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.04em;
      text-shadow:
        0 4px 16px rgba(0, 0, 0, 0.28),
        0 18px 34px rgba(0, 0, 0, 0.42);
    }

    .is-featured {
      grid-column: span 6;
      grid-row: span 2;
    }

    .is-medium,
    .is-compact {
      grid-column: span 3;
      grid-row: span 1;
    }

    .is-medium .card-content,
    .is-compact .card-content {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 14px;
    }

    .is-medium strong,
    .is-compact strong {
      display: inline-block;
      max-width: min(80%, 14ch);
      font-size: clamp(1.16rem, 1.8vw, 1.58rem);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: -0.045em;
      text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.32),
        0 18px 34px rgba(0, 0, 0, 0.46);
    }

    .is-medium .card-arrow,
    .is-compact .card-arrow {
      width: 38px;
      height: 38px;
      top: 14px;
      right: 14px;
      font-weight: 300;
    }

    .is-featured .card-content {
      gap: 18px;
      align-content: end;
      max-width: 640px;
      padding-right: 76px;
    }

    .is-featured strong {
      max-width: 10ch;
      font-size: clamp(1.42rem, 2.8vw, 2.34rem);
      font-weight: 600;
      line-height: 0.98;
      letter-spacing: -0.05em;
      text-shadow:
        0 5px 18px rgba(0, 0, 0, 0.3),
        0 18px 34px rgba(0, 0, 0, 0.42);
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      max-width: 640px;
    }

    .card-tags span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(245, 248, 252, 0.96);
      font-size: 0.95rem;
      line-height: 1.3;
      text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.24),
        0 10px 24px rgba(0, 0, 0, 0.24);
    }

    .card-tags span::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--gold-tint-soft), var(--gold));
      box-shadow: 0 0 14px rgba(255, 180, 90, 0.34);
    }

    .country-ticker {
      margin-top: 28px;
      padding: 18px 0 6px;
      overflow: visible;
    }

    .ticker-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: rgba(35, 64, 111, 0.9);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .ticker-label::before {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 18px rgba(255, 180, 90, 0.58);
      transform-origin: center center;
      animation: tickerDotPulse 1.8s ease-in-out infinite;
    }

    .ticker-viewport {
      display: flex;
      width: 100%;
      gap: 14px;
      overflow: hidden;
      padding: 6px 0 17px;
      mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 7%, rgba(0, 0, 0, 1) 93%, transparent 100%);
    }

    .ticker-track {
      display: flex;
      width: max-content;
      gap: 14px;
      padding-right: 14px;
      animation: countryMarquee 38s linear infinite;
    }

    .country-ticker:hover .ticker-track {
      animation-play-state: paused;
    }

    .ticker-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--surface-light-raised-top), var(--surface-light-raised-bottom));
      border: 1px solid var(--border-light);
      color: var(--text-dark);
      font-size: 0.96rem;
      white-space: nowrap;
      box-shadow: none;
      transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
      overflow: hidden;
    }

    .ticker-link::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--gold-tint-soft), var(--gold));
      box-shadow: 0 0 14px rgba(255, 180, 90, 0.34);
      transition: transform 240ms ease, box-shadow 240ms ease;
    }

    .ticker-link:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 180, 90, 0.22);
      box-shadow: 0 8px 16px rgba(7, 16, 29, 0.06), 0 0 0 1px rgba(255, 180, 90, 0.05);
    }

    .ticker-link:hover::before {
      transform: scale(1.14);
      box-shadow: 0 0 18px rgba(255, 180, 90, 0.48);
    }

    .service-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 10px;
    }

    .service-card {
      position: relative;
      min-height: 100%;
      padding: 24px;
      border-radius: 26px;
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background:
        linear-gradient(180deg, rgba(23, 39, 69, 0.42), rgba(8, 17, 32, 0.62));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 40px rgba(4, 10, 20, 0.08);
      transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 92% 10%, rgba(127, 169, 255, 0.12), transparent 20%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.09), transparent 22%);
      opacity: 0.9;
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(145, 181, 255, 0.16);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 48px rgba(4, 10, 20, 0.14);
    }

    .service-card > * {
      position: relative;
      z-index: 1;
    }

    .service-card .material-symbols-outlined {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      margin-bottom: 18px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      color: rgba(245, 248, 255, 0.9);
      font-size: 28px;
      font-variation-settings: "FILL" 0, "wght" 240, "GRAD" 0, "opsz" 28;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transition: transform 260ms ease, color 260ms ease, background 260ms ease;
    }

    .service-card:hover .material-symbols-outlined {
      transform: translateY(-2px);
      color: var(--gold);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.16), rgba(255, 180, 90, 0.04));
    }

    .service-card small {
      display: inline-block;
      margin-bottom: 10px;
      color: rgba(255, 223, 179, 0.84);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .service-card strong {
      display: block;
      margin-bottom: 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.14rem;
      line-height: 1.1;
      letter-spacing: -0.04em;
      color: rgba(246, 248, 255, 0.96);
    }

    .service-card p {
      margin: 0;
      max-width: 34ch;
      color: rgba(220, 227, 241, 0.76);
      line-height: 1.62;
    }

    @keyframes tickerDotPulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 14px rgba(255, 180, 90, 0.44);
      }
      50% {
        transform: scale(1.45);
        opacity: 0.72;
        box-shadow: 0 0 24px rgba(255, 180, 90, 0.78);
      }
    }

    @keyframes countryMarquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-50% - 7px)); }
    }

    @media (max-width: 1200px) {
      .directions-head {
        grid-template-columns: 1fr;
      }

      .image-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .is-featured,
      .is-medium,
      .is-compact {
        grid-column: span 3;
        grid-row: span 1;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 980px) {
      .image-grid {
        grid-template-columns: 1fr;
      }

      .is-featured,
      .is-medium,
      .is-compact {
        grid-column: span 1;
      }
    }

    @media (max-width: 680px) {
      .directions-section {
        padding: 24px 20px;
      }
    }


    .service-stage-shell {
      padding-top: 18px;
      padding-bottom: 84px;
    }

    .service-stage {
      position: relative;
      padding: 30px;
      border-radius: 34px;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 12%, rgba(127, 169, 255, 0.16), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(255, 180, 90, 0.1), transparent 20%),
        linear-gradient(180deg, #0e1b31 0%, #07111f 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 26px 56px rgba(4, 10, 20, 0.14);
      color: var(--text);
    }

    .service-stage-header {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-bottom: 22px;
    }

    .service-stage-title {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2rem, 3.4vw, 3rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      color: var(--text);
    }

    .service-stage-lead {
      max-width: 72ch;
      margin: 0;
      color: rgba(236, 241, 250, 0.76);
      line-height: 1.68;
    }

    .service-stage .service-item {
      position: relative;
      overflow: hidden;
      transition: border-color 240ms ease, box-shadow 240ms ease;
    }

    .service-stage .service-item > * {
      position: relative;
      z-index: 1;
    }

    .service-stage .service-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      font-size: 28px;
      font-variation-settings: "FILL" 0, "wght" 240, "GRAD" 0, "opsz" 28;
      font-weight: 200;
      transition: color 260ms ease, background 260ms ease;
    }

    .service-stage .service-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .service-stage .service-item strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.12rem;
      line-height: 1.3;
      letter-spacing: -0.04em;
    }

    .service-stage .service-item p {
      margin: 0;
      color: rgba(236, 241, 250, 0.74);
      line-height: 1.62;
    }

    .service-stage .command-board {
      --command-center-width: 176px;
      --command-center-height: 108px;
      --command-route-gap-x: calc((var(--command-center-width) / 2) + 24px);
      --command-route-gap-y: calc((var(--command-center-height) / 2) + 22px);
      --command-route-edge-x: 12%;
      --command-route-edge-y: 12%;
      --command-row-gap: 50px;
      --command-axis-y: 50%;
      position: relative;
      z-index: 2;
      height: 470px;
      min-height: 470px;
      border-radius: 30px;
      overflow: visible;
    }

    .service-stage .command-routes {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .service-stage .command-routes span {
      position: absolute;
      display: block;
      border-radius: 999px;
      opacity: 0.6;
      overflow: visible;
      transition: opacity 260ms ease, box-shadow 260ms ease;
    }

    .service-stage .command-routes span::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      opacity: 0;
      filter: blur(3px);
      pointer-events: none;
    }

    .service-stage .command-routes span:nth-child(1)::after,
    .service-stage .command-routes span:nth-child(2)::after {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0), rgba(255, 232, 198, 0.96) 48%, rgba(255, 180, 90, 0.6) 72%, rgba(255, 180, 90, 0));
      box-shadow:
        0 0 12px rgba(255, 180, 90, 0.14),
        0 0 22px rgba(127, 169, 255, 0.08);
    }

    .service-stage .command-routes span:nth-child(3)::after,
    .service-stage .command-routes span:nth-child(4)::after {
      width: 4px;
      height: 56px;
      background: linear-gradient(180deg, rgba(255, 180, 90, 0), rgba(255, 232, 198, 0.96) 48%, rgba(255, 180, 90, 0.6) 72%, rgba(255, 180, 90, 0));
      box-shadow:
        0 0 12px rgba(255, 180, 90, 0.14),
        0 0 22px rgba(127, 169, 255, 0.08);
    }

    .service-stage .command-routes span:nth-child(1) {
      top: var(--command-axis-y);
      left: var(--command-route-edge-x);
      right: calc(50% + var(--command-route-gap-x));
      height: 1px;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0), rgba(127, 169, 255, 0.52), rgba(255, 180, 90, 0.36));
      transform: translateY(-50%);
    }

    .service-stage .command-routes span:nth-child(2) {
      left: calc(50% + var(--command-route-gap-x));
      top: var(--command-axis-y);
      right: var(--command-route-edge-x);
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0.36), rgba(127, 169, 255, 0.52), rgba(127, 169, 255, 0));
      transform: translateY(-50%);
    }

    .service-stage .command-routes span:nth-child(3) {
      left: 50%;
      top: var(--command-route-edge-y);
      bottom: calc(var(--command-axis-y) + var(--command-route-gap-y));
      width: 1px;
      background: linear-gradient(180deg, rgba(127, 169, 255, 0), rgba(127, 169, 255, 0.52), rgba(255, 180, 90, 0.36));
      transform: translateX(-50%);
    }

    .service-stage .command-routes span:nth-child(4) {
      left: 50%;
      top: calc(var(--command-axis-y) + var(--command-route-gap-y));
      bottom: var(--command-route-edge-y);
      width: 1px;
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.36), rgba(127, 169, 255, 0.52), rgba(127, 169, 255, 0));
      transform: translateX(-50%);
    }

    .service-stage .command-routes span:nth-child(1)::after {
      left: -28px;
      top: 50%;
      transform: translateY(-50%);
    }

    .service-stage .command-routes span:nth-child(2)::after {
      right: -28px;
      top: 50%;
      transform: translateY(-50%);
    }

    .service-stage .command-routes span:nth-child(3)::after {
      top: -28px;
      left: 50%;
      transform: translateX(-50%);
    }

    .service-stage .command-routes span:nth-child(4)::after {
      bottom: -28px;
      left: 50%;
      transform: translateX(-50%);
    }

    .service-stage .command-center {
      position: absolute;
      left: 50%;
      top: var(--command-axis-y);
      transform: translate(-50%, -50%);
      width: var(--command-center-width);
      min-height: var(--command-center-height);
      padding: 18px 20px;
      border-radius: 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(20, 35, 62, 0.76), rgba(8, 17, 32, 0.9));
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 38px rgba(4, 10, 20, 0.18);
      z-index: 2;
      transition: transform 340ms ease, border-color 340ms ease, box-shadow 340ms ease, background 340ms ease;
    }

    .service-stage .command-center::before,
    .service-stage .command-center::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
    }

    .service-stage .command-center::before {
      background:
        radial-gradient(circle at 50% 50%, rgba(127, 169, 255, 0.11), transparent 68%),
        linear-gradient(118deg, rgba(255, 255, 255, 0) 40%, rgba(255, 234, 206, 0.08) 50%, rgba(255, 255, 255, 0) 60%);
      background-repeat: no-repeat;
      background-size: 100% 100%, 180% 180%;
      background-position: center center, 132% 50%;
      opacity: 0.68;
      transition: background-position 1200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease;
    }

    .service-stage .command-center::after {
      inset: -10px;
      border: 1px solid rgba(255, 180, 90, 0);
      opacity: 0;
    }

    .service-stage .command-center:hover::before {
      background-position: center center, -12% 50%;
      opacity: 0.74;
    }

    .service-stage .command-center small {
      display: block;
      margin-bottom: 8px;
      color: rgba(255, 223, 179, 0.84);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .service-stage .command-center strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1rem;
      line-height: 1.16;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .service-stage .command-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-rows: repeat(2, minmax(172px, 1fr));
      gap: 20px;
      row-gap: var(--command-row-gap);
      min-height: 100%;
    }

    .service-stage .command-grid .service-item {
      min-height: 172px;
      padding: 20px 22px 18px;
      border-radius: 26px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: linear-gradient(180deg, rgba(20, 35, 62, 0.36), rgba(8, 17, 32, 0.56));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 36px rgba(4, 10, 20, 0.08);
    }

    .service-stage .command-grid .service-item:hover {
      border-color: rgba(255, 180, 90, 0.24);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 36px rgba(4, 10, 20, 0.08);
    }

    .service-stage .command-grid .service-item:nth-child(1),
    .service-stage .command-grid .service-item:nth-child(3) {
      margin-right: calc(var(--command-route-gap-x) + 6px);
    }

    .service-stage .command-grid .service-item:nth-child(2),
    .service-stage .command-grid .service-item:nth-child(4) {
      margin-left: calc(var(--command-route-gap-x) + 6px);
    }

    .service-stage .command-grid .service-icon {
      position: absolute;
      left: 22px;
      top: 20px;
      width: 50px;
      height: 50px;
      color: rgba(245, 248, 255, 0.92);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .service-stage .command-grid .service-item:hover .service-icon {
      color: rgba(255, 226, 186, 0.96);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.12), rgba(255, 180, 90, 0.03));
    }

    .service-stage .command-grid .service-label {
      position: absolute;
      top: 26px;
      right: 22px;
      margin: 0;
      padding-left: 14px;
      color: rgba(255, 223, 179, 0.88);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
    }

    .service-stage .command-grid .service-label::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 12px rgba(255, 180, 90, 0.28);
      transform: translateY(-50%);
    }

    .service-stage .command-grid .service-item:hover .service-label::before {
      animation: pulseLabelDot 1.6s ease-in-out infinite;
    }

    .service-stage .command-grid .service-item strong {
      margin: 0 0 10px 68px;
      max-width: 16ch;
      color: rgba(246, 248, 255, 0.96);
    }

    .service-stage .command-grid .service-item p {
      font-size: 0.96rem;
      line-height: 1.5;
    }

    .service-stage:hover .command-routes span {
      opacity: 0.84;
      box-shadow: 0 0 14px rgba(127, 169, 255, 0.08);
    }

    .service-stage:hover .command-routes span:nth-child(1)::after {
      animation: impulseToCenterX 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .service-stage:hover .command-routes span:nth-child(2)::after {
      animation: impulseToCenterXReverse 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
      animation-delay: 0.12s;
    }

    .service-stage:hover .command-routes span:nth-child(3)::after {
      animation: impulseToCenterY 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
      animation-delay: 0.24s;
    }

    .service-stage:hover .command-routes span:nth-child(4)::after {
      animation: impulseToCenterYReverse 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
      animation-delay: 0.36s;
    }

    .service-stage:hover .command-center {
      transform: translate(-50%, -50%) scale(1.018);
      border-color: rgba(255, 180, 90, 0.22);
      background: linear-gradient(180deg, rgba(22, 39, 70, 0.86), rgba(10, 19, 35, 0.94));
      box-shadow:
        0 22px 42px rgba(4, 10, 20, 0.22),
        0 0 24px rgba(127, 169, 255, 0.06);
      animation: centerAwaken 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
      animation-delay: 0.7s;
    }

    .service-stage:hover .command-center::after {
      animation: centerHalo 4.8s ease-out infinite;
      animation-delay: 0.7s;
    }

    @keyframes impulseToCenterX {
      0% {
        left: -28px;
        opacity: 0;
      }
      10% {
        opacity: 0;
      }
      18% {
        opacity: 0.72;
      }
      36% {
        opacity: 0.48;
      }
      48% {
        left: calc(100% - 28px);
        opacity: 0;
      }
      100% {
        left: calc(100% - 28px);
        opacity: 0;
      }
    }

    @keyframes impulseToCenterXReverse {
      0% {
        right: -28px;
        opacity: 0;
      }
      10% {
        opacity: 0;
      }
      18% {
        opacity: 0.72;
      }
      36% {
        opacity: 0.48;
      }
      48% {
        right: calc(100% - 28px);
        opacity: 0;
      }
      100% {
        right: calc(100% - 28px);
        opacity: 0;
      }
    }

    @keyframes impulseToCenterY {
      0% {
        top: -28px;
        opacity: 0;
      }
      10% {
        opacity: 0;
      }
      18% {
        opacity: 0.72;
      }
      36% {
        opacity: 0.48;
      }
      48% {
        top: calc(100% - 28px);
        opacity: 0;
      }
      100% {
        top: calc(100% - 28px);
        opacity: 0;
      }
    }

    @keyframes impulseToCenterYReverse {
      0% {
        bottom: -28px;
        opacity: 0;
      }
      10% {
        opacity: 0;
      }
      18% {
        opacity: 0.72;
      }
      36% {
        opacity: 0.48;
      }
      48% {
        bottom: calc(100% - 28px);
        opacity: 0;
      }
      100% {
        bottom: calc(100% - 28px);
        opacity: 0;
      }
    }

    @keyframes centerAwaken {
      0%, 14%, 100% {
        box-shadow:
          0 22px 42px rgba(4, 10, 20, 0.22),
          0 0 24px rgba(127, 169, 255, 0.06);
      }
      28% {
        box-shadow:
          0 24px 44px rgba(4, 10, 20, 0.24),
          0 0 24px rgba(127, 169, 255, 0.08);
      }
      40% {
        box-shadow:
          0 28px 50px rgba(4, 10, 20, 0.28),
          0 0 30px rgba(255, 180, 90, 0.12);
      }
      56% {
        box-shadow:
          0 23px 43px rgba(4, 10, 20, 0.23),
          0 0 20px rgba(127, 169, 255, 0.06);
      }
    }

    @keyframes centerHalo {
      0% {
        opacity: 0;
        transform: scale(0.97);
        border-color: rgba(255, 180, 90, 0.16);
      }
      16% {
        opacity: 0;
      }
      34% {
        opacity: 0.46;
      }
      52% {
        opacity: 0;
        transform: scale(1.06);
        border-color: rgba(255, 180, 90, 0);
      }
      100% {
        opacity: 0;
        transform: scale(1.06);
        border-color: rgba(255, 180, 90, 0);
      }
    }

    @keyframes pulseLabelDot {
      0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 12px rgba(255, 180, 90, 0.28);
      }

      50% {
        transform: translateY(-50%) scale(1.42);
        opacity: 0.76;
        box-shadow: 0 0 18px rgba(255, 180, 90, 0.38);
      }
    }


    .extras-stage-shell {
      padding-top: 0;
      padding-bottom: 84px;
    }

    .extras-stage {
      position: relative;
      padding: 30px;
      border-radius: 34px;
      overflow: hidden;
      background:
        radial-gradient(circle at 100% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.1), transparent 20%),
        linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-light-lg);
      color: var(--text-dark);
    }

    .extras-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(17, 36, 64, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 36, 64, 0.03) 1px, transparent 1px);
      background-size: 120px 120px;
      opacity: 0.24;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 88%);
      pointer-events: none;
    }

    .extras-stage-header,
    .extras-rail {
      position: relative;
      z-index: 1;
    }

    .extras-stage-header {
      margin-bottom: 26px;
    }

    .extras-stage-title {
      margin: 0;
      max-width: 13ch;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.1rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      color: var(--text-dark-strong);
    }

    .extras-stage-lead {
      max-width: 70ch;
      margin: 18px 0 0;
      color: var(--text-dark-muted);
      line-height: 1.72;
    }

    .extras-divider {
      position: relative;
      width: min(620px, 100%);
      height: 1px;
      margin: 18px 0 1px;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.18), rgba(255, 180, 90, 0.24), rgba(127, 169, 255, 0.18));
      overflow: hidden;
    }

    .extras-divider::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 18%;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0), rgba(255, 232, 198, 0.96), rgba(255, 180, 90, 0));
      filter: blur(1px);
      animation: railPulse 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .extras-rail {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      padding-top: 12px;
    }

    .extras-card {
      position: relative;
      padding: 22px;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(180deg, var(--surface-light-raised-top), var(--surface-light-raised-bottom));
      border: 1px solid var(--border-light);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), var(--shadow-light);
      transition:
        transform var(--transition-smooth),
        box-shadow var(--transition-smooth),
        border-color var(--transition-smooth),
        background var(--transition-smooth);
    }

    .extras-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 180, 90, 0.16);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 253, 0.98));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 24px 42px rgba(7, 16, 29, 0.08);
    }

    .extras-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .extras-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(20, 39, 70, 0.06), rgba(20, 39, 70, 0.02));
      color: rgba(24, 46, 82, 0.88);
      font-size: 28px;
      font-weight: 300;
      font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 28;
      transition: color var(--transition-fast), background var(--transition-fast);
    }

    .extras-card:hover .extras-icon {
      color: var(--gold-deep);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.14), rgba(255, 180, 90, 0.04));
    }

    .extras-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(35, 64, 111, 0.9);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .extras-tag::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 14px var(--gold-glow);
      flex: 0 0 auto;
    }

    .extras-card strong {
      position: relative;
      display: block;
      min-height: 2.32em;
      margin-bottom: 30px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.08rem;
      line-height: 1.16;
      letter-spacing: -0.04em;
      color: var(--text-dark);
    }

    .extras-card strong::after {
      content: "";
      position: absolute;
      left: 0;
      top: calc(100% + 14px);
      width: 78px;
      height: 1px;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.22), rgba(255, 180, 90, 0.26), rgba(127, 169, 255, 0));
      opacity: 0.9;
      transition:
        width 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        background 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .extras-card:hover strong::after {
      width: 104px;
      opacity: 1;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.28), rgba(255, 180, 90, 0.34), rgba(127, 169, 255, 0));
    }

    .extras-card p {
      margin: 0;
      min-height: 100px;
      color: var(--text-dark-muted);
      line-height: 1.58;
    }

    .extras-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      margin-top: 18px;
      padding: 0 18px;
      border-radius: 16px;
      color: var(--text-dark);
      background: linear-gradient(180deg, var(--surface-light-raised-top), var(--surface-light-raised-bottom));
      border: 1px solid var(--border-light);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 18px rgba(7, 16, 29, 0.05);
      font-size: 0.92rem;
      font-weight: 700;
      text-decoration: none;
      transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
    }

    .extras-link .material-symbols-outlined {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      font-size: 15px;
      color: var(--text-dark);
      background: rgba(127, 169, 255, 0.1);
      font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 20;
      transition:
        transform var(--transition-smooth),
        color var(--transition-fast),
        background var(--transition-fast);
    }

    .extras-card:hover .extras-link {
      color: var(--text-dark);
      border-color: rgba(255, 180, 90, 0.16);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 253, 0.98));
      transform: translateY(-1px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 24px rgba(7, 16, 29, 0.08);
    }

    .extras-card:hover .extras-link .material-symbols-outlined {
      color: var(--gold-deep);
      background: rgba(255, 180, 90, 0.12);
      transform: translateX(3px);
    }


    .process-stage-shell {
      padding-top: 0;
      padding-bottom: 84px;
    }

    .process-stage {
      position: relative;
      padding: 30px;
      border-radius: 34px;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.09), transparent 22%),
        linear-gradient(180deg, rgba(17, 29, 52, 0.9), rgba(6, 13, 26, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 26px 56px rgba(4, 10, 20, 0.16);
      color: var(--text);
    }

    .process-stage::before {
      display: none;
    }

    .process-stage-header,
    .route-pulse {
      position: relative;
      z-index: 1;
    }

    .process-stage-header {
      z-index: 2;
    }

    .process-stage-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 20px;
      align-items: end;
      margin-bottom: 26px;
    }

    .process-stage-title {
      margin: 0;
      max-width: 12ch;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.2rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      color: var(--text);
    }

    .process-stage-lead {
      max-width: 70ch;
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .process-note {
      padding: 24px;
      border-radius: 26px;
      background:
        linear-gradient(180deg, rgba(20, 35, 62, 0.56), rgba(8, 17, 32, 0.76));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .process-note strong {
      display: block;
      margin-bottom: 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.04rem;
      line-height: 1.2;
    }

    .process-note p {
      margin: 0;
      color: var(--muted);
      line-height: 1.64;
    }

    .variant-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      color: rgba(255, 223, 179, 0.9);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .variant-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 16px var(--gold-glow);
      flex: 0 0 auto;
    }

    .route-pulse {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
      isolation: isolate;
    }

    .route-pulse::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 120px 120px;
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }

    .route-pulse > * {
      position: relative;
      z-index: 1;
    }

    .route-line {
      position: absolute;
      left: 10%;
      right: 10%;
      top: 28px;
      height: 2px;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.14), rgba(255, 180, 90, 0.18), rgba(127, 169, 255, 0.14));
      overflow: hidden;
      border-radius: 999px;
    }

    .route-line::after {
      content: "";
      position: absolute;
      top: 0;
      left: -12%;
      width: 16%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0), rgba(255, 232, 198, 0.98), rgba(255, 180, 90, 0.62), rgba(255, 180, 90, 0));
      box-shadow: 0 0 16px rgba(255, 180, 90, 0.2);
      filter: blur(2px);
      animation: processRouteSweep 8.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .route-step {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding-top: 54px;
    }

    .route-node {
      position: absolute;
      top: 16px;
      left: 50%;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: linear-gradient(180deg, rgba(20, 35, 62, 0.9), rgba(8, 17, 32, 0.96));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transform: translateX(-50%);
    }

    .route-node::after {
      content: "";
      position: absolute;
      inset: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 14px rgba(255, 180, 90, 0.24);
    }

    .route-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 22px;
      border-radius: 26px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(20, 35, 62, 0.42), rgba(8, 17, 32, 0.66));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 34px rgba(4, 10, 20, 0.12);
      transition:
        transform var(--transition-smooth),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
    }

    .route-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 180, 90, 0.18);
      background: linear-gradient(180deg, rgba(22, 39, 70, 0.48), rgba(8, 17, 32, 0.68));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 38px rgba(4, 10, 20, 0.18);
    }

    .route-card-main {
      display: grid;
      gap: 8px;
      min-height: 98px;
    }

    .route-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 4px;
    }

    .route-step-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      min-height: 28px;
      padding: 0 12px;
      border-radius: 999px;
      color: rgba(255, 223, 179, 0.92);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      white-space: nowrap;
      transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);
    }

    .route-step-label::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 12px rgba(255, 180, 90, 0.28);
      transform-origin: center center;
    }

    .route-card .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      color: rgba(245, 248, 255, 0.92);
      font-size: 28px;
      font-variation-settings: "FILL" 0, "wght" 220, "GRAD" 0, "opsz" 28;
      transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
	  font-weight: 200;
    }

    .route-card:hover .icon {
      color: rgba(255, 226, 186, 0.96);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.12), rgba(255, 180, 90, 0.03));
      transform: translateY(-1px);
    }

    .route-card:hover .route-step-label {
      color: rgba(255, 223, 179, 0.96);
      border-color: rgba(255, 180, 90, 0.16);
      background: rgba(255, 180, 90, 0.08);
      box-shadow: 0 0 0 1px rgba(255, 180, 90, 0.04);
    }

    .route-card:hover .route-step-label::before {
      animation: processPulseLabelDot 1.6s ease-in-out infinite;
    }

    .route-card strong {
      position: relative;
      display: block;
      min-height: 2.32em;
      margin: 0 0 26px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.08rem;
      line-height: 1.16;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .route-card strong::after {
      content: "";
      position: absolute;
      left: 0;
      top: calc(100% + 12px);
      width: 78px;
      height: 1px;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.22), rgba(255, 180, 90, 0.26), rgba(127, 169, 255, 0));
      opacity: 0.9;
      transition:
        width 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        background 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .route-card:hover strong::after {
      width: 104px;
      opacity: 1;
      background: linear-gradient(90deg, rgba(127, 169, 255, 0.28), rgba(255, 180, 90, 0.34), rgba(127, 169, 255, 0));
    }

    .route-card p {
      margin: 0;
      margin-top: auto;
      color: var(--muted);
      line-height: 1.62;
    }

    @keyframes processRouteSweep {
      0% {
        left: -12%;
        opacity: 0;
      }
      10% {
        opacity: 0.68;
      }
      36% {
        opacity: 0.42;
      }
      58% {
        left: 96%;
        opacity: 0;
      }
      100% {
        left: 96%;
        opacity: 0;
      }
    }

    @keyframes processPulseLabelDot {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 12px rgba(255, 180, 90, 0.28);
      }
      50% {
        transform: scale(1.42);
        opacity: 0.76;
        box-shadow: 0 0 18px rgba(255, 180, 90, 0.38);
      }
    }


    .expert-stage-shell {
      padding-top: 0;
      padding-bottom: 84px;
    }

    .expert-stage {
      position: relative;
      padding: 30px;
      border-radius: 34px;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.1), transparent 22%),
        linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-light-lg);
      color: var(--text-dark);
    }

    .expert-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(17, 36, 64, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 36, 64, 0.03) 1px, transparent 1px);
      background-size: 120px 120px;
      opacity: 0.22;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 100%);
      pointer-events: none;
    }

    .expert-stage-header,
    .expert-magazine {
      position: relative;
      z-index: 1;
    }

    .expert-stage-header {
      margin-bottom: 22px;
    }

    .expert-stage-title {
      margin: 0;
      max-width: 12ch;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.9rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      color: var(--text-dark-strong);
    }

    .expert-stage-lead {
      max-width: 72ch;
      margin: 16px 0 0;
      color: var(--text-dark-muted);
      line-height: 1.7;
    }

    .expert-magazine {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 24px;
      align-items: start;
    }

    .expert-card {
      border-radius: 28px;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, var(--surface-light-raised-top), var(--surface-light-raised-bottom));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), var(--shadow-light);
    }

    .expert-card p {
      margin: 0;
      color: var(--text-dark-muted);
      line-height: 1.68;
    }

    .expert-article {
      padding: 26px;
      display: grid;
      gap: 18px;
    }

    .expert-article-block {
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border-light);
    }

    .expert-article-block:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .expert-article-block strong {
      display: block;
      margin-bottom: 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.02rem;
      line-height: 1.2;
      color: var(--text-dark);
    }

    .expert-rail {
      padding: 24px;
      position: sticky;
      top: 26px;
      transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-fast);
    }

    .expert-rail:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 180, 90, 0.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 24px 40px rgba(7, 16, 29, 0.08);
    }

    .expert-rail-title {
      display: block;
      margin: 14px 0 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.1rem;
      line-height: 1.18;
      letter-spacing: -0.04em;
      color: var(--text-dark-strong);
    }

    .meta-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(35, 64, 111, 0.9);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .meta-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 16px var(--gold-glow);
      flex: 0 0 auto;
      transform-origin: center center;
    }

    .expert-rail:hover .meta-chip::before {
      animation: pulseMetaDot 1.6s ease-in-out infinite;
    }

    .expert-sign {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      color: rgba(35, 64, 111, 0.9);
      font-size: 0.84rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .expert-avatar {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 52px;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(20, 39, 70, 0.06), rgba(20, 39, 70, 0.02));
      border: 1px solid var(--border-light);
      color: rgba(24, 46, 82, 0.88);
      font-size: 28px;
      line-height: 1;
      font-variation-settings: "FILL" 0, "wght" 220, "GRAD" 0, "opsz" 28;
      transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    }

    .expert-sign span:last-child {
      max-width: 12ch;
      line-height: 1.24;
    }

    .expert-rail:hover .expert-avatar {
      transform: translateY(-1px);
      color: var(--gold-deep);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.12), rgba(255, 180, 90, 0.03));
    }

    @media (max-width: 1200px) {
      .extras-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .process-stage-header {
        grid-template-columns: 1fr;
      }

      .expert-magazine {
        grid-template-columns: 1fr;
      }

      .expert-rail {
        position: relative;
        top: auto;
      }

      .route-pulse {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .route-line {
        display: none;
      }

      .service-stage .command-grid .service-item,
      .service-stage .command-grid .service-item:nth-child(1),
      .service-stage .command-grid .service-item:nth-child(2),
      .service-stage .command-grid .service-item:nth-child(3),
      .service-stage .command-grid .service-item:nth-child(4) {
        margin: 0;
      }

      .service-stage .command-center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 18px;
      }

      .service-stage:hover .command-center {
        transform: scale(1.018);
      }

      .service-stage .command-board {
        height: auto;
        min-height: 0;
      }

      .service-stage .command-grid {
        min-height: 0;
      }
    }

    @media (max-width: 980px) {
      .service-stage {
        padding: 24px;
      }

      .extras-rail {
        grid-template-columns: 1fr;
      }

      .route-pulse {
        grid-template-columns: 1fr;
      }

      .service-stage .command-grid {
        grid-template-columns: 1fr;
      }

      .service-stage .command-board {
        padding: 20px;
      }

      .service-stage .command-routes {
        display: none;
      }
    }

    @media (max-width: 680px) {
      .extras-stage {
        padding: 24px 20px;
      }

      .process-stage {
        padding: 24px 20px;
      }

      .expert-stage {
        padding: 24px 20px;
      }
    }


    .cases-stage-shell {
      padding-block: 0 96px;
    }

    .cases-stage {
      position: relative;
      overflow: hidden;
      border-radius: 36px;
      padding: 34px;
      background:
        radial-gradient(circle at 0% 0%, rgba(127, 169, 255, 0.16), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(255, 180, 90, 0.1), transparent 18%),
        linear-gradient(180deg, rgba(17, 29, 52, 0.94), rgba(6, 13, 26, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 28px 70px rgba(2, 7, 16, 0.24);
    }

    .cases-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.032) 46%, transparent 58%);
      opacity: 0;
      transform: translateX(-20%);
      transition: opacity 760ms ease, transform 1200ms ease;
    }

    .cases-stage:hover::before {
      opacity: 1;
      transform: translateX(16%);
    }

    .cases-stage-header {
      position: relative;
      z-index: 1;
      margin-bottom: 26px;
    }

    .cases-stage-title {
      margin: 0;
      max-width: 900px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(36px, 5vw, 60px);
      line-height: 0.95;
      letter-spacing: -0.05em;
    }

    .cases-stage-lead {
      margin: 0;
      max-width: 940px;
      font-size: 18px;
      line-height: 1.68;
      color: rgba(236, 241, 250, 0.82);
    }

    .cr-atlas-shell {
      position: relative;
      min-height: 520px;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background:
        radial-gradient(circle at 0% 0%, rgba(127, 169, 255, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(13, 24, 43, 0.92), rgba(5, 11, 22, 0.96));
      overflow: hidden;
    }

    .cr-nav {
      position: absolute;
      top: 22px;
      right: 22px;
      z-index: 4;
      display: inline-flex;
      gap: 10px;
    }

    .cr-nav button {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(8, 16, 29, 0.72), rgba(8, 16, 29, 0.46));
      color: rgba(236, 241, 250, 0.88);
      transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    }

    .cr-nav button:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 180, 90, 0.32);
      color: var(--gold);
      background: linear-gradient(180deg, rgba(18, 31, 53, 0.88), rgba(10, 19, 34, 0.78));
    }

    .cr-atlas-top {
      display: flex;
      gap: 12px;
      padding: 86px 26px 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .cr-atlas-top::-webkit-scrollbar {
      display: none;
    }

    .cr-atlas-pill {
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012));
      color: rgba(220, 228, 243, 0.62);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
    }

    .cr-atlas-pill::before,
    .cr-chip::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(127, 169, 255, 0.8);
      box-shadow: 0 0 0 7px rgba(127, 169, 255, 0.1);
      flex: 0 0 auto;
      transition: background var(--transition-fast), box-shadow var(--transition-fast);
    }

    .cr-atlas-pill.is-active {
      color: rgba(255, 232, 199, 0.9);
      border-color: rgba(255, 180, 90, 0.22);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.08), rgba(255, 255, 255, 0.012));
    }

    .cr-atlas-pill.is-active::before {
      background: var(--gold);
      box-shadow: 0 0 0 7px rgba(255, 180, 90, 0.1);
    }

    .cr-atlas-shell--country .cr-atlas-main {
      padding-top: 72px;
    }

    .cr-atlas-shell--reviews .cr-pager {
      flex: 0 0 auto;
      width: 152px;
      max-width: 152px;
      justify-content: flex-end;
      align-content: flex-start;
      gap: 8px;
    }

    .cr-atlas-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 22px;
      padding: 24px 26px 20px;
    }

    .cr-atlas-hero,
    .cr-atlas-review {
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.015));
    }

    .cr-atlas-hero {
      padding: 28px;
      display: grid;
      align-content: start;
      gap: 16px;
    }

    .cr-kicker,
    .cr-review-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 232, 199, 0.9);
    }

    .cr-atlas-hero h3 {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(26px, 2.9vw, 38px);
      line-height: 1;
      letter-spacing: 0;
    }

    .cr-atlas-hero h3::after {
      content: "";
      display: block;
      width: min(100%, 420px);
      height: 1px;
      margin-top: 16px;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0.48), rgba(127, 169, 255, 0.16), transparent 94%);
    }

    .cr-atlas-hero p {
      margin: 0;
      font-size: 16px;
      line-height: 1.66;
      color: rgba(236, 241, 250, 0.82);
    }

    .cr-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .cr-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 20px;
      padding: 0;
      color: rgba(255, 234, 206, 0.9);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .cr-chip::before {
      background: var(--gold);
      box-shadow: 0 0 0 7px rgba(255, 180, 90, 0.08);
    }

    .cr-atlas-review {
      position: relative;
      overflow: hidden;
      padding: 22px;
      display: grid;
      align-content: start;
      gap: 18px;
    }

    .cr-atlas-review::before {
      content: "";
      position: absolute;
      right: -36px;
      top: -36px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 180, 90, 0.14), transparent 68%);
      filter: blur(10px);
      pointer-events: none;
    }

    .cr-review-quote,
    .cr-review-body,
    .cr-review-proof,
    .cr-review-author {
      position: relative;
      z-index: 1;
    }

    .cr-review-quote {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 21px;
      line-height: 1.38;
      letter-spacing: -0.03em;
      color: rgba(245, 247, 251, 0.96);
      max-width: 24ch;
    }

    .cr-review-divider {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0.46), rgba(127, 169, 255, 0.14), transparent 92%);
    }

    .cr-review-body {
      margin: 0;
      color: rgba(236, 241, 250, 0.82);
      font-size: 15px;
      line-height: 1.68;
    }

    .cr-review-proof {
      display: grid;
      gap: 10px;
    }

    .cr-review-point {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(220, 228, 243, 0.62);
      font-size: 14px;
      line-height: 1.6;
    }

    .cr-review-point::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 8px;
      border-radius: 50%;
      background: rgba(127, 169, 255, 0.88);
      box-shadow: 0 0 0 7px rgba(127, 169, 255, 0.08);
      flex: 0 0 auto;
    }

    .cr-review-author {
      margin-top: auto;
      padding: 16px 18px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
      transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-smooth);
    }

    .cr-atlas-review:hover .cr-review-author {
      transform: translateY(-2px);
      border-color: rgba(255, 180, 90, 0.22);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.07), rgba(255, 255, 255, 0.02));
    }

    .cr-review-author strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 18px;
      line-height: 1.16;
      letter-spacing: -0.03em;
    }

    .cr-review-author span {
      display: block;
      margin-top: 7px;
      color: rgba(220, 228, 243, 0.62);
      font-size: 14px;
      line-height: 1.55;
    }

    .cr-atlas-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 26px 26px;
    }

    .cr-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      flex: 1 1 auto;
    }

    .cr-metric {
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    }

    .cr-metric small {
      display: block;
      margin-bottom: 8px;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 229, 194, 0.84);
    }

    .cr-metric strong {
      font-size: 25px;
      line-height: 1;
      font-family: "Plus Jakarta Sans", sans-serif;
      letter-spacing: -0.05em;
    }

    .cr-metric span {
      display: block;
      margin-top: 8px;
      color: rgba(220, 228, 243, 0.62);
      line-height: 1.55;
      font-size: 14px;
    }

    .cr-pager {
      display: inline-flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cr-pager-dot {
      width: 10px;
      height: 10px;
      min-width: 10px;
      min-height: 10px;
      padding: 0;
      flex: 0 0 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.02);
      transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    }

    .cr-pager-dot.is-active {
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(255, 180, 90, 0.1);
      transform: scale(1.04);
    }

    @media (max-width: 1200px) {
      .cr-atlas-main {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 980px) {
      .cases-stage {
        padding: 22px;
        border-radius: 28px;
      }

      .cases-stage-title {
        font-size: 34px;
      }

      .cr-atlas-bottom {
        flex-direction: column;
      }

      .cr-metrics {
        grid-template-columns: 1fr;
      }

      .cr-atlas-shell--reviews .cr-pager {
        width: 100%;
        max-width: 100%;
        justify-content: center;
      }
    }


    .faq-stage-shell {
      padding-block: 0 96px;
    }

    .faq-stage {
      position: relative;
      overflow: hidden;
      border-radius: 36px;
      padding: 28px;
      background: linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-light-lg);
      color: var(--text-dark);
    }

    .faq-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.44) 46%, transparent 58%);
      opacity: 0;
      transform: translateX(-18%);
      transition: opacity 760ms ease, transform 1100ms ease;
    }

    .faq-stage:hover::before {
      opacity: 1;
      transform: translateX(16%);
    }

    .faq-stage-header {
      position: relative;
      z-index: 1;
      margin-bottom: 24px;
    }

    .faq-stage-title {
      margin: 0;
      max-width: 920px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 0.95;
      letter-spacing: -0.05em;
      color: var(--text-dark-strong);
    }

    .faq-stage-lead {
      margin: 0;
      max-width: 930px;
      font-size: 18px;
      line-height: 1.68;
      color: var(--text-dark-muted);
    }

    .hf-faq-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 400px;
      min-height: 500px;
      border-radius: 30px;
      border: 1px solid var(--border-light);
      background:
        radial-gradient(circle at 0% 0%, rgba(127, 169, 255, 0.08), transparent 24%),
        linear-gradient(180deg, var(--surface-light-raised-top), var(--surface-light-raised-bottom));
      overflow: hidden;
      box-shadow: var(--shadow-light);
    }

    .hf-faq-main {
      padding: 30px;
      display: grid;
      gap: 14px;
      align-content: start;
      border-right: 1px solid var(--border-light);
    }

    .hf-faq-label,
    .hf-faq-quote {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(160, 122, 67, 0.92);
	  padding: 5px 5px 10px;
    }

    .hf-faq-label::before,
    .hf-faq-quote::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 8px rgba(255, 180, 90, 0.08);
      flex: 0 0 auto;
    }

    .hf-faq-main h3 {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .hf-faq-main h3 {
      font-size: clamp(28px, 3vw, 38px);
      color: var(--text-dark-strong);
    }

    .hf-faq-line {
      width: min(100%, 420px);
      height: 1px;
      background: linear-gradient(90deg, rgba(255, 180, 90, 0.46), rgba(127, 169, 255, 0.18), transparent 94%);
      margin: 6px 0 4px;
    }

    .hf-faq-main p,
    .hf-faq-answer p,
    .hf-faq-quote-box p,
    .footer-copy {
      margin: 0;
      line-height: 1.68;
    }

    .hf-faq-main p,
    .hf-faq-answer p,
    .hf-faq-quote-box p {
      font-size: 16px;
      color: var(--text-dark-muted);
    }

    .hf-faq-list {
      display: grid;
      gap: 12px;
      margin-top: 10px;
    }

    .hf-faq-item {
      border-radius: 24px;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98));
      transition: border-color var(--transition-fast), transform var(--transition-smooth), box-shadow var(--transition-fast);
    }

    .hf-faq-item:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 180, 90, 0.24);
      box-shadow: 0 18px 36px rgba(18, 37, 66, 0.08);
    }

    .hf-faq-item.is-open {
      border-color: rgba(255, 180, 90, 0.24);
      box-shadow: 0 18px 36px rgba(18, 37, 66, 0.08);
    }

    .hf-faq-trigger {
      width: 100%;
      padding: 18px 20px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 42px;
      gap: 16px;
      align-items: start;
      text-align: left;
    }

    .hf-faq-trigger strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 22px;
      line-height: 1.16;
      letter-spacing: -0.03em;
      color: var(--text-dark-strong);
    }

    .hf-faq-trigger .icon-box {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 252, 0.96));
      color: rgba(23, 40, 66, 0.82);
      transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-smooth);
    }

    .hf-faq-item.is-open .icon-box {
      color: var(--gold-deep);
      border-color: rgba(255, 180, 90, 0.24);
      transform: rotate(45deg);
    }

    .hf-faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows var(--transition-smooth);
    }

    .hf-faq-item.is-open .hf-faq-answer {
      grid-template-rows: 1fr;
    }

    .hf-faq-answer > div {
      overflow: hidden;
    }

    .hf-faq-answer-inner {
      padding: 0 20px 20px;
      max-width: 820px;
    }

    .hf-faq-quote-box {
      padding: 30px;
      display: grid;
      align-content: start;
      gap: 16px;
      background: linear-gradient(180deg, rgba(245, 248, 252, 0.92), rgba(239, 245, 251, 0.88));
    }

    .hf-faq-quote-box strong {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 24px;
      line-height: 1.16;
      letter-spacing: -0.03em;
      color: var(--text-dark-strong);
    }

    .hf-faq-proof {
      display: grid;
      gap: 12px;
    }

    .hf-faq-proof div {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--text-dark-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .hf-faq-proof div::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 8px;
      border-radius: 50%;
      background: rgba(127, 169, 255, 0.9);
      box-shadow: 0 0 0 7px rgba(127, 169, 255, 0.08);
      flex: 0 0 auto;
    }


    .cta-shell {
      padding-block: 0 40px;
    }

    .cta-rail {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      overflow: hidden;
      padding: 26px 30px;
      border-radius: 32px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
      background:
        radial-gradient(circle at 0% 0%, rgba(127, 169, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(17, 29, 52, 0.94), rgba(6, 13, 26, 0.98));
    }

    .cta-rail__copy {
      flex: 1 1 280px;
      min-width: 0;
      position: relative;
      z-index: 1;
    }

    .cta-rail .variant-chip {
      margin-bottom: 10px;
    }

    .cta-rail__title {
      display: block;
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.05rem, 1.8vw, 1.22rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.22;
      color: var(--text);
    }

    .cta-rail__meta {
      display: block;
      margin-top: 6px;
      color: var(--muted-soft);
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .cta-rail__divider {
      flex: 0 0 auto;
      align-self: stretch;
      width: 1px;
      margin: 4px 0;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    }

    .cta-rail__action {
      flex: 0 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-rail .primary-button {
      flex-shrink: 0;
      white-space: nowrap;
    }


    .footer-shell {
      padding-block: 0 5px;
    }

    .site-footer {
      padding: 28px 6px 18px;
      border-top: 1px solid rgba(255, 180, 90, 0.22);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(160px, 1fr));
      gap: 0;
      align-items: start;
    }

    .footer-col {
      padding: 0 24px;
    }

    .footer-col + .footer-col {
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col:first-child {
      padding-left: 0;
    }

    .footer-brand strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--text);
    }

    .footer-copy {
      max-width: 420px;
      margin-top: 12px;
      font-size: 15px;
      line-height: 1.65;
      color: var(--muted);
    }

    .footer-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .footer-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      color: rgba(236, 241, 250, 0.82);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-chip .material-symbols-outlined {
      font-size: 14px;
      color: var(--gold);
    }

    .footer-group h3 {
      margin: 0 0 12px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255, 232, 199, 0.9);
    }

    .footer-list {
      display: grid;
      gap: 10px;
    }

    .footer-list--directions {
      grid-template-columns: 1fr 1fr;
      gap: 10px 16px;
    }

    .footer-brand-nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
    }

    .footer-brand-nav .footer-link {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 13px;
      line-height: 1.2;
      color: rgba(236, 241, 250, 0.84);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: none;
      transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
    }

    .footer-brand-nav .footer-link:hover {
      color: rgba(255, 232, 199, 0.96);
      background: rgba(255, 180, 90, 0.1);
      border-color: rgba(255, 180, 90, 0.3);
      box-shadow: 0 6px 18px rgba(255, 180, 90, 0.12);
      transform: translateY(-1px);
    }

    .footer-link {
      color: var(--muted);
      text-decoration: none;
      transition: color var(--transition-fast), transform var(--transition-fast);
    }

    .footer-link:hover {
      color: rgba(255, 232, 199, 0.94);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 14px;
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: rgba(220, 228, 243, 0.58);
      font-size: 13px;
    }

    .footer-bottom span:last-child {
      max-width: 56ch;
    }

    #directions-gallery,
    #service,
    #additional-services,
    #process,
    #expert-note,
    #cases-reviews,
    #faq,
    #final-cta {
      scroll-margin-top: 96px;
    }

    .stat-card:hover {
      transform: translateY(-1px);
    }

    .direction-photo-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 38px rgba(9, 16, 28, 0.12);
    }

    .route-card:hover {
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 32px rgba(4, 10, 20, 0.14);
    }

    .expert-rail:hover {
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 20px 34px rgba(7, 16, 29, 0.07);
    }

    .cr-atlas-review:hover .cr-review-author {
      transform: translateY(-1px);
    }

    .hf-faq-item:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(18, 37, 66, 0.07);
    }

    @media (max-width: 1200px) {
      .hf-faq-layout {
        grid-template-columns: 1fr;
      }

      .hf-faq-main {
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
      }
    }

    @media (max-width: 980px) {
      .faq-stage,
      .cta-rail {
        padding: 22px;
        border-radius: 28px;
      }

      .cta-rail__divider {
        display: none;
      }

      .cta-rail .primary-button {
        width: 100%;
        justify-content: center;
      }

      .faq-stage-title {
        font-size: 34px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-col + .footer-col {
        border-left: 0;
      }

      .footer-col:nth-child(odd) {
        padding-left: 0;
      }

      .footer-col:nth-child(even) {
        padding-right: 0;
      }

      .footer-col:nth-child(n + 2) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 8px;
      }
    }

    @media (max-width: 680px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-col {
        padding: 0;
      }

      .footer-col + .footer-col {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 8px;
      }
    }


    .visa-overview-section .visa-overview-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
      gap: 20px;
      margin-bottom: 20px;
    }

    .visa-overview-copy p {
      margin: 0;
      color: var(--text-dark-muted);
      line-height: 1.68;
      font-size: 0.98rem;
    }

    .visa-overview-copy p + p {
      margin-top: 12px;
    }

    .visa-feature-list {
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }

    .visa-feature-item {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 12px;
      align-items: start;
    }

    .visa-feature-item::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 0.48rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffe2bd, var(--gold));
      box-shadow: 0 0 14px rgba(255, 180, 90, 0.34);
    }

    .visa-feature-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text-dark-strong);
      font-size: 1rem;
    }

    .visa-feature-item p {
      margin: 0;
      font-size: 0.92rem;
      color: var(--text-dark-muted);
      line-height: 1.58;
    }

    .visa-overview-aside {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .visa-fact-card {
      padding: 20px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 253, 0.98));
      border: 1px solid rgba(16, 31, 56, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .visa-fact-card small {
      display: block;
      margin-bottom: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(176, 108, 23, 0.88);
    }

    .visa-fact-card strong {
      display: block;
      margin-bottom: 8px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.15rem;
      letter-spacing: -0.04em;
      color: var(--text-dark-strong);
    }

    .visa-fact-card p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.58;
      color: var(--text-dark-muted);
    }

    .visa-facts-row {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 1100px) {
      .visa-overview-section .visa-overview-grid,
      .visa-facts-row {
        grid-template-columns: 1fr;
      }
    }


    .requirements-stage-shell {
      padding-top: 18px;
      padding-bottom: 84px;
    }

    .requirements-stage {
      position: relative;
      padding: 30px;
      border-radius: 34px;
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 12%, rgba(127, 169, 255, 0.16), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(255, 180, 90, 0.1), transparent 20%),
        linear-gradient(180deg, #0e1b31 0%, #07111f 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 26px 56px rgba(4, 10, 20, 0.14);
      color: var(--text);
    }

    .requirements-stage::before {
      display: none;
    }

    .requirements-stage-header,
    .requirements-stage .checklist-grid {
      position: relative;
      z-index: 1;
    }

    .requirements-stage-header {
      z-index: 2;
    }

    .requirements-stage-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 20px;
      align-items: end;
      margin-bottom: 26px;
    }

    .requirements-stage-title {
      margin: 0;
      max-width: 12ch;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.2rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
      color: var(--text);
    }

    .requirements-stage-lead {
      max-width: 70ch;
      margin: 0;
      color: rgba(236, 241, 250, 0.76);
      line-height: 1.68;
    }

    .requirements-stage .checklist-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .requirements-stage .checklist-card {
      position: relative;
      overflow: hidden;
      padding: 20px 22px 18px;
      border-radius: 26px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: linear-gradient(180deg, rgba(20, 35, 62, 0.36), rgba(8, 17, 32, 0.56));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 36px rgba(4, 10, 20, 0.08);
      transition: border-color 240ms ease, box-shadow 240ms ease;
    }

    .requirements-stage .checklist-card:hover {
      border-color: rgba(255, 180, 90, 0.24);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 36px rgba(4, 10, 20, 0.08);
    }

    .requirements-stage .checklist-card small {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 223, 179, 0.84);
    }

    .requirements-stage .checklist-card strong {
      display: block;
      margin-bottom: 8px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.12rem;
      line-height: 1.3;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .requirements-stage .checklist-list {
      display: grid;
      gap: 10px;
      margin-top: 12px;
    }

    .requirements-stage .checklist-list div {
      display: grid;
      grid-template-columns: 16px 1fr;
      gap: 10px;
      align-items: start;
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(236, 241, 250, 0.74);
    }

    .requirements-stage .checklist-list div::before {
      content: "";
      width: 7px;
      height: 7px;
      margin-top: 0.45rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffe2bd, var(--gold));
      box-shadow: 0 0 14px rgba(255, 180, 90, 0.32);
    }

    @media (max-width: 1100px) {
      .requirements-stage-header {
        grid-template-columns: 1fr;
        align-items: start;
      }
    }

    @media (max-width: 900px) {
      .requirements-stage .checklist-grid {
        grid-template-columns: 1fr;
      }
    }


    .responsibility-section .responsibility-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .responsibility-card {
      padding: 22px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 253, 0.98));
      border: 1px solid rgba(16, 31, 56, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .responsibility-card .material-symbols-outlined {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin-bottom: 14px;
      border-radius: 14px;
      background: rgba(20, 39, 70, 0.06);
      color: rgba(28, 48, 84, 0.82);
      font-size: 26px;
      font-weight: 300;
    }

    .responsibility-card small {
      display: block;
      margin-bottom: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(176, 108, 23, 0.88);
    }

    .responsibility-card strong {
      display: block;
      margin-bottom: 8px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.05rem;
      letter-spacing: -0.03em;
      color: var(--text-dark-strong);
    }

    .responsibility-card p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.62;
      color: var(--text-dark-muted);
    }

    @media (max-width: 900px) {
      .responsibility-section .responsibility-grid {
        grid-template-columns: 1fr;
      }
    }


    .cta-band-shell {
      padding-top: 0;
      padding-bottom: 84px;
    }

    .cta-band {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      padding: 30px 32px;
      border-radius: 30px;
      background:
        radial-gradient(circle at 88% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.09), transparent 22%),
        linear-gradient(180deg, rgba(17, 29, 52, 0.9), rgba(6, 13, 26, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 26px 56px rgba(4, 10, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      color: var(--text);
    }

    .cta-band strong {
      display: block;
      margin-bottom: 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(1.4rem, 2.5vw, 2.2rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .cta-band p {
      margin: 0;
      max-width: 58ch;
      color: var(--muted);
      line-height: 1.68;
    }

    .cta-band-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    @media (max-width: 900px) {
      .cta-band {
        grid-template-columns: 1fr;
      }

      .cta-band-actions {
        justify-content: flex-start;
      }
    }


/* Блок подкатегорий / типов виз — варианты для материнских стран (hub) */

.vst-catalog-intro {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 28px;
}

.vst-catalog-intro h1 {
  margin: 0 0 12px;
  max-width: 18ch;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text-dark-strong);
}

.vst-catalog-intro .vst-catalog-lead {
  margin: 0 0 24px;
  max-width: 72ch;
  color: var(--text-dark-muted);
  line-height: 1.68;
  font-size: 1rem;
}

.vst-placement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.vst-placement-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 253, 0.98));
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light);
}

.vst-placement-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(176, 108, 23, 0.9);
}

.vst-placement-chip span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-dark-muted);
}

.vst-showcase {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.vst-showcase-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.vst-showcase-head h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.04em;
  color: var(--text-dark-strong);
}

.vst-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vst-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vst-badge--placement {
  background: rgba(127, 169, 255, 0.12);
  color: rgba(35, 64, 111, 0.92);
  border: 1px solid rgba(127, 169, 255, 0.22);
}

.vst-badge--rec {
  background: rgba(255, 180, 90, 0.14);
  color: rgba(176, 108, 23, 0.95);
  border: 1px solid rgba(255, 180, 90, 0.28);
}

.vst-showcase-note {
  margin: 0 0 20px;
  max-width: 78ch;
  color: var(--text-dark-muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.vst-demo-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 31, 56, 0.1);
  box-shadow: var(--shadow-light-lg);
}

.vst-demo-hero-tail {
  padding: 22px 28px 26px;
  background: linear-gradient(180deg, rgba(9, 17, 33, 0.98), rgba(6, 13, 26, 1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vst-demo-hero-tail small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 219, 171, 0.88);
}

.vst-demo-hero-tail p {
  margin: 0;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(236, 241, 250, 0.72);
}

.vst-demo-overview {
  padding: 28px;
  background: linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
}

.vst-demo-overview .section-eyebrow {
  margin-bottom: 10px;
}

.vst-demo-overview .section-title {
  max-width: none;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 8px;
}

.vst-demo-overview .section-lead {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 0.94rem;
}

/* ——— Общие элементы карточек типов ——— */

.vst-block {
  position: relative;
}

.vst-block__head {
  margin-bottom: 18px;
}

.vst-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(35, 64, 111, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vst-block__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-tint), var(--gold));
  box-shadow: 0 0 16px rgba(255, 180, 90, 0.4);
}

.vst-block__title {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.04em;
  color: var(--text-dark-strong);
}

.vst-block__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-dark-muted);
  line-height: 1.62;
  font-size: 0.94rem;
}

.vst-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.vst-type-card:hover {
  transform: translateY(-2px);
}

.vst-type-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 24px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.vst-type-card__title {
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: inherit;
}

.vst-type-card__desc {
  margin: 0 0 14px;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.86;
}

.vst-type-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.vst-type-card__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.vst-type-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: inherit;
}

.vst-type-card__cta .material-symbols-outlined {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.vst-type-card:hover .vst-type-card__cta .material-symbols-outlined {
  transform: translateX(3px);
}

.vst-type-card__flag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ——— V1: Мост после hero (тёмная лента) ——— */

.vst-bridge-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -1px;
  background:
    radial-gradient(circle at 100% 0%, rgba(127, 169, 255, 0.14), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 20, 38, 0.98), rgba(6, 12, 23, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vst-bridge-shell__inner {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 32px;
}

.vst-bridge-shell .vst-block__eyebrow {
  color: rgba(255, 219, 171, 0.9);
}

.vst-bridge-shell .vst-block__eyebrow::before {
  box-shadow: 0 0 16px rgba(255, 180, 90, 0.5);
}

.vst-bridge-shell .vst-block__title,
.vst-bridge-shell .vst-block__lead {
  color: rgba(245, 248, 255, 0.94);
}

.vst-bridge-shell .vst-block__lead {
  opacity: 0.78;
}

.vst-bridge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vst-bridge-shell .vst-type-card {
  background: linear-gradient(180deg, rgba(22, 38, 67, 0.42), rgba(11, 22, 40, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #f4f6fb;
}

.vst-bridge-shell .vst-type-card:hover {
  border-color: rgba(255, 225, 183, 0.24);
  box-shadow: 0 18px 40px rgba(2, 7, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vst-bridge-shell .vst-type-card__icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.vst-bridge-shell .vst-type-card__meta span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(236, 241, 250, 0.9);
}

.vst-bridge-shell .vst-type-card__flag {
  background: rgba(255, 180, 90, 0.14);
  border: 1px solid rgba(255, 180, 90, 0.28);
  color: var(--gold-tint);
}

.vst-bridge-shell .vst-type-card__flag--alt {
  background: rgba(127, 169, 255, 0.12);
  border-color: rgba(127, 169, 255, 0.24);
  color: #c8d9ff;
}

/* Каталог: демо-обёртка (legacy alias) */
.vst-bridge {
  padding: 24px 28px 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(127, 169, 255, 0.14), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 20, 38, 0.98), rgba(6, 12, 23, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vst-bridge .vst-block__eyebrow {
  color: rgba(255, 219, 171, 0.9);
}

.vst-bridge .vst-block__eyebrow::before {
  box-shadow: 0 0 16px rgba(255, 180, 90, 0.5);
}

.vst-bridge .vst-block__title,
.vst-bridge .vst-block__lead {
  color: rgba(245, 248, 255, 0.94);
}

.vst-bridge .vst-block__lead {
  opacity: 0.78;
}

.vst-bridge .vst-type-card {
  background: linear-gradient(180deg, rgba(22, 38, 67, 0.42), rgba(11, 22, 40, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #f4f6fb;
}

.vst-bridge .vst-type-card:hover {
  border-color: rgba(255, 225, 183, 0.24);
  box-shadow: 0 18px 40px rgba(2, 7, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vst-bridge .vst-type-card__icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.vst-bridge .vst-type-card__meta span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(236, 241, 250, 0.9);
}

.vst-bridge .vst-type-card__flag {
  background: rgba(255, 180, 90, 0.14);
  border: 1px solid rgba(255, 180, 90, 0.28);
  color: var(--gold-tint);
}

.vst-bridge .vst-type-card__flag--alt {
  background: rgba(127, 169, 255, 0.12);
  border-color: rgba(127, 169, 255, 0.24);
  color: #c8d9ff;
}

/* ——— V2: Внутри visa-overview (светлые карточки) ——— */

.vst-overview-embed {
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(127, 169, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 253, 0.92));
  border: 1px solid rgba(16, 31, 56, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vst-overview-embed__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vst-overview-embed .vst-type-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 253, 0.98));
  border: 1px solid rgba(16, 31, 56, 0.08);
  box-shadow: var(--shadow-light);
  color: var(--text-dark-strong);
}

.vst-overview-embed .vst-type-card:hover {
  border-color: rgba(255, 180, 90, 0.32);
  box-shadow: var(--shadow-light-lg);
}

.vst-overview-embed .vst-type-card__icon {
  background: rgba(255, 180, 90, 0.12);
  border: 1px solid rgba(255, 180, 90, 0.22);
  color: rgba(176, 108, 23, 0.95);
}

.vst-overview-embed .vst-type-card__meta span {
  background: rgba(127, 169, 255, 0.08);
  border: 1px solid rgba(127, 169, 255, 0.14);
  color: rgba(35, 64, 111, 0.88);
}

.vst-overview-embed .vst-type-card__cta {
  color: rgba(35, 64, 111, 0.95);
}

/* ——— V3: Сравнительная split-панель ——— */

.vst-compare {
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(239, 245, 252, 0.96));
}

.vst-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 31, 56, 0.1);
  box-shadow: var(--shadow-light-lg);
}

.vst-compare__col {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.98));
}

.vst-compare__col + .vst-compare__col {
  border-left: 1px solid rgba(16, 31, 56, 0.08);
}

.vst-compare__col--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 180, 90, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(255, 255, 255, 0.98));
}

.vst-compare__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vst-compare__head h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text-dark-strong);
}

.vst-compare__head p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-dark-muted);
}

.vst-compare__list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.vst-compare__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-dark-muted);
}

.vst-compare__list .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold-deep);
  margin-top: 1px;
}

.vst-compare__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark-strong);
  text-decoration: none;
}

.vst-compare__link:hover {
  color: rgba(176, 108, 23, 0.95);
}

/* ——— V4: Компактная лента в hero ——— */

.vst-hero-strip {
  padding: 0 28px 24px;
  background: linear-gradient(180deg, rgba(9, 17, 33, 0.98), rgba(6, 13, 26, 1));
}

.vst-hero-strip__label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 219, 171, 0.88);
}

.vst-hero-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vst-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 248, 255, 0.94);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.vst-hero-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 225, 183, 0.28);
  transform: translateY(-1px);
}

.vst-hero-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 180, 90, 0.12);
  border: 1px solid rgba(255, 180, 90, 0.22);
  color: var(--gold);
  font-size: 20px;
}

.vst-hero-chip__text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vst-hero-chip__text small {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: rgba(220, 228, 243, 0.72);
}

.vst-hero-chip__arrow {
  margin-left: 4px;
  font-size: 18px;
  color: rgba(255, 219, 171, 0.8);
}

/* ——— V5: Вертикальная rail-секция (перед FAQ) ——— */

.vst-rail-shell {
  padding: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(127, 169, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 22, 40, 0.98), rgba(6, 13, 26, 1));
}

.vst-rail-shell .vst-block__eyebrow {
  color: rgba(255, 219, 171, 0.9);
}

.vst-rail-shell .vst-block__title {
  color: #f4f6fb;
}

.vst-rail-shell .vst-block__lead {
  color: rgba(236, 241, 250, 0.76);
}

.vst-rail {
  display: grid;
  gap: 12px;
}

.vst-rail-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22, 38, 67, 0.36), rgba(11, 22, 40, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #f4f6fb;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
}

.vst-rail-item:hover {
  border-color: rgba(255, 225, 183, 0.24);
  transform: translateX(4px);
  background: linear-gradient(180deg, rgba(28, 48, 82, 0.44), rgba(14, 26, 48, 0.62));
}

.vst-rail-item__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.vst-rail-item__body strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.vst-rail-item__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(220, 228, 243, 0.78);
}

.vst-rail-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.vst-rail-item__tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.vst-rail-item__arrow {
  display: none;
  color: var(--gold);
  font-size: 22px;
}

@media (min-width: 900px) {
  .vst-rail-item__arrow {
    display: block;
  }

  .vst-rail-item {
    grid-template-columns: 52px 1fr auto auto;
  }
}

@media (max-width: 900px) {
  .vst-placement-grid,
  .vst-bridge__grid,
  .vst-overview-embed__grid,
  .vst-compare__grid {
    grid-template-columns: 1fr;
  }

  .vst-compare__col + .vst-compare__col {
    border-left: none;
    border-top: 1px solid rgba(16, 31, 56, 0.08);
  }

  .vst-rail-item {
    grid-template-columns: 44px 1fr;
  }

  .vst-rail-item__tags {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .vst-catalog-intro,
  .vst-showcase {
    width: min(100% - 28px, 1440px);
  }

  .vst-bridge-shell__inner {
    width: min(100% - 28px, 1440px);
    padding: 20px 0 26px;
  }

  .vst-demo-hero-tail,
  .vst-bridge,
  .vst-compare,
  .vst-rail-shell,
  .vst-demo-overview {
    padding-left: 18px;
    padding-right: 18px;
  }
}


    .service-detail-hero {
      padding-bottom: 40px;
    }

    .service-detail-hero .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 24px;
    }

    @media (min-width: 981px) {
      .service-detail-hero .contacts-hero__title {
        max-width: 70%;
      }
    }

    .service-detail-shell {
      padding-top: 0;
      padding-bottom: 48px;
    }

    #service-docs,
    #service-scenarios,
    #service-travel,
    #service-online,
    #service-routes,
    #service-audience,
    #service-benefits,
    #service-prices {
      margin-top: 32px;
    }

    .service-online-section .directions-head,
    .service-online-grid {
      position: relative;
      z-index: 1;
    }

    .service-online-grid {
      margin-top: 4px;
    }

    .service-detail-process-shell {
      padding-bottom: 56px;
    }

    .service-detail-panel {
      padding: 28px;
      border-radius: 32px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: #f7f9fc;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    }

    .service-detail-panel__head .section-title {
      margin-top: 8px;
    }

    .service-doc-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .service-doc-card {
      padding: 22px;
      border-radius: 28px;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, var(--surface-light-raised-top), var(--surface-light-raised-bottom));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), var(--shadow-light);
      transition:
        transform var(--transition-smooth),
        box-shadow var(--transition-smooth),
        border-color var(--transition-smooth),
        background var(--transition-smooth);
    }

    .service-doc-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 180, 90, 0.16);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 253, 0.98));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 24px 42px rgba(7, 16, 29, 0.08);
    }

    .service-doc-card .extras-icon {
      margin-bottom: 18px;
    }

    .service-doc-card:hover .extras-icon {
      color: var(--gold-deep);
      background: linear-gradient(180deg, rgba(255, 180, 90, 0.14), rgba(255, 180, 90, 0.04));
    }

    .service-doc-card strong {
      display: block;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1rem;
      color: #0f172a;
    }

    .service-doc-card p {
      margin: 8px 0 0;
      font-size: 0.9rem;
      line-height: 1.55;
      color: rgba(15, 23, 42, 0.68);
    }

    .route-pulse--4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-price-group + .service-price-group {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .service-price-columns {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }

    .service-price-column {
      display: flex;
      flex-direction: column;
      gap: 0;
      min-width: 0;
      border-radius: 22px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
      overflow: hidden;
    }

    .service-price-column__action {
      margin-top: auto;
      padding: 20px 22px 28px;
      display: flex;
      justify-content: center;
    }

    .service-price-column__head {
      padding: 22px 22px 18px;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      background: rgba(20, 39, 70, 0.03);
    }

    .service-price-column__badge {
      display: inline-flex;
      align-items: center;
      padding: 4px 10px;
      border-radius: 999px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #23406f;
      background: rgba(35, 64, 111, 0.1);
    }

    .service-price-column__badge--alt {
      color: #7c4a12;
      background: rgba(180, 120, 40, 0.12);
    }

    .service-price-column__title {
      margin: 12px 0 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.1rem;
      line-height: 1.3;
      color: #0f172a;
    }

    .service-price-column__lead {
      margin: 8px 0 0;
      font-size: 0.88rem;
      line-height: 1.55;
      color: rgba(15, 23, 42, 0.62);
    }

    .service-price-block {
      padding: 18px 22px 0;
    }

    .service-price-block:last-child {
      padding-bottom: 22px;
    }

    .service-price-block + .service-price-block {
      margin-top: 8px;
      padding-top: 20px;
      border-top: 1px dashed rgba(15, 23, 42, 0.08);
    }

    .service-price-block__label {
      margin: 0 0 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      color: rgba(15, 23, 42, 0.82);
    }

    .service-price-table td.is-muted {
      font-weight: 500;
      color: rgba(15, 23, 42, 0.42);
      white-space: normal;
    }

    .service-price-column .service-price-table-wrap {
      margin-top: 0;
      border-radius: 14px;
    }

    .service-price-column .service-price-note {
      margin: 10px 0 0;
      padding-bottom: 4px;
    }

    .service-price-group__title {
      margin: 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.2rem;
      line-height: 1.25;
      color: #0f172a;
    }

    .service-price-group__subtitle {
      margin: 20px 0 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.98rem;
      color: rgba(15, 23, 42, 0.82);
    }

    .service-price-lead {
      margin: 10px 0 0;
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(15, 23, 42, 0.68);
    }

    .service-price-table-wrap {
      overflow-x: auto;
      margin-top: 8px;
      border-radius: 18px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: #fff;
    }

    .service-price-table {
      width: 100%;
      min-width: 320px;
      border-collapse: collapse;
      font-size: 0.92rem;
    }

    .service-price-table th,
    .service-price-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .service-price-table th {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(35, 64, 111, 0.88);
      background: rgba(20, 39, 70, 0.04);
    }

    .service-price-table td:last-child {
      font-weight: 600;
      color: #0f172a;
      white-space: nowrap;
    }

    .service-price-table tbody tr:last-child td {
      border-bottom: none;
    }

    .service-price-note {
      margin: 10px 0 0;
      font-size: 0.88rem;
      line-height: 1.55;
      color: rgba(15, 23, 42, 0.62);
    }

    .service-price-notes-block {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .service-price-notes-block p {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.65;
      color: rgba(15, 23, 42, 0.68);
    }

    .service-price-notes-block p + p {
      margin-top: 12px;
    }

    /* ——— Тёмная секция тарифов ——— */
    #service-prices.service-prices-section {
      width: 100%;
      max-width: none;
      margin-top: 0;
      margin-bottom: 0;
      padding: 56px 24px 64px;
      background:
        radial-gradient(circle at 12% 0%, rgba(127, 169, 255, 0.14), transparent 34%),
        radial-gradient(circle at 88% 100%, rgba(255, 180, 90, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(9, 17, 33, 1), rgba(6, 13, 26, 0.98));
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    #service-prices .service-detail-panel {
      width: min(1440px, 100%);
      margin: 0 auto;
      padding: 0;
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    #service-prices .section-eyebrow {
      color: rgba(255, 219, 171, 0.88);
    }

    #service-prices .section-eyebrow::before {
      background: linear-gradient(135deg, var(--gold-tint), var(--gold));
      box-shadow: 0 0 16px rgba(255, 180, 90, 0.35);
    }

    #service-prices .section-title {
      max-width: none;
      color: var(--text);
    }

    #service-prices .section-lead {
      color: rgba(236, 241, 250, 0.72);
    }

    #service-prices .service-price-column {
      border-color: rgba(255, 255, 255, 0.1);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    }

    #service-prices .service-price-column__head {
      border-bottom-color: rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
    }

    #service-prices .service-price-column__badge {
      color: rgba(255, 219, 171, 0.95);
      background: rgba(255, 180, 90, 0.14);
    }

    #service-prices .service-price-column__badge--alt {
      color: rgba(186, 214, 255, 0.95);
      background: rgba(127, 169, 255, 0.14);
    }

    #service-prices .service-price-column__title {
      color: rgba(236, 241, 250, 0.96);
    }

    #service-prices .service-price-column__lead,
    #service-prices .service-price-block__label,
    #service-prices .service-price-note {
      color: rgba(236, 241, 250, 0.62);
    }

    #service-prices .service-price-block + .service-price-block {
      border-top-color: rgba(255, 255, 255, 0.08);
    }

    #service-prices .service-price-table-wrap {
      border-color: rgba(255, 255, 255, 0.1);
      background: rgba(4, 10, 22, 0.45);
    }

    #service-prices .service-price-table th,
    #service-prices .service-price-table td {
      border-bottom-color: rgba(255, 255, 255, 0.06);
      color: rgba(236, 241, 250, 0.82);
    }

    #service-prices .service-price-table th {
      color: rgba(186, 214, 255, 0.88);
      background: rgba(255, 255, 255, 0.04);
    }

    #service-prices .service-price-table td:last-child {
      color: rgba(255, 219, 171, 0.95);
    }

    #service-prices .service-price-table td.is-muted {
      color: rgba(236, 241, 250, 0.38);
    }

    @media (max-width: 980px) {
      .service-doc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-price-columns {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 640px) {
      .service-detail-hero .contacts-hero__title {
        max-width: 100%;
      }

      .service-detail-panel {
        padding: 18px;
      }

      .service-doc-grid {
        grid-template-columns: 1fr;
      }

      .service-price-column__head,
      .service-price-block {
        padding-left: 16px;
        padding-right: 16px;
      }

      .service-price-table th,
      .service-price-table td {
        padding: 10px 12px;
        font-size: 0.86rem;
      }

      #service-prices.service-prices-section {
        padding: 40px 16px 48px;
      }
    }


    .services-hub-hero {
      position: relative;
      overflow: hidden;
    }

    .services-hub-hero__media {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .services-hub-hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.42;
    }

    .services-hub-hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(6, 13, 26, 0.92) 0%, rgba(6, 13, 26, 0.72) 48%, rgba(6, 13, 26, 0.38) 100%),
        linear-gradient(180deg, rgba(6, 13, 26, 0.2), rgba(6, 13, 26, 0.88));
    }

    .services-hub-hero .contacts-hero__inner {
      position: relative;
      z-index: 2;
    }

    .services-hub-grid {
      margin-top: 0;
    }

    .services-hub-cards .direction-photo-card {
      min-height: 240px;
    }

    #services-about {
      margin-top: 32px;
    }

    @media (max-width: 980px) {
      .services-hub-cards .direction-photo-card {
        min-height: 220px;
      }
    }


    .contacts-hero {
      padding: 120px 0 36px;
      background:
        radial-gradient(circle at 12% 0%, rgba(127, 169, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(9, 17, 33, 1), rgba(6, 13, 26, 0.98));
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contacts-hero__title {
      margin: 10px 0 0;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .contacts-hero__lead {
      max-width: 640px;
      margin: 14px 0 0;
      font-size: 1.05rem;
      line-height: 1.65;
      color: var(--muted);
    }

    .contacts-hero__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .contacts-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(236, 241, 250, 0.88);
      font-size: 0.9rem;
    }

    .contacts-shell {
      width: min(1440px, calc(100% - 48px));
      margin: 0 auto;
      padding: 28px 0 72px;
    }

    .contacts-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 28px;
      align-items: start;
    }

    .contacts-panel,
    .contacts-form-panel {
      position: relative;
      overflow: hidden;
      padding: 34px;
      border-radius: 34px;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      box-shadow: var(--shadow-light-lg), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .contacts-panel::before,
    .contacts-form-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 88% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.12), transparent 22%);
      pointer-events: none;
    }

    .contacts-panel__head,
    .contacts-form-panel__head,
    .contacts-grid,
    .contacts-note,
    .contacts-form {
      position: relative;
      z-index: 1;
    }

    .contacts-panel__head .section-title,
    .contacts-form-panel__head .section-title {
      margin-top: 8px;
      max-width: none;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .contact-card {
      padding: 18px;
      border-radius: 22px;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), var(--surface-light-raised-bottom));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), var(--shadow-light);
    }

    .contact-card__icon {
      display: inline-flex;
      margin-bottom: 10px;
      color: #c8842f;
      font-size: 1.35rem;
    }

    .contact-card small {
      display: block;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(35, 64, 111, 0.58);
    }

    .contact-card strong {
      display: block;
      margin-top: 6px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1.05rem;
      line-height: 1.35;
      color: var(--light-text);
    }

    .contact-card strong a {
      color: inherit;
      text-decoration: none;
    }

    .contact-card strong a:hover {
      color: #c8842f;
    }

    .contact-card p {
      margin: 8px 0 0;
      font-size: 0.92rem;
      line-height: 1.55;
      color: var(--light-muted);
    }

    .contact-card--action .contact-card__cta {
      display: inline-flex;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
      min-height: 44px;
      font-size: 0.92rem;
    }

    .contacts-note {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 20px;
      background: rgba(255, 180, 90, 0.12);
      border: 1px solid rgba(200, 132, 47, 0.18);
    }

    .contacts-note .note-icon {
      color: #c8842f;
      font-size: 1.3rem;
    }

    .contacts-note strong {
      display: block;
      color: var(--light-text);
      font-family: "Plus Jakarta Sans", sans-serif;
    }

    .contacts-note p {
      margin: 6px 0 0;
      font-size: 0.92rem;
      line-height: 1.55;
      color: var(--light-muted);
    }

    .contacts-form {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .contacts-form__field {
      display: grid;
      gap: 6px;
    }

    .contacts-form__field span {
      font-size: 0.84rem;
      font-weight: 600;
      color: rgba(15, 23, 42, 0.72);
    }

    .contacts-form__field input,
    .contacts-form__field textarea {
      width: 100%;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 14px;
      padding: 12px 14px;
      font: inherit;
      font-size: 0.95rem;
      color: #0f172a;
      background: #fff;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .contacts-form__field input:focus,
    .contacts-form__field textarea:focus {
      outline: none;
      border-color: rgba(200, 132, 47, 0.45);
      box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.16);
    }

    .contacts-form__field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .contacts-form__legal {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px 12px;
      align-items: start;
      margin-top: 4px;
      cursor: pointer;
    }

    .contacts-form__legal-input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      margin: 0;
      pointer-events: none;
    }

    .contacts-form__legal-box {
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border-radius: 6px;
      border: 1px solid rgba(15, 23, 42, 0.2);
      background: #fff;
      display: inline-grid;
      place-items: center;
      transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .contacts-form__legal-box::after {
      content: "";
      width: 10px;
      height: 6px;
      border-left: 2px solid transparent;
      border-bottom: 2px solid transparent;
      transform: rotate(-45deg) translateY(-1px);
      opacity: 0;
      transition: opacity 180ms ease;
    }

    .contacts-form__legal-input:focus-visible + .contacts-form__legal-box {
      box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.2);
      border-color: rgba(200, 132, 47, 0.55);
    }

    .contacts-form__legal-input:checked + .contacts-form__legal-box {
      background: #0f172a;
      border-color: #0f172a;
    }

    .contacts-form__legal-input:checked + .contacts-form__legal-box::after {
      border-left-color: #fff;
      border-bottom-color: #fff;
      opacity: 1;
    }

    .contacts-form__legal-text {
      font-size: 0.84rem;
      line-height: 1.45;
      color: rgba(15, 23, 42, 0.68);
    }

    .contacts-form__legal-text a {
      color: #0f172a;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .contacts-form__legal-text a:hover {
      color: #c8842f;
    }

    .contacts-form__submit {
      width: 100%;
      justify-content: center;
    }

    @media (max-width: 1100px) {
      .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .contacts-shell {
        width: min(100% - 36px, 1440px);
        padding-bottom: 56px;
      }

      .contacts-layout {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .contacts-hero {
        padding-top: 104px;
      }

      .contacts-shell {
        padding-bottom: 48px;
      }

      .contacts-grid {
        grid-template-columns: 1fr;
      }

      .contacts-panel,
      .contacts-form-panel {
        padding: 22px 18px;
        border-radius: 28px;
      }
    }


    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 40;
      display: grid;
      place-items: center;
      overflow: hidden;
      max-width: 100%;
      padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    }

    .lead-modal[hidden] {
      display: none;
    }

    .lead-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(4, 10, 20, 0.62);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .lead-modal__dialog {
      position: relative;
      width: min(560px, 100%);
      max-width: 100%;
      min-width: 0;
      max-height: min(92vh, 900px);
      overflow-x: hidden;
      overflow-y: auto;
      overscroll-behavior: contain;
      box-sizing: border-box;
      padding: 28px 28px 24px;
      border-radius: 28px;
      border: 1px solid var(--border-light);
      background: linear-gradient(180deg, var(--surface-light-top), var(--surface-light-bottom));
      box-shadow: var(--shadow-light-lg), 0 28px 80px rgba(4, 10, 20, 0.28);
    }

    .lead-modal__dialog::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at 88% 0%, rgba(127, 169, 255, 0.14), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 90, 0.12), transparent 22%);
      pointer-events: none;
    }

    .lead-modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      color: rgba(15, 23, 42, 0.72);
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(15, 23, 42, 0.08);
      cursor: pointer;
      transition: background 180ms ease, color 180ms ease;
    }

    .lead-modal__close:hover {
      color: #0f172a;
      background: #fff;
    }

    .lead-modal__panel {
      position: relative;
      z-index: 1;
    }

    .lead-modal__head .section-title {
      margin-top: 8px;
      max-width: none;
      font-size: clamp(1.55rem, 3vw, 2rem);
    }

    .lead-modal__head .section-lead {
      margin-top: 10px;
      max-width: none;
    }

    .lead-modal__form {
      margin-top: 18px;
      min-width: 0;
      max-width: 100%;
    }

    .lead-modal__conditional {
      display: none;
    }

    .lead-modal__conditional.is-visible {
      display: grid;
    }

    .lead-modal__form .contacts-form__field,
    .lead-modal__fieldset {
      min-width: 0;
      max-width: 100%;
    }

    .lead-modal__form .primary-button {
      max-width: 100%;
    }

    .lead-modal__row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      min-width: 0;
    }

    .lead-modal__form textarea {
      min-height: calc(1.45em * 3 + 24px);
      height: calc(1.45em * 3 + 24px);
      resize: vertical;
      line-height: 1.45;
    }

    .lead-modal__fieldset {
      margin: 0;
      padding: 0;
      border: 0;
    }

    .lead-modal__fieldset legend {
      margin-bottom: 8px;
      font-size: 0.84rem;
      font-weight: 600;
      color: rgba(15, 23, 42, 0.72);
    }

    .lead-modal__choices {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      min-width: 0;
    }

    .lead-modal__choice {
      position: relative;
      display: block;
      cursor: pointer;
    }

    .lead-modal__choice input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      margin: 0;
      pointer-events: none;
    }

    .lead-modal__choice span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 10px;
      border-radius: 14px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      background: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(15, 23, 42, 0.78);
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
    }

    .lead-modal__choice input:focus-visible + span {
      box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.2);
      border-color: rgba(200, 132, 47, 0.55);
    }

    .lead-modal__choice input:checked + span {
      color: #0f172a;
      border-color: rgba(200, 132, 47, 0.45);
      background: rgba(255, 180, 90, 0.14);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .lead-modal__field select,
    .contacts-form__field select {
      width: 100%;
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 14px;
      padding: 12px 14px;
      font: inherit;
      font-size: 0.95rem;
      color: #0f172a;
      background: #fff;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .contacts-form__field select:focus {
      outline: none;
      border-color: rgba(200, 132, 47, 0.45);
      box-shadow: 0 0 0 3px rgba(255, 180, 90, 0.16);
    }

    .lead-modal__optional {
      font-weight: 500;
      color: rgba(15, 23, 42, 0.45);
    }

    .lead-modal__form .contacts-form__field:has(:required) > span:first-child::after,
    .lead-modal__fieldset legend::after,
    .lead-modal__form .contacts-form__legal:has([required]) .contacts-form__legal-text::after {
      content: " *";
      color: #c8842f;
      font-weight: 700;
    }

    .lead-modal__form .contacts-form__field:has(:required) > span:first-child .lead-modal__optional {
      display: none;
    }

    .lead-modal__panel--success {
      text-align: center;
      padding: 12px 8px 4px;
    }

    .lead-modal__success-icon {
      display: inline-flex;
      margin-bottom: 10px;
      color: #c8842f;
      font-size: 2.6rem;
      line-height: 1;
    }

    .lead-modal__panel--success .primary-button {
      width: 100%;
      justify-content: center;
      margin-top: 18px;
    }

    .lead-modal__hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .lead-modal__error {
      margin: 0;
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(198, 40, 40, 0.08);
      color: #b71c1c;
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .contacts-form__submit[aria-busy="true"] {
      opacity: 0.75;
      cursor: wait;
    }

    body.lead-modal-open {
      overflow: hidden;
    }

    @media (min-width: 520px) {
      .lead-modal__choices {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (max-width: 560px) {
      .lead-modal__dialog {
        padding: 22px 18px 18px;
        border-radius: 24px;
      }

      .lead-modal__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .lead-modal__row {
        grid-template-columns: 1fr;
      }
    }


    .reviews-hero + .cases-stage-shell {
      padding-top: 48px;
    }

    @media (min-width: 981px) {
      .reviews-hero + .cases-stage-shell {
        padding-top: 64px;
      }
    }


/* Глобальные адаптивные правила (из home_finish-3) */

@media (max-width: 1200px) {
  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .hero-accent-line {
    white-space: normal;
  }

  .hero-side {
    min-height: 150px;
  }

  .floating-note.top {
    top: 0;
    right: 0;
  }

  .floating-note.bottom {
    right: 258px;
    bottom: 0;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directions-head {
    grid-template-columns: 1fr;
  }

  .extras-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-stage-header {
    grid-template-columns: 1fr;
  }

  .expert-magazine {
    grid-template-columns: 1fr;
  }

  .expert-rail {
    position: relative;
    top: auto;
  }

  .route-pulse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-line {
    display: none;
  }

  .service-stage .command-grid .service-item,
  .service-stage .command-grid .service-item:nth-child(1),
  .service-stage .command-grid .service-item:nth-child(2),
  .service-stage .command-grid .service-item:nth-child(3),
  .service-stage .command-grid .service-item:nth-child(4) {
    margin: 0;
  }

  .service-stage .command-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 18px;
  }

  .service-stage:hover .command-center {
    transform: scale(1.018);
  }

  .service-stage .command-board {
    height: auto;
    min-height: 0;
  }

  .service-stage .command-grid {
    min-height: 0;
  }

  .hf-faq-layout {
    grid-template-columns: 1fr;
  }

  .hf-faq-main {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 980px) {
  .header-inner,
  .hero-inner,
  .content-shell,
  .page-section {
    width: min(100% - 36px, 1440px);
  }

  .nav,
  .header-actions .glass-chip,
  .header-actions .primary-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 14, 27, 0.64) 0%, rgba(11, 23, 43, 0.2) 34%, rgba(7, 14, 27, 0.64) 100%),
      linear-gradient(90deg, rgba(7, 14, 27, 0.7) 0%, rgba(10, 24, 46, 0.24) 100%);
  }

  .floating-note {
    position: relative;
    width: 100%;
  }

  .floating-note.top,
  .floating-note.bottom {
    top: auto;
    right: auto;
    bottom: auto;
    animation: none;
  }

  .hero-side {
    display: grid;
    gap: 14px;
    min-height: 0;
  }

  .hero-title,
  .hero-accent-line {
    white-space: normal;
  }

  .service-stage {
    padding: 24px;
  }

  .extras-rail {
    grid-template-columns: 1fr;
  }

  .route-pulse {
    grid-template-columns: 1fr;
  }

  .service-stage .command-grid {
    grid-template-columns: 1fr;
  }

  .service-stage .command-board {
    padding: 20px;
  }

  .service-stage .command-routes {
    display: none;
  }

  .cases-stage {
    padding: 22px;
    border-radius: 28px;
  }

  .cases-stage-title {
    font-size: 34px;
  }

  .cr-atlas-bottom {
    flex-direction: column;
  }

  .cr-metrics {
    grid-template-columns: 1fr;
  }

  .faq-stage,
  .cta-rail {
    padding: 22px;
    border-radius: 28px;
  }

  .cta-rail__divider {
    display: none;
  }

  .cta-rail .primary-button {
    width: 100%;
    justify-content: center;
  }

  .faq-stage-title {
    font-size: 34px;
  }

  .requirements-stage,
  .cta-band {
    padding: 24px;
    border-radius: 28px;
  }

  .requirements-stage-shell,
  .cta-band-shell {
    padding-bottom: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col + .footer-col {
    border-left: 0;
  }

  .footer-col:nth-child(odd) {
    padding-left: 0;
  }

  .footer-col:nth-child(even) {
    padding-right: 0;
  }

  .footer-col:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero--country .hero-media,
  .hero .hero-media {
    height: 100svh;
    bottom: auto;
  }

  .hero--country .hero-media img,
  .hero .hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: none;
    animation: none;
  }

  .hero--country .hero-overlay,
  .hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 14, 27, 0.72) 0%, rgba(11, 23, 43, 0.28) 38%, rgba(7, 14, 27, 0.78) 100%),
      linear-gradient(90deg, rgba(7, 14, 27, 0.82) 0%, rgba(10, 24, 46, 0.42) 52%, rgba(8, 16, 29, 0.12) 100%);
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .hero-inner {
    padding-top: 108px;
    padding-bottom: 28px;
  }

  .eyebrow {
    padding: 12px 14px;
  }

  .eyebrow span {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .glass-chip span {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .service-stage .command-grid .service-label {
    position: static;
    display: block;
    margin: 52px 22px 6px 22px;
    padding-left: 14px;
    text-align: left;
  }

  .service-stage .command-grid .service-item strong {
    margin: 0 22px 10px;
    max-width: none;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .directions-section {
    padding: 24px 20px;
  }

  .extras-stage,
  .process-stage,
  .expert-stage {
    padding: 24px 20px;
  }

  .requirements-stage {
    padding: 20px 16px;
  }

  .content-shell {
    padding-bottom: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col + .footer-col {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 8px;
  }
}


