:root {
  --font-sans: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Inter,
    Arial, sans-serif;
}

/* ---- next <style> block ---- */

/* HEADER */
.header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  color: var(--textColor1);
}
.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) {
  .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 v1 ===== */

.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bodyBG);
}

/* Фоновое изображение */
.heroBG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.55);
  transform: scale(1.1);
  z-index: 1;
}

/* Контент */
.hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Левая колонка */
.hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--textColor1);
  margin: 0 0 15px 0;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero a {
  display: inline-block;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  padding: 14px 32px;
  border-radius: var(--borderRadius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.hero a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Справа — второе изображение */
.hero > .container > img {
  width: 420px;
  height: auto;
  border-radius: var(--borderRadius);
  object-fit: contain;
}

/* ===== Адаптив ===== */
@media (max-width: 950px) {
  .hero > .container {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero > .container > img {
    width: 300px;
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero > .container > img {
    display: none;
  }
}

/* ---- 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 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 {
  background: #2b2b2b;
  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;
  background: #2b2b2b;
  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 ---- */

/* ===== FEATURES SECTION GRID (VARIANT 3) ===== */

.featuresSection-grid {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.featuresGridWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.featuresGridHeader {
  max-width: 720px;
  margin: 0 auto 45px 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 */
.featuresGridLayout {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.featureGridCard {
  position: relative;
  background: #262626;
  border-radius: var(--borderRadius);
  padding: 26px 20px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  text-align: center;
  transition: 0.2s ease;
  overflow: hidden;
}

.featureGridCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(2, 255, 57, 0.18),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.featureGridCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-4px);
}

.featureGridCard:hover::before {
  opacity: 1;
}

/* Icon bubble */
.featureGridIcon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: 0 auto 14px auto;
  background: rgba(2, 255, 57, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featureGridIcon i {
  font-size: 22px;
  color: var(--secondStyleColor);
}

.featureGridTitle {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.featureGridText {
  font-size: 14px;
  line-height: 1.6;
  color: #d5d5d5;
}

/* Responsive */
@media (max-width: 1100px) {
  .featuresGridLayout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .featuresGridLayout {
    grid-template-columns: 1fr;
  }

  .featureGridCard {
    padding: 22px 18px;
  }
}

/* ---- 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;
  background: #262626;
  border-radius: var(--borderRadius);
  padding: 24px 20px 22px 20px;
  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;
}

.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 ---- */

/* ===== TESTIMONIALS SECTION ===== */

.testimonialsSection {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.testimonialsWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.testimonialsHeader {
  max-width: 760px;
  margin: 0 auto 45px 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: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.testimonialsSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Grid */
.testimonialsGrid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */
.testimonialCard {
  position: relative;
  background: #262626;
  border-radius: var(--borderRadius);
  padding: 26px 22px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.2s ease;
  overflow: hidden;
}

.testimonialCard::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;
  pointer-events: none;
  transition: 0.25s ease;
}

.testimonialCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.testimonialCard:hover::before {
  opacity: 1;
}

/* Quote icon */
.testimonialQuoteIcon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(2, 255, 57, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonialQuoteIcon i {
  color: var(--secondStyleColor);
  font-size: 16px;
}

/* Text + meta */
.testimonialText {
  font-size: 14px;
  line-height: 1.7;
  color: #e0e0e0;
  flex: 1;
}

.testimonialMeta {
  margin-top: 6px;
}

.testimonialName {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonialRole {
  font-size: 13px;
  color: #b0b0b0;
}

/* Responsive */
@media (max-width: 1000px) {
  .testimonialsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .testimonialsGrid {
    grid-template-columns: 1fr;
  }

  .testimonialCard {
    padding: 22px 18px;
  }
}

/* ---- next <style> block ---- */

/* ===== ROADMAP v5 ===== */

.roadmapSection-v5 {
  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 50px auto;
  text-align: center;
}

.roadmapEyebrow {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.roadmapTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.roadmapSubtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Grid */
.roadmapGrid-v5 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* Card */
.roadmapCard-v5 {
  position: relative;
  background: #262626;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px 34px 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  transition: 0.2s ease;
}

.roadmapCard-v5:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

/* Dot */
.roadmapDot-v5 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondStyleColor);
  margin-bottom: 14px;
}

/* Text inside */
.roadmapCardTitle-v5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.roadmapCardText-v5 {
  font-size: 15px;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 18px;
}

/* Badge */
.roadmapBadge-v5 {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(2, 255, 57, 0.12);
  color: var(--secondStyleColor);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 800px) {
  .roadmapGrid-v5 {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== GALLERY SECTION v3 ===== */

/* ===== GALLERY HEADER (v3) ===== */

.galleryHeader {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.galleryEyebrow {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 8px;
}

.galleryTitle {
  font-size: 32px;
  font-weight: 700;
  color: var(--textColor1);
  margin: 0 0 12px 0;
}

.gallerySubtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin: 0 auto;
}

/* Адаптив */
@media (max-width: 700px) {
  .galleryTitle {
    font-size: 26px;
  }

  .gallerySubtitle {
    font-size: 14px;
  }
}

.gallerySection-v3 {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.galleryList-v3 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Карточка: картинка + текст */
.galleryItem-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 18px;
  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;
  align-items: stretch;
}

/* Чередуем порядок: то картинка слева, то справа */
.galleryItem-v3--alt {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
}

.galleryItem-v3:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

/* Картинка */
.galleryItemImage-v3 {
  position: relative;
  overflow: hidden;
}

.galleryItemImage-v3 img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

/* Контент справа */
.galleryItemContent-v3 {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.galleryItemTitle-v3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.galleryItemText-v3 {
  font-size: 14px;
  line-height: 1.7;
  color: #dcdcdc;
}

/* Адаптив */
@media (max-width: 900px) {
  .galleryItem-v3,
  .galleryItem-v3--alt {
    grid-template-columns: 1fr;
  }

  .galleryItemImage-v3 img {
    min-height: 200px;
  }
}

/* ---- next <style> block ---- */

.bx7-cta-wrap {
  padding: 70px 0;
  color: var(--textColor1);
}

.bx7-cta-inner {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.bx7-title {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

.bx7-text {
  font-size: 16px;
  margin-bottom: 25px;
  color: #dcdcdc;
}

.bx7-btn {
  display: inline-block;
  background: var(--secondStyleColor);
  color: #111;
  padding: 12px 26px;
  font-weight: 600;
  border-radius: var(--borderRadius);
  transition: 0.2s ease;
}

.bx7-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ---- 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 {
  background: #262626;
  padding: 22px 24px;
  border-radius: var(--borderRadius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  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 {
  color: var(--textColor1);

  margin-top: 60px;
  padding: 28px 0 22px;
  background-color: var(--bodyBG);
  border-top: 0.3px solid var(--secondStyleColor);
  color: var(--footer-muted);
  position: relative;
  backdrop-filter: blur(18px);
}

/* Layout */

.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 22px;
}

/* Brand */

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-main .logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--textColor1);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Links & Address */

.site-footer a,
.site-footer address {
  position: relative;
  color: var(--textColor1);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 2px 0;
  text-transform: uppercase;
  transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease,
    opacity 0.22s ease;
}

.site-footer address {
  font-style: normal;
  color: rgba(209, 213, 219, 0.8);
}

/* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

.site-footer a:hover {
  transform: translateY(-2px);
}

/* Social */

.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  i {
    color: var(--secondStyleColor);
    font-size: 24px;
  }
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #e5e7eb;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.12s ease, box-shadow 0.18s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
}

/* Contacts */

.footer-contacts address {
  font-style: normal;
}

/* Links */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  align-items: flex-start;
}

.footer-links a:hover {
  color: var(--secondStyleColor);
}

/* Bottom */

.footer-bottom {
  padding-top: 14px;
  color: var(--textColor1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p span {
  color: var(--footer-accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer-main {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contacts,
  .footer-links {
    align-items: center;
  }

  .site-footer {
    margin-top: 40px;
    padding: 22px 0 18px;
  }
}
