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


/*  */
  .homeuyydgb {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }

    && h1 {
      text-transform: uppercase;
      max-width: 900px;
    }

    && a {
      font-size: 18px;
      padding: 15px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--textColor1);
      width: fit-content;
      color: var(--bodyBG);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        background-color: var(--secondStyleColor);
      }
    }
  }

  .homeuyydgb .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    && .hrr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .hll {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      background-color: rgba(17, 17, 17, 0.4);
      position: relative;
      max-width: 500px;
      border-radius: var(--borderRadius);
      && span:first-child {
        font-size: 144px;
        font-weight: 900;
        color: var(--secondStyleColor);
      }
      && p {
        font-style: italic;
        color: var(--textColor1);
      }

      && .khvaejklj {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .homeuyydgb .container {
      flex-direction: column;
      && .hrr {
        align-items: center;
        && h1 {
          text-align: center;
        }
        && p {
          text-align: center;
        }
      }
      && .hll {
        gap: 10px;
        padding: 10px;
        && span:first-child {
          font-size: 75px;
        }
      }
    }
  }


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


/* контейнер секции */
  #reviews .swiper {
    width: 100%;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
  }

  .rv-wrap {
    padding: 40px 0 40px;
  }

  /* шапка секции */
  .rv-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    gap: 14px;
    margin-bottom: 45px;
  }

  .rv-kicker {
    grid-column: 1 / -1;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
  }

  .rv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
  }

  .rv-title {
    margin: 0;
    color: var(--textColor1);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.12em;
  }

  /* контролы */
  .rv-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }

  /* кнопки навигации */
  .rev-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 17px;
    transition: background 0.2s ease, border-color 0.2s ease,
      transform 0.18s ease;
  }

  .rev-btn:hover {
    transform: translateY(-1px);
  }

  /* карточки */
  .rv-card {
    background: var(--bodyBG);
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 18px 20px;
    color: var(--textColor1);
    display: flex;
    flex-direction: column;
    height: fit-content;
    cursor: grab;
    transition: border-color 0.2s ease, transform 0.22s ease;
  }
  .rv-card:active {
    cursor: grabbing;
  }

  /* верх карточки */
  .rv-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .rv-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.8);
    overflow: hidden;
  }

  .rv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rv-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
  }

  .rv-meta strong {
    color: var(--rv-text-main);
    font-weight: 700;
    font-size: 15px;
  }

  .rv-meta span {
    font-size: 12px;
    color: var(--textColor2);
  }

  .rv-rate {
    margin-left: auto;
    color: var(--secondStyleColor);
    font-weight: 800;
    font-size: 20px;
  }

  /* текст отзыва */
  .rv-quote {
    font-size: 14px;
    line-height: 1.5;
    margin: 6px 0 12px;
    color: var(--textColor1);
    flex-grow: 1;
  }

  /* теги */
  .rv-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .rv-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--rv-chip);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* мини-лейблы */
  .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

  /* адаптив */
  @media (max-width: 980px) {
    .rv-card {
      height: 190px;
      width: 90%;
      height: auto;
      margin-inline: auto;
      padding: 16px;
    }

    .pill {
      font-size: 12px;
    }
    .rv-quote {
      font-size: 20px;
    }
  }

  @media (max-width: 640px) {
    .rv-wrap {
      padding: 28px 0 32px;
    }

    .rv-card {
      width: 90%;
      height: auto;
      margin-inline: auto;
      padding: 16px;
      padding: 16px;
    }

    .rv-controls {
      justify-content: flex-start;
    }
  }


/* ===== ROADMAP SECTION v1 ===== */

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

  .roadmapHeader {
    max-width: 750px;
    margin: 0 auto 55px auto;
    text-align: center;
  }

  .roadmapEyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
  }

  .roadmapTitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--textColor1);
  }

  .roadmapSubtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    max-width: calc(var(--maxWidthContainer) - 20px);
    margin: 0 auto;
  }

  .roadmapTimeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .roadmapTimeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
  }

  .roadmapItem {
    position: relative;
    padding-left: 60px;
  }

  .roadmapMarker {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--secondStyleColor);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 57, 0.4);
  }

  .roadmapItemTitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--textColor1);
  }

  .roadmapItemText {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d1d1;
  }

  /* Адаптив */
  @media (max-width: 650px) {
    .roadmapTimeline::before {
      left: 12px;
    }

    .roadmapItem {
      padding-left: 45px;
    }

    .roadmapMarker {
      left: 3px;
    }

    .roadmapTitle {
      font-size: 26px;
    }
  }


/*  */
  .plx-tableSection {
    color: var(--textColor1);
  }

  .plx-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .plx-head p {
    opacity: 0.8;
    text-wrap: balance;
  }

  .plx-table {
    display: grid;
    gap: 12px;
  }

  .plx-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: rgba(0, 0, 0, 0.12);
  }

  .plx-row--head {
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
  }

  .plx-row--spot {
    border-width: 2px;
    background: rgba(0, 0, 0, 0.22);
  }

  .plx-row div:last-child {
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  @media (max-width: 800px) {
    .plx-row {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .plx-row--head {
      display: none;
    }

    .plx-row div {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 6px;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }

    .plx-row div:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .plx-row div::before {
      content: attr(data-label);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 11px;
      opacity: 0.7;
    }
  }


.partners {
    position: relative;
  }

  .partners::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background-color: var(--secondStyleColor);
    opacity: 0.1;
  }

  .partners__container {
    text-align: center;
  }
  .partnersHead {
    margin-bottom: 45px;
  }

  .partners__title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--textColor1);
  }

  .partners__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    padding-bottom: 0;
    gap: 30px;
  }

  .partners__logo-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all linear;
    img {
      height: 50%;
    }
  }

  .partners__logo-wrapper a:hover {
    transform: scale(1.05);
  }

  .partners__logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }
  @media (max-width: 800px) {
    .partners__logo-wrapper {
      flex-direction: column;
    }
    .partners__logo-wrapper a {
      width: 100%;
    }
  }


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


.b7x-wrap {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .b7x-inner {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  .b7x-head {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .b7x-label {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .b7x-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
  }

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

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

  /* Cards */
  .b7x-card {
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 20px 18px;
    transition: 0.2s ease;
  }

  .b7x-card:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  .b7x-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .b7x-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #dedede;
  }

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

  @media (max-width: 650px) {
    .b7x-grid {
      grid-template-columns: 1fr;
    }

    .b7x-head {
      margin-bottom: 30px;
    }
  }


/*  */

  #about {
    min-height: 500px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }
  }

  #about .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    && h2 {
      text-transform: uppercase;
      color: var(--textColor1);
    }
  }
  .ab-lllller {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ab-rrrrorjg {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px;
    && p {
      font-style: italic;
      color: var(--textColor1);
    }
    && a {
      text-transform: uppercase;
      padding: 15px 20px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      font-weight: 900;
      transition: 0.2s all linear;
      color: var(--textColor2);
      &&:hover {
        transform: translateY(-2px);
      }
    }
  }
  .ab-lllller > span:nth-of-type(1) {
    color: var(--secondStyleColor);
    font-style: italic;
  }
  .ab-lllller > span:nth-of-type(2) {
    font-size: 120px;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-style: italic;
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
      align-items: center;
    }
    .ab-lllller {
      align-items: center;
      && h2 {
        text-align: center;
      }
    }
    .ab-rrrrorjg {
      align-items: center;
      padding: 20px;
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
    .ab-lllller > span:nth-of-type(2) {
      font-size: 90px;
    }
  }


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


.mN2__ .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .headnMMMM2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    && h2 {
      text-align: center;
    }
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && span {
      width: 10%;
      height: 2px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
    }
  }

  /* HERO */
  .x9Qp1 {
    /* hero */
    position: relative;
    height: 120px;
    background: linear-gradient(326deg, var(--h1) 0%, var(--h2) 74%);
    display: grid;
    place-items: center;
    text-align: center;
  }
  .kZ_7m {
    /* hero cta wrapper */
    position: absolute;
    inset: 0;
    height: 200px;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .kZ_7m span {
    pointer-events: auto;
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-size: 15px;
    height: 44px;
    line-height: 24px;
    padding: 10px 28px;
    border-radius: 999px;
    position: relative;
    transition:
      transform 0.2s ease,
      padding 0.2s ease;
  }
  .kZ_7m span::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 12px solid var(--secondStyleColor);
    border-radius: 999px;
    opacity: 0.95;
  }
  .kZ_7m span:hover {
    transform: translateY(-1px);
    padding-left: 40px;
    padding-right: 40px;
  }
  .wA_vv {
    /* wave */
    position: absolute;
    left: 0;
    right: 0;
    bottom: -67px;
    height: 188px;
    background: url("https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png")
      repeat-x;
    animation: ZzWv9 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
    z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  }
  @keyframes ZzWv9 {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 1440px 0;
    }
  }

  .gR1dX {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    align-items: stretch;
  }
  @media (max-width: 980px) {
    .gR1dX {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .gR1dX {
      grid-template-columns: 1fr;
      gap: 44px;
    }
  }

  /* CARD */
  .bL0pA {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .iNn3r {
    position: relative;
    height: 100%;
    padding: 60px 30px 60px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    overflow: visible;
    transition: transform 0.2s ease;
  }
  /* TITLE PILL */
  .t1Tl3 {
    margin: 0 0 22px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .t1Tl3 > span {
    color: var(--textColor2);
    display: inline-block;
    padding: 10px 20px 10px 28px;
    border-radius: var(--borderRadius);
    background: var(--textColor1);
    position: relative;
  }
  .t1Tl3 > span > b {
    position: absolute;
    top: -3px;
    left: -30px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    display: grid;
    color: var(--textColor2);
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow:
      15px 15px 30px rgba(80, 80, 80, 0.2),
      5px 0 80px rgba(80, 80, 80, 0.15);
  }

  .xCrpT {
    margin: 0;
    padding: 0 18px;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--textColor2);
  }

  /* RIPPLE DOT */
  .d0Tt0 {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    box-shadow:
      5px 5px 10px rgba(163, 177, 198, 0.6),
      -5px -5px 10px rgba(255, 255, 255, 0.5);
  }
  .d0Tt0::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    animation: rrPpL 0.7s linear infinite;
    box-shadow:
      0 0 0 0 rgba(163, 177, 198, 0.3),
      0 0 0 1em rgba(163, 177, 198, 0.3),
      0 0 0 3em rgba(163, 177, 198, 0.03),
      0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  @keyframes rrPpL {
    0% {
      box-shadow:
        0 0 0 0 rgba(163, 177, 198, 0.3),
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
      box-shadow:
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.03),
        0 0 0 8em rgba(163, 177, 198, 0.01);
    }
  }

  .bL0pA:hover .iNn3r {
    transform: translateY(-2px);
  }


/* ===== 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 {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    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;
    }
  }


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