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

/* ===========================
          HEADER
        =========================== */

.site-header {
  position: relative;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--bodyBG);
  border-bottom: 1px solid var(--secondStyleColor);
}
.site-headerA {
  font-size: 24px;
  font-weight: 900;
  color: var(--textColor1);
}

.header-cta {
  padding: 12px 20px;
  color: var(--textColor2);
  font-weight: 500;
  border-radius: var(--borderRadius);
  background-color: var(--secondStyleColor);
}

/* layout */

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 18px;
}

/* ===========================
   LOGO
=========================== */

.logo {
  font-family:
    system-ui,
    -apple-system,
    "SF Pro Text",
    "Segoe UI",
    sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  color: var(--text-main);
}

.logo span:first-child {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo span:last-child {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===========================
   NAV DESKTOP
=========================== */

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.header__nav > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ссылки */

.nav a,
.header__nav > ul a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 6px 4px;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    transform 0.15s ease,
    opacity 0.2s ease;
}

/* подчёркивание — неоновая линия */

.nav a::before,
.header__nav > ul a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav a:hover,
.header__nav > ul a:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav a:hover::before,
.header__nav > ul a:hover::before {
  transform: scaleX(1);
}

/* ===========================
   BURGER BUTTON
=========================== */

.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--secondStyleColor);
  background: radial-gradient(
    circle at 0 0,
    rgba(77, 243, 255, 0.22),
    transparent 65%
  );
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

/* три полоски */

.burger::before,
.burger::after,
.burger .icon-left {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--textColor1);
  transition: all 0.25s ease;
}

.burger::before {
  top: 13px;
  transform: translateX(-50%);
}

.burger::after {
  bottom: 13px;
  transform: translateX(-50%);
}

.burger .icon-left {
  top: 50%;
  transform: translate(-50%, -50%);
}

.burger.open::before {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.burger.open::after {
  top: 50%;
  bottom: auto;
  transform: translateX(-50%) rotate(-45deg);
}

.burger.open .icon-left {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

/* icon-right не используется, оставляем выключенным */
.burger .icon-right {
  display: none;
}

/* ===========================
   MOBILE MENU
=========================== */

.mobile__menu {
  display: none;
}

/* off-canvas навигация */

@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }
  .nav {
    display: none;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  .mobile__menu {
    display: block;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  .header__nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 50;
    transform: translateX(-120%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
  }

  .header__nav > ul {
    margin-top: 90px;
    margin-left: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .header__nav > ul a {
    font-size: 18px;
    color: var(--text-main);
  }

  /* CTA-кнопка в моб.меню */
  .header__nav > a {
    display: inline-block !important;
    margin: auto 24px 36px;
    max-width: 90%;
    text-align: center;
    color: #050814 !important;
    background: var(--secondStyleColor);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }

  .navOpen {
    transform: translateX(0%);
  }

  header .btn {
    display: none;
  }
}

/* ===========================
   ACCESSIBILITY & MOTION
=========================== */

.header__nav > ul a:focus-visible,
.burger:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .burger,
  .burger * {
    transition: none !important;
  }
  .header__nav {
    transition: none !important;
  }
}

/* ============== */

.ljawccnk {
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
}
.iurjbsd {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.1;
}
.ljawccnk .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  h1 {
    text-align: center;
    text-transform: uppercase;
  }
}
.hero-card-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin: 50px 0;
}
.iulibcjAJL {
  text-align: center;
  max-width: 800px;
  text-wrap: balance;
}
.hero-hbkawkc {
  padding: 60px 20px;
  border: 1px solid var(--secondStyleColor);
  display: flex;
  border-radius: var(--borderRadius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  backdrop-filter: blur(5px);
  span {
    font-size: 44px;
    font-weight: 900;
  }
  && p {
    text-align: center;
  }
}
.hero-hbkawkc::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondStyleColor);
  border-radius: var(--borderRadius);
  z-index: -1;
  opacity: 0.1;
}

.ljawccnk a {
  padding: 12px 40px;
  border: 1px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  color: var(--textColor1);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: 0.2s all linear;
  &&:hover {
    background-color: var(--secondStyleColor);
  }
}
.waWKNNCKLNwkhk {
  text-transform: uppercase;
  position: relative;
  &&::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: var(--secondStyleColor);
    left: -70px;
    top: 10px;
  }
  &&::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: var(--secondStyleColor);
    right: -70px;
    top: 10px;
  }
}

@media (max-width: 800px) {
  .hero-card-wrapper {
    flex-direction: column;
    margin: 20px 0;
  }
  .hero-hbkawkc {
    width: 100%;
    padding: 20px 0;
  }
  .ljawccnk a {
    padding: 15px 40px;
  }
  .hero-hbkawkc span {
    font-size: 30px;
  }
  .waWKNNCKLNwkhk {
    margin-top: 50px;
  }
}

: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;
  color: var(--textColor1);
}

.toc {
  background-color: transparent;
}

.toc a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--bodyBG);
  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;
  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(--secondStyleColor);
}

.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;
  }
}

.banner-section {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  h2 {
    text-transform: uppercase;
    text-align: center;
  }
}
.banner-section img {
  position: absolute;
  width: 120%;
  height: 120%;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  object-position: 50% 20%;
  filter: blur(15px);
  opacity: 0.2;
}

.jaifsdlliweif .container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  align-items: stretch;
}
.jaifsdlliweifContainer {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.about-left {
  flex: 0 0 60%;
  height: 600px;
  img {
    height: 100%;
    width: 100%;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: top;
  }
}

.about-right {
  display: flex;
  flex-direction: column;
  flex: 0 0 40%;
}
.about-righr-img {
  height: 300px;
  img {
    height: 100%;
    width: 100%;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: top;
  }
}
.iiyyru {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  justify-content: center;
  && a {
    padding: 12px 20px;
    background-color: var(--secondStyleColor);
    width: fit-content;
    border-radius: var(--borderRadius);
    color: var(--bodyBG);
    font-weight: 800;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s all linear;
    &&:hover {
      color: var(--textColor1);
      background-color: transparent;
      border: 1px solid var(--secondStyleColor);
    }
  }
}

@media (max-width: 800px) {
  .jaifsdlliweif .container {
    flex-direction: column;
  }
  .about-right {
    flex-direction: column-reverse;
  }
}

.cardsPlanWrapper {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.pricing-card {
  flex: 1;
  border-radius: 24px;
  padding: 32px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--textColor1);
}

/* Центральная карточка (PRO) — с подсветкой */
.pricing-card.pro {
  border: 3px solid var(--secondStyleColor);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
}

.pricing-header span.price {
  font-size: 30px;
  color: var(--secondStyleColor);
}

.divider {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

.pricing-btn {
  margin-top: 24px;
  width: 100%;
  padding: 18px 0;
  border-radius: 999px;
  border: none;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.pricing-btn:hover {
  filter: brightness(1.1);
}

.pricing-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.pricing-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondStyleColor);
  display: flex;
  color: var(--textColor2);
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.check::before {
  content: "✓";
}
@media (max-width: 800px) {
  .cardsPlanWrapper {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
  }
}

/* partners */
.partners-sec {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  border-top: 2px solid var(--secondStyleColor);
  border-bottom: 2px solid var(--secondStyleColor);
}
.partners-sec > container {
  display: flex;
  flex-direction: column;
}
h2 {
  font-size: 40px;
}
.partnershead {
  margin-bottom: 100px;
  h2 {
    color: var(--textColor1);
    text-align: center;
  }
  p {
    color: var(--textColor1);
    text-align: center;
    text-wrap: balance;
  }
}
.partnersfon {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 20%;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.2;
}

.logosWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  && a {
    transition: 0.2s all linear;
  }
  && a:hover {
    transform: scale(105%);
  }
}

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

.steps-dheader {
  margin-bottom: 40px;
}
.steps--diagonal {
  position: relative;
  overflow: hidden;
  h2,
  h2 + p {
    text-align: center;
  }
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.step--outline {
  background: transparent;
  border: 2px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

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

.step__number {
  font-size: 4rem;
  color: var(--secondStyleColor);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.step__content {
  position: relative;
  z-index: 2;
}

.step__content h3 {
  margin-bottom: 1rem;
  color: var(--textColor1);
}

.step__content p {
  color: var(--textColor1);
  line-height: 1.6;
}

.step-arc {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--secondStyleColor);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  bottom: -10px;
  left: -10px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.step--outline:hover .step-arc {
  opacity: 1;
}

.steps-visual {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 200px;
  opacity: 0.5;
}

.plane-trajectory {
  position: relative;
  width: 100%;
  height: 100%;
}

.plane-trajectory svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .steps-visual {
    display: none;
  }
  .steps-dheader {
    margin-bottom: 20px;
  }
}

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

.inspx9v2-sec {
  padding: 72px 0 64px;
  color: var(--textColor1);
  overflow: hidden;
}

/* -------- header -------- */

.inspx9v2-head {
  text-align: center;
  margin-bottom: 34px;
}

.inspx9v2-title {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: 650;
  color: var(--textColor1);
}

.inspx9v2-dots {
  margin: 12px auto 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.inspx9v2-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--secondStyleColor);
}

.inspx9v2-sub {
  margin: 0 auto 18px;
  width: min(680px, 92%);
  font-size: 14px;
  line-height: 1.6;
  color: var(--textColor1);
}

/* -------- gallery wrapper -------- */

.inspx9v2-gallery {
  position: relative;
  padding: 10px 0 6px;
}

/* Swiper container */
.inspx9v2-swiper {
  width: 100%;
  overflow: visible; /* so side slides peek */
}

/* Make slides "card width" like the screenshot */
.inspx9v2-slide {
  width: 300px;
  height: 400px;
  display: flex;
  align-items: stretch;
}

/* card */
.inspx9v2-card {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--borderRadius);
  overflow: hidden;
}

/* image */
.inspx9v2-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transform: translateZ(0);
  filter: saturate(0.98) contrast(0.98);
  user-select: none;
}

/* subtle hover */
@media (hover: hover) {
  .inspx9v2-card {
    transition:
      transform 260ms ease,
      box-shadow 260ms ease;
  }
  .inspx9v2-slide:hover .inspx9v2-card {
    transform: translateY(-4px);
    box-shadow:
      0 22px 40px rgba(0, 0, 0, 0.44),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }
}

/* -------- side nav buttons (circle, like screenshot) -------- */

.inspx9v2-nav {
  position: absolute;
  top: 50%;
  transform: translateY(22px); /* slight lower like screenshot */
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    opacity 200ms ease;
  user-select: none;
}

.inspx9v2-nav span {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.inspx9v2-navPrev {
  left: 8px;
}
.inspx9v2-navNext {
  right: 8px;
}

.inspx9v2-nav:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(22px) scale(1.03);
}

.inspx9v2-nav:active {
  transform: translateY(22px) scale(0.99);
}

.inspx9v2-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

/* if Swiper disables buttons */
.inspx9v2-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
/* --- staggered (up/down) layout like in screenshot --- */
.inspx9v2-gallery {
  --inspx9v2-stagger: 34px; /* сила "шахматки" */
}

/* вверх/вниз для слайдов */
.inspx9v2-track .inspx9v2-slide:nth-child(odd) {
  transform: translateY(calc(var(--inspx9v2-stagger) * -1));
}

.inspx9v2-track .inspx9v2-slide:nth-child(even) {
  transform: translateY(var(--inspx9v2-stagger));
}

/* чтобы влезало по высоте и не резалось */
.inspx9v2-gallery {
  padding-top: 44px;
  padding-bottom: 44px;
}

/* на мобилке обычно шахматку лучше выключить */
@media (max-width: 720px) {
  .inspx9v2-gallery {
    --inspx9v2-stagger: 0px;
  }
}

@media (max-width: 720px) {
  .inspx9v2-sec {
    padding: 56px 0 52px;
  }
  .inspx9v2-shell {
    width: min(1240px, calc(100% - 28px));
  }
  .inspx9v2-head {
    margin-bottom: 24px;
  }
  .inspx9v2-nav {
    display: none;
  } /* on mobile user swipes */
  .inspx9v2-slide {
    width: min(78vw, 320px);
    height: min(88vw, 380px);
  }
}

.featuresWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feaItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  img {
    height: 500px;
    width: 400px;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: top;
  }
}
.feaWrap {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .feaWrap {
    margin-bottom: 20px;
  }
  .featuresWrap {
    flex-direction: column;
    gap: 20px;
  }
  .feaItem {
    gap: 20px;
    img {
      width: 100%;
    }
  }
}

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