:root {
  --font-sans: "Archivo", sans-serif;
}

/* HEADER */
.header {
  background-color: var(--secondStyleColor);
  color: var(--textColor2);
}
.headerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.nav {
}
.ham {
  display: none;
}

.nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-left: 0;
  margin: 0;
}

.nav li {
  list-style: none;
}

.nav a {
  color: var(--textColor2);
  text-decoration: none;
  transition: 0.2s all linear;
  -webkit-transition: 0.2s all linear;
  -moz-transition: 0.2s all linear;
  -ms-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  position: relative;
  font-weight: 600;
}

.nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background-color: var(--textColor2);
  transition: 0.2s all linear;
}

.nav a:hover::after {
  width: 100%;
}

.stopScroll {
  overflow: hidden;
}
.logo {
  position: relative;
  z-index: 1000;
  font-weight: 800;
  font-size: 24px;
  color: var(--textColor2);
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .headerWrapper {
    padding: 0 20px;
  }
  .nav {
    position: fixed;
    inset: 0;
    background-color: var(--bodyBG);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .header:has(.nav.active) .logo {
    color: var(--textColor1);
  }
  .header:has(.nav.active) .nav a {
    color: var(--textColor1);
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    z-index: 1000;
  }
  .hamRotate.active {
    transform: rotate(45deg);
  }
  .hamRotate180.active {
    transform: rotate(180deg);
  }
  .line {
    fill: none;
    transition:
      stroke-dasharray 400ms,
      stroke-dashoffset 400ms;
    stroke: var(--textColor2);
    stroke-width: 5.5;
    stroke-linecap: round;
  }
  .header:has(.nav.active) .line {
    stroke: var(--textColor1);
  }
  .ham7 .top {
    stroke-dasharray: 40 82;
  }
  .ham7 .middle {
    stroke-dasharray: 40 111;
  }
  .ham7 .bottom {
    stroke-dasharray: 40 161;
  }
  .ham7.active .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
  }
  .ham7.active .middle {
    stroke-dashoffset: 23px;
  }
  .ham7.active .bottom {
    stroke-dashoffset: -83px;
  }
  .ham8 .top {
    stroke-dasharray: 40 160;
  }
}

/* ----hero---- */
.home-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.body-back {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: 50% 20%;
  filter: blur(5px);
  opacity: 0.1;
}

.heroWrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  /* padding-top: 20px; */
  /* padding-bottom: 20px; */
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  h1 {
    text-transform: uppercase;
    text-align: right;
  }
  p {
    max-width: 650px;
    text-align: right;
  }
  a {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    width: fit-content;
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 900;
  }
}
/* обёртка свайпера */
.svine-slider {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--borderRadius);
  margin: 0 !important;
}

/* сами слайды */
.svine-slider__slide {
  display: flex;
  justify-content: center;
  cursor: grab;
  border-radius: var(--borderRadius);
  &&:active {
    cursor: grabbing;
  }
}

/* карточка */
.svine-slide-card {
  border-radius: var(--borderRadius);
  max-width: 720px;
  width: 100%;
  box-sizing: border-box;
}

.svine-slider__pagination {
  position: absolute;
  margin-top: 12px;
  bottom: 40px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.svine-slider__pagination .swiper-pagination-bullet {
  width: 50px;
  height: 6px;
  border-radius: 999px;
  background: var(--bodyBG);
  opacity: 1;
  margin: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

/* активная полоска */
.svine-slider__pagination .swiper-pagination-bullet-active {
  background: var(--secondStyleColor);
  transform: scaleX(1.15);
}

/* блок под картинку */
.svine-slide-card__image {
  border-radius: var(--borderRadius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

/* картинка внутри — тянем и обрезаем аккуратно */
.svine-slide-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.svine-slide-card__seg {
  height: 4px;
  border-radius: 999px;
  flex: 1 1 0;
  max-width: 120px;
  background: #486955;
}

.svine-slide-card__seg--2 {
  background: #7fb28a;
}
.svine-slide-card__seg--3 {
  background: #e79ab8;
}

/* адаптив */
@media (max-width: 768px) {
  .svine-slider {
    width: 90%;
    overflow: hidden;
  }
  .home-section {
    overflow: hidden;
    height: fit-content;
  }
  .svine-slide-card {
    padding: 16px;
    border-radius: 18px;
  }

  .svine-slide-card__progress {
    gap: 8px;
  }

  .svine-slide-card__seg {
    max-width: 80px;
  }
  .heroWrapper {
    flex-direction: column;
  }
  .hero-left {
    margin-top: 20px;
    align-items: center;
    h1 {
      text-align: center;
    }
    p {
      text-align: center;
    }
  }
  .home-section {
    height: fit-content;
  }
  .svine-slider__pagination .swiper-pagination-bullet {
    width: 30px;
  }
}

:root {
  --scrollbarBg: rgba(255, 255, 255, 0.1);
  --itemBgColor: transparent;
}
.swiper {
  padding-bottom: 10px !important;
}

.toc .swiper-slide {
  width: fit-content;
}

.toc h2 {
  margin: 0 !important;
  text-align: center;
}

.toc {
  background-color: transparent;
}

.toc a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--textColor1);
  transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  border: 1px solid var(--secondStyleColor);
  padding: 10px 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--itemBgColor);
}

.toc a:active,
.toc a:hover,
.toc a:focus {
  color: #fff;
  background-color: rgba(17, 17, 17, 0.2);
}

.toc .swiper-wrapper {
  padding-top: 20px;
  padding-bottom: 24px;
}

.toc-swiper .swiper-scrollbar {
  background: var(--scrollbarBg);
  height: 4px;
  border-radius: 2px;
}

.toc-swiper .swiper-scrollbar-drag {
  background: var(--secondStyleColor);
  border-radius: 2px;
  width: 20%;
}

.toc.wrapper {
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.toc-swiper {
  max-width: calc(var(--maxWidthContainer) - 40px);
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

@media screen and (max-width: 750px) {
  .toc.wrapper {
    margin-left: auto;
  }
  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: 90% !important;
    margin: 0 auto;
  }
}

.aboutWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}
.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-left a {
  padding: 15px 20px;
  background-color: var(--secondStyleColor);
  border-radius: var(--borderRadius);
  width: fit-content;
  color: var(--textColor2);
  font-weight: 900;
  text-transform: uppercase;
}
.about-right {
  display: flex;
  align-items: center;
  gap: 20px;
  .a_img {
    height: 400px;
    object-position: top;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: top;
    }
  }
}
@media (max-width: 800px) {
  .aboutWrapper {
    display: flex;
    flex-direction: column;
  }
  .about-right {
    display: flex;
    flex-direction: column;
  }
  .about-right {
    width: 100%;
  }
  .a_img {
    width: 100%;
  }
}

/*  */
.qx-plans {
  color: var(--textColor1);
}

.qx-shell {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.qx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.qx-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--secondStyleColor);
  margin-bottom: 8px;
}

.qx-sub {
  max-width: 420px;
  text-wrap: balance;
  opacity: 0.8;
}

.qx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.qx-card {
  position: relative;
  z-index: 1;
  border-radius: var(--borderRadius);
  padding: 26px 26px 28px;
  border: 1px solid var(--secondStyleColor);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.qx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.qx-card--core {
  background: var(--secondStyleColor);
  color: var(--textColor2);
  border-color: transparent;
  transform: translateY(-10px);
}

.qx-card--core .qx-btn {
  border-color: var(--textColor2);
  color: var(--textColor2);
}

.qx-flag {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--textColor2);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.qx-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.qx-price {
  font-size: 30px;
  font-weight: 700;
}

.qx-note {
  font-size: 13px;
  opacity: 0.85;
}

.qx-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.qx-list li {
  padding-left: 18px;
  position: relative;
}

.qx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
}

.qx-btn {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--secondStyleColor);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: inherit;
  transition: transform 0.2s ease;
}

.qx-btn--dark {
  background: rgba(0, 0, 0, 0.25);
}

.qx-btn:hover {
  transform: translateY(-2px);
}

.qx-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.qx-link {
  padding: 8px 18px;
  border-radius: var(--borderRadius);
  border: 1px solid var(--secondStyleColor);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--textColor1);
  transition: transform 0.2s ease;
}

.qx-link:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .qx-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .qx-card--core {
    transform: none;
  }
}

.featuresWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feaItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  img {
    height: 500px;
    width: 400px;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: top;
  }
}
.feaWrap {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .feaWrap {
    margin-bottom: 20px;
  }
  .featuresWrap {
    flex-direction: column;
    gap: 20px;
  }
  .feaItem {
    gap: 20px;
    img {
      width: 100%;
    }
  }
}

.expertReview a {
  color: var(--secondStyleColor);
}
#expertreview h2 {
  text-align: center;
}
.expertReview p {
  border-left: 5px solid var(--secondStyleColor);
  padding-left: 20px;
  margin-bottom: 30px;
  span {
    font-style: italic;
    opacity: 0.6;
  }
}

.inspx9v2-sec {
  padding: 72px 0 64px;
  color: var(--textColor1);
  overflow: hidden;
}

/* -------- header -------- */

.inspx9v2-head {
  text-align: center;
  margin-bottom: 34px;
}

.inspx9v2-title {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: 650;
  color: var(--textColor1);
}

.inspx9v2-dots {
  margin: 12px auto 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.inspx9v2-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--secondStyleColor);
}

.inspx9v2-sub {
  margin: 0 auto 18px;
  width: min(680px, 92%);
  font-size: 14px;
  line-height: 1.6;
  color: var(--textColor1);
}

/* -------- gallery wrapper -------- */

.inspx9v2-gallery {
  position: relative;
  padding: 10px 0 6px;
}

/* Swiper container */
.inspx9v2-swiper {
  width: 100%;
  overflow: visible; /* so side slides peek */
}

/* Make slides "card width" like the screenshot */
.inspx9v2-slide {
  width: 300px;
  height: 400px;
  display: flex;
  align-items: stretch;
}

/* card */
.inspx9v2-card {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--borderRadius);
  overflow: hidden;
}

/* image */
.inspx9v2-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transform: translateZ(0);
  filter: saturate(0.98) contrast(0.98);
  user-select: none;
}

/* subtle hover */
@media (hover: hover) {
  .inspx9v2-card {
    transition:
      transform 260ms ease,
      box-shadow 260ms ease;
  }
  .inspx9v2-slide:hover .inspx9v2-card {
    transform: translateY(-4px);
    box-shadow:
      0 22px 40px rgba(0, 0, 0, 0.44),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }
}

/* -------- side nav buttons (circle, like screenshot) -------- */

.inspx9v2-nav {
  position: absolute;
  top: 50%;
  transform: translateY(22px); /* slight lower like screenshot */
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    opacity 200ms ease;
  user-select: none;
}

.inspx9v2-nav span {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.inspx9v2-navPrev {
  left: 8px;
}
.inspx9v2-navNext {
  right: 8px;
}

.inspx9v2-nav:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(22px) scale(1.03);
}

.inspx9v2-nav:active {
  transform: translateY(22px) scale(0.99);
}

.inspx9v2-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

/* if Swiper disables buttons */
.inspx9v2-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
/* --- staggered (up/down) layout like in screenshot --- */
.inspx9v2-gallery {
  --inspx9v2-stagger: 34px; /* сила "шахматки" */
}

/* вверх/вниз для слайдов */
.inspx9v2-track .inspx9v2-slide:nth-child(odd) {
  transform: translateY(calc(var(--inspx9v2-stagger) * -1));
}

.inspx9v2-track .inspx9v2-slide:nth-child(even) {
  transform: translateY(var(--inspx9v2-stagger));
}

/* чтобы влезало по высоте и не резалось */
.inspx9v2-gallery {
  padding-top: 44px;
  padding-bottom: 44px;
}

/* на мобилке обычно шахматку лучше выключить */
@media (max-width: 720px) {
  .inspx9v2-gallery {
    --inspx9v2-stagger: 0px;
  }
}

@media (max-width: 720px) {
  .inspx9v2-sec {
    padding: 56px 0 52px;
  }
  .inspx9v2-shell {
    width: min(1240px, calc(100% - 28px));
  }
  .inspx9v2-head {
    margin-bottom: 24px;
  }
  .inspx9v2-nav {
    display: none;
  } /* on mobile user swipes */
  .inspx9v2-slide {
    width: min(78vw, 320px);
    height: min(88vw, 380px);
  }
}

.stats--dynamic-head {
  margin: 0 auto 45px auto;
}
.stats--dynamic {
  background: var(--bodyBG);
  h2,
  h2 + p {
    text-align: center;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.stat-card--glow {
  backdrop-filter: blur(20px);
  border: 1px solid var(--secondStyleColor);

  border-radius: var(--borderRadius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.stat-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stat-card__header h3 {
  color: var(--textColor1);
  margin: 0;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondStyleColor);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--secondStyleColor);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.stat-period {
  color: var(--secondStyleColor);
  font-size: 0.9rem;
}

.stat-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--secondStyleColor);
}

.stat-label {
  color: var(--textColor1);
  font-size: 0.9rem;
}

.stat-value {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--secondStyleColor);
}

.stat-suffix {
  color: var(--secondStyleColor);
  font-size: 0.9rem;
}

.players-list,
.wins-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.player-item,
.win-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.player-item:hover,
.win-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.player-rank {
  width: 24px;
  height: 24px;
  background: var(--secondStyleColor);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.player-name {
  flex: 1;
  color: var(--text-primary);
}

.player-win {
  color: var(--secondStyleColor);
  font-weight: 700;
}

.win-multiplier {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--secondStyleColor);
}

.win-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.win-amount {
  color: var(--text-primary);
  font-weight: 700;
}

.win-time {
  color: var(--secondStyleColor);
  font-size: 0.8rem;
}

@media (max-width: 800px) {
  .stats-grid {
    display: flex;
    flex-direction: column;
    width: inherit;
  }
}

/* ===== ROADMAP SECTION v2 ===== */

.roadmapSection-v2 {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.roadmapWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */

.roadmapHeader {
  max-width: 760px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.roadmapEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 8px;
}

.roadmapTitle {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.roadmapSubtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Timeline */

.roadmapTimeline {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Один шаг */

.roadmapStep {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* Левая колонка — маркеры */

.roadmapMarker {
  position: relative;
  display: flex;
  justify-content: center;
}

.roadmapDot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--secondStyleColor);
  box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  margin-top: 6px;
  z-index: 2;
}

.roadmapDot-final {
  background: transparent;
  border: 2px solid var(--secondStyleColor);
  box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.18);
}

/* Вертикальная линия */

.roadmapLine {
  position: absolute;
  top: 20px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--secondStyleColor),
    rgba(2, 255, 57, 0.1)
  );
  z-index: 1;
}

/* Правая колонка — карточка шага */

.roadmapCard {
  border-radius: var(--borderRadius);
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  padding: 18px 20px 18px 20px;
  transition: 0.2s ease;
}

.roadmapCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-2px);
}

.roadmapCard-final {
  background: #272d27;
}

/* Тексты шага */

.roadmapPhase {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  margin-bottom: 6px;
  font-weight: 600;
}

.roadmapStepTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.roadmapStepText {
  font-size: 14px;
  line-height: 1.7;
  color: #dedede;
}

/* Адаптив */

@media (max-width: 700px) {
  .roadmapTitle {
    font-size: 28px;
  }

  .roadmapStep {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .roadmapCard {
    padding: 16px 16px 16px 16px;
  }
}

/* ===== HOW v4 (random class variant) ===== */

.howBlock_wk29 {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.howWrap_t91d {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

.howHead_p3q1 {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.howLabel_m4t2 {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.howMainTitle_jx7p {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}

.howDesc_d9z1 {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.howSteps_l1a0 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Tile */
.howTile_r0x4 {
  position: relative;
  text-align: center;
  border-radius: var(--borderRadius);
  padding: 26px 20px 24px;
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  transition: 0.2s ease;
  overflow: hidden;
}

.howTile_r0x4:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-4px);
}

.howTile_r0x4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
    transparent 55%
  );
  opacity: 0;
  transition: 0.25s ease;
}

.howTile_r0x4:hover::before {
  opacity: 1;
}

/* Badge */
.howNum_b7d2 {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--secondStyleColor);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--secondStyleColor);
}

/* Icon */
.howIcon_f2m9 {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(2, 255, 57, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.howIcon_f2m9 i {
  font-size: 22px;
  color: var(--secondStyleColor);
}

/* Titles */
.howTitle_g4s0 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.howText_u8e1 {
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
}

/* Responsive */
@media (max-width: 900px) {
  .howSteps_l1a0 {
    grid-template-columns: 1fr;
  }
}

[data-accordion-element-content] {
  overflow: hidden;
  transition: height 0.5s;
}

:root {
  --bgHead: var(--bodyBG);
  --bgHeadHover_active: var(--secondStyleColor);
  --bgText: rgba(255, 255, 255, 0.1);
}

.faq h2 {
  text-align: center;
}
.card-faq {
  width: 90%;
  margin: 50px auto;
  border-radius: 2px;
  background: transparent;
  margin-top: 40px;
}

.faq-article {
  position: relative;
  transition: all 0.3s;
  background-color: transparent;
  border-radius: 0 0 12px 12px;
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  -ms-border-radius: 0 0 12px 12px;
  -o-border-radius: 0 0 12px 12px;
  p {
    padding: 10px 20px;
  }
}

.faq-article.selected {
  transform: scale(1.1);
  z-index: 2;
  background: var(--bgText);
}

.faq-h3 {
  position: relative;
  background: var(--bgHead);
  padding: 20px 75px 20px 20px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  overflow: hidden;
  transition: background 0.3s;
  margin: 10px 0;
  cursor: pointer;
}

.faq-h3:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.selected .faq-h3 {
  cursor: pointer;
  background: var(--bgHeadHover_active);
  color: var(--bgHead);
  border: none;
}

.faq-h3:before,
.faq-h3:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  margin-right: 30px;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

.faq-h3:before {
  transform: rotate(0deg);
  animation: close-line-one-in 0.8s forwards;
}

.selected .faq-h3:before {
  animation: close-line-one-out 0.8s forwards;
  background: #000;
}

.faq-h3:after {
  transform: rotate(90deg);
  animation: close-line-two-in 0.8s forwards;
}

.selected .faq-h3:after {
  background: #000;
  animation: close-line-two-out 0.8s forwards;
}

.content {
  opacity: 0;
  transform: translateY(20px);
  transition: all ease-out 0.4s 0.1s;
}

.selected .content {
  transform: translateY(0);
  opacity: 1;
}

.faq-p {
  padding: 25px 30px 40px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

@keyframes close-line-one-out {
  0%,
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(50px);
  }
  76% {
    transform: translateX(50px) translateY(50px);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes close-line-one-in {
  0%,
  20% {
    transform: rotate(45deg);
  }
  60% {
    transform: translateX(50px) translateY(50px) rotate(45deg);
  }
  61% {
    transform: translateX(50px);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes close-line-two-out {
  0%,
  50% {
    transform: rotate(90deg);
  }
  75% {
    transform: translateY(-50px) rotate(90deg);
  }
  76% {
    transform: translateY(-50px) translateX(50px) rotate(90deg);
  }
  100% {
    transform: rotate(135deg);
  }
}

@keyframes close-line-two-in {
  0% {
    transform: rotate(135deg);
  }
  50% {
    transform: translateY(-50px) translateX(50px) rotate(135deg);
  }
  51% {
    transform: translateY(-50px) rotate(90deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 750px) {
  .card-faq {
    width: 90%;
  }
}

/* ===== FOOTER ===== */

.footer {
  background: #181818;
  color: var(--textColor1);
  padding: 40px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Верхняя часть */
.footerTop {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding-bottom: 24px;
}

/* Бренд */
.footerBrand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footerLogo {
  color: var(--secondStyleColor);
}

.footerLogo i {
  color: var(--secondStyleColor);
  font-size: 18px;
}

.footerBrandName {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footerBrandTagline {
  font-size: 14px;
  color: #bcbcbc;
  padding-top: 10px;
}

/* Навигация и контакты */
.footerNavLabel {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  margin-bottom: 10px;
  font-weight: 600;
}

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

.footerNav li + li {
  margin-top: 6px;
}

.footerNav a {
  font-size: 14px;
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.15s ease;
}

.footerNav a:hover {
  color: var(--secondStyleColor);
}

/* Контакты */
.footerContactLine {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 4px;
}

.footerSocial {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.footerSocial a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  font-size: 14px;
  transition: 0.15s ease;
}

.footerSocial a:hover {
  border-color: var(--secondStyleColor);
  color: var(--secondStyleColor);
}

/* Нижняя полоска */
.footerBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: #9a9a9a;
}

.footerMeta {
  text-align: right;
}

/* Адаптив */
@media (max-width: 900px) {
  .footerTop {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerMeta {
    text-align: left;
  }
}
