:root {
  --font-sans: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

/* ---- next <style> block ---- */

/* 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;
  }
}

/* ---- next <style> block ---- */

/* ----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;
  gap: 20px;
  h1 {
    text-transform: uppercase;
  }
  p {
    max-width: 650px;
  }
  span {
    /* color: var(--secondStyleColor); */
    color: transparent;
    -webkit-text-stroke: 2px var(--secondStyleColor);
  }
  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;
  &&:active {
    cursor: grabbing;
  }
}

/* карточка */
.svine-slide-card {
  border-radius: var(--borderRadius);
  max-width: 720px;
  width: 100%;
  box-sizing: border-box;
}

/* блок под картинку */
.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-slider__pagination {
  position: absolute; /* или 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__progress {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.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) {
  .hero-left {
    text-align: center;
  }
  .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-reverse;
  }
  .hero-left {
    margin-top: 20px;
    align-items: center;
    p {
      text-align: center;
    }
  }
  .home-section {
    height: fit-content;
  }
}

/* ---- 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 ---- */

/* ===== ABOUT SECTION ===== */

.aboutSection {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.aboutWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;

  img {
    width: 500px;
  }
}

/* Left content */
.sectionEyebrow {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--secondStyleColor);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.aboutTitle {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--textColor1);
}

.aboutSubtitle {
  font-size: 18px;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 25px;
}

.aboutText {
  font-size: 16px;
  line-height: 1.65;
  color: #d2d2d2;
  margin-bottom: 35px;
}

/* Bullet list */
.aboutList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aboutListItem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.aboutIcon {
  color: var(--secondStyleColor);
  margin-top: 4px;
}

/* Right block (badge + stats) */
.aboutSide {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.aboutBadge {
  background: var(--secondStyleColor);
  color: var(--textColor2);
  padding: 12px 20px;
  border-radius: var(--borderRadius);
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  width: fit-content;
}

.aboutStats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.aboutStatCard {
  background: #333;
  padding: 20px 25px;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.2s ease;
}

.aboutStatCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateX(5px);
}

.aboutStatValue {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondStyleColor);
  margin-bottom: 5px;
}

.aboutStatLabel {
  font-size: 14px;
  color: #bbb;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .aboutWrapper {
    flex-direction: column;
    img {
      width: 90%;
    }
  }
}

/* ---- next <style> block ---- */

/* ===== ROADMAP SECTION v1 ===== */

.roadmapSection-v1 {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.roadmapHeader {
  max-width: 750px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.roadmapEyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondStyleColor);
  margin-bottom: 8px;
}

.roadmapTitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--textColor1);
}

.roadmapSubtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  max-width: calc(var(--maxWidthContainer) - 20px);
  margin: 0 auto;
}

.roadmapTimeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.roadmapTimeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.roadmapItem {
  position: relative;
  padding-left: 60px;
}

.roadmapMarker {
  position: absolute;
  left: 12px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--secondStyleColor);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 57, 0.4);
}

.roadmapItemTitle {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--textColor1);
}

.roadmapItemText {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d1d1;
}

/* Адаптив */
@media (max-width: 650px) {
  .roadmapTimeline::before {
    left: 12px;
  }

  .roadmapItem {
    padding-left: 45px;
  }

  .roadmapMarker {
    left: 3px;
  }

  .roadmapTitle {
    font-size: 26px;
  }
}

/* ---- 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: 1px solid 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 ---- */

.gallerySection {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.galleryWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.galleryHeader {
  max-width: 760px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.galleryEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.galleryTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.gallerySubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Item */
.galleryItem {
  background: #262626;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: 0.2s ease;
}

.galleryItem:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

/* Image wrapper (фиксированное соотношение) */
.galleryImageFrame {
  position: relative;
  width: 100%;
  padding-top: 62%; /* ~16:10 */
  overflow: hidden;
}

.galleryImageFrame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Caption */
.galleryCaption {
  padding: 10px 12px 12px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 900px) {
  .galleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .galleryGrid {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== EXPERT REVIEW (ADAPTED TO DARK THEME) ===== */

.expertreview {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.expertreview .container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

.expertreview h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* сетка */
.expertReview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ссылки внутри цитат — акцент тем же зелёным */
.expertReview a {
  color: var(--secondStyleColor);
  text-decoration: none;
  border-bottom: 1px solid var(--secondStyleColor);
}
.expertReview a:hover {
  border-color: var(--secondStyleColor);
}

/* левый штрих у абзаца — градиент от ярко-зелёного к прозрачному */
.expertReview p {
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, var(--secondStyleColor), transparent) 1;
  padding-left: 18px;
  margin: 0 0 1rem;
  font-style: italic;
  color: #e0e0e0;
}

/* автор */
.expertReview span {
  font-style: italic;
  opacity: 0.75;
  display: block;
  text-align: right;
  color: #c4c4c4;
}

/* карточки */
.review-card {
  border: 1px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  padding: 2rem 2.2rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
  border-color: var(--secondStyleColor);
}

/* 2 колонки на десктопе */
@media (min-width: 900px) {
  .expertReview {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- next <style> block ---- */

.beamSlot {
  padding: 64px 0;
  color: var(--textColor1);
}

.beamSlotShell {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 28px;
  padding: 0 20px;
  align-items: center;
}

/* Текст слева */
.beamSlotLabel {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.beamSlotTitle {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.beamSlotLead {
  font-size: 15px;
  line-height: 1.7;
  color: #d2d2d2;
}

/* Панель справа */
.beamSlotPanel {
  border-radius: var(--borderRadius);
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  padding: 18px 18px 16px 18px;
}

.beamSlotFieldGroup {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.beamSlotInput {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #181818;
  color: var(--textColor1);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}

.beamSlotInput::placeholder {
  color: #808080;
}

.beamSlotInput:focus {
  border-color: var(--secondStyleColor);
}

.beamSlotButton {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  white-space: nowrap;
  transition: 0.18s ease;
}

.beamSlotButton:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.beamSlotHint {
  font-size: 12px;
  line-height: 1.6;
  color: #a0a0a0;
}

/* Адаптив */
@media (max-width: 900px) {
  .beamSlotShell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .beamSlotFieldGroup {
    flex-direction: column;
  }

  .beamSlotButton {
    width: 100%;
    text-align: center;
  }
}

/* ---- 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 ---- */

.containerFAQ {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq h2 {
  text-align: center;
}

.faq > div {
  border-radius: var(--borderRadius);
}

#faq {
  border-radius: var(--borderRadius);
  padding: var(--sectionPadding);
}

.accord__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 32px;
  border: 4px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
}

.accord__item h3,
.accord__item p {
  margin-bottom: 0;
  margin: 0;
  color: var(--textColor1);
}

.accord__item > div:first-child > p {
  font-weight: 900;
  color: var(--textColor1) !important;
  font-size: 24px !important;
  margin-bottom: 0;
}

.accord__item > div:first-child {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.accord__item > div:last-child {
  max-height: 0;
  visibility: hidden;
  transition: 0.3s all linear;
}

.accord__item > div:last-child p {
  color: var(--textColor1) !important;
  text-align: left;
}

.show {
  visibility: visible !important;
}

.accord__item div + div {
  transition: max-height 0.3s ease;
  overflow: hidden;
  /* padding: 20px; padding будет учтен в scrollHeight */
  box-sizing: border-box; /* важно! */
}

.accord__item div + div p {
  transition: margin-top 0.3s ease;
  visibility: hidden;
  margin: 0;
}

.accord__item div + div.show p {
  visibility: visible;
  opacity: 1;
}

div.show {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .accord__item {
    padding: 32px 16px;
  }
}

/* ---- next <style> block ---- */

/* ===== 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;
  }
}
