:root {
  --font-sans: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

/* ---- next <style> block ---- */

/* HEADER */
.header {
  /* background-color: var(--secondStyleColor); */
  color: var(--textColor1);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1000;
}
.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(--textColor1);
  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(--textColor1);
  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(--textColor1);
  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(--textColor1);
    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;
  }
}

/* ---- next <style> block ---- */

.hero {
  position: relative;
  padding: 140px 0;
  color: var(--textColor1);
  overflow: hidden;
}

/* Background */
.heroBG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) brightness(0.45);
  z-index: -1;
}

/* Layout */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

/* Left image */
.hero-img {
  max-width: 520px;
  border-radius: var(--borderRadius);
  object-fit: contain;
  max-height: 500px;
}

/* Right text */
.hero-content {
  width: 50%;
  max-width: 560px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--textColor1);
  margin-bottom: 30px;
}

.hero-content a {
  display: inline-block;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--borderRadius);
  text-decoration: none;
  transition: 0.2s ease;
}

.hero-content a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-img {
    width: 80%;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 110px 0;
  }

  .hero-img {
    display: none;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

/* ---- next <style> block ---- */

:root {
  --scrollbarBg: rgba(255, 255, 255, 0.1);
  --itemBgColor: transparent;
}
.swiper {
  padding-bottom: 10px !important;
}

.toc .swiper-slide {
  width: fit-content;
}

.toc h2 {
  white-space: nowrap;
  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;
  }
}

/* ---- next <style> block ---- */

.featuresSection {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.featuresWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.featuresHeader {
  max-width: 720px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.featuresEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.featuresTitle {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.featuresSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.featuresGrid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.featureCard {
  background: transparent;
  border-radius: var(--borderRadius);
  padding: 22px 22px 24px 22px;
  border: 4px dotted var(--secondStyleColor);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featureCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-4px);
}

.featureIcon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(2, 255, 57, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.featureIcon i {
  color: var(--secondStyleColor);
  font-size: 18px;
}

.featureTitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.featureText {
  font-size: 14px;
  line-height: 1.6;
  color: #d2d2d2;
}

/* Responsive */
@media (max-width: 900px) {
  .featuresGrid {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== 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: 2px;
  background: linear-gradient(
    to bottom,
    rgba(2, 255, 57, 0.5),
    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 {
}

/* Тексты шага */

.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;
  }
}

/* ---- next <style> block ---- */

.panels {
  display: flex;
  width: 100%;
  /* min-width: 80vw; */
}

.galeryhead {
  margin-bottom: 45px;
  color: var(--textColor1);
}

.panel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 5%;
  position: relative;
  height: 500px;
  margin: 0 5px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  position: relative;
  border-radius: var(--borderRadius);
  img {
    border-radius: inherit;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
    user-select: none;
  }
}

.panel.active {
  flex: 5;
  opacity: 1;
}

.panel.active h1 {
  opacity: 1;
  right: 0;
  filter: blur(0);
  transition: all 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6);
  transition-delay: 200ms;
}

@media (max-width: 800px) {
  .galeryhead {
    margin-bottom: 30px;
  }
  .panels {
    flex-direction: column;
  }

  .panel {
    width: 100%;
    height: 220px;
    flex: 0 0 auto;
    margin: 0 0 10px;
    opacity: 1;
  }
}

/* ---- next <style> block ---- */

/* ===== TESTIMONIALS SECTION ALT (VARIANT 2) ===== */

.testimonialsSection-alt {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.testimonialsAltWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.testimonialsAltHeader {
  max-width: 760px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.testimonialsEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonialsTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.testimonialsSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* List */
.testimonialsAltList {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Row card */
.testimonialRow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  border-radius: var(--borderRadius);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
  transition: 0.18s ease;
}

.testimonialRow:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-2px);
}

/* Avatar */
.testimonialAvatar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.testimonialAvatarCircle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(2, 255, 57, 0.1);
  border: 1px solid rgba(2, 255, 57, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--secondStyleColor);
}

/* Body */
.testimonialRowBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonialRowHead {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.testimonialName {
  font-size: 16px;
  font-weight: 600;
}

.testimonialRole {
  font-size: 13px;
  color: #b2b2b2;
}

.testimonialTag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 255, 57, 0.7);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  white-space: nowrap;
}

.testimonialRowText {
  font-size: 14px;
  line-height: 1.7;
  color: #dfdfdf;
}

/* Responsive */
@media (max-width: 800px) {
  .testimonialRow {
    grid-template-columns: 1fr;
  }

  .testimonialAvatar {
    justify-content: flex-start;
  }
}

/* ---- next <style> block ---- */

.marquee {
  padding: 10px 0;
  border-top: 1px solid var(--secondStyleColor);
  border-bottom: 1px solid var(--secondStyleColor);
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.marquee .track {
  display: flex;
  gap: 40px;
  text-transform: uppercase;
  padding: 0;
  width: max-content;
  animation: scroll 56s linear infinite;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--textColor1);
  -webkit-animation: scroll 56s linear infinite;
}
.marquee span::before {
  content: "₿";
  /* font-size: 24px; */
  margin: 0 10px 0 0;
  color: var(--secondStyleColor);
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---- next <style> block ---- */

/* ===== HOW IT WORKS SECTION ===== */

.howSection {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.howWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.howHeader {
  max-width: 760px;
  margin: 0 auto 45px auto;
  text-align: center;
}

.howEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.howTitle {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.howSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Steps */
.howSteps {
  list-style: none;
  padding: 0;
  margin: 35px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.howStepItem {
  position: relative;
  border-radius: var(--borderRadius);
  padding: 24px 20px 22px 20px;
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: 0.2s ease;
}

.howStepItem::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;
  pointer-events: none;
}

.howStepItem:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.howStepItem:hover::before {
  opacity: 1;
}

/* Badge + text */
.howStepBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(2, 255, 57, 0.12);
  border: 1px solid rgba(2, 255, 57, 0.6);
  font-size: 14px;
  font-weight: 700;
  color: var(--secondStyleColor);
  margin-bottom: 14px;
}

.howStepTitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.howStepText {
  font-size: 14px;
  line-height: 1.6;
  color: #d5d5d5;
}

/* Responsive */
@media (max-width: 900px) {
  .howSteps {
    grid-template-columns: 1fr;
  }

  .howStepItem {
    padding: 22px 18px;
  }
}

/* ---- next <style> block ---- */

/* partners */
.partners-sec {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  border-top: 2px solid var(--secondStyleColor);
  border-bottom: 2px solid var(--secondStyleColor);
}
.partners-sec > container {
  display: flex;
  flex-direction: column;
}
h2 {
  font-size: 40px;
}
.partnershead {
  margin-bottom: 100px;
  h2 {
    color: var(--textColor1);
    text-align: center;
  }
  p {
    color: var(--textColor1);
    text-align: center;
    text-wrap: balance;
  }
}
.partnersfon {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 20%;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.2;
}

.logosWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  && a {
    transition: 0.2s all linear;
  }
  && a:hover {
    transform: scale(105%);
  }
}

@media (max-width: 800px) {
  .partnershead {
    margin-bottom: 30px;
  }
  .logosWrap {
    flex-direction: column;
    gap: 20px;
    img {
      width: 200px;
    }
  }
}

/* ---- next <style> block ---- */

/* ===== ABOUT SECTION STEPS VARIANT ===== */

.aboutSection-steps {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.aboutStepsWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.aboutStepsHeader {
  max-width: 720px;
  margin: 0 auto 45px auto;
  text-align: center;
}

.aboutStepsEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.aboutStepsTitle {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.aboutStepsSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

/* Body layout */
.aboutStepsBody {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: flex-start;
}

/* Intro card left */
.aboutStepsIntroCard {
  border-radius: var(--borderRadius);
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.aboutStepsIntroCard h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.aboutStepsIntroCard p {
  font-size: 15px;
  line-height: 1.7;
  color: #d4d4d4;
  margin-bottom: 12px;
}

/* Steps list */
.aboutStepsList {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.aboutStepItem {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 14px 0 18px 0;
}

.aboutStepItem + .aboutStepItem {
  margin-top: 4px;
}

.aboutStepBullet {
  position: relative;
  flex: 0 0 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--secondStyleColor);
  margin-left: -26px; /* смещение на линию */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.aboutStepContent h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.aboutStepContent p {
  font-size: 14px;
  line-height: 1.6;
  color: #d2d2d2;
}

/* Hover effect */
.aboutStepItem:hover .aboutStepBullet {
  border-color: var(--secondStyleColor);
  transform: translateX(3px);
  transition: 0.18s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .aboutStepsBody {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aboutStepsIntroCard {
    padding: 22px 20px;
  }

  .aboutStepsList {
    border-left: none;
  }

  .aboutStepBullet {
    margin-left: 0;
  }
}

/* ---- next <style> block ---- */

/* ===== FAQ SECTION v2 (two-column layout) ===== */

.faqSection-cols {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.faqColsWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.faqHeader {
  max-width: 760px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.faqEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.faqTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.faqSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.faqColsGrid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Item */
.faqItem {
  padding: 22px 24px;
  border-radius: var(--borderRadius);
  border: 1px dotted var(--secondStyleColor);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  transition: 0.2s ease;
}

.faqItem:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.faqQuestion {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondStyleColor);
}

.faqAnswer {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 800px) {
  .faqColsGrid {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

.site-footer {
  border-top: 0.5px solid var(--secondStyleColor);
  padding: 20px 0;
}
.footerLogo {
  color: var(--textColor1);
}

.footer-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intoLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  span {
    width: 8px;
    height: 8px;
    background-color: var(--secondStyleColor);
    border-radius: 50%;
  }
  a {
    transition: 0.3s all linear;
    transform-origin: left;
    text-decoration: none;
    color: var(--textColor1);
  }
  a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 750px) {
  .intoLinks {
    flex-direction: column;
    span {
      display: none;
    }
  }
}

.f-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.f-social i {
  color: var(--secondStyleColor);
}
.copy {
  text-align: center;
  opacity: 0.5;
}
.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: #fff;
}
