* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: var(--header-anchor-offset, 0px);
}

:root {
  --header-height: 96px;
  --header-anchor-offset: 112px;
}

#top,
#scanner,
#rights,
#protection,
#workflow,
#cases,
#expertise,
#faq {
  scroll-margin-top: var(--header-anchor-offset, 0px);
}

body.emergency-modal-open,
body.messenger-modal-open {
  overflow: hidden;
}

.emergency-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 50;
}
.emergency-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.emergency-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.76);
  backdrop-filter: blur(7px);
}

.emergency-modal__panel {
  position: relative;
  width: min(100%, 470px);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
  border-radius: 8px;
  padding: 26px 24px 24px;
  background: rgb(33, 33, 36);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.emergency-modal[data-emergency-current-step="3"] .emergency-modal__panel {
  width: min(100%, 760px);
  padding-bottom: 30px;
}

.emergency-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.emergency-modal__close:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
.emergency-modal__close svg {
  width: 18px;
  height: 18px;
}

.emergency-modal__step {
  display: none;
}
.emergency-modal__step.is-active {
  display: block;
  animation: emergencyStepFade 0.24s ease;
}

.emergency-modal__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  padding-right: 38px;
  font-size: 20px;
  font-weight: 200;
  line-height: 1.03;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.emergency-modal__title span:first-child {
  color: #e9c076;
}

.emergency-modal__title--success {
  margin-bottom: 22px;
}

.emergency-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emergency-modal__field,
.emergency-modal__textarea {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.02);
}

.emergency-modal__field {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding-left: 42px;
  padding-right: 10px;
}

.emergency-modal__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}
.emergency-modal__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.emergency-modal__field input,
.emergency-modal__field select,
.emergency-modal__textarea textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.94);
}

.emergency-modal__field input,
.emergency-modal__field select {
  min-height: 46px;
}

.emergency-modal__field input::-moz-placeholder, .emergency-modal__textarea textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.emergency-modal__field input::placeholder,
.emergency-modal__textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.emergency-modal__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.emergency-modal__field--select {
  background: rgb(33, 33, 36);
}

.emergency-modal__field--select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.emergency-modal__field--custom-select {
  z-index: 2;
  transition: border-color 0.24s ease;
}
.emergency-modal__field--custom-select::after {
  display: none;
}
.emergency-modal__field--custom-select.is-open {
  z-index: 14;
  border-color: rgba(233, 192, 118, 0.58);
}

.emergency-modal__select-trigger {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.emergency-modal__select-meta {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.emergency-modal__select-flag,
.emergency-modal__select-option-flag {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.emergency-modal__select-flag {
  display: none;
}
.emergency-modal__select-flag.is-visible {
  display: inline-flex;
}

.emergency-modal__select-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.56);
}

.emergency-modal__field--custom-select.is-selected .emergency-modal__select-value {
  color: rgba(255, 255, 255, 0.94);
}

.emergency-modal__select-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.24s ease;
}
.emergency-modal__select-caret svg {
  width: 16px;
  height: 16px;
  display: block;
}

.emergency-modal__field--custom-select.is-open .emergency-modal__select-caret {
  transform: rotate(180deg);
}

.emergency-modal__select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgb(33, 33, 36);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.emergency-modal__field--custom-select.is-open .emergency-modal__select-menu {
  display: flex;
}

.emergency-modal__select-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease;
}
.emergency-modal__select-option:last-child {
  border-bottom: none;
}
.emergency-modal__select-option:hover, .emergency-modal__select-option.is-active {
  background: rgba(233, 192, 118, 0.96);
  color: #212124;
}

.emergency-modal__textarea {
  min-height: 155px;
  padding: 10px 12px;
}

.emergency-modal__textarea textarea {
  min-height: 132px;
  resize: none;
}

.emergency-modal__hint {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.54);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  line-height: 1.33;
}

.emergency-modal__check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 4px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
}
.emergency-modal__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.emergency-modal__check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.emergency-modal__check input:checked + .emergency-modal__check-box {
  background: rgb(233, 192, 118);
  border-color: rgb(233, 192, 118);
}

.emergency-modal__check input:checked + .emergency-modal__check-box::before {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid #1f2127;
  border-bottom: 2px solid #1f2127;
  transform: rotate(-45deg) translateY(-1px);
}

.emergency-modal__submit {
  min-height: 56px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: #e9c076;
  color: #1e2028;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.emergency-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(233, 192, 118, 0.22);
}

.emergency-modal__step--success {
  padding-top: 2px;
}

.emergency-modal__success-body {
  display: flex;
  align-items: center;
  gap: 16px;
}
.emergency-modal__success-body p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.emergency-modal__success-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(233, 192, 118, 0.45);
  background: rgba(233, 192, 118, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}
.emergency-modal__success-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.messenger-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 54;
}
.messenger-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.messenger-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 12, 0.74);
  backdrop-filter: blur(7px);
}

.messenger-modal__panel {
  position: relative;
  width: min(100%, 430px);
  border-radius: 10px;
  padding: 24px 20px 20px;
  background: rgb(33, 33, 36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.messenger-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: color 0.24s ease, background-color 0.24s ease;
}
.messenger-modal__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.messenger-modal__close svg {
  width: 17px;
  height: 17px;
  display: block;
}

.messenger-modal__title {
  margin-bottom: 10px;
  padding-right: 26px;
  font-size: 21px;
  font-weight: 200;
  line-height: 1.14;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.messenger-modal__note {
  margin-bottom: 18px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.64);
}
.messenger-modal__note span {
  color: #e9c076;
}

.messenger-modal__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.messenger-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}
.messenger-modal__action:hover {
  transform: translateY(-1px);
}

.messenger-modal__action--signal {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
}
.messenger-modal__action--signal:hover {
  background: rgba(233, 192, 118, 0.1);
  color: rgb(255, 255, 255);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.messenger-modal__action--telegram {
  background: #e9c076;
  color: #1f2128;
}
.messenger-modal__action--telegram:hover {
  box-shadow: 0 12px 24px rgba(233, 192, 118, 0.2);
}

@keyframes emergencyStepFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 860px) {
  .emergency-modal {
    padding: 18px 12px;
  }
  .emergency-modal__panel {
    width: min(100%, 560px);
    max-height: calc(100dvh - 36px);
    padding: 20px 16px 16px;
  }
  .emergency-modal[data-emergency-current-step="3"] .emergency-modal__panel {
    width: min(100%, 560px);
  }
  .emergency-modal__title {
    gap: 2px;
    margin-bottom: 16px;
    padding-right: 32px;
    font-size: 18px;
    line-height: 1.08;
  }
  .emergency-modal__form {
    gap: 10px;
  }
  .emergency-modal__field {
    min-height: 46px;
    padding-left: 38px;
    padding-right: 34px;
  }
  .emergency-modal__field--custom-select {
    padding-right: 10px;
  }
  .emergency-modal__icon {
    left: 10px;
    width: 16px;
    height: 16px;
  }
  .emergency-modal__field input,
  .emergency-modal__field select,
  .emergency-modal__textarea textarea {
    font-size: 16px;
  }
  .emergency-modal__hint {
    margin-top: -2px;
    font-size: 11px;
  }
  .emergency-modal__textarea {
    min-height: 120px;
  }
  .emergency-modal__textarea textarea {
    min-height: 96px;
  }
  .emergency-modal__check {
    gap: 10px;
    font-size: 15px;
  }
  .emergency-modal__check-box {
    width: 22px;
    height: 22px;
  }
  .emergency-modal__select-meta {
    gap: 10px;
  }
  .emergency-modal__select-flag,
  .emergency-modal__select-option-flag {
    width: 24px;
    height: 17px;
  }
  .emergency-modal__select-option {
    padding: 12px 14px;
    font-size: 14px;
  }
  .emergency-modal__submit {
    min-height: 50px;
    margin-top: 6px;
    font-size: 13px;
  }
  .emergency-modal__success-body {
    gap: 12px;
  }
  .emergency-modal__success-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .emergency-modal__success-body p {
    font-size: 15px;
  }
  .messenger-modal {
    padding: 16px;
  }
  .messenger-modal__panel {
    width: min(100%, 420px);
    padding: 20px 16px 16px;
  }
  .messenger-modal__title {
    font-size: 18px;
  }
  .messenger-modal__note {
    margin-bottom: 14px;
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .emergency-modal {
    align-items: center;
    padding: 16px 12px calc(16px + env(safe-area-inset-bottom));
  }
  .emergency-modal__panel {
    width: min(100%, 560px);
    max-height: calc(100dvh - 32px - env(safe-area-inset-bottom));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 14px calc(16px + env(safe-area-inset-bottom));
  }
  .emergency-modal[data-emergency-current-step="3"] .emergency-modal__panel {
    width: min(100%, 560px);
  }
  .emergency-modal__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }
  .emergency-modal__title {
    margin-bottom: 14px;
    font-size: 17px;
    padding-right: 30px;
  }
  .emergency-modal__field {
    min-height: 44px;
    padding-left: 36px;
    padding-right: 32px;
  }
  .emergency-modal__field--custom-select {
    padding-right: 8px;
  }
  .emergency-modal__check {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.3;
  }
  .emergency-modal__textarea {
    min-height: 112px;
    padding: 9px 10px;
  }
  .emergency-modal__textarea textarea {
    min-height: 90px;
  }
  .emergency-modal__select-menu {
    top: calc(100% + 6px);
    border-radius: 12px;
  }
  .emergency-modal__select-option {
    gap: 12px;
    padding: 11px 12px;
    font-size: 13px;
  }
  .emergency-modal__submit {
    min-height: 46px;
    font-size: 12px;
  }
  .emergency-modal__step--success {
    padding-top: 4px;
  }
  .emergency-modal__success-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .emergency-modal__success-body p {
    max-width: none;
    font-size: 14px;
    line-height: 1.35;
  }
  .messenger-modal {
    align-items: center;
    padding: 16px 12px calc(16px + env(safe-area-inset-bottom));
  }
  .messenger-modal__panel {
    width: min(100%, 420px);
    max-height: calc(100dvh - 32px - env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 14px calc(14px + env(safe-area-inset-bottom));
  }
  .messenger-modal__title {
    font-size: 16px;
  }
  .messenger-modal__action {
    min-height: 44px;
    font-size: 12px;
  }
}
body {
  min-width: 320px;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  color: #ffffff;
  background-color: #212124;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wrapper {
  overflow: hidden;
  max-width: 100%;
  padding-top: var(--header-height);
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(14px);
  border: none;
  z-index: 14;
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0 22px;
}
.header .header__left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .header__burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header .header__burger img {
  display: block;
  width: 32px;
  height: auto;
}
.header .header__logo {
  flex-shrink: 0;
}
.header .header__nav .header__nav-head,
.header .header__nav .header__nav-close {
  display: none;
}
.header .header__nav .header__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.header .header__nav .header__list .header__item a {
  color: #ffffff;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.header .header__nav .header__list .header__item a:hover {
  color: #e9c076;
}
.header .header__action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header .header__action .btn-lang,
.header .header__action .btn-sos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header .header__action .btn-lang {
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.05);
  font-family: "Jost", sans-serif;
  color: #ffffff;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
}
.header .header__action .btn-lang img {
  width: 18px;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header__action .btn-sos {
  color: #212124;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 14px;
  background-color: #e9c076;
  border-radius: 4px;
  padding: 12px 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header .header__action .btn-sos:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(233, 192, 118, 0.18);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 0px 0 24px;
  overflow: hidden;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-position: 50px center;
  background-size: cover;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .hero__art {
  position: absolute;
  inset: -240% -2vw -6% auto;
  width: min(86vw, 1280px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero .hero__art-hammer {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  will-change: transform;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.hero .hero__art-hammer {
  right: 11%;
  bottom: 14%;
  z-index: 2;
  width: min(35vw, 430px);
  transform-origin: 72% 18%;
  filter: saturate(0.78) brightness(0.82) contrast(1.08) drop-shadow(0 18px 48px rgba(0, 0, 0, 0.62));
}
.hero .hero__inner {
  display: flex;
  align-items: flex-start;
  min-height: clamp(560px, 70vh, 720px);
  padding: 108px 0 176px;
}
.hero .hero__content {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-bottom: 0;
  animation: heroContentReveal 0.86s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.hero .hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.hero .hero__title {
  margin-bottom: 12px;
  font-size: 52px;
  font-weight: 100;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero .hero__subtitle {
  max-width: 580px;
  margin-bottom: 24px;
  color: #e9c076;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.38;
  text-transform: uppercase;
}
.hero .hero__description {
  max-width: 500px;
  margin-bottom: 30px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
.hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.hero .hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.hero .hero__btn:hover {
  transform: translateY(-2px);
}
.hero .hero__btn--primary {
  color: #1e2025;
  background-color: #e9c076;
  box-shadow: 0 18px 36px rgba(233, 192, 118, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero .hero__btn--secondary {
  color: #e9c076;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid #e9c076;
}
.hero .hero__btn--secondary:hover {
  background-color: rgba(233, 192, 118, 0.08);
  box-shadow: 0 18px 36px rgba(10, 10, 10, 0.25);
}
.hero .hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero .hero__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}
.hero .hero__alerts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 440px) repeat(2, minmax(0, 220px)) minmax(0, 300px);
  gap: 12px;
  margin-top: 0;
}
.hero .hero__alerts .hero-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 22px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: heroCardReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero .hero__alerts .hero-card:nth-child(1) {
  animation-delay: 0.24s;
}
.hero .hero__alerts .hero-card:nth-child(2) {
  animation-delay: 0.32s;
}
.hero .hero__alerts .hero-card:nth-child(3) {
  animation-delay: 0.4s;
}
.hero .hero__alerts .hero-card:nth-child(4) {
  animation-delay: 0.48s;
}
.hero .hero__alerts .hero-card .hero-card__icon {
  width: 44px;
  height: 44px;
  color: #e9c076;
  background-color: rgba(233, 192, 118, 0.1);
}
.hero .hero__alerts .hero-card .hero-card__text {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
.hero .hero__alerts .hero-card.hero-card--accent {
  background: rgba(196, 29, 48, 0.1);
  border-color: rgba(255, 255, 255, 0.05);
}
.hero .hero__alerts .hero-card.hero-card--accent .hero-card__text {
  color: #C41D30;
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroCardReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero__content,
  .hero .hero__alerts .hero-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.detention {
  position: relative;
  padding: 48px 0 48px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}
.detention::before, .detention::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.detention::before {
  top: 0;
}
.detention::after {
  bottom: 0;
}
.detention .detention__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 708px) minmax(0, 500px);
  align-items: center;
  justify-content: space-between;
}
.detention .detention__content {
  max-width: 590px;
}
.detention .detention__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.12;
  text-transform: uppercase;
}
.detention .detention__title-accent {
  color: #e9c076;
}
.detention .detention__description {
  max-width: 620px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgb(255, 255, 255);
}
.detention .detention__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detention .detention__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.detention .detention__item img {
  width: 20px;
  height: 26px;
  flex-shrink: 0;
}
.detention .detention__item span {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgb(255, 255, 255);
}

.notice-impact {
  padding: 48px 0 48px;
  background-color: #212124;
}
.notice-impact .notice-impact__inner {
  display: flex;
  flex-direction: column;
}
.notice-impact .notice-impact__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.notice-impact .notice-impact__title-accent {
  color: #e9c076;
}
.notice-impact .notice-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.notice-impact .notice-impact__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 130px;
  padding: 16px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
}
.notice-impact .notice-impact__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}
.notice-impact .notice-impact__text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.33;
  color: rgb(255, 255, 255);
}
.notice-impact .notice-impact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 12px 16px;
  border-radius: 4px;
  background-color: #e9c076;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #1e2025;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.notice-impact .notice-impact__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(233, 192, 118, 0.18);
}

.scanner-stepper {
  padding: 48px 0 48px;
  background-color: #212124;
}
.scanner-stepper .scanner-stepper__shell {
  position: relative;
}
.scanner-stepper .scanner-stepper__shell.is-result .scanner-stepper__navigation {
  display: none;
}
.scanner-stepper .scanner-stepper__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 360px;
  min-height: 82px;
  padding: 24px 36px;
}
.scanner-stepper .scanner-stepper__tab::after {
  content: "";
  position: absolute;
  background-image: url("../images/form-half.svg");
  background-repeat: no-repeat;
  top: 24px;
  left: 0;
  width: 100%;
  height: 100%;
}
.scanner-stepper .scanner-stepper__tab-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  transform: translateY(20px);
}
.scanner-stepper .scanner-stepper__panel {
  position: relative;
  margin-top: -1px;
  padding: 40px 36px 48px;
  border-radius: 0 8px 8px 8px;
  background: #2C2C2F;
}
.scanner-stepper .scanner-stepper__head {
  margin-bottom: 24px;
}
.scanner-stepper .scanner-stepper__title {
  margin-bottom: 14px;
  color: #e9c076;
  font-size: 32px;
  font-weight: 100;
  line-height: 1.08;
  text-transform: uppercase;
}
.scanner-stepper .scanner-stepper__subtitle {
  max-width: 1500px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 100;
  line-height: 1.18;
  text-transform: uppercase;
}
.scanner-stepper .scanner-stepper__step {
  display: none;
}
.scanner-stepper .scanner-stepper__step.is-active {
  display: block;
}
.scanner-stepper .scanner-stepper__fields {
  display: grid;
  gap: 20px;
}
.scanner-stepper .scanner-stepper__fields--intro {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.scanner-stepper .scanner-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scanner-stepper .scanner-field__control,
.scanner-stepper .scanner-select__trigger {
  width: 100%;
  min-height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}
.scanner-stepper .scanner-field__control {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
.scanner-stepper .scanner-field__icon,
.scanner-stepper .scanner-select__pin,
.scanner-stepper .scanner-stepper__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(33, 33, 36, 0.5);
}
.scanner-stepper .scanner-field__icon svg,
.scanner-stepper .scanner-select__pin svg,
.scanner-stepper .scanner-stepper__button-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.scanner-stepper .scanner-field__input,
.scanner-stepper .scanner-check__contact-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
.scanner-stepper .scanner-field__input::-moz-placeholder, .scanner-stepper .scanner-check__contact-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.scanner-stepper .scanner-field__input::placeholder,
.scanner-stepper .scanner-check__contact-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.scanner-stepper .scanner-field__input {
  min-width: 0;
}
.scanner-stepper .scanner-select {
  position: relative;
  color: rgb(255, 255, 255);
}
.scanner-stepper .scanner-select.is-open {
  z-index: 8;
}
.scanner-stepper .scanner-select.is-open .scanner-select__trigger {
  border-color: rgba(233, 192, 118, 0.55);
}
.scanner-stepper .scanner-select.is-open .scanner-select__caret {
  transform: rotate(180deg);
}
.scanner-stepper .scanner-select.is-open .scanner-select__menu {
  display: flex;
}
.scanner-stepper .scanner-select.is-selected .scanner-select__pin {
  display: none;
}
.scanner-stepper .scanner-select.is-selected .scanner-select__flag {
  display: inline-flex;
}
.scanner-stepper .scanner-select.is-selected .scanner-select__value {
  color: #ffffff;
}
.scanner-stepper .scanner-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.scanner-stepper .scanner-select__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.scanner-stepper .scanner-select__flag,
.scanner-stepper .scanner-select__option-flag,
.scanner-stepper .country-flag {
  width: 26px;
  height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.scanner-stepper .scanner-select__flag {
  display: none;
}
.scanner-stepper .scanner-select__value {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.scanner-stepper .scanner-select__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  transition: transform 0.3s ease;
}
.scanner-stepper .scanner-select__caret svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.scanner-stepper .scanner-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(33, 33, 36);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  z-index: 99;
}
.scanner-stepper .scanner-select__option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.scanner-stepper .scanner-select__option:last-child {
  border-bottom: none;
}
.scanner-stepper .scanner-select__option:hover, .scanner-stepper .scanner-select__option.is-active {
  background-color: rgba(233, 192, 118, 0.96);
  color: #212124;
}
.scanner-stepper .scanner-stepper__split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scanner-stepper .scanner-stepper__split--list {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.scanner-stepper .scanner-stepper__prompt {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
.scanner-stepper .scanner-stepper__prompt--large {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-weight: 100;
  line-height: 1.12;
  text-transform: uppercase;
}
.scanner-stepper .scanner-stepper__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.scanner-stepper .scanner-chip {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.scanner-stepper .scanner-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.scanner-stepper .scanner-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.scanner-stepper .scanner-chip input:checked + span {
  background: #ffffff;
  color: #26272d;
}
.scanner-stepper .scanner-stepper__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scanner-stepper .scanner-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.scanner-stepper .scanner-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.scanner-stepper .scanner-check__box {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(233, 192, 118, 0.88);
  border-radius: 6px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.scanner-stepper .scanner-check__box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #26272d;
  border-bottom: 2px solid #26272d;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.3s ease;
}
.scanner-stepper .scanner-check__text {
  color: rgba(255, 255, 255, 0.94);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
.scanner-stepper .scanner-check input:checked + .scanner-check__box {
  background-color: #e9c076;
  border-color: #e9c076;
}
.scanner-stepper .scanner-check input:checked + .scanner-check__box::after {
  opacity: 1;
}
.scanner-stepper .scanner-stepper__checks--contact .scanner-check {
  min-height: 72px;
}
.scanner-stepper .scanner-check--contact .scanner-check__contact {
  display: none;
  align-items: center;
  gap: 10px;
  width: 348px;
  min-height: 54px;
  margin-left: auto;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
}
.scanner-stepper .scanner-check--contact .scanner-check__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.scanner-stepper .scanner-check--contact .scanner-check__contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.scanner-stepper .scanner-check--contact input:checked ~ .scanner-check__contact {
  display: inline-flex;
}
.scanner-stepper .scanner-stepper__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}
.scanner-stepper .scanner-stepper__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 2%;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.scanner-stepper .scanner-stepper__button:disabled {
  cursor: not-allowed;
  transform: none;
  color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}
.scanner-stepper .scanner-stepper__button:disabled .scanner-stepper__button-icon {
  color: rgba(255, 255, 255, 0.2);
}
.scanner-stepper .scanner-stepper__button--secondary {
  border: 1px solid rgba(233, 192, 118, 0.72);
  background: transparent;
  color: #e9c076;
}
.scanner-stepper .scanner-stepper__button--secondary .scanner-stepper__button-icon {
  color: #e9c076;
}
.scanner-stepper .scanner-stepper__button--primary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #e9c076;
  color: #212124;
  box-shadow: 0 14px 30px rgba(233, 192, 118, 0.16);
}
.scanner-stepper .scanner-stepper__button:not(:disabled):hover,
.scanner-stepper .scanner-result__btn:hover {
  transform: translateY(-2px);
}
.scanner-stepper .scanner-result.is-critical .scanner-result__badge,
.scanner-stepper .scanner-result.is-critical .scanner-result__score {
  color: #e12e42;
}
.scanner-stepper .scanner-result.is-critical .scanner-result__badge {
  background-color: rgba(225, 46, 66, 0.18);
}
.scanner-stepper .scanner-result.is-elevated .scanner-result__badge,
.scanner-stepper .scanner-result.is-elevated .scanner-result__score {
  color: #e9c076;
}
.scanner-stepper .scanner-result.is-elevated .scanner-result__badge {
  background-color: rgba(233, 192, 118, 0.16);
}
.scanner-stepper .scanner-result.is-guarded .scanner-result__badge,
.scanner-stepper .scanner-result.is-guarded .scanner-result__score {
  color: #8bb7ff;
}
.scanner-stepper .scanner-result.is-guarded .scanner-result__badge {
  background-color: rgba(139, 183, 255, 0.16);
}
.scanner-stepper .scanner-result__headline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.scanner-stepper .scanner-result__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 18px;
  border-radius: 4px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}
.scanner-stepper .scanner-result__caption {
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
}
.scanner-stepper .scanner-result__score {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 100;
  line-height: 1.04;
}
.scanner-stepper .scanner-result__description {
  max-width: 1320px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}
.scanner-stepper .scanner-result__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.scanner-stepper .scanner-result__list li {
  position: relative;
  padding-left: 46px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}
.scanner-stepper .scanner-result__list li::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 6px;
  width: 10px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.56);
  border-bottom: 2px solid rgba(255, 255, 255, 0.56);
  transform: rotate(45deg);
}
.scanner-stepper .scanner-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scanner-stepper .scanner-result__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.scanner-stepper .scanner-result__btn--primary {
  background: #e9c076;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #212124;
}
.scanner-stepper .scanner-result__btn--secondary {
  background: transparent;
  border: 1px solid rgba(233, 192, 118, 0.72);
  color: #e9c076;
}

.legal-challenge {
  position: relative;
  isolation: isolate;
  padding: 48px 0 48px;
  overflow: hidden;
  background-color: #0f1319;
}
.legal-challenge .container {
  position: relative;
  z-index: 2;
}
.legal-challenge .legal-challenge__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.legal-challenge .legal-challenge__background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Match section background: dark to transparent gradient */
  background: linear-gradient(to bottom, rgb(15, 19, 25) 0%, rgba(15, 19, 25, 0) 100%);
  pointer-events: none;
}
.legal-challenge .legal-challenge__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  right: -113px;
}
.legal-challenge::before, .legal-challenge::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.legal-challenge::before {
  top: 0;
}
.legal-challenge::after {
  bottom: 0;
}
.legal-challenge .legal-challenge__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  text-transform: uppercase;
}
.legal-challenge .legal-challenge__title-accent {
  color: #e9c076;
}
.legal-challenge .legal-challenge__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 710px;
  margin-bottom: 24px;
}
.legal-challenge .legal-challenge__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.legal-challenge .legal-challenge__item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.legal-challenge .legal-challenge__item span {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}
.legal-challenge .legal-challenge__content {
  position: relative;
  z-index: 1;
}
.legal-challenge .legal-challenge__note {
  gap: 0 8px;
  max-width: 900px;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.legal-challenge .legal-challenge__note-accent {
  color: #e9c076;
}
.legal-challenge .legal-challenge__visual {
  position: absolute;
  right: -190px;
  bottom: -40px;
  width: 1030px;
  pointer-events: none;
}
.legal-challenge .legal-challenge__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.defense-system {
  padding: 48px 0 48px;
  background-color: #212124;
}
.defense-system .defense-system__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1240px;
  margin-bottom: 28px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  text-transform: uppercase;
}
.defense-system .defense-system__title-accent {
  color: #e9c076;
}
.defense-system .defense-system__description {
  max-width: 1260px;
  margin-bottom: 48px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}
.defense-system .defense-system__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.defense-system .defense-system__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 190px;
  padding: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.defense-system .defense-system__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 8px 18px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
}
.defense-system .defense-system__text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.signal-response {
  position: relative;
  padding: 48px 0 48px;
  background: url("../images/signal-bg.png") no-repeat center/cover;
}
.signal-response::before, .signal-response::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.signal-response::before {
  top: 0;
}
.signal-response::after {
  bottom: 0;
}
.signal-response .signal-response__inner {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.signal-response .signal-response__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.14;
  text-transform: uppercase;
}
.signal-response .signal-response__title-accent {
  color: #e9c076;
}
.signal-response .signal-response__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.signal-response .signal-response__item img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.signal-response .signal-response__item-title {
  margin-bottom: 1px;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.18;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}
.signal-response .signal-response__item-text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
}

.crisis-protocol {
  padding: 48px 0 48px;
  background-color: #212124;
}
.crisis-protocol .crisis-protocol__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  text-transform: uppercase;
}
.crisis-protocol .crisis-protocol__title-accent {
  color: #e9c076;
}
.crisis-protocol .crisis-protocol__description {
  margin-bottom: 48px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: rgb(255, 255, 255);
}
.crisis-protocol .crisis-protocol__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 36px;
  align-items: start;
}
.crisis-protocol .crisis-protocol__item {
  min-width: 0;
}
.crisis-protocol .crisis-protocol__step-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.crisis-protocol .crisis-protocol__number {
  flex-shrink: 0;
  font-size: 64px;
  font-weight: 100;
  line-height: 0.84;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, rgb(194, 158, 74) 0%, rgb(241, 207, 131) 25%, rgb(255, 239, 203) 50%, rgb(241, 207, 131) 75%, rgb(184, 147, 66) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.crisis-protocol .crisis-protocol__line {
  position: relative;
  width: 60%;
  height: 1px;
  margin: 0 28px 0 18px;
  background: rgba(255, 255, 255, 0.18);
}
.crisis-protocol .crisis-protocol__line::after {
  content: "";
  background-image: url("../images/right-arrow.svg");
  width: 15px;
  height: 12px;
  position: absolute;
  top: 3px;
  right: -60px;
  transform: translateY(-56%);
  color: rgba(255, 255, 255, 0.18);
  font-size: 30px;
  line-height: 1;
}
.crisis-protocol .crisis-protocol__item-title {
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.18;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.crisis-protocol .crisis-protocol__item-text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
}

.case-fit {
  position: relative;
  padding: 48px 0 48px;
  background-color: rgba(255, 255, 255, 0.05);
}
.case-fit::before, .case-fit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.case-fit::before {
  top: 0;
}
.case-fit::after {
  bottom: 0;
}
.case-fit .case-fit__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.case-fit .case-fit__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  text-transform: uppercase;
}
.case-fit .case-fit__column--positive .case-fit__title-accent {
  color: #e9c076;
}
.case-fit .case-fit__column--positive .case-fit__item {
  background: rgba(255, 255, 255, 0.05);
}
.case-fit .case-fit__column--positive .case-fit__icon {
  color: rgba(255, 255, 255, 0.62);
}
.case-fit .case-fit__column--negative .case-fit__title-accent {
  color: #C41D30;
}
.case-fit .case-fit__column--negative .case-fit__item {
  background: rgba(196, 29, 48, 0.12);
}
.case-fit .case-fit__column--negative .case-fit__icon {
  color: #C41D30;
}
.case-fit .case-fit__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-fit .case-fit__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 16px 17px;
  border-radius: 4px;
}
.case-fit .case-fit__text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.risk-geography {
  position: relative;
  padding: 48px 0 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  overflow: hidden;
}
.risk-geography::before, .risk-geography::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.risk-geography::before {
  top: 0;
}
.risk-geography::after {
  bottom: 0;
}
.risk-geography .risk-geography__top {
  display: grid;
  grid-template-columns: minmax(0, 812px) minmax(0, 372px);
  gap: 40px;
  align-items: start;
}
.risk-geography .risk-geography__intro {
  min-width: 0;
}
.risk-geography .risk-geography__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 34px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.05;
  text-transform: uppercase;
}
.risk-geography .risk-geography__title-accent {
  color: #e9c076;
}
.risk-geography .risk-geography__filters {
  display: grid;
  grid-template-columns: 120px 120px 170px 100px 120px 122px;
  gap: 12px;
}
.risk-geography .risk-geography__filter {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 9px;
  padding: 14px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Jost", sans-serif;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.risk-geography .risk-geography__filter > span:last-child {
  font-size: 16px;
  line-height: 1.16;
}
.risk-geography .risk-geography__filter:hover {
  border-color: rgba(233, 192, 118, 0.38);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
.risk-geography .risk-geography__filter.is-active {
  border-color: rgba(233, 192, 118, 0.52);
  background: #e9c076;
  color: #212124;
}
.risk-geography .risk-geography__filter-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.risk-geography .risk-geography__filter-mark svg {
  width: 24px;
  height: 24px;
}
.risk-geography .risk-geography__filter-mark svg * {
  fill: rgba(255, 255, 255, 0.2) !important;
  fill-opacity: 1 !important;
}
.risk-geography .risk-geography__filter.is-active .risk-geography__filter-mark svg * {
  fill: rgb(33, 33, 36) !important;
  fill-opacity: 1 !important;
}
.risk-geography .risk-geography__filter:hover .risk-geography__filter-mark {
  border-color: currentColor;
}
.risk-geography .risk-geography__sidebar-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.12;
  text-transform: uppercase;
}
.risk-geography .risk-geography__risk-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.risk-geography .risk-geography__risk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}
.risk-geography .risk-geography__risk img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  opacity: 0.78;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.risk-geography .risk-geography__map-shell {
  position: relative;
  margin-top: 48px;
  padding: 26px 24px 0;
  border-radius: 8px;
  overflow: hidden;
}
.risk-geography .risk-geography__map-shell::before {
  content: "";
  position: absolute;
  inset: 2% 12% 4%;
  background: repeating-radial-gradient(circle at 50% 49%, rgba(196, 29, 48, 0.24) 0 2px, transparent 2px 22px);
  opacity: 0.62;
  pointer-events: none;
}
.risk-geography .risk-geography__map {
  position: relative;
  aspect-ratio: 2000/857;
}
.risk-geography .risk-geography__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1) brightness(0.96) contrast(1.04);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.risk-geography .world-map {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  isolation: isolate;
}
.risk-geography .world-map > svg {
  display: block;
  width: 100%;
  height: 100%;
}
.risk-geography .world-map__svg {
  overflow: visible;
}
.risk-geography .world-map__svg path {
  fill: #a7a8ad !important;
  stroke: #1f212a !important;
  stroke-width: 1 !important;
  vector-effect: non-scaling-stroke;
  transition: fill 0.28s ease, stroke 0.28s ease;
}
.risk-geography .world-map__svg path.is-country-active {
  fill: #f1cf83 !important;
  stroke: #272933 !important;
}

.results-slider {
  padding: 48px 0 48px;
  background-color: rgba(255, 255, 255, 0.05);
}
.results-slider .results-slider__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.results-slider .results-slider__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.12;
  text-transform: uppercase;
}
.results-slider .results-slider__title-accent {
  color: #e9c076;
}
.results-slider .results-slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 8px;
}
.results-slider .results-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #e9c076;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border: none;
}
.results-slider .results-slider__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.results-slider .results-slider__arrow svg {
  width: 18px;
  height: 18px;
}
.results-slider .results-slider__counter {
  font-size: 40px;
  font-weight: 100;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.5);
  min-width: 36px;
  text-align: center;
}
.results-slider .results-swiper {
  overflow: hidden;
}
.results-slider .swiper-slide {
  padding-top: 31px;
}
.results-slider .results-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  padding-top: 44px;
  border-radius: 4px;
  background: rgb(33, 33, 36);
  position: relative;
}
.results-slider .results-card::before {
  content: "";
  background-image: url("../images/slider-half.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  width: 176px;
  height: 37px;
  top: -30px;
  left: 0;
  z-index: 10;
}
.results-slider .results-card__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.results-slider .results-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgb(255, 255, 255);
  position: absolute;
  top: -10px;
  z-index: 11;
}
.results-slider .results-card__case {
  display: flex;
  align-items: center;
  gap: 14px;
}
.results-slider .results-card__avatar {
  width: 58px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.results-slider .results-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.results-slider .results-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.results-slider .results-card__highlight {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: #C41D30;
}
.results-slider .results-card__desc {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(255, 255, 255);
}
.results-slider .results-card__right {
  display: flex;
  align-items: center;
  flex: 0 0 440px;
}
.results-slider .results-card__quote {
  position: relative;
  padding: 0 12px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}
.results-slider .results-card__quote p {
  margin: 0;
}
.results-slider .results-card__quote-open,
.results-slider .results-card__quote-close {
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
}
.results-slider .results-card__quote-open {
  display: block;
  position: absolute;
  top: 0;
  left: -12px;
}
.results-slider .results-card__quote-close {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.results-slider .results-slider__pagination {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 16px;
}
.results-slider .results-slider__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
  transition: background-color 0.3s ease;
}
.results-slider .results-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e9c076;
  width: 120px;
}

.expert-team {
  position: relative;
  padding: 48px 0 48px;
  background-color: #212124;
}
.expert-team::before, .expert-team::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.expert-team::before {
  top: 0;
}
.expert-team::after {
  bottom: 0;
}
.expert-team .expert-team__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.12;
  text-transform: uppercase;
}
.expert-team .expert-team__title-accent {
  color: #e9c076;
}
.expert-team .expert-team__description {
  margin-bottom: 48px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}
.expert-team .expert-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.expert-team .expert-card {
  display: flex;
  flex-direction: column;
}
.expert-team .expert-card__photo {
  position: relative;
  aspect-ratio: 280/300;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}
.expert-team .expert-card__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.expert-team .expert-card__photo:hover img {
  transform: scale(1.04);
}
.expert-team .expert-card__name {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.25;
  text-transform: uppercase;
  color: #e9c076;
}
.expert-team .expert-card__role {
  display: block;
  margin-bottom: 8px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgb(255, 255, 255);
}
.expert-team .expert-card__bio {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.advantages {
  padding: 48px 0 48px;
  background-color: rgb(44, 44, 47);
}
.advantages .advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.advantages .advantage-card {
  display: flex;
  flex-direction: column;
}
.advantages .advantage-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.advantages .advantage-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages .advantage-card__title {
  font-size: 20px;
  font-weight: 100;
  line-height: 1.25;
  text-transform: uppercase;
  color: #e9c076;
}
.advantages .advantage-card__desc {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.faq-section {
  position: relative;
  padding: 48px 0 48px;
  background-color: rgb(33, 33, 36);
}
.faq-section::before, .faq-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  pointer-events: none;
}
.faq-section::before {
  top: 0;
}
.faq-section::after {
  bottom: 0;
}
.faq-section .faq-section__head {
  margin-bottom: 48px;
}
.faq-section .faq-section__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.12;
  text-transform: uppercase;
  color: #FFFFFF;
}
.faq-section .faq-section__title-accent {
  color: #e9c076;
}
.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-section .faq-accordion__item {
  background-color: #2D2D2F;
  border-radius: 4px;
  overflow: hidden;
}
.faq-section .faq-accordion__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 27px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}
.faq-section .faq-accordion__trigger:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.faq-section .faq-accordion__trigger[aria-expanded=true] .faq-accordion__question {
  color: #e9c076;
}
.faq-section .faq-accordion__trigger[aria-expanded=true] .faq-accordion__chevron {
  transform: rotate(180deg);
  color: #e9c076;
}
.faq-section .faq-accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section .faq-accordion__icon img {
  max-width: 100%;
  height: auto;
}
.faq-section .faq-accordion__question {
  font-family: "Jost", sans-serif;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-section .faq-accordion__chevron {
  flex-shrink: 0;
  margin-left: 20px;
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section .faq-accordion__panel {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.32s ease, opacity 0.24s ease;
}
.faq-section .faq-accordion__panel.is-open {
  opacity: 1;
}
.faq-section .faq-accordion__panel-inner {
  overflow: hidden;
}
.faq-section .faq-accordion__panel-inner p {
  padding: 0 70px 24px 70px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(33, 33, 36) 0%, rgb(217, 183, 103) 25.96%, rgb(241, 207, 131) 36.54%, rgb(255, 239, 203) 51.51%, rgb(241, 207, 131) 65.86%, rgb(184, 147, 66) 79.81%, rgb(26, 29, 41) 100%);
  z-index: 3;
  pointer-events: none;
}
.cta-section .cta-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-section .cta-section__video {
  display: block;
  width: 60%;
  height: 100%;
  position: absolute;
  right: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.52;
}
.cta-section .cta-section__video--mobile {
  display: none;
}
.cta-section .cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-section .cta-section__content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.cta-section .cta-section__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
}
.cta-section .cta-section__title-accent {
  color: #e9c076;
}
.cta-section .cta-section__description {
  margin-bottom: 36px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}
.cta-section .cta-section__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.cta-section .cta-section__actions .btn {
  font-size: 14px;
  padding: 12px 16px;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
}
.cta-section .cta-section__actions .btn--gold {
  background-color: #e9c076;
  color: #212124;
  border: 1px solid #e9c076;
  transition: all 0.3s ease;
}
.cta-section .cta-section__actions .btn--gold:hover {
  background-color: transparent;
  color: #e9c076;
}
.cta-section .cta-section__actions .btn--outline {
  background-color: transparent;
  color: #e9c076;
  border: 1px solid #e9c076;
  transition: all 0.3s ease;
}
.cta-section .cta-section__actions .btn--outline:hover {
  background-color: #e9c076;
  color: #212124;
}
.cta-section .cta-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  text-transform: uppercase;
  color: #e9c076;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.cta-section .cta-section__link:hover {
  opacity: 0.8;
}
.cta-section .cta-section__link .cta-section__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .cta-section__features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cta-section .cta-section__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.cta-section .cta-section__features li img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta-section .cta-section__hide-wrapper {
  position: absolute;
  bottom: -40px;
  right: 0;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(4px);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-section .btn-hide {
  display: block;
  background-color: rgb(196, 29, 48);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-section .btn-hide:hover {
  background-color: rgb(211, 38, 51);
}

@media (prefers-reduced-motion: reduce) {
  .cta-section .cta-section__media {
    display: none;
  }
}
.footer {
  padding: 48px 0 48px;
  background-color: rgb(33, 33, 36);
}
.footer .footer__inner {
  display: grid;
  grid-template-columns: 604px 1.3fr 1.5fr;
  gap: 60px;
}
.footer .footer__col--info {
  max-width: 480px;
}
.footer .footer__col--info .footer__logo {
  display: inline-flex;
  margin-bottom: 24px;
}
.footer .footer__col--info .footer__logo img {
  height: 48px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer__col--info .footer__slogan {
  font-size: 20px;
  font-weight: 100;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.footer .footer__col--info .footer__disclaimer {
  margin-bottom: 24px;
}
.footer .footer__col--info .footer__disclaimer p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer .footer__col--info .footer__disclaimer p.footer__disclaimer-title {
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
  font-size: 16px;
}
.footer .footer__col--nav {
  padding-top: 12px;
}
.footer .footer__col--nav .footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer__col--nav .footer__nav ul li a {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer__col--nav .footer__nav ul li a:hover {
  color: #e9c076;
}
.footer .footer__col--contact {
  padding-top: 12px;
}
.footer .footer__col--contact .btn--full {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #e9c076;
  text-transform: uppercase;
  font-size: 14px;
  color: rgb(26, 29, 41);
  font-weight: 300;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.footer .footer__col--contact .btn--full:hover {
  background-color: transparent;
  color: #e9c076;
}
.footer .footer__col--contact .footer__features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer__col--contact .footer__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer__col--contact .footer__features li img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.6;
}
.footer .footer__col--contact .footer__note {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .footer__col--contact .footer__note p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.hero-img,
.cta-bg {
  display: none;
}

@media (max-width: 1233px) {
  .risk-geography .risk-geography__top {
    position: relative;
    padding-bottom: 200px;
  }
  .risk-geography__filters {
    max-width: 100%;
    gap: 8px;
    position: absolute;
    top: 320px;
  }
}
@media (max-width: 1180px) {
  .header .header__nav .header__list {
    gap: 10px;
  }
  .header .header__nav .header__list .header__item a {
    font-size: 14px;
  }
  .header .header__action .btn-lang span {
    display: block;
  }
  .hero .hero__art {
    right: -20vw;
    width: min(94vw, 1160px);
  }
  .hero .hero__art-hammer {
    right: 11%;
    bottom: 15%;
    width: min(34vw, 360px);
  }
  .hero .hero__inner {
    min-height: auto;
    padding: 92px 0 140px;
  }
  .hero .hero__content {
    max-width: 100%;
  }
  .hero .hero__alerts {
    grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1.1fr)) minmax(0, 1.2fr);
    gap: 8px;
    margin-top: 0;
  }
  .detention .detention__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .detention .detention__content {
    max-width: 720px;
  }
  .notice-impact .notice-impact__title {
    font-size: 48px;
  }
  .notice-impact .notice-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .scanner-stepper .scanner-stepper__title {
    font-size: 46px;
  }
  .scanner-stepper .scanner-stepper__subtitle {
    font-size: 24px;
  }
  .scanner-stepper .scanner-stepper__fields--intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scanner-stepper .scanner-stepper__split--list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .scanner-stepper .scanner-stepper__prompt--large {
    font-size: 28px;
  }
  .scanner-stepper .scanner-check--contact .scanner-check__contact {
    width: 300px;
  }
  .scanner-stepper .scanner-result__score {
    font-size: 50px;
  }
  .legal-challenge .legal-challenge__inner {
    min-height: 780px;
  }
  .legal-challenge .legal-challenge__title {
    max-width: 760px;
    font-size: 36px;
  }
  .legal-challenge .legal-challenge__list {
    max-width: 920px;
  }
  .legal-challenge .legal-challenge__visual {
    right: -170px;
    width: 860px;
  }
  .defense-system .defense-system__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .signal-response .signal-response__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .signal-response .signal-response__title {
    max-width: 640px;
  }
  .crisis-protocol .crisis-protocol__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-fit .case-fit__columns {
    grid-template-columns: 1fr;
  }
  .risk-geography .risk-geography__title {
    font-size: 30px;
  }
  .risk-geography .risk-geography__top {
    grid-template-columns: 2fr 1fr;
    gap: 32px;
  }
  .risk-geography .risk-geography__sidebar {
    max-width: 760px;
  }
  .risk-geography .risk-geography__filters {
    grid-template-columns: 100px 120px 140px 100px 120px 134px;
    gap: 18px;
  }
  .risk-geography .risk-geography__filter {
    min-height: 62px;
    padding: 10px 20px;
  }
  .risk-geography .risk-geography__filter > span:last-child {
    font-size: 12px;
  }
  .risk-geography .risk-geography__map-shell {
    padding: 20px 18px 0;
  }
  .cta-section {
    background-position: center;
  }
  .footer .footer__inner {
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 30px;
  }
}
@media (max-width: 1030px) {
  :root {
    --header-height: 92px;
    --header-anchor-offset: 108px;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 10, 0.62);
    backdrop-filter: blur(8px);
    z-index: 10;
  }
  .header .header__inner {
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
  }
  .header .header__left {
    gap: 12px;
  }
  .header .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    width: min(360px, 100%);
    height: calc(100dvh - var(--header-height));
    padding: 24px 20px 32px;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.97) 0%, rgba(8, 10, 14, 0.92) 100%);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: 20 !important;
  }
  .header .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header .header__nav .header__nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .header .header__nav .header__nav-title {
    color: rgba(255, 255, 255, 0.58);
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .header .header__nav .header__nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }
  .header .header__nav .header__nav-close img {
    width: 18px;
    height: 18px;
  }
  .header .header__nav .header__list {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 18px;
  }
  .header .header__nav .header__item a {
    display: block;
    width: 100%;
    padding-bottom: 14px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header .header__action {
    justify-content: space-between;
  }
  .header .header__action .btn-sos {
    font-size: 12px;
  }
  .header .header__action .btn-lang span {
    display: block;
  }
  .hero {
    padding: 0 0 30px;
    background-size: contain;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(8, 10, 14, 0.94) 0%, rgba(8, 10, 14, 0.9) 34%, rgba(8, 10, 14, 0.62) 62%, rgba(8, 10, 14, 0.84) 100%), linear-gradient(180deg, rgba(8, 10, 14, 0.32) 0%, rgba(8, 10, 14, 0.18) 36%, rgba(8, 10, 14, 0.76) 100%);
  }
  .hero .hero__art {
    right: -30vw;
    width: min(108vw, 980px);
  }
  .hero .hero__art-hammer {
    right: 29%;
    bottom: 14.5%;
    width: min(34vw, 300px);
  }
  .hero .hero__inner {
    min-height: auto;
    padding: 40px 0 76px;
  }
  .hero .hero__content {
    padding: 0;
    margin-bottom: 0;
  }
  .hero .hero__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .hero .hero__title {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.02;
  }
  .hero .hero__subtitle {
    max-width: 450px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.28;
  }
  .hero .hero__description {
    max-width: 390px;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.35;
  }
  .hero .hero__actions {
    max-width: 360px;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }
  .hero .hero__btn {
    width: 100%;
    min-height: 32px;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  .hero .hero__meta {
    gap: 14px 20px;
  }
  .hero .hero__meta-item {
    gap: 8px;
    font-size: 10px;
    line-height: 1.3;
  }
  .hero .hero__meta-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .hero .hero__alerts {
    grid-template-columns: minmax(0, 1.75fr) repeat(2, minmax(0, 1.1fr)) minmax(0, 1.2fr);
    gap: 8px;
    margin-top: 0;
  }
  .hero .hero__alerts .hero-card {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 9px 11px;
  }
  .hero .hero__alerts .hero-card img {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  .hero .hero__alerts .hero-card .hero-card__text {
    font-size: 12px;
    line-height: 1.3;
  }
  .hero-card {
    min-height: auto;
  }
  .detention {
    padding: 36px 0;
  }
  .detention .detention__title {
    font-size: 24px;
    display: inline-block;
    max-width: 476px;
    margin-bottom: 12px;
  }
  .detention .detention__description {
    font-size: 12px;
  }
  .detention .detention__item {
    min-height: auto;
    padding: 8px 12px;
    gap: 10px;
  }
  .detention .detention__item span {
    font-size: 12px;
  }
  .detention .detention__item img {
    width: 15px;
    height: 18px;
  }
  .notice-impact {
    padding: 36px 0;
  }
  .notice-impact .notice-impact__title {
    gap: 6px;
    margin-bottom: 24px;
    font-size: 24px;
  }
  .notice-impact .notice-impact__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
    gap: 16px;
  }
  .notice-impact .notice-impact__card {
    min-height: auto;
  }
  .notice-impact .notice-impact__label {
    min-height: 22px;
    margin-bottom: 8px;
    font-size: 12px;
  }
  .notice-impact .notice-impact__text {
    font-size: 12px;
  }
  .notice-impact .notice-impact__btn {
    font-size: 12px;
    padding: 9px 16px;
    min-height: 32px;
  }
  .scanner-stepper {
    padding: 36px 0 36px;
  }
  .scanner-stepper .scanner-stepper__tab {
    width: 100%;
    padding: 18px 34px;
  }
  .scanner-stepper .scanner-stepper__tab-text {
    font-size: 16px;
  }
  .scanner-stepper .scanner-stepper__panel {
    padding: 12px 28px 24px;
  }
  .scanner-stepper .scanner-stepper__head {
    margin-bottom: 28px;
  }
  .scanner-stepper .scanner-stepper__title {
    font-size: 18px;
  }
  .scanner-stepper .scanner-stepper__subtitle {
    font-size: 14px;
  }
  .scanner-stepper .scanner-stepper__fields--intro {
    grid-template-columns: repeat(2, 1fr);
  }
  .scanner-stepper .scanner-field__label,
  .scanner-stepper .scanner-stepper__prompt,
  .scanner-stepper .scanner-select__value,
  .scanner-stepper .scanner-select__option,
  .scanner-stepper .scanner-chip span,
  .scanner-stepper .scanner-check__text,
  .scanner-stepper .scanner-result__btn,
  .scanner-stepper .scanner-stepper__button {
    font-size: 12px;
  }
  .scanner-stepper .scanner-field__input::-moz-placeholder {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .scanner-stepper .scanner-field__input::placeholder {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .scanner-stepper .scanner-select__value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .scanner-stepper .scanner-field__label {
    display: none;
  }
  .scanner-stepper .scanner-stepper__prompt--large {
    font-size: 24px;
  }
  .scanner-stepper .scanner-check {
    min-height: 60px;
    padding: 14px 16px;
  }
  .scanner-stepper .scanner-check__box {
    width: 28px;
    height: 28px;
  }
  .scanner-stepper .scanner-check__box::after {
    top: 5px;
    left: 9px;
    width: 6px;
    height: 11px;
  }
  .scanner-stepper .scanner-check--contact {
    flex-wrap: wrap;
  }
  .scanner-stepper .scanner-check--contact .scanner-check__contact {
    width: 100%;
    margin-left: 48px;
  }
  .scanner-stepper .scanner-stepper__navigation {
    margin-top: 32px;
  }
  .scanner-stepper .scanner-result__caption {
    font-size: 24px;
  }
  .scanner-stepper .scanner-result__score {
    font-size: 42px;
  }
  .scanner-stepper .scanner-result__description,
  .scanner-stepper .scanner-result__list li {
    font-size: 18px;
  }
  .legal-challenge {
    padding: 36px 0 36px;
  }
  .legal-challenge .legal-challenge__background::after {
    z-index: 1;
    background: linear-gradient(to bottom, rgb(15, 19, 25) 0%, rgba(15, 19, 25, 0) 100%);
  }
  .legal-challenge .legal-challenge__inner {
    min-height: auto;
  }
  .legal-challenge .legal-challenge__title {
    max-width: 620px;
    margin-bottom: 32px;
    font-size: 24px;
  }
  .legal-challenge .legal-challenge__list {
    max-width: 100%;
    margin-bottom: 28px;
  }
  .legal-challenge .legal-challenge__item {
    align-items: center;
    min-height: auto;
    padding: 9px;
  }
  .legal-challenge .legal-challenge__item span {
    font-size: 12px;
  }
  .legal-challenge .legal-challenge__item img {
    width: 24px;
    height: 24px;
  }
  .legal-challenge .legal-challenge__note {
    max-width: 720px;
    font-size: 14px;
  }
  .defense-system {
    padding: 36px 0 36px;
  }
  .defense-system .defense-system__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .defense-system .defense-system__description {
    margin-bottom: 24px;
    font-size: 12px;
  }
  .defense-system .defense-system__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .defense-system .defense-system__card {
    min-height: auto;
    padding: 12px;
  }
  .defense-system .defense-system__badge {
    font-size: 12px;
    padding: 4px 12px;
  }
  .defense-system .defense-system__text {
    font-size: 12px;
  }
  .signal-response {
    padding: 36px 0;
  }
  .signal-response .signal-response__grid {
    gap: 28px 28px;
  }
  .signal-response .signal-response__title {
    font-size: 24px;
  }
  .signal-response .signal-response__item-title {
    font-size: 14px;
  }
  .signal-response .signal-response__item-text {
    font-size: 12px;
  }
  .signal-response .signal-response__item img {
    width: 36px;
    height: 36px;
  }
  .signal-response .signal-response__inner {
    gap: 24px;
  }
  .crisis-protocol {
    padding: 36px 0;
  }
  .crisis-protocol .crisis-protocol__title {
    font-size: 24px;
  }
  .crisis-protocol .crisis-protocol__description {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .crisis-protocol .crisis-protocol__grid {
    gap: 32px 24px;
  }
  .crisis-protocol .crisis-protocol__number {
    font-size: 48px;
  }
  .crisis-protocol .crisis-protocol__item-title {
    font-size: 14px;
  }
  .crisis-protocol .crisis-protocol__item-text {
    font-size: 12px;
  }
  .crisis-protocol .crisis-protocol__line::after {
    right: -40px;
  }
  .case-fit {
    padding: 36px 0;
  }
  .case-fit .case-fit__title {
    font-size: 24px;
  }
  .case-fit .case-fit__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .case-fit .case-fit__item {
    padding: 13px;
  }
  .case-fit .case-fit__text {
    font-size: 12px;
  }
  .risk-geography {
    padding: 36px 0;
  }
  .risk-geography .risk-geography__title {
    font-size: 24px;
    line-height: 1.12;
  }
  .risk-geography .risk-geography__top {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 100px;
  }
  .risk-geography .risk-geography__filters {
    max-width: 100%;
    gap: 8px;
    position: absolute;
    top: 250px;
  }
  .risk-geography .risk-geography__filter {
    min-height: 62px;
    padding: 8px;
    gap: 4px;
  }
  .risk-geography .risk-geography__filter > span:last-child {
    font-size: 12px;
  }
  .risk-geography .risk-geography__filter-mark {
    width: 14px;
    height: 14px;
  }
  .risk-geography .risk-geography__filter-mark svg {
    width: 12px;
    height: 12px;
  }
  .risk-geography .risk-geography__sidebar-title {
    font-size: 16px;
  }
  .risk-geography .risk-geography__risk-list {
    gap: 10px;
  }
  .risk-geography .risk-geography__risk-list span {
    font-size: 12px;
  }
  .risk-geography .risk-geography__map-shell {
    margin-top: 28px;
    padding: 16px 12px 0;
  }
  .results-slider {
    padding: 36px 0;
  }
  .results-slider .results-slider__title {
    font-size: 24px;
  }
  .results-slider .results-slider__counter {
    font-size: 24px;
  }
  .results-slider .results-card__tag {
    font-size: 12px;
  }
  .results-slider .results-card {
    flex-direction: column;
    padding: 24px;
  }
  .results-slider .results-card__right {
    flex: auto;
  }
  .results-slider .results-card__highlight,
  .results-slider .results-card__desc {
    font-size: 12px;
  }
  .results-slider .results-card__quote {
    font-size: 14px;
  }
  .expert-team {
    padding: 36px 0;
  }
  .expert-team .expert-team__title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
  }
  .expert-team .expert-team__description {
    font-size: 12px;
    text-align: center;
    margin-bottom: 24px;
  }
  .expert-team .expert-team__grid {
    gap: 16px;
  }
  .expert-team .expert-card__name {
    font-size: 14px;
  }
  .expert-team .expert-card__role {
    font-size: 12px;
  }
  .expert-team .expert-card__bio {
    font-size: 12px;
  }
  .advantages {
    padding: 36px 0;
  }
  .advantages .advantage-card__title {
    font-size: 14px;
  }
  .advantages .advantage-card__desc {
    font-size: 12px;
  }
  .advantages .advantage-card__icon {
    width: 36px;
    height: 36px;
  }
  .faq-section {
    padding: 36px 0;
  }
  .faq-section .faq-section__head {
    margin-bottom: 24px;
  }
  .faq-section .faq-section__title {
    font-size: 24px;
    flex-direction: row;
  }
  .faq-section .faq-accordion__trigger {
    padding: 16px 12px;
  }
  .faq-section .faq-accordion__question {
    font-size: 12px;
  }
  .faq-section .faq-accordion__panel-inner p {
    font-size: 12px;
  }
  .cta-section {
    padding: 62px 0;
    background-image: none;
    background-color: transparent;
  }
  .cta-section .cta-section__video {
    width: 99%;
    height: 100%;
    right: 0;
  }
  .cta-section .cta-section__title {
    font-size: 24px;
  }
  .cta-section .cta-section__description {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .cta-section .cta-section__actions {
    gap: 16px;
  }
  .cta-section .cta-section__actions .btn {
    font-size: 12px;
  }
  .cta-section .cta-section__features {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-section .cta-section__hide-wrapper {
    display: none;
  }
  .footer {
    padding: 36px 0;
  }
  .footer .footer__inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
  }
  .footer .footer__col--nav {
    display: none;
  }
  .footer .footer__col--info .footer__slogan {
    font-size: 14px;
  }
  .footer .footer__col--info .footer__disclaimer p.footer__disclaimer-title {
    font-size: 12px;
  }
  .footer .footer__col--info .footer__disclaimer p {
    font-size: 12px;
  }
  .footer .footer__col--contact {
    display: flex;
    flex-direction: column;
  }
  .footer .footer__col--contact .btn--full {
    font-size: 12px;
  }
  .footer .footer__col--contact .footer__features {
    order: 2;
  }
  .footer .footer__col--contact .footer__features li {
    font-size: 12px;
  }
  .footer .footer__col--contact .footer__note {
    order: 1;
    margin-bottom: 12px;
  }
  .footer .footer__col--contact .footer__note p {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  :root {
    --header-height: 78px;
    --header-anchor-offset: 92px;
  }
  .container {
    padding: 0 16px;
  }
  .header .header__inner {
    padding: 18px 0;
    flex-wrap: nowrap;
  }
  .header .header__burger img {
    width: 17px;
    height: 12px;
  }
  .header .header__left {
    gap: 8px;
  }
  .header .header__logo {
    width: 80%;
  }
  .header .header__logo a {
    display: block;
  }
  .header .header__logo a img {
    width: 100%;
  }
  .header .header__action {
    gap: 8px;
    align-items: stretch;
  }
  .header .header__action .btn-sos {
    padding: 9px 12px;
  }
  .header .header__action .btn-lang {
    padding: 9px 12px;
  }
  .header .header__action .btn-lang img {
    width: 16px;
    height: 13px;
    border-radius: 2px;
  }
  .header .header__action .btn-lang span {
    display: none;
  }
  .hero {
    padding: 0 0 28px;
    background-position: 101% 62%;
    background-size: 138%;
  }
  .hero .hero__art {
    top: 33%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 640px;
    height: 320px;
    opacity: 0.68;
    transform: translateX(-50%);
  }
  .hero .hero__art-hammer {
    left: 62%;
    right: auto;
    bottom: 23%;
    width: 220px;
    margin-left: -110px;
  }
  .hero .hero__inner {
    min-height: auto;
    padding: 18px 0 350px;
    justify-content: center;
  }
  .hero .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    padding: 0 0 24px;
    margin-bottom: 0;
    text-align: center;
  }
  .hero .hero__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .hero .hero__title {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1;
  }
  .hero .hero__subtitle {
    max-width: 470px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.28;
  }
  .hero .hero__description {
    max-width: 510px;
    margin-bottom: 26px;
    font-size: 12px;
    line-height: 1.5;
  }
  .hero .hero__description br {
    display: none;
  }
  .hero .hero__actions {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 22px;
  }
  .hero .hero__btn {
    min-height: 40px;
    padding: 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.15;
    white-space: normal;
  }
  .hero .hero__meta {
    justify-content: center;
    gap: 8px;
  }
  .hero .hero__meta-item {
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
  }
  .hero .hero__meta-item img {
    width: 18px;
    height: 18px;
  }
  .hero .hero__alerts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }
  .hero-card {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px 18px;
  }
  .hero-card img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .hero-card .hero-card__text {
    font-size: 16px;
    line-height: 1.3;
  }
  .detention {
    padding: 24px 0;
  }
  .detention .detention__title {
    gap: 4px;
    margin-bottom: 24px;
    font-size: 24px;
    text-align: center;
  }
  .detention .detention__description {
    font-size: 12px;
    text-align: center;
  }
  .detention .detention__description br {
    display: none;
  }
  .detention .detention__item {
    align-items: center;
    gap: 16px;
    padding: 8px;
  }
  .detention .detention__item span {
    font-size: 12px;
  }
  .notice-impact {
    padding: 24px 0;
  }
  .notice-impact .notice-impact__title {
    gap: 10px;
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.14;
    text-align: center;
  }
  .notice-impact .notice-impact__grid {
    gap: 16px;
    margin-bottom: 28px;
    grid-template-columns: 1fr;
  }
  .notice-impact .notice-impact__card {
    padding: 18px;
  }
  .notice-impact .notice-impact__label {
    min-height: 34px;
    margin-bottom: 16px;
    padding: 7px 16px;
    font-size: 12px;
  }
  .notice-impact .notice-impact__text {
    font-size: 12px;
  }
  .notice-impact .notice-impact__btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 12px;
    text-align: center;
  }
  .scanner-stepper {
    padding: 20px 0 54px;
  }
  .scanner-stepper .scanner-stepper__tab {
    padding: 14px 20px;
  }
  .scanner-stepper .scanner-stepper__tab-text {
    font-size: 16px;
  }
  .scanner-stepper .scanner-stepper__panel {
    padding: 26px 16px 22px;
  }
  .scanner-stepper .scanner-stepper__title {
    font-size: 18px;
  }
  .scanner-stepper .scanner-stepper__subtitle {
    font-size: 14px;
    line-height: 1.3;
  }
  .scanner-stepper .scanner-stepper__steps {
    min-height: auto;
  }
  .scanner-stepper .scanner-stepper__fields--intro {
    grid-template-columns: 1fr;
  }
  .scanner-stepper .scanner-stepper__split {
    gap: 18px;
  }
  .scanner-stepper .scanner-stepper__prompt {
    font-size: 12px;
  }
  .scanner-stepper .scanner-stepper__prompt--large {
    font-size: 12px;
  }
  .scanner-stepper .scanner-stepper__choices {
    gap: 8px;
  }
  .scanner-stepper .scanner-chip {
    width: 100%;
  }
  .scanner-stepper .scanner-chip span {
    width: 100%;
    min-height: 38px;
    font-size: 15px;
  }
  .scanner-stepper .scanner-field__label,
  .scanner-stepper .scanner-select__value,
  .scanner-stepper .scanner-select__option,
  .scanner-stepper .scanner-check__text,
  .scanner-stepper .scanner-field__input,
  .scanner-stepper .scanner-check__contact-input,
  .scanner-stepper .scanner-result__description,
  .scanner-stepper .scanner-result__list li,
  .scanner-stepper .scanner-result__btn,
  .scanner-stepper .scanner-stepper__button {
    font-size: 12px;
  }
  .scanner-stepper .scanner-select__trigger,
  .scanner-stepper .scanner-field__control {
    min-height: 50px;
  }
  .scanner-stepper .scanner-select__option {
    padding: 12px 14px;
  }
  .scanner-stepper .scanner-check {
    gap: 12px;
    padding: 14px;
  }
  .scanner-stepper .scanner-check--contact .scanner-check__contact {
    margin-left: 0;
  }
  .scanner-stepper .scanner-stepper__button,
  .scanner-stepper .scanner-result__btn {
    width: 100%;
  }
  .scanner-stepper .scanner-result__headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .scanner-stepper .scanner-result__caption {
    font-size: 20px;
  }
  .scanner-stepper .scanner-result__score {
    font-size: 32px;
  }
  .scanner-stepper .scanner-result__list {
    gap: 10px;
  }
  .scanner-stepper .scanner-result__list li {
    padding-left: 32px;
  }
  .scanner-stepper .scanner-result__list li::before {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 14px;
  }
  .legal-challenge {
    padding: 24px 0 300px;
  }
  .legal-challenge .legal-challenge__background::after {
    z-index: 1;
    background: linear-gradient(to bottom, rgb(15, 19, 25) 0%, rgba(15, 19, 25, 0) 100%);
  }
  .legal-challenge .legal-challenge__video {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    right: -3px;
    bottom: 0;
  }
  .legal-challenge .legal-challenge__title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.16;
    text-align: center;
  }
  .legal-challenge .legal-challenge__list {
    gap: 8px;
    margin-bottom: 24px;
  }
  .legal-challenge .legal-challenge__item {
    gap: 16px;
    padding: 8px img;
    padding-width: 22px;
    padding-height: 22px;
  }
  .legal-challenge .legal-challenge__item span {
    font-size: 12px;
  }
  .legal-challenge .legal-challenge__note {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }
  .legal-challenge .legal-challenge__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 32px);
    margin: 20px -16px 0;
    opacity: 0.68;
  }
  .defense-system {
    padding: 24px 0;
  }
  .defense-system .defense-system__title {
    font-size: 24px;
    text-align: center;
    line-height: 1.16;
  }
  .defense-system .defense-system__description {
    margin-bottom: 28px;
  }
  .defense-system .defense-system__description br {
    display: none;
  }
  .defense-system .defense-system__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .defense-system .defense-system__card {
    padding: 8px;
  }
  .defense-system .defense-system__description {
    text-align: center;
  }
  .defense-system .defense-system__badge,
  .defense-system .defense-system__text,
  .defense-system .defense-system__description {
    font-size: 12px;
  }
  .signal-response {
    padding: 24px 0;
    background-position: 24% center;
  }
  .signal-response .signal-response__inner {
    gap: 28px;
  }
  .signal-response .signal-response__title {
    font-size: 24px;
    text-align: center;
    line-height: 1.16;
  }
  .signal-response .signal-response__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .signal-response .signal-response__item {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  .signal-response .signal-response__item img {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
  }
  .signal-response .signal-response__item-title {
    font-size: 14px;
  }
  .signal-response .signal-response__item-text {
    font-size: 12px;
  }
  .crisis-protocol {
    padding: 24px 0;
  }
  .crisis-protocol .crisis-protocol__title {
    font-size: 24px;
    text-align: center;
    line-height: 1.16;
  }
  .crisis-protocol .crisis-protocol__description {
    margin-bottom: 24px;
    font-size: 12px;
    text-align: center;
  }
  .crisis-protocol .crisis-protocol__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .crisis-protocol .crisis-protocol__step-head {
    margin-bottom: 14px;
  }
  .crisis-protocol .crisis-protocol__number {
    font-size: 48px;
  }
  .crisis-protocol .crisis-protocol__line {
    margin: 0 24px 0 14px;
  }
  .crisis-protocol .crisis-protocol__line::after {
    right: -22px;
    font-size: 26px;
  }
  .crisis-protocol .crisis-protocol__item-title {
    font-size: 14px;
  }
  .crisis-protocol .crisis-protocol__item-text {
    font-size: 12px;
  }
  .case-fit {
    padding: 24px 0;
  }
  .case-fit .case-fit__title {
    margin-bottom: 24px;
    font-size: 24px;
    text-align: center;
    line-height: 1.16;
  }
  .case-fit .case-fit__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .case-fit .case-fit__item {
    gap: 14px;
    min-height: auto;
    padding: 12px;
  }
  .case-fit .case-fit__icon {
    width: 34px;
    font-size: 28px;
  }
  .case-fit .case-fit__text {
    font-size: 16px;
  }
  .risk-geography {
    display: none;
  }
  .results-slider {
    padding: 24px 0;
  }
  .results-slider .results-slider__head {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-bottom: 24px;
  }
  .results-slider .results-slider__title {
    font-size: 24px;
    text-align: center;
    line-height: 1.16;
    order: 2;
  }
  .results-slider .results-slider__nav {
    width: 100%;
    justify-content: center;
    padding-top: 0;
    order: 1;
  }
  .results-slider .results-slider__counter {
    min-width: auto;
    font-size: 24px;
  }
  .results-slider .swiper-slide {
    padding-top: 20px;
  }
  .results-slider .results-card {
    gap: 18px;
    padding: 18px 16px;
    padding-top: 34px;
  }
  .results-slider .results-card__tag {
    top: -12px;
    font-size: 11px;
  }
  .results-slider .results-card__left {
    gap: 14px;
  }
  .results-slider .results-card__case {
    gap: 12px;
  }
  .results-slider .results-card__avatar {
    width: 54px;
    height: 56px;
  }
  .results-slider .results-card__quote {
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.45;
  }
  .results-slider .results-slider__pagination {
    margin-top: 14px;
    justify-content: center;
  }
  .results-slider .results-slider__pagination .swiper-pagination-bullet {
    width: 10px;
  }
  .results-slider .results-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 54px;
  }
  .expert-team {
    padding: 24px 0;
  }
  .expert-team .expert-team__title {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.16;
    text-align: center;
  }
  .expert-team .expert-team__description {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
  }
  .expert-team .expert-team__grid {
    display: flex;
    gap: 22px;
    text-align: center;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .expert-team .expert-card__photo {
    margin-bottom: 16px;
    aspect-ratio: unset;
    width: 176px;
    height: 179px;
  }
  .expert-team .expert-card__name {
    font-size: 14px;
  }
  .expert-team .expert-card__role {
    font-size: 12px;
  }
  .expert-team .expert-card__bio {
    font-size: 12px;
  }
  .advantages {
    padding: 24px 0;
  }
  .advantages .advantages__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .advantages .advantage-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .advantages .advantage-card__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
  }
  .advantages .advantage-card__title {
    font-size: 14px;
  }
  .advantages .advantage-card__desc {
    font-size: 12px;
    line-height: 1.45;
  }
  .faq-section {
    padding: 24px 0;
  }
  .faq-section .faq-section__head {
    margin-bottom: 20px;
  }
  .faq-section .faq-section__title {
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    font-size: 24px;
    line-height: 1.16;
    text-align: center;
  }
  .faq-section .faq-accordion__trigger {
    padding: 10px;
    align-items: center;
  }
  .faq-section .faq-accordion__icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 2px;
  }
  .faq-section .faq-accordion__question {
    font-size: 12px;
    line-height: 1.4;
  }
  .faq-section .faq-accordion__chevron {
    margin-left: 12px;
    margin-top: 4px;
  }
  .faq-section .faq-accordion__panel-inner p {
    padding: 0 14px 16px 44px;
    font-size: 12px;
    line-height: 1.5;
  }
  .cta-section {
    padding: 24px 0 380px;
    background-position: center;
    background-image: none;
    background-color: #000;
  }
  .cta-section .cta-section__video {
    display: block;
    width: auto;
    height: 350px;
    position: absolute;
    left: 50%;
    right: auto;
    max-width: none;
    transform: translateX(-50%);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    opacity: 0.52;
    bottom: 0;
  }
  .cta-section .cta-section__video--desktop {
    display: none;
  }
  .cta-section .cta-section__video--mobile {
    display: block;
  }
  .cta-section .cta-section__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .cta-section .cta-section__title {
    margin-bottom: 16px;
    font-size: 23px;
    text-align: center;
    line-height: 1.16;
  }
  .cta-section .cta-section__description {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  .cta-section .cta-section__description br {
    display: none;
  }
  .cta-section .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cta-section .cta-section__actions .btn {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 14px 16px;
  }
  .cta-section .cta-section__link {
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 8px;
    text-align: center;
  }
  .cta-section .cta-section__features {
    gap: 10px;
    flex-direction: row;
    justify-content: center;
  }
  .cta-section .cta-section__features li {
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
  }
  .footer {
    padding: 24px 0;
    text-align: center;
  }
  .footer .footer__inner {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .footer .footer__col--info {
    max-width: none;
  }
  .footer .footer__col--info .footer__logo {
    margin-bottom: 16px;
  }
  .footer .footer__col--info .footer__logo img {
    height: 40px;
  }
  .footer .footer__col--info .footer__slogan {
    margin-bottom: 18px;
    font-size: 14px;
  }
  .footer .footer__col--info .footer__disclaimer {
    margin-bottom: 18px;
  }
  .footer .footer__col--info .footer__disclaimer p.footer__disclaimer-title {
    font-size: 14px;
  }
  .footer .footer__col--info .footer__disclaimer p {
    font-size: 13px;
    line-height: 1.45;
  }
  .footer .footer__col--contact {
    padding-top: 0;
  }
  .footer .footer__col--contact .btn--full {
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 12px;
  }
  .footer .footer__col--contact .footer__features {
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .footer__col--contact .footer__features li {
    font-size: 13px;
    line-height: 1.4;
  }
  .footer .footer__col--contact .footer__note {
    gap: 10px;
  }
  .footer .footer__col--contact .footer__note p {
    font-size: 13px;
    line-height: 1.45;
  }
}/*# sourceMappingURL=style.css.map */