html {
  height: 100%;
}
body {
  height: 100%;
  background-color: var(--bg-color);
  font-family: var(--main-font);
  color: var(--surface-200);
}
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.site-wrapper .main {
  flex: 1 0 auto;
}
.main {
  color: var(--surface-200);
}
.site-wrapper .footer {
  flex: 0 0 auto;
}
.section__title {
  text-align: center;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100svh;
  background: var(--binance-20);
  color: var(--surface-200);
  border: 0;
}
.modal::-webkit-backdrop {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.97);
}
.modal::backdrop {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.97);
}
.modal.show {
  display: flex;
  -webkit-animation: sweep 0.5s ease-in-out;
  animation: sweep 0.5s ease-in-out;
}
.no-scroll {
  overflow: hidden;
}
.modal__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 15px;
  height: 64px;
}
.modal__header-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
.modal__list {
  background: var(--binance-100);
  padding: 28px 56px;
  height: calc(100vh - 160px);
  overflow-y: auto;
}

.modal__content {
  width: 100%;
}

.modal__list .links__list-item .links__list--inner {
  max-height: 0;
  overflow: hidden;
  position: relative;
  padding-left: 20px;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 8px;
  transition: max-height 0.7s ease, padding 0.3s ease, opacity 0.3s ease;
}

.modal__list .links__list-item {
  font-weight: 700;
  padding-bottom: 24px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.modal__list .links__list-item .links__list--inner.show {
  max-height: 250px;
  padding-block: 16px;
  -webkit-animation: sweep 0.5s ease-in-out;
  animation: sweep 0.5s ease-in-out;
}

.modal__list .links__list--inner .links__list-item {
  padding: 8px 0;
}

.modal__list .links__list-item .summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__list .links__list-item .summary img {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.modal__list .links__list-item .summary img.rotate {
  transform: rotate(180deg);
}

@-webkit-keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

@keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

.modal__tg-btn {
  margin: 20px auto 0;
  height: 30px;
  width: 170px;
}

/* header */
.header {
  height: 64px;
  color: var(--surface-200);
  margin-inline: 18px;
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: none;
}
.header__title {
  font-size: 20px;
  line-height: 20px;
}
.header__subtitle {
  font-size: 12px;
  line-height: 16px;
  color: var(--surface-300);
}
.header__burger-btn {
  background: transparent;
  border: transparent;
  padding-top: 6px;
}
.header__burger-btn--close {
  background: transparent;
  border: transparent;
  color: aliceblue;
  font-size: 38px;
  padding: 0;
  margin: 0;
  margin-top: -4px;
}
.header__burger-btn .line {
  transition: y 300ms ease-in 300ms, rotate 300ms ease-in, opacity 0ms 300ms;
  transform-origin: center;
}
.header__burger-btn[aria-expanded='true'] .line {
  transition: y 300ms ease-in, rotate 300ms ease-in 300ms, opacity 0ms 300ms;
}
.header__burger-btn[aria-expanded='true'] :is(.top, .bottom) {
  y: 45;
}

.header__burger-btn[aria-expanded='true'] .top {
  rotate: 45deg;
}

.header__burger-btn[aria-expanded='true'] .middle {
  opacity: 0;
}

.header__burger-btn[aria-expanded='true'] .bottom {
  rotate: -45deg;
}

.header_modal {
  position: absolute;
  top: 0;
  left: 0;
}

.container {
  padding-inline: 16px;
}
.xl-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

/* hero */
.hero {
  /* min-height: calc(100svh - 64px); */
  text-align: center;
  position: relative;
  padding-block: 36px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  /* mix-blend-mode: color-dodge; */
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -100;
}
.hero__img-container {
  height: 160px;
}
.hero__img {
  height: 100%;
  margin-inline: auto;
}
.hero__heading {
  padding-block: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
}
.hero__subheading {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

/* advantages — заголовок и описание в стиле tmp/main.html Features */

.advantages__desc {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin-bottom: 0;
}
.advantages__desc-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--surface-50);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.advantages__desc-desc {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--surface-400);
  max-width: 42rem;
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: 0;
}
/* advantages__carousel */

.advantages {
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 0;
  padding: 2rem 0 3rem;
}
.advantages__inner {
  padding-inline: 16px;
}

/* Варианты фона блока «Особенности и возможности». Выбор в data/advantages_section.json (background_variant). */
.advantages--bg-gradient {
  background: linear-gradient(180deg, rgba(15, 15, 17, 0.4) 0%, rgba(18, 18, 20, 0.7) 20%, rgba(18, 18, 20, 0.8) 80%, rgba(15, 15, 17, 0.4) 100%);
}
.advantages--bg-solid {
  background: rgba(18, 18, 20, 0.7);
}
.advantages--bg-glow {
  background: radial-gradient(ellipse 90% 60% at 50% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 55%), #0a0a0b;
}
.advantages--bg-panel {
  background: rgba(18, 18, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.advantages--bg-dark {
  background: #0c0c0d;
}
.advantages--bg-none {
  background: none;
  box-shadow: none;
}

.advantages__carousel-container {
  position: relative;
  padding: 10px;
  height: 100%;
}
.advantages__carousel_track {
  position: relative;
  height: 100%;
  height: 330px;
  transition: transform 0.4s ease-out;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* Карточки в стиле tmp/main.html Features: bg-dark-800, border white/5, rounded-2xl, акцент слева */
.advantages__carousel_slide {
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid rgba(20, 184, 166, 0.55);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -2px rgba(0, 0, 0, 0.15);
  height: 330px;
  width: 84%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin-right: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.advantages__carousel_slide-img {
  padding: 42px 33px;
  margin-inline: auto;
  margin-bottom: 10px;
}
.advantages__carousel_slide-text--container {
  padding-inline: 12px;
}
.advantages__carousel_slide-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 6px;
  color: var(--surface-200);
}
.advantages__carousel_slide-desc {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 10px;
}

.advantages p {
  color: var(--surface-400);
}
.advantages span {
  font-weight: 700;
  color: var(--surface-200);
  font-family: 'Montserrat', sans-serif;
}
.carousel__nav,
.exchange__carousel_nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-block: 36px;
}
.carousel__nav-indicator {
  padding: 0;
  border: none;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background: var(--binance-400);
  cursor: pointer;
}
.carousel__nav-indicator.current-slide {
  background: var(--success-150);
}

/* Quick start — карточки пресетов */
.quick-start {
  background: #0a0a0b;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.quick-start__inner {
  position: relative;
}
.quick-start__title {
  margin-bottom: 0.5rem;
}
.quick-start__desc {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--surface-400);
}
.quick-start__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .quick-start__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .quick-start__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  .quick-start__carousel-container {
    display: none;
  }
}
.quick-start__cta {
  text-align: center;
  margin-top: 2.25rem;
}
.quick-start__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: var(--main-font);
  color: #fff;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
  box-shadow: 0 4px 20px -4px rgba(20, 184, 166, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.quick-start__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -4px rgba(20, 184, 166, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  filter: brightness(1.08);
}
.quick-start__cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px -2px rgba(20, 184, 166, 0.45);
}
.quick-start__cta-btn::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.15em;
  border: 2px solid currentColor;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
  vertical-align: 0.05em;
}

/* Варианты кнопки (cta_style в quick_start_section.json) */
.quick-start__cta-btn--outline {
  background: transparent;
  color: #2dd4bf;
  border: 2px solid #14b8a6;
  box-shadow: none;
}
.quick-start__cta-btn--outline:hover {
  background: rgba(20, 184, 166, 0.15);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.3);
}

.quick-start__cta-btn--glow {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  box-shadow: 0 0 24px -2px rgba(20, 184, 166, 0.6), 0 4px 20px -4px rgba(20, 184, 166, 0.5);
}
.quick-start__cta-btn--glow:hover {
  box-shadow: 0 0 32px 0 rgba(20, 184, 166, 0.65), 0 8px 28px -4px rgba(20, 184, 166, 0.55);
}

.quick-start__cta-btn--pill {
  border-radius: 9999px;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #5eead4 100%);
  box-shadow: 0 4px 18px -4px rgba(20, 184, 166, 0.45);
}
.quick-start__cta-btn--pill:hover {
  box-shadow: 0 6px 24px -4px rgba(20, 184, 166, 0.55);
}

.quick-start__cta-btn--minimal {
  background: transparent;
  color: #2dd4bf;
  box-shadow: none;
  border-radius: 0.5rem;
  border-bottom: 2px solid transparent;
}
.quick-start__cta-btn--minimal:hover {
  border-bottom-color: #2dd4bf;
  filter: none;
  box-shadow: none;
}

.quick-start__cta-btn--solid {
  background: #14b8a6;
  box-shadow: 0 4px 16px -2px rgba(20, 184, 166, 0.45);
}
.quick-start__cta-btn--solid:hover {
  background: #0d9488;
  box-shadow: 0 6px 24px -4px rgba(20, 184, 166, 0.5);
}

.qs-card {
  position: relative;
  overflow: hidden;
  background: rgba(18, 18, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid rgba(20, 184, 166, 0.5);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
  transform-origin: center center;
}
.qs-card::after {
  content: '';
  position: absolute;
  top: -64px;
  right: -64px;
  width: 144px;
  height: 144px;
  background: rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}
.qs-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(20, 184, 166, 0.65);
  box-shadow: 0 28px 56px -12px rgba(0, 0, 0, 0.55), inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
  transform: scale(1.03);
}
.qs-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.12);
}
.qs-card__symbol {
  font-weight: 700;
  font-size: 1rem;
  color: var(--surface-50, #fff);
  font-family: var(--main-font);
}
.qs-card__direction-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}
.qs-card__exchange-logo--header {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.qs-card__direction {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-family: var(--main-font);
}
.qs-card__direction--short {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}
.qs-card__direction--long {
  background: rgba(27, 197, 144, 0.2);
  color: var(--success-100, #1bc590);
}
.qs-card__access {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: #60a5fa;
}
.qs-card__access--pro {
  color: #a78bfa;
}
.qs-card__body {
  padding: 0.4rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  font-family: var(--main-font);
}
.qs-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--surface-400);
}
.qs-card__exchange {
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
}
.qs-card__exchange-logo {
  display: block;
  height: 1.25rem;
  width: auto;
  max-width: 5rem;
  object-fit: contain;
  object-position: left center;
}
.qs-card__deposit {
  font-size: 0.75rem;
}
.qs-card__chart-wrap {
  height: 180px;
  background: rgba(22, 24, 28, 0.55);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.03);
}
.qs-card__chart {
  display: block;
  width: 100%;
  height: 100%;
}
.qs-card__settings,
.qs-card__params {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.qs-card__param-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.qs-card__param-name {
  color: var(--surface-400);
}
.qs-card__param-value {
  color: var(--surface-200);
}
.qs-card__param-link {
  color: var(--primary-200, #60a5fa);
  text-decoration: none;
  font-size: 0.7rem;
}
.qs-card__param-link:hover {
  text-decoration: underline;
}
.qs-card__profit {
  color: var(--success-100, #1bc590);
  font-weight: 600;
}
.qs-card__actions {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.qs-card__link {
  font-size: 0.8125rem;
  color: var(--primary-200, #60a5fa);
  text-decoration: none;
}
.qs-card__link:hover {
  text-decoration: underline;
}
.qs-card__btn {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--main-font);
}
.qs-card__btn--primary {
  background: #14b8a6;
  color: #fff;
}
.qs-card__btn--primary:hover {
  background: #0d9488;
  color: #fff;
}
.qs-card__btn-group {
  display: flex;
  gap: 0.5rem;
}
.qs-card__btn--secondary {
  flex: 1;
  background: rgba(20, 184, 166, 0.15);
  color: rgba(255, 255, 255, 0.95);
}
.qs-card__btn--secondary:hover {
  background: rgba(20, 184, 166, 0.25);
  color: #fff;
}

/* Варианты стиля карточек «Быстрый старт». Выбор в админке (Блок: Быстрый старт). */
.qs-card--default {
  /* без переопределений — базовый стиль выше */
}
.qs-card--minimal {
  border-left-width: 0;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.06);
}
.qs-card--minimal:hover {
  border-left-width: 0;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
}
.qs-card--outline {
  border-left-width: 0;
  background: rgba(18, 18, 20, 0.6);
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}
.qs-card--outline:hover {
  border-left-width: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 20, 0.8);
}
.qs-card--glow {
  border-left-width: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 24px -4px rgba(20, 184, 166, 0.25), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.qs-card--glow:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 32px -4px rgba(20, 184, 166, 0.35), 0 8px 12px -2px rgba(0, 0, 0, 0.25);
}
/* Варианты свечения на основе glow */
.qs-card--glow-strong {
  border-left-width: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 36px -2px rgba(20, 184, 166, 0.45), 0 0 60px -8px rgba(20, 184, 166, 0.2), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.qs-card--glow-strong:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 48px -2px rgba(20, 184, 166, 0.55), 0 0 80px -8px rgba(20, 184, 166, 0.25), 0 8px 12px -2px rgba(0, 0, 0, 0.25);
}
.qs-card--glow-soft {
  border-left-width: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 40px 4px rgba(20, 184, 166, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.18);
}
.qs-card--glow-soft:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 56px 6px rgba(20, 184, 166, 0.22), 0 8px 12px -2px rgba(0, 0, 0, 0.2);
}
.qs-card--glow-inner {
  border-left-width: 0;
  box-shadow: inset 0 0 32px -8px rgba(20, 184, 166, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.qs-card--glow-inner:hover {
  box-shadow: inset 0 0 40px -6px rgba(20, 184, 166, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 12px -2px rgba(0, 0, 0, 0.25);
}
.qs-card--glow-ring {
  border-left-width: 0;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.5), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.qs-card--glow-ring:hover {
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.75), 0 8px 12px -2px rgba(0, 0, 0, 0.25);
}
.qs-card--glow-success {
  border-left-width: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 24px -4px rgba(27, 197, 144, 0.3), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.qs-card--glow-success:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 32px -4px rgba(27, 197, 144, 0.4), 0 8px 12px -2px rgba(0, 0, 0, 0.25);
}
.qs-card--glow-subtle {
  border-left-width: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 20px -6px rgba(20, 184, 166, 0.12), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.qs-card--glow-subtle:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 24px -4px rgba(20, 184, 166, 0.18), 0 8px 12px -2px rgba(0, 0, 0, 0.25);
}
.qs-card--panel {
  border-left-width: 0;
  background: var(--binance-100, #191a1f);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.3);
}
.qs-card--panel:hover {
  border-left-width: 0;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.35);
}
.qs-card--accent-top {
  border-left-width: 1px;
  border-left-color: rgba(255, 255, 255, 0.05);
  border-top: 4px solid rgba(20, 184, 166, 0.55);
}
.qs-card--accent-top:hover {
  border-left-color: rgba(255, 255, 255, 0.05);
  border-top-color: rgba(20, 184, 166, 0.7);
}
.qs-card--compact .qs-card__header {
  padding: 0.5rem 0.75rem;
}
.qs-card--compact .qs-card__body {
  padding: 0.75rem;
  gap: 0.5rem;
}
.qs-card--compact .qs-card__actions {
  padding-top: 0.5rem;
}
.qs-card--compact .qs-card__chart-wrap {
  height: 120px;
}
.qs-card--compact .qs-card__chart {
  height: 120px;
}
.qs-card--dashed {
  border-left-width: 0;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.qs-card--dashed:hover {
  border-left-width: 0;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
}
.qs-card--soft {
  border-left-width: 0;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 4px 10px -4px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.06);
}
.qs-card--soft:hover {
  border-left-width: 0;
  box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.25), 0 6px 14px -4px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.08);
}
.qs-card--flat {
  border-left-width: 0;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.qs-card--flat:hover {
  border-left-width: 0;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.12);
}
.qs-card--raised {
  border-left-width: 0;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35), 0 6px 14px -6px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.06);
}
.qs-card--raised:hover {
  border-left-width: 0;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 8px 18px -6px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}
.qs-card--stripe {
  border-left-width: 0;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.05);
}
.qs-card--stripe .qs-card__header {
  border-bottom: 3px solid rgba(20, 184, 166, 0.6);
}
.qs-card--stripe:hover .qs-card__header {
  border-bottom-color: rgba(20, 184, 166, 0.8);
}
.qs-card--corner {
  border-left-width: 0;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.06);
  position: relative;
}
.qs-card--corner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 3px solid rgba(20, 184, 166, 0.7);
  border-left: 3px solid rgba(20, 184, 166, 0.7);
  border-radius: 4px 0 0 0;
  z-index: 1;
}
.qs-card--corner:hover::before {
  border-top-color: rgba(20, 184, 166, 0.9);
  border-left-color: rgba(20, 184, 166, 0.9);
}
.qs-card--muted {
  border-left-width: 0;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: rgba(25, 26, 31, 0.9);
}
.qs-card--muted:hover {
  border-left-width: 0;
  border-color: rgba(255, 255, 255, 0.12);
}

/* exchange — фон на всех ширинах */
.exchange {
  position: relative;
  overflow: hidden;
  background: #121214;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}
.exchange__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.exchange__bg::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}
.exchange__bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 24rem;
  height: 24rem;
  margin-top: -12rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}
.exchange__inner {
  position: relative;
  z-index: 1;
}
.exchange__carousel-container {
  text-align: center;
}
.exchange__title {
  padding-block: 38px;
}
.exchange__carousel_track {
  position: relative;
  height: 100%;
  height: 150px;
  transition: transform 0.4s ease-out;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.exchange__carousel_slide {
  background-color: var(--binance-50);
  height: 142px;
  width: 84%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin-right: 20px;
  border-radius: 8px;
}

.exchange__carousel_slide-img,
.exchange__card-img {
  padding-top: 23px;
  margin-inline: auto;
}
.exchange__carousel_slide-desc,
.exchange__card-desc {
  padding-block: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--surface-600);
}

/* pricing — стили как Transparent Pricing (tmp/main.html) */
.pricing {
  background: #0a0a0b;
  padding: 4rem 1rem 5rem;
}
.pricing__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.pricing__title {
  text-align: center;
  padding-block: 0 1rem;
  margin-bottom: 0;
}
.pricing__subtitle {
  text-align: center;
  color: rgba(156, 163, 175, 1);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.pricing__cards-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64rem;
  margin-inline: auto;
}
.pricing__card {
  padding: 2rem;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing__card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}
.pricing__card--featured {
  position: relative;
  border-color: #14b8a6;
  box-shadow: 0 25px 50px -12px rgba(20, 184, 166, 0.1);
  z-index: 1;
  padding-top: 2.5rem;
}
.pricing__card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.pricing__card-title-row .pricing__card-title {
  margin: 0;
}
.pricing__card--featured:hover {
  border-color: #14b8a6;
}
.pricing__period {
  margin-top: 2rem;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pricing__period--in-card {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.pricing__period--in-card.pricing__period--corner {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0;
}
.pricing__period--in-card.pricing__period--inline {
  position: static;
  margin: 0;
  flex-shrink: 0;
}
.pricing__period--in-card .pricing__period-buttons {
  padding: 0.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  box-shadow: none;
}
.pricing__period--in-card .pricing__period-btn {
  padding: 0.28rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pricing__period--in-card .pricing__period-btn:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
}
.pricing__period--in-card .pricing__period-btn.is-active {
  background: rgba(20, 184, 166, 0.2);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.35);
  color: rgba(255, 255, 255, 0.98);
}
.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: rgba(20, 184, 166, 0.3);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.45);
}
/* Стили выбора периода: вариант outline — только обводка у активного */
.pricing__period--style-outline .pricing__period-buttons {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing__period--style-outline .pricing__period-btn.is-active,
.pricing__period--style-outline.pricing__period--in-card .pricing__period-btn.is-active {
  background: transparent;
  box-shadow: 0 0 0 1px #14b8a6;
  color: #14b8a6;
}
.pricing__period--style-outline .pricing__period-btn.is-active:hover,
.pricing__period--style-outline.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: rgba(20, 184, 166, 0.08);
  box-shadow: 0 0 0 1px #14b8a6;
}
/* Стили выбора периода: вариант solid — насыщенная заливка активного */
.pricing__period--style-solid .pricing__period-btn.is-active,
.pricing__period--style-solid.pricing__period--in-card .pricing__period-btn.is-active {
  background: rgba(20, 184, 166, 0.4);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.6);
  color: #fff;
}
.pricing__period--style-solid .pricing__period-btn.is-active:hover,
.pricing__period--style-solid.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: rgba(20, 184, 166, 0.5);
}
/* Стили выбора периода: вариант minimal — только цвет текста */
.pricing__period--style-minimal .pricing__period-buttons {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing__period--style-minimal .pricing__period-btn.is-active,
.pricing__period--style-minimal.pricing__period--in-card .pricing__period-btn.is-active {
  background: transparent;
  box-shadow: none;
  color: #14b8a6;
}
.pricing__period--style-minimal .pricing__period-btn.is-active:hover,
.pricing__period--style-minimal.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: transparent;
  color: #14b8a6;
}
/* Стили выбора периода: вариант text — только текст, без обводок и фона */
.pricing__period--style-text .pricing__period-buttons {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0.5rem;
}
.pricing__period--style-text .pricing__period-btn,
.pricing__period--style-text.pricing__period--in-card .pricing__period-btn {
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0.25rem 0;
}
.pricing__period--style-text .pricing__period-btn:hover,
.pricing__period--style-text.pricing__period--in-card .pricing__period-btn:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}
.pricing__period--style-text .pricing__period-btn.is-active,
.pricing__period--style-text.pricing__period--in-card .pricing__period-btn.is-active {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #14b8a6;
}
.pricing__period--style-text .pricing__period-btn.is-active:hover,
.pricing__period--style-text.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: transparent;
  color: #14b8a6;
}
/* Стили выбора периода: вариант underline — активный с подчёркиванием */
.pricing__period--style-underline .pricing__period-buttons {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0.75rem;
}
.pricing__period--style-underline .pricing__period-btn,
.pricing__period--style-underline.pricing__period--in-card .pricing__period-btn {
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0;
}
.pricing__period--style-underline .pricing__period-btn.is-active,
.pricing__period--style-underline.pricing__period--in-card .pricing__period-btn.is-active {
  background: transparent;
  box-shadow: none;
  border-bottom-color: #14b8a6;
  color: #14b8a6;
}
.pricing__period--style-underline .pricing__period-btn.is-active:hover,
.pricing__period--style-underline.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: transparent;
  border-bottom-color: #14b8a6;
  color: #14b8a6;
}
/* Стили выбора периода: вариант tabs — вкладки с нижней полосой у активного */
.pricing__period--style-tabs .pricing__period-buttons {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 0.25rem;
  gap: 0;
}
.pricing__period--style-tabs .pricing__period-btn,
.pricing__period--style-tabs.pricing__period--in-card .pricing__period-btn {
  border-radius: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -0.25rem;
  padding: 0.25rem 0.5rem;
}
.pricing__period--style-tabs .pricing__period-btn.is-active,
.pricing__period--style-tabs.pricing__period--in-card .pricing__period-btn.is-active {
  background: transparent;
  box-shadow: none;
  border-bottom-color: #14b8a6;
  color: #14b8a6;
}
.pricing__period--style-tabs .pricing__period-btn.is-active:hover,
.pricing__period--style-tabs.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: transparent;
  border-bottom-color: #14b8a6;
  color: #14b8a6;
}
/* Стили выбора периода: вариант pill — отдельные округлые таблетки с отступом */
.pricing__period--style-pill .pricing__period-buttons {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0.35rem;
}
.pricing__period--style-pill .pricing__period-btn,
.pricing__period--style-pill.pricing__period--in-card .pricing__period-btn {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.pricing__period--style-pill .pricing__period-btn.is-active,
.pricing__period--style-pill.pricing__period--in-card .pricing__period-btn.is-active {
  background: rgba(20, 184, 166, 0.25);
  border-color: rgba(20, 184, 166, 0.5);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.3);
}
.pricing__period--style-pill .pricing__period-btn.is-active:hover,
.pricing__period--style-pill.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: rgba(20, 184, 166, 0.35);
  border-color: rgba(20, 184, 166, 0.6);
}
/* Стили выбора периода: вариант muted — приглушённый, без бирюзового */
.pricing__period--style-muted .pricing__period-buttons {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing__period--style-muted .pricing__period-btn.is-active,
.pricing__period--style-muted.pricing__period--in-card .pricing__period-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  border: none;
  color: rgba(255, 255, 255, 0.95);
}
.pricing__period--style-muted .pricing__period-btn.is-active:hover,
.pricing__period--style-muted.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
/* Стили выбора периода: вариант dot — перед активным бирюзовая точка */
.pricing__period--style-dot .pricing__period-buttons {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 0.75rem;
}
.pricing__period--style-dot .pricing__period-btn,
.pricing__period--style-dot.pricing__period--in-card .pricing__period-btn {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}
.pricing__period--style-dot .pricing__period-btn.is-active::before,
.pricing__period--style-dot.pricing__period--in-card .pricing__period-btn.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #14b8a6;
}
.pricing__period--style-dot .pricing__period-btn.is-active,
.pricing__period--style-dot.pricing__period--in-card .pricing__period-btn.is-active {
  color: #14b8a6;
}
.pricing__period--style-dot .pricing__period-btn.is-active:hover,
.pricing__period--style-dot.pricing__period--in-card .pricing__period-btn.is-active:hover {
  background: transparent;
  color: #14b8a6;
}
.pricing__period-buttons {
  display: inline-flex;
  gap: 0;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.pricing__period-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(156, 163, 175, 1);
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pricing__period-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}
.pricing__period-btn.is-active {
  color: #fff;
  background: rgba(20, 184, 166, 0.25);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.4);
}
.pricing__period-btn.is-active:hover {
  background: rgba(20, 184, 166, 0.35);
  box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.5);
}
.pricing__card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #14b8a6;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: 0;
  white-space: nowrap;
}
.pricing__card-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 0.5rem;
  padding-block: 0;
}
.pricing__card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.pricing__card-price-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
}
.pricing__card-price-suffix {
  font-size: 1rem;
  color: rgba(156, 163, 175, 1);
}
.pricing__card-price--individual {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: rgba(156, 163, 175, 1);
}
.pricing__card-desc {
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 1);
  margin: 0 0 2rem;
  line-height: 1.4;
}
.pricing__card-list {
  padding: 0 0 1.5rem;
  margin: 0 0 1.5rem;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing__card-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(209, 213, 219, 0.95);
}
.pricing__card-list-item i.fa-check {
  flex-shrink: 0;
  color: #14b8a6;
  margin-top: 0.2rem;
  font-size: 0.875rem;
}
.pricing__card-list-item--fire i.fa-fire {
  flex-shrink: 0;
  color: #f59e0b;
  margin-top: 0.2rem;
  font-size: 0.875rem;
}
.pricing__card-list-item--fire.half-active i.fa-fire {
  color: rgba(245, 158, 11, 0.75);
}
.pricing__card-list-item--fire.full-active i.fa-fire {
  color: #f59e0b;
}
.pricing__card-list-item.half-active i.fa-check {
  color: rgba(20, 184, 166, 0.6);
}
.pricing__card-list-item.full-active i.fa-check {
  color: #14b8a6;
}
.pricing__card-list-item svg {
  flex-shrink: 0;
  color: #14b8a6;
  margin-top: 0.15rem;
}
.pricing__card-list-item.half-active svg {
  color: rgba(20, 184, 166, 0.6);
}
.pricing__card-list-item.full-active svg {
  color: #14b8a6;
}
.pricing__card-list-item p {
  margin: 0;
}
.pricing__card-button {
  display: block;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pricing__card-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}
.pricing__card--featured .pricing__card-button {
  background: #0d9488;
  border-color: transparent;
  box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.25);
}
.pricing__card--featured .pricing__card-button:hover {
  background: #14b8a6;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

/* FAQ — стили из tmp/main.html "Frequently Asked Questions". Фон: свечение на чёрном, как в блоке «Особенности и возможности». */
.faq {
  background: radial-gradient(ellipse 90% 60% at 50% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 55%), #0a0a0b;
  padding: 6rem 1rem;
}
.faq__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.faq__title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq__icon {
  flex-shrink: 0;
  margin-left: 0.75rem;
  color: #14b8a6;
  transition: transform 0.2s ease;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 1.5rem 1rem;
}
.faq__answer[hidden] {
  display: none;
}
.faq__answer p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(156, 163, 175, 1);
}

/* CTA — из tmp/main.html "Ready to automate your success?" */
.cta {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(to bottom right, #134e4a 0%, #0a0a0b 100%);
  overflow: hidden;
}
.cta__pattern {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}
.cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .cta__title { font-size: 3rem; }
}
.cta__desc {
  color: #ccfbf1;
  font-size: 1.125rem;
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  line-height: 1.6;
}
.cta__btn {
  display: inline-block;
  background: #fff;
  color: #0d9488;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta__btn:hover {
  background: #f0fdfa;
  transform: scale(1.05);
}
.cta__footnote {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: rgba(204, 251, 241, 0.85);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}
.cta__footnote-sep {
  opacity: 0.7;
  user-select: none;
}
.cta__footnote-item {
  letter-spacing: 0.01em;
}

/* footer — из tmp/main.html */
.footer {
  background: #0a0a0b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 1rem 2.5rem;
}
.footer__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .footer__inner { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .footer__inner { padding-inline: 2rem; }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr 1.35fr; gap: 3rem 2rem; }
}
.footer__brand-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer__logo-icon,
.footer__logo-img {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}
.footer__logo-icon {
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.35);
}
.footer__logo-img {
  object-fit: contain;
  display: block;
}
.footer__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #9ca3af;
  margin: 0 0 1.5rem;
  max-width: 20rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer__social-link:hover {
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.15);
  transform: translateY(-2px);
}
.footer__social-link i {
  font-size: 1rem;
}
.footer__column-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}
.footer__column--tools .footer__column-title {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(20, 184, 166, 0.4);
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 0.65rem;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__column--tools .footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.75rem;
}
.footer__link {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}
.footer__link:hover {
  color: #2dd4bf;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copy {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.75rem;
}
.footer__legal-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: #2dd4bf;
}

.stats,
.links__list,
.links__tg-btn,
.advantages__cards-container,
.exchange__cards-container,
.exchange__brokers,
.links__container {
  display: none;
}
.sponsor-btn:before {
  content: 'Купить';
}
@media only screen and (min-width: 1200px) {
  .header__logo-container {
    display: flex;
    gap: 10px;
    align-items: center;
    -webkit-padding-start: 7px;
    padding-inline-start: 7px;
  }
  .header__logo {
    display: block;
    width: 54px;
    height: 54px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .header__burger-btn {
    display: none;
  }
  .summary {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .summary img {
    height: 8px;
  }
  .modal {
    display: none;
  }
  .links__container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }
  .links__list {
    display: flex;
    align-items: baseline;
    gap: 24px;
  }
  .links__list-item {
    font-weight: 700;
    cursor: pointer;
    align-content: space-evenly;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
  }
  .links__list-item:hover:not(.insummary) {
    color: var(--primary-200);
    border-bottom-color: var(--primary-200);
  }
  .links__list-item:not(.insummary) {
    height: 64px;
  }
  .links__list-item.insummary {
    white-space: nowrap;
  }

  .links__list--inner {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 105%;
    z-index: 999;
    background: var(--binance-50);
    padding: 0 16px;
    border-radius: 8px;
    transition: transform 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    transform-origin: top;
    color: var(--surface-200);
  }

  .links__list--inner .links__list-item {
    padding: 6px 0;
  }

  .links__list--inner.show {
    max-height: 300px;
    padding: 16px;
    transform: translateY(0);
  }

  .links__list-item .summary {
    cursor: pointer;
    position: relative;
    gap: 4px;
  }

  .links__list-item img {
    transition: transform 0.3s ease;
    transform-origin: center;
  }

  .links__list-item .summary img.rotate {
    transform: rotate(180deg);
  }
  .links__tg-btn {
    display: block;
    padding-top: 16px;
  }
  .modal__tg-btn {
    display: none;
  }

  /* hero */
  .hero .container {
    height: 640px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .hero__img-container {
    width: 360px;
    height: 340px;
    transform: translateX(-80px);
  }
  .hero__heading-container {
    width: 540px;
    margin-top: -38px;
    text-align: left;
  }
  .hero__heading {
    font-size: 60px;
    line-height: 78px;
    padding-bottom: 16px;
  }
  .hero__subheading {
    font-weight: 400;
    font-size: 34px;
    line-height: 48px;
  }

  /* advantages */
  .advantages {
    padding-bottom: 64px;
  }
  .advantages__carousel-container {
    display: none;
  }
  .advantages__desc {
    max-width: 100%;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .advantages__desc-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  .advantages__desc-desc {
    font-size: 1rem;
    max-width: 42rem;
  }
  .advantages__cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-inline: auto;
  }
  .advantages__card {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid rgba(20, 184, 166, 0.55);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -2px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  .advantages__card:hover {
    border-color: rgba(20, 184, 166, 0.3);
    border-left-color: rgba(20, 184, 166, 0.95);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.08), 0 4px 6px -2px rgba(20, 184, 166, 0.05), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
  }
  .advantages__card-img--container {
    width: 64px;
    min-width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.18) 0%, rgba(20, 184, 166, 0.06) 100%);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-sizing: border-box;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  .advantages__card:hover .advantages__card-img--container {
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.25) 0%, rgba(20, 184, 166, 0.1) 100%);
    box-shadow: 0 0 28px rgba(20, 184, 166, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
  }
  .advantages__card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.3));
  }
  .advantages__card:hover .advantages__card-img {
    filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.45));
  }
  .advantages__card-text--container {
    text-align: left;
    width: 60%;
  }
  .advantages__card-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--surface-200);
  }
  .advantages__card-desc {
    color: var(--surface-400);
    line-height: 1.6;
    margin: 0;
  }
  /* Последняя карточка на всю ширину + варианты оформления */
  .advantages__cards-container .advantages__card:last-child {
    grid-column: 1 / -1;
    padding: 40px 48px;
  }
  .advantages__cards-container .advantages__card--last-default .advantages__card-text--container {
    max-width: 720px;
  }
  /* Баннер: центрирование иконки и текста */
  .advantages__cards-container .advantages__card--last-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.08) 0%, rgba(18, 18, 20, 0.95) 100%);
    border-left-color: transparent;
  }
  .advantages__cards-container .advantages__card--last-banner .advantages__card-img--container {
    margin-bottom: 1rem;
  }
  .advantages__cards-container .advantages__card--last-banner .advantages__card-text--container {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }
  /* Горизонтально: иконка слева крупнее */
  .advantages__cards-container .advantages__card--last-horizontal {
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
  }
  .advantages__cards-container .advantages__card--last-horizontal .advantages__card-img--container {
    width: 80px;
    min-width: 80px;
    height: 80px;
    padding: 18px;
  }
  .advantages__cards-container .advantages__card--last-horizontal .advantages__card-text--container {
    width: auto;
    max-width: 720px;
  }
  /* CTA-полоса: верхняя линия, компактно в одну линию */
  .advantages__cards-container .advantages__card--last-cta {
    padding: 28px 48px;
    border-left-width: 0;
    border-top: 3px solid rgba(20, 184, 166, 0.6);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .advantages__cards-container .advantages__card--last-cta .advantages__card-text--container {
    width: auto;
    max-width: 640px;
  }
  .advantages__cards-container .advantages__card--last-cta .advantages__card-title {
    margin-bottom: 0.25rem;
  }
  /* Градиентная полоса слева */
  .advantages__cards-container .advantages__card--last-gradient {
    position: relative;
    padding-left: 56px;
  }
  .advantages__cards-container .advantages__card--last-gradient::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 6px 0 0 6px;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.9) 0%, rgba(20, 184, 166, 0.2) 100%);
  }
  .advantages__cards-container .advantages__card--last-gradient {
    border-left-color: transparent;
  }
  .advantages__cards-container .advantages__card--last-gradient .advantages__card-text--container {
    max-width: 720px;
  }
  /* Без скруглений по бокам, контент по центру */
  .advantages__cards-container .advantages__card--last-fullwidth {
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
  .advantages__cards-container .advantages__card--last-fullwidth .advantages__card-text--container {
    width: auto;
    max-width: 600px;
    text-align: left;
  }
  /* Разделённая: вертикальная линия по центру, иконка слева, текст справа */
  .advantages__cards-container .advantages__card--last-split {
    flex-direction: row;
    justify-content: stretch;
    gap: 0;
    border-left-color: transparent;
  }
  .advantages__cards-container .advantages__card--last-split .advantages__card-img--container {
    margin: 0;
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
  }
  .advantages__cards-container .advantages__card--last-split .advantages__card-text--container {
    width: auto;
    flex: 1;
    max-width: none;
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  /* Подсветка: лёгкий бирюзовый оттенок фона */
  .advantages__cards-container .advantages__card--last-highlight {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(18, 18, 20, 0.98) 50%);
    border-left-color: rgba(20, 184, 166, 0.5);
  }
  .advantages__cards-container .advantages__card--last-highlight .advantages__card-text--container {
    max-width: 720px;
  }
  /* Минимализм: только нижняя граница, компактно */
  .advantages__cards-container .advantages__card--last-minimal {
    padding: 24px 48px;
    border-left-width: 0;
    border-top: none;
    border-bottom: 2px solid rgba(20, 184, 166, 0.4);
    background: rgba(18, 18, 20, 0.6);
    box-shadow: none;
  }
  .advantages__cards-container .advantages__card--last-minimal:hover {
    border-bottom-color: rgba(20, 184, 166, 0.7);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.08);
  }
  .advantages__cards-container .advantages__card--last-minimal .advantages__card-text--container {
    max-width: 720px;
  }
  /* Свечение по контуру */
  .advantages__cards-container .advantages__card--last-glow {
    border-left-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  }
  .advantages__cards-container .advantages__card--last-glow:hover {
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.25), 0 10px 15px -3px rgba(20, 184, 166, 0.08);
  }
  .advantages__cards-container .advantages__card--last-glow .advantages__card-text--container {
    max-width: 720px;
  }
  /* Контур: только рамка, почти без заливки */
  .advantages__cards-container .advantages__card--last-outline {
    background: rgba(18, 18, 20, 0.4);
    border: 2px solid rgba(20, 184, 166, 0.4);
    border-left-width: 2px;
    box-shadow: none;
  }
  .advantages__cards-container .advantages__card--last-outline:hover {
    background: rgba(20, 184, 166, 0.06);
    border-color: rgba(20, 184, 166, 0.6);
  }
  .advantages__cards-container .advantages__card--last-outline .advantages__card-text--container {
    max-width: 720px;
  }
  /* Пунктирная рамка */
  .advantages__cards-container .advantages__card--last-dashed {
    border: 2px dashed rgba(20, 184, 166, 0.45);
    border-left-width: 2px;
    background: rgba(18, 18, 20, 0.7);
  }
  .advantages__cards-container .advantages__card--last-dashed:hover {
    border-color: rgba(20, 184, 166, 0.65);
  }
  .advantages__cards-container .advantages__card--last-dashed .advantages__card-text--container {
    max-width: 720px;
  }
  /* Акцент в углу: градиент/пятно в правом верхнем углу */
  .advantages__cards-container .advantages__card--last-corner {
    position: relative;
    overflow: hidden;
    border-left-color: transparent;
  }
  .advantages__cards-container .advantages__card--last-corner::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .advantages__cards-container .advantages__card--last-corner .advantages__card-text--container {
    max-width: 720px;
    position: relative;
    z-index: 1;
  }
  .advantages__cards-container .advantages__card--last-corner .advantages__card-img--container {
    position: relative;
    z-index: 1;
  }
  /* Двойная рамка */
  .advantages__cards-container .advantages__card--last-double {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 2px rgba(20, 184, 166, 0.35);
  }
  .advantages__cards-container .advantages__card--last-double:hover {
    box-shadow: inset 0 0 0 2px rgba(20, 184, 166, 0.5), 0 4px 20px rgba(20, 184, 166, 0.1);
  }
  .advantages__cards-container .advantages__card--last-double .advantages__card-text--container {
    max-width: 720px;
  }

  /* Hedging block — без декоративного фона (фон перенесён в exchange) */
  .hedging {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
  }
  .hedging__inner {
    position: relative;
    z-index: 1;
  }
  .hedging__header {
    margin-bottom: 3rem;
    text-align: center;
  }
  .hedging__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
  }
  .hedging__desc {
    margin: 0 auto;
    font-size: 1rem;
    color: rgba(156, 163, 175, 1);
    max-width: 42rem;
  }
  .hedging__card {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: linear-gradient(145deg, rgba(18, 18, 20, 0.98) 0%, rgba(10, 10, 11, 0.99) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(20, 184, 166, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
  }
  .hedging__card:hover {
    border-color: rgba(20, 184, 166, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(20, 184, 166, 0.08);
  }
  .hedging__card-icon-wrap {
    width: 176px;
    min-width: 176px;
    height: 176px;
    flex-shrink: 0;
    border-radius: 28px;
    background: linear-gradient(155deg, rgba(20, 184, 166, 0.28) 0%, rgba(20, 184, 166, 0.08) 50%, rgba(6, 95, 70, 0.12) 100%);
    box-shadow:
      0 0 0 1px rgba(20, 184, 166, 0.2),
      0 0 32px rgba(20, 184, 166, 0.2),
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
  }
  .hedging__card-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25), transparent 50%, rgba(20, 184, 166, 0.1));
    opacity: 0.6;
    z-index: -1;
    filter: blur(12px);
    pointer-events: none;
  }
  .hedging__card:hover .hedging__card-icon-wrap {
    background: linear-gradient(155deg, rgba(20, 184, 166, 0.35) 0%, rgba(20, 184, 166, 0.12) 50%, rgba(6, 95, 70, 0.18) 100%);
    box-shadow:
      0 0 0 1px rgba(20, 184, 166, 0.35),
      0 0 48px rgba(20, 184, 166, 0.3),
      0 12px 40px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.06);
  }
  .hedging__card-icon {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.4)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  }
  .hedging__card:hover .hedging__card-icon {
    filter: drop-shadow(0 0 14px rgba(20, 184, 166, 0.55)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
  }
  .hedging__card-content {
    flex: 1;
    min-width: 0;
  }
  .hedging__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.4;
  }
  .hedging__card-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.75rem;
  }
  .hedging__card-item {
    padding: 0.75rem 0.75rem 0.75rem 0;
    margin: 0;
    border-radius: 10px;
    transition: background 0.2s ease;
  }
  .hedging__card-item:last-child {
    margin-bottom: 0;
  }
  .hedging__card-item:hover {
    background: rgba(20, 184, 166, 0.06);
  }
  .hedging__card--wide-glow .hedging__card-item:hover {
    background: transparent;
  }
  .hedging__card--wide-glow .hedging__card-icon-wrap {
    box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.12), 0 0 16px rgba(20, 184, 166, 0.08), 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .hedging__card--wide-glow .hedging__card-icon-wrap::before {
    opacity: 0.25;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), transparent 50%);
  }
  .hedging__card--wide-glow:hover .hedging__card-icon-wrap {
    box-shadow: 0 0 0 1px rgba(20, 184, 166, 0.18), 0 0 20px rgba(20, 184, 166, 0.1), 0 6px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .hedging__card--wide-glow .hedging__card-icon {
    filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.2)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
  .hedging__card--wide-glow:hover .hedging__card-icon {
    filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.28)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
  }
  .hedging__card-item-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 0.25rem;
  }
  .hedging__card-item-check {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.2);
    color: #14b8a6;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hedging__card-item-desc {
    margin: 0 0 0 1.75rem;
    font-size: 0.8125rem;
    color: rgba(161, 161, 170, 1);
    line-height: 1.5;
  }
  .hedging__card-item-desc:last-child {
    margin-bottom: 0;
  }
  .hedging__card-list li:last-child .hedging__card-item-desc {
    margin-bottom: 0;
  }

  /* Варианты карточки хеджирования */
  .hedging__card--stacked {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hedging__card--stacked .hedging__card-icon-wrap {
    margin-bottom: 0.5rem;
  }
  .hedging__card--stacked .hedging__card-list {
    width: 100%;
    max-width: 100%;
  }
  .hedging__card--stacked .hedging__card-item-head {
    justify-content: center;
  }
  .hedging__card--stacked .hedging__card-item-desc {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .hedging__card--reversed {
    flex-direction: row-reverse;
  }
  .hedging__card--reversed .hedging__card-content {
    text-align: right;
  }
  .hedging__card--reversed .hedging__card-item-head {
    flex-direction: row-reverse;
  }
  .hedging__card--reversed .hedging__card-item-desc {
    margin-left: 0;
    margin-right: 1.75rem;
  }
  .hedging__card--minimal .hedging__card-icon-wrap {
    width: 140px;
    min-width: 140px;
    height: 140px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 16px rgba(20, 184, 166, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  .hedging__card--minimal .hedging__card-icon-wrap::before {
    display: none;
  }
  .hedging__card--minimal {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
  }
  /* Все варианты wide-* — крупная иконка 220px */
  .hedging__card--wide .hedging__card-icon-wrap,
  .hedging__card--wide-glow .hedging__card-icon-wrap,
  .hedging__card--wide-accent .hedging__card-icon-wrap,
  .hedging__card--wide-panel .hedging__card-icon-wrap,
  .hedging__card--wide-minimal .hedging__card-icon-wrap {
    width: 220px;
    min-width: 220px;
    height: 220px;
    border-radius: 32px;
    padding: 36px;
  }
  .hedging__card--wide .hedging__card-icon-wrap::before,
  .hedging__card--wide-glow .hedging__card-icon-wrap::before,
  .hedging__card--wide-accent .hedging__card-icon-wrap::before,
  .hedging__card--wide-panel .hedging__card-icon-wrap::before,
  .hedging__card--wide-minimal .hedging__card-icon-wrap::before {
    border-radius: 34px;
    inset: -3px;
  }
  /* Широкая иконка + свечение по контуру карточки */
  .hedging__card--wide-glow {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(20, 184, 166, 0.04), 0 0 48px rgba(20, 184, 166, 0.12);
  }
  .hedging__card--wide-glow:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(20, 184, 166, 0.12), 0 0 64px rgba(20, 184, 166, 0.2);
  }
  /* Широкая иконка + бирюзовая полоса слева */
  .hedging__card--wide-accent {
    border-left: 4px solid rgba(20, 184, 166, 0.6);
    padding-left: calc(2rem - 4px);
  }
  .hedging__card--wide-accent:hover {
    border-left-color: rgba(20, 184, 166, 0.85);
  }
  /* Широкая иконка в отдельной панели слева */
  .hedging__card--wide-panel {
    padding: 0;
    overflow: hidden;
  }
  .hedging__card--wide-panel .hedging__card-icon-wrap {
    align-self: stretch;
    height: auto;
    min-height: 220px;
    border-radius: 16px 0 0 16px;
    margin: 0;
    background: linear-gradient(165deg, rgba(20, 184, 166, 0.2) 0%, rgba(6, 95, 70, 0.15) 100%);
    box-shadow: inset 0 0 60px rgba(20, 184, 166, 0.08);
  }
  .hedging__card--wide-panel .hedging__card-icon-wrap::before {
    display: none;
  }
  .hedging__card--wide-panel .hedging__card-content {
    padding: 1.75rem 2rem;
  }
  /* Широкая иконка, карточка минималистично */
  .hedging__card--wide-minimal {
    background: rgba(12, 12, 14, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }
  .hedging__card--wide-minimal:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .hedging__card--wide-minimal .hedging__card-icon-wrap::before {
    opacity: 0.35;
  }

  /* stats */
  .stats {
    display: block;
    padding-block: 99px;
    background: var(--binance-50);
  }
  .stats__container {
    width: 84%;
    margin-inline: auto;
  }
  .stats__heading-container {
    text-align: center;
    margin-inline: auto;
  }
  .stats__title {
    font-weight: 700;
    font-size: 34px;
    line-height: 48px;
  }
  .stats__desc {
    padding-block: 21px;
  }
  .stats__table {
    width: 100%;
    background-color: var(--success-400);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  th,
  td {
    text-align: left;
    padding: 6px 16px;
    color: var(--surface-100);
  }

  th {
    font-weight: bold;
  }

  tbody tr:hover {
    background-color: #007f5f;
    transition: all 0.3s ease;
  }
  tbody tr:hover td:first-child {
    border-radius: 8px 0 0 8px;
  }
  tbody tr:hover td:last-child {
    border-radius: 0 8px 8px 0;
  }
  .exchange {
    padding: 6rem 0;
  }
  .exchange__carousel-container {
    display: none;
  }
  .exchange__cards-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-inline: auto;
    width: 100%;
  }
  .exchange__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 23px 20px 20px;
    min-width: 0;
    flex: 1 1 0;
    min-height: 142px;
    box-sizing: border-box;
    background: rgba(8, 8, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
  }
  .exchange__card:hover {
    background: rgba(20, 184, 166, 0.08);
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
  }
  .exchange__card-img {
    padding: 0;
    height: auto;
    max-height: 80px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0;
  }
  .exchange__card-desc {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(209, 213, 219, 0.95);
    margin: 0;
    padding-block: 20px 0;
    text-align: center;
  }
  .exchange__card:hover .exchange__card-desc {
    color: rgba(255, 255, 255, 0.95);
  }
  .exchange__brokers {
    display: block;
    margin-top: 2.5rem;
  }
  .exchange__brokers .exchange__cards-container .exchange__card {
    flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
  }
  .exchange__brokers .exchange__cards-container {
    justify-content: center;
  }
  .exchange__brokers-title {
    padding-block: 38px;
    margin-bottom: 0;
  }
  /* pricing */
  .pricing {
    padding-top: 45px;
    padding-bottom: 99px;
  }
  .pricing__cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin-inline: auto;
  }
  .pricing__carousel-container {
    display: none;
  }
  .pricing__card {
    margin: 0;
    padding: 2rem;
  }
  .pricing__card--featured {
    transform: scale(1.05);
    padding-top: 2.5rem;
  }
  .sponsor-btn:before {
    content: '12 месяцев';
  }
}

.login-page .hero .container {
  display: flex;
  justify-content: center !important;
}

.container-login {
  padding: 38px 32px;
  width: 100%;
  max-width: 380px;
  background: var(--binance-50);
  border-radius: 8px;
  line-height: 1.5;
  text-align: center;
}

.container-login__title {
  margin-bottom: 20px;
  font-size: 34px;
}

.container-login__choice-text {
  margin-bottom: 32px;
  font-size: 20px;
}
.container-login .hr {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 12px;
}
.container-login .hr:before,
.container-login .hr:after {
  content: '';
  flex: 1 1 auto;
  display: block;
  height: 1px;
}
.container-login .hr:before {
  margin-right: 6px;
  background: linear-gradient(to right, var(--binance-50), #5C5C5C);
}
.container-login .hr:after {
  margin-left: 6px;
  background: linear-gradient(to left, var(--binance-50), #5C5C5C);
}
.container-login__various {
  margin-bottom: 32px;
}
.container-login__various .bot-method {
  font-size: 12px;
}
.container-login__various .bot-method a {
  font-weight: 700;
  color: var(--primary-200);
}
.container-login__description {
  font-size: 12px;
  color: #4F575E;
}

@media only screen and (max-width: 940px) {
  .container-login {
    padding: 18px 16px;
  }
  .container-login__title {
    margin-bottom: 14px;
    font-size: 28px;
  }
  .login__choice-text {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

/* Плавающая кнопка «Наверх» */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: #14b8a6;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #0d9488;
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
}
.back-to-top:focus {
  outline: 2px solid rgba(20, 184, 166, 0.6);
  outline-offset: 2px;
}
.back-to-top i {
  font-size: 1rem;
}

/* Плавающая иконка «Конкурс Tiger.com» справа */
.float-contest {
  position: fixed;
  right: 1.5rem;
  bottom: 8.25rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.float-contest:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  transform: scale(1.05);
  color: #fff;
}
.float-contest:focus {
  outline: 2px solid rgba(245, 158, 11, 0.6);
  outline-offset: 2px;
  color: #fff;
}
.float-contest i {
  font-size: 1.15rem;
}
.float-contest .float-tooltip,
.float-school .float-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 12px;
  padding: 10px 14px;
  max-width: 220px;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: 10px;
  white-space: normal;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.float-contest .float-tooltip::after,
.float-school .float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #0f766e;
  border-radius: 0 2px 0 0;
  box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.15);
}
.float-contest:hover .float-tooltip,
.float-school:hover .float-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
.float-contest:hover .float-tooltip::after,
.float-school:hover .float-tooltip::after {
  visibility: visible;
  opacity: 1;
}

/* Плавающая иконка «Школа ITB» справа */
.float-school {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.float-school:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  transform: scale(1.05);
  color: #fff;
}
.float-school:focus {
  outline: 2px solid rgba(99, 102, 241, 0.6);
  outline-offset: 2px;
  color: #fff;
}
.float-school i {
  font-size: 1.15rem;
}
/* Пока открыто мобильное меню, плавающие кнопки прячем: они выше него по z-index
   (45 против 40) и перехватывали тапы по языкам и кнопке «Войти» внизу панели. */
body.menu-open .float-contest,
body.menu-open .float-school,
body.menu-open .back-to-top {
  display: none;
}

/* Пока меню открыто, страница под ним не должна прокручиваться.
   Класс .no-scroll в этом файле был, но его никто не вешал. */
body.menu-open {
  overflow: hidden;
}

/* ─── Страница 404 ──────────────────────────────────────────────────────────
   Шапка position:fixed высотой --header-height, поэтому отступ сверху задаём
   здесь: у этой страницы нет своего <style>, как у главной.
   Палитра — токены из vars.css плюс брендовый teal, тот же, что у skip-link
   в layout.php и у кнопок hero. */
.e404 {
  --e404-accent: #14b8a6;
  --e404-accent-dark: #0d9488;
  /* Якорь для .e404__glow: без него свечение цепляется за окно, а не за этот
     блок, и растягивается на всю высоту экрана, заезжая под шапку. */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px 64px;
  min-height: 70vh;
}
/* Отступ под фиксированную шапку задан отдельным правилом с той же
   специфичностью, что и `body.has-site-header .main` в header-menu.css:
   простого `.e404` тому правилу не хватало, и заявленные 48px не применялись.
   main.css подключается после header-menu.css, поэтому при равной
   специфичности выигрывает это. */
body.has-site-header .e404 {
  padding-top: calc(var(--header-height, 80px) + 48px);
}
/* Подложка: то же радиальное свечение, что в hero, только тише. */
.e404__glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.e404__glow::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 120vw);
  height: min(560px, 70vh);
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.16), rgba(20, 184, 166, 0) 70%);
}
.e404__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
}
.e404__code {
  margin: 0;
  font-size: clamp(88px, 22vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--e404-accent);
  text-shadow: 0 0 40px rgba(20, 184, 166, 0.35);
}
.e404__title {
  margin: 16px 0 0;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--surface-200);
}
.e404__text {
  margin: 12px auto 0;
  max-width: 30em;
  font-size: 16px;
  line-height: 1.6;
  color: var(--surface-400);
}
.e404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
/* Форма кнопок повторяет .hero__btn с главной: 12/24, радиус 8, 14/20 bold. */
.e404__btn {
  font-family: var(--main-font);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.e404__btn--primary {
  background: var(--e404-accent-dark);
  color: var(--surface-50);
}
.e404__btn--primary:hover {
  background: var(--e404-accent);
}
.e404__btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--surface-200);
}
.e404__btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}
.e404__btn:focus-visible {
  outline: 2px solid var(--e404-accent);
  outline-offset: 2px;
}
.e404__links {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.e404__links-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 400;
  /* Был --surface-600: 4.19:1 на фоне страницы, ниже порога AA (4.5:1),
     а в зоне свечения ещё хуже. --surface-400 даёт 8.7:1. */
  color: var(--surface-400);
}
.e404__links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.e404__link {
  font-size: 14px;
  color: var(--surface-300);
  text-decoration: none;
  transition: color 0.2s ease;
}
.e404__link:hover {
  color: var(--e404-accent);
}
.e404__link:focus-visible {
  outline: 2px solid var(--e404-accent);
  outline-offset: 2px;
  border-radius: 2px;
}
@media (max-width: 480px) {
  body.has-site-header .e404 {
    padding-top: calc(var(--header-height, 80px) + 28px);
  }
  .e404 {
    min-height: 60vh;
  }
  .e404__actions .e404__btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}
