:root {
  --font-sans: "Urbanist", 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 {
  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;
  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 ---- */

.planshead {
  margin-bottom: 45px;
}

/* Billing switcher */
.billing-switcher {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 20px;
}

.plansWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.billing-switcher * {
  transition: all 0.2s ease-in-out;
}

.yearly #month,
#year {
  color: var(--textColor1);
  text-transform: uppercase;
}

.yearly #year {
  color: var(--textColor1);
}

.billing-switcher button {
  width: 4rem;
  height: 2rem;
  background: var(--secondStyleColor);
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.03);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
}

.billing-switcher button span {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;

  background: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.yearly button span {
  transform: translateX(2rem);
}

/* Pricing plans */
.plans {
  display: flex;
  gap: 4vw;
  align-items: flex-start;
}

.plan-content {
  background-color: transparent;
  border: 1px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 20rem;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07),
    0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
    0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
    0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035),
    0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725),
    0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--text-color-10);
  padding-bottom: 2rem;
}

.price {
  font-size: 2.441rem;
  font-weight: 100;
}

.title {
  font-size: 1.953rem;
  font-weight: 900;
}

.description {
  font-size: 1.25rem;
  color: var(--text-color-60);
}

.features {
  font-weight: 500;
  color: var(--text-color-90);
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 10px;
  /* padding-left: 40px; */
  /* list-style: disc; */
}

.btn {
  display: inline-block;
  cursor: pointer;
  padding: 1rem 2rem;
  border: 1px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--textColor1);
}

/* Awesome additions using CSS transforms */
/* Translate */
.plan {
  position: relative;
  transition: 0.2s all linear;
  &&:hover {
    transform: translateY(-5px);
  }

  img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -1;
    border-radius: var(--borderRadius);
    filter: blur(5px);
    opacity: 0.2;
  }
}

.plan :is(.shadow-1, .shadow-2) {
  background-color: var(--card-shadow-color);
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
}

.plan:hover .shadow-1 {
  transform: translate(-1rem, 1rem);
  width: calc(100% + 2rem);
}

.plan:hover .shadow-2 {
  transform: translate(-2rem, 2rem);
  width: calc(100% + 4rem);
}

/* Scale */
.yearly #month,
#year {
  transform: scale(0.8);
}

.yearly #year {
  transform: scale(1);
}

/* Rotate */
.billing-switcher button span {
  background: white
    url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.58225 6.79651C0.3685 6.58276 0.25 6.30151 0.25 6.00151C0.25 5.69926 0.3685 5.41651 0.58225 5.20501L5.707 0.219756C6.00325 -0.0727435 6.48175 -0.0727435 6.778 0.219756C7.07425 0.512256 7.07425 0.987756 6.778 1.27951L1.921 6.00151L6.778 10.722C7.07425 11.0145 7.07425 11.49 6.778 11.7833C6.48175 12.0758 6.00325 12.0758 5.707 11.7818L0.58225 6.79726V6.79651Z' fill='%23ECAD1D'/%3E%3C/svg%3E%0A")
    no-repeat 45% center;
}

.yearly button span {
  transform: translateX(2rem) rotate(0.5turn);
}

/* Skew */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 0;
  height: 100%;
  background-color: var(--text-color);
  transform: skew(35deg);
  transition: width 0.2s ease-in-out;
  z-index: -1;
}

@media (max-width: 800px) {
  .plans {
    display: flex;
    flex-direction: column;
  }
}

/* ---- next <style> block ---- */

/* ============ Matchday Atmosphere (Layered stack) ============ */
.fxl-atmo__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fxl-btn {
  padding: 15px 20px;
  background-color: var(--secondStyleColor);
  border-radius: var(--borderRadius);
  color: var(--textColor2);
  text-transform: uppercase;
  font-weight: 800;
  width: fit-content;
  transition: 0.3s all linear;
  &&:hover {
    transform: translateY(-2px);
  }
}
.head-about-s {
  color: var(--textColor1);
}
.fxl-atmo__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 900px) {
  .fxl-atmo__grid {
    grid-template-columns: 1fr;
  }
}
.head-about-s--left {
  text-align: left;
}

.fxl-bullets {
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}
.fxl-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--textColor1);
}
.fxl-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--secondStyleColor);
  box-shadow: 0 0 0 3px rgba(121, 255, 207, 0.18);
}

.fxl-atmo__visuals {
  position: relative;
  min-height: 420px;
}
.fxl-blob,
.fxl-blob--b {
  position: absolute;
  inset: auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.7;
  z-index: 0;
  background: radial-gradient(
      45% 45% at 60% 40%,
      var(--secondStyleColor),
      transparent 70%
    ),
    radial-gradient(
      45% 45% at 30% 70%,
      var(--secondStyleColor),
      transparent 70%
    ),
    #0f2a1f;
  top: -20px;
  left: -10px;
}
.fxl-blob--b {
  width: 280px;
  height: 280px;
  bottom: -30px;
  right: -20px;
  top: auto;
  left: auto;
}

.fxl-polaroid {
  position: absolute;
  width: 60%;
  aspect-ratio: 4/3;
  border-radius: var(--borderRadius);
  padding: 8px;
}
.fxl-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}
.fxl-polaroid--a {
  top: 8%;
  left: 10%;
  transform: rotate(-6deg);
}
.fxl-polaroid--b {
  top: 28%;
  right: 2%;
  transform: rotate(5deg);
}
.fxl-polaroid--c {
  bottom: 0;
  left: 18%;
  transform: rotate(2deg);
}

/* ---- 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 ---- */

.unitLuma {
  padding: 80px 0;
  color: var(--textColor1);
}

.unitLumaShell {
  max-width: var(--maxWidthContainer);
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

/* Левая колонка */
.unitLumaLabel {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.unitLumaTitle {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 14px 0;
}

.unitLumaLead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--textColor1);
  max-width: 420px;
}

/* Правая колонка: карточки */
.unitLumaGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.unitLumaCard {
  border-radius: var(--borderRadius);
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
  padding: 18px 18px 20px 18px;
  transition: 0.18s ease;
}

.unitLumaCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.unitLumaCardAccent {
  background: radial-gradient(
    circle at top left,
    rgba(2, 255, 57, 0.16),
    #262626 55%
  );
}

.unitLumaCardTitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.unitLumaCardText {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Адаптив */
@media (max-width: 900px) {
  .unitLumaShell {
    grid-template-columns: 1fr;
  }

  .unitLumaGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .unitLumaGrid {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== HOW IT WORKS SECTION ALT (VARIANT 2) ===== */

.howSection-alt {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.howAltWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.howAltHeader {
  max-width: 700px;
  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: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.howSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Timeline */
.howAltTimeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 28px;
}

.howAltLine {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(2, 255, 57, 0.4),
    rgba(2, 255, 57, 0.05)
  );
}

/* Step */
.howAltStep {
  position: relative;
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.howAltDot {
  position: relative;
  flex: 0 0 36px;
  height: 36px;
  border-radius: 999px;
  background: #2b2b2b;
  border: 1px solid rgba(2, 255, 57, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondStyleColor);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  z-index: 1;
  margin-left: -2px;
}

.howAltStepBody {
  border-radius: var(--borderRadius);
  padding: 18px 20px 18px 20px;
  border: 4px dotted var(--secondStyleColor);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
  transition: 0.18s ease;
}

.howAltStepTitle {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.howAltStepText {
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
}

.howAltStepBody:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 700px) {
  .howAltTimeline {
    padding-left: 18px;
  }

  .howAltLine {
    left: 10px;
  }

  .howAltStep {
    gap: 12px;
  }

  .howAltStepBody {
    padding: 16px 16px;
  }
}

/* ---- 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;
  border-radius: var(--borderRadius);
  padding: 26px 22px 24px 22px;
  border: 1px solid var(--secondStyleColor);
  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 ---- */

/* 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%);
  }
}

.logosWrap img {
  width: 220px;
}

@media (max-width: 800px) {
  .partnershead {
    margin-bottom: 30px;
  }
  .logosWrap {
    flex-direction: column;
    gap: 20px;
    img {
      width: 200px;
    }
  }
}

/* ---- next <style> block ---- */

.real-gallery {
  padding: 60px 0;
}

.real-gallery__inner {
  position: relative;
}

.real-gallery__swiper {
  width: 100%;
  position: relative;
  padding: 0 80px;
}
.galeryhead {
  margin-bottom: 45px;
}

/* слайд-лента */
.real-gallery__wrapper {
  align-items: center;
}

/* отдельный слайд */
.real-gallery__slide {
  display: flex;
  justify-content: center;
  cursor: grab;
  &&:active {
    cursor: grabbing;
  }
}

.real-gallery__slide img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
  user-select: none;
}

.gallery-naw-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
}
/* стрелки */
.real-gallery__nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  line-height: 1;
  font-size: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.real-gallery__nav span {
  /* если внутри стрелка в span */
  transform: translate(-1px, -2px); /* или translateY(-1px); по вкусу */
}

.real-gallery__nav--next span {
  transform: translate(1px, -2px);
}

/* адаптивно */
@media (max-width: 992px) {
  .real-gallery__slide img {
    height: 420px;
  }
  .galeryhead {
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .real-gallery__slide img {
    height: 360px;
  }
}

/* ---- next <style> block ---- */

.faq {
  margin-bottom: 100px;
  color: var(--textColor1);
}

/* Внутренняя секция */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  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);
}

.faq-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--textColor1);
}

/* Элементы FAQ */
.faq-item {
  border-bottom: 2px solid var(--secondStyleColor);
  padding: 12px 0;
}

.faq h3 {
  margin: 10px 0;
}

/* Кнопка-вопрос */
.faq-question {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  color: var(--textColor1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
}

.faq-question::after {
  content: "+";
  font-size: 32px;
  transition: transform 0.2s ease;
  color: var(--secondStyleColor);
}

.faq-question.active::after {
  content: "-";
  transform: rotate(180deg);
}

/* Ответ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: var(--textColor1);
  padding-top: 0;
}

.faq-answer p {
  margin-top: 0;
}

/* Открытый ответ (по классу из твоего JS) */
.faq-answer.open {
  max-height: 200px; /* можно увеличить, если текст длиннее */
  /* padding-top: 10px; */
}

/* Если используешь .reviewsWrapper рядом — оставил хук */
.reviewsWrapper h2 {
  margin-bottom: 20px;
}

/* Мобилка */
@media screen and (max-width: 750px) {
  .faq {
    margin-bottom: 60px;
  }

  .faq-section {
    padding: 30px 16px;
  }
}

/* ---- 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;
  }
}
