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

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

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

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

.nav li {
  list-style: none;
}

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

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

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

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

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

/*  */
.uergv {
  min-height: 700px;
  height: 700px;
  max-height: 700px;
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  position: relative;
  &&:after {
    content: "";
    position: absolute;
    right: 16%;
    width: calc(var(--maxWidthContainer) / 1.5);
    height: 600px;
    z-index: 1;
    border-radius: var(--borderRadius);
    background: radial-gradient(
      80% 60% at 30% 20%,
      color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
      transparent 60%
    );
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
.uergv .container {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.utuii-img-wrap {
  width: 900px;
  border-radius: var(--borderRadius);
  height: 400px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  && img {
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: top;
  }
}
.rwhFL-RIG-CON {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--textColor1);
  && h1 {
    text-transform: uppercase;
    line-height: 1;
    font-weight: 900;
  }
  && p {
    text-wrap: balance;
  }
  && a {
    color: var(--textColor1);
    width: fit-content;
    font-size: 24px;
    border-bottom: 2px solid var(--textColor1);
    padding-bottom: 8px;
    transition: 0.2s all linear;
    &&:hover {
      letter-spacing: 2px;
    }
  }
}
@media (max-width: 800px) {
  .uergv {
    max-height: none;
    height: auto;
  }
  .uergv .container {
    flex-direction: column-reverse;
  }
  .utuii-img-wrap {
    width: 100%;
    height: 300px;
  }
  .uergv {
    &&:after {
      display: none;
    }
  }
  .rwhFL-RIG-CON {
    align-items: center;
    && h1 {
      color: var(--textColor1);
      font-size: 50px;
      text-align: center;
    }
    && p {
      color: var(--textColor1);
      text-align: center;
    }
    && a {
      color: var(--textColor1);
      border-color: var(--textColor1);
    }
  }
}

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

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

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

.toc {
  background-color: transparent;
}

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

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

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

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

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

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

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

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

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

/*  */

#gallery {
  padding: 20px 0;
  background-color: color-mix(
    in srgb,
    var(--secondStyleColor) 15%,
    transparent
  );
  position: relative;
  overflow: hidden;

  &&::after {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -20%;
    width: 450px;
    height: 450px;
    background-color: var(--bodyBG);
    border-radius: 50%;
    z-index: 1;
  }

  &&::before {
    content: "";
    position: absolute;
    right: -10%;
    top: -25%;
    width: 350px;
    height: 350px;
    background-color: var(--bodyBG);
    border-radius: 50%;
    z-index: 1;
  }
}

#gallery > * {
  position: relative;
  z-index: 2;
}

.gallery-title {
  position: relative;
  text-transform: uppercase;
  color: var(--textColor1);
  letter-spacing: 0.5px;
}

.gallery-wrap {
  display: flex;
  width: 100%;
  height: 600px;
  gap: 10px;
  overflow: hidden;
}

.gallery-item {
  flex: 1;
  height: 100%;
  overflow: hidden;
  transition: flex 0.8s ease-out;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: var(--borderRadius);
}

.gallery-item:hover {
  flex: 7;
}

/* optional: smoother behavior when hovering one item */
.gallery-wrap:hover .gallery-item {
  flex: 1;
}

.gallery-wrap:hover .gallery-item:hover {
  flex: 7;
}

/* Responsive */
@media (max-width: 1200px) {
  #gallery {
    &&::after,
    &&::before {
      display: none;
    }
  }

  .gallery-container {
    width: 100%;
    padding: 60px 16px;
  }
}

@media (max-width: 768px) {
  .gallery-title {
    margin-bottom: 24px;
  }

  .gallery-wrap {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .gallery-wrap {
    flex-direction: column;
    height: auto;
  }

  .gallery-item {
    height: 220px;
    transition:
      height 0.35s ease,
      flex 0.35s ease;
  }

  .gallery-item:hover {
    flex: 1;
    height: 320px;
  }
}

/*  */
#features .container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 20px;
}
.wrulefaj {
  width: 500px;
  height: 600px;
  && img {
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: top;
  }
}

.ksadvljka {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  && .ljawhfjk {
    width: 60%;
    background-color: var(--secondStyleColor);
    height: 1px;
  }

  && h2 {
    width: 100%;
    text-align: flex-start;
  }

  && p {
    width: 100%;
  }

  && a {
    padding: 12px 60px;
    border: 3px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    color: var(--textColor1);
    transition: 0.2s all linear;
    width: 100%;
    text-align: center;
    font-size: 20px;
    &&:hover {
      border: 3px dotted var(--secondStyleColor);
    }
  }
}

.fcsardjarwi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.fcoooo {
  background-color: var(--secondStyleColor);
  padding: 20px;
  color: var(--textColor2);
  border-radius: var(--borderRadius);
  width: fit-content;
  display: flex;
  width: 200px;
  flex-direction: column;
  align-items: center;
  transition: 0.3s all linear;
  gap: 20px;
  &&:hover {
    transform: translateY(-3px);
  }
  && span {
    font-size: 34px;
    font-weight: 900;
  }
  && p {
    text-align: center;
  }
}

@media (max-width: 800px) {
  #features .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .ksadvljka {
    && h2,
    p {
      text-align: center;
    }
    && .ljawhfjk {
      width: 80%;
      margin: 0 auto;
    }
  }
  .wrulefaj {
    width: 100%;
    height: 300px;
  }
  .fcsardjarwi {
    width: 100%;
    display: flex;
    flex-direction: column;
    && .fcoooo {
      width: 100%;
    }
  }
}

#plans .u3m {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.r8h {
  margin-bottom: 40px;
}
.r8h h2,
.r8h p {
  text-align: center;
}

.b6x {
  color: var(--textColor2);
  max-width: 420px;
  border-radius: var(--borderRadius);
  overflow: clip;
  padding: 20px;
  background: var(--bodyBG);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  backdrop-filter: blur(20px);
  position: relative;
  font-weight: 200;
  transition: 0.2s all linear;
}

.b6x:hover {
  transform: translateY(-5px);
}

.k1t {
  grid-template-areas: "stack";
  height: 600px;
  position: relative;
  border-radius: var(--borderRadius);
  overflow: clip;
  display: grid;
  box-shadow:
    inset 0 0 4px -2px #ffffff55,
    0 0 4px -2px #ffffff55;
}

.k1t img {
  width: 100%;
  height: 100%;
  border-radius: var(--borderRadius);
  object-fit: cover;
}

.k1t::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--borderRadius);
  backdrop-filter: blur(100px);
  -webkit-mask: linear-gradient(-14deg, black 30%, transparent 66%);
  mask: linear-gradient(-14deg, black 30%, transparent 66%);
}

.n9z {
  grid-area: stack;
}

.p4w {
  z-index: 1;
  grid-area: stack;
  margin-top: auto;
  padding: 1rem 2rem;
  && p {
    color: var(--textColor1);
  }
}

.s2d {
  color: var(--textColor1);
  font-size: 2.2rem;
  font-weight: 300;
}

.v1e {
  width: 30px;
  height: 30px;
}

.c7y {
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--textColor1);
}

.f5j {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 20px;
  color: var(--textColor1);
}

.f5j span {
  font-size: 44px;
  color: var(--textColor1);
  font-weight: 900;
}

@media (max-width: 800px) {
  #plans .u3m {
    flex-direction: column;
  }
  .r8h {
    margin-bottom: 20px;
  }
  .k1t {
    height: 450px;
  }
}

/* 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%);
  }
  && img {
    max-width: 400px;
  }
}

@media (max-width: 800px) {
  .partnershead {
    margin-bottom: 30px;
  }
  .logosWrap {
    flex-direction: column;
    gap: 20px;
    img {
      width: 200px;
    }
  }
}

.about-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 45px;
}

.models__cards_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card-mod {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 300px;
  color: var(--textColor1);
  h3,
  p {
    padding-left: 10px;
    color: var(--textColor1);
  }
  img {
    border-radius: var(--borderRadius);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}

@media (max-width: 800px) {
  .models__cards_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .card-mod {
    width: 100%;
    height: fit-content;

    img {
      height: 300px;
    }
  }
}

.x9p {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;

  overflow: hidden;
  position: relative;

  && img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.1;
    filter: blur(15px);
  }
}

.i7a {
  font-size: 70px;
  color: var(--secondStyleColor);
  text-transform: uppercase;
  font-weight: 900;
}

.l3k {
  color: var(--textColor1);
  text-decoration: none;
  transition: text-shadow 300ms ease-in;
  text-shadow:
    0 2ex color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
    0 -2ex color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
    0 4ex color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
    0 -4ex color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
    0 6ex color-mix(in srgb, var(--secondStyleColor) 7.5%, transparent),
    0 -6ex color-mix(in srgb, var(--secondStyleColor) 7.5%, transparent);
}

@media (max-width: 800px) {
  .i7a {
    font-size: 24px;
  }
  .x9p {
    min-height: 200px;
  }
}

#reviews .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.revierhweaul-head {
  margin-bottom: 40px;
  && h2,
  p {
    text-align: center;
  }
}

#reviews ul {
  position: relative;
  transform-style: preserve-3d;
  perspective: 500px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: 500ms;
}

#reviews ul:hover {
  gap: 20px;
}

#reviews ul li {
  position: relative;
  list-style: none;
  width: 80%;
  margin: 0 auto;
  min-height: 120px;
  padding: 16px;
  background: var(--textColor1);
  border-radius: var(--borderRadius);
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
  transition: 500ms;
  transition-delay: calc(var(--i) * 50ms);
  cursor: pointer;
}

#reviews ul li:nth-child(1) {
  transform: translateZ(-75px) translateY(20px);
  opacity: 0.6;
  filter: blur(4px);
}

#reviews ul li:nth-child(2) {
  opacity: 0.8;
  filter: blur(2px);
}

#reviews ul li:nth-child(3) {
  transform: translateZ(65px) translateY(-30px);
}

#reviews ul li:nth-child(4) {
  transform: translateZ(125px) translateY(-68px);
  filter: blur(1px);
}

#reviews ul:hover li {
  opacity: 1;
  filter: blur(0);
  transform: translateZ(0) translateY(0);
}

#reviews ul li img {
  max-width: 64px;
  border-radius: 8px;
}

#reviews ul li .content {
  width: 100%;
}

#reviews ul li .content h3 {
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1;
  color: var(--textColor2);
}

#reviews ul li .content p {
  color: var(--textColor2);
  opacity: 0.6;
  line-height: 1;
}

@media (max-width: 800px) {
  #reviews ul {
    perspective: none;
    gap: 20px;
  }
  #reviews ul li:nth-child(1),
  #reviews ul li:nth-child(2),
  #reviews ul li:nth-child(3),
  #reviews ul li:nth-child(4) {
    transform: translateZ(0) translateY(0);
    opacity: 1;
    filter: blur(0px);
    width: 100%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== FAQ SECTION ===== */

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

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

/* Header */
.faqHeader {
  max-width: 760px;
  margin: 0 auto 45px 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;
}

/* List */
.faqList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Item */
.faqItem {
  border: 1px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  padding: 22px 24px;
  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: 700px) {
  .faqItem {
    padding: 20px 18px;
  }
}

/* ===== 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;
  }
}
