:root{--font-sans:'Archivo', 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;
    }
  }


/* ===== hero shell ===== */
  .z9q-heroBox {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 24px);
    background:
      radial-gradient(
        900px 450px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
        transparent 55%
      ),
      radial-gradient(
        700px 380px at 75% 30%,
        color-mix(in srgb, var(--secondStyleColor) 30%, transparent),
        transparent 55%
      ),
      radial-gradient(
        500px 380px at 55% 95%,
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        color-mix(in srgb, var(--textColor2) 10%, transparent) 15%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
      );

    display: flex;
    align-items: center;
    width: 100%;
    isolation: isolate;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      opacity: 0.1;
      z-index: -1;
      inset: 0;
    }
  }

  .z9q-heroBox::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--borderRadius);
    pointer-events: none;
  }

  /* left/right striped “curtains” */
  .k2p-curtain,
  .k2p-curtain2 {
    position: absolute;
    top: -40px;
    bottom: -60px;
    width: 34%;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
  }

  .k2p-curtain {
    left: -8%;
    transform: skewX(-12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(60% 70% at 65% 50%, #000 60%, transparent 100%);
  }

  .k2p-curtain2 {
    right: -10%;
    transform: skewX(12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(65% 70% at 35% 55%, #000 60%, transparent 100%);
  }

  /* subtle diagonal lines behind */
  .p7x-gridwash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 45%),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0 1px,
        transparent 1px 18px
      );
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }

  /* ===== main layout ===== */
  .n0v-stage {
    position: relative;
    z-index: 2;
  }

  .t5q-centerCopy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .x8h-title {
    color: var(--textColor1);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .g7p-sub {
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto;
  }

  .j3c-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--textColor1);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.2s all linear;
    width: fit-content;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  /* ===== responsive rules ===== */
  @media (max-width: 780px) {
    .z9q-heroBox {
      min-height: 550px;
    }
    .t5q-centerCopy {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin: 10px auto 12px;
      padding: 0 6px;
    }

    .k2p-curtain,
    .k2p-curtain2 {
      opacity: 0.55;
      width: 46%;
    }
  }


: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: 2px dotted 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;
    }
  }


/*  */
  #about {
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 80%,
      var(--bodyBG) 100%
    );
  }

  #about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    && h2 {
      text-align: center;
    }

    && p {
      text-align: center;
      text-wrap: balance;
    }
    && a {
      padding: 15px 40px;
      background-color: var(--secondStyleColor);
      border-radius: var(--borderRadius);
      color: var(--textColor2);
      font-size: 20px;
      font-weight: 700;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-4px);
      }
    }
  }
  .ab-i-wr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    position: relative;
  }
  .ab-i-wr div:nth-of-type(1) {
    height: 400px;
    width: 300px;
    overflow: hidden;
    border-radius: 999px;
    && img {
      border-radius: inherit;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: top;
      transition: 0.2s all linear;
      &&:hover {
        transform: scale(1.1);
      }
    }
  }

  .ab-i-wr div:nth-of-type(2) {
    position: absolute;
    height: 300px;
    left: 10%;
    top: 10%;
    overflow: hidden;
    width: 300px;
    border-radius: 50%;
    && img {
      border-radius: inherit;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: top;
      transition: 0.2s all linear;
      &&:hover {
        transform: scale(1.1);
      }
    }
  }

  .ab-i-wr div:nth-of-type(3) {
    position: absolute;
    height: 300px;
    right: 10%;
    top: 10%;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;

    && img {
      border-radius: inherit;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: top;
      transition: 0.2s all linear;
      &&:hover {
        transform: scale(1.1);
      }
    }
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
    }
    .ab-i-wr div:nth-of-type(2),
    .ab-i-wr div:nth-of-type(3) {
      display: none;
    }
  }


/*  */
  #features {
    position: relative;
  }
  #features img {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 0.1;
  }
  #features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    && a {
      padding: 15px 60px;
      background-color: var(--secondStyleColor);
      border-radius: var(--borderRadius);
      font-size: 20px;
      color: var(--textColor2);
      transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
      &&:hover {
        padding: 15px 80px;
      }
    }
    && h2 + p {
      text-align: center;
      text-wrap: balance;
    }
  }
  .fcsardjarwi {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  .cdfeeooofwwqr {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 40px;
  }
  .fcoooo {
    padding: 40px;
    color: var(--textColor1);
    background-color: rgba(16, 16, 20, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid var(--secondStyleColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: var(--borderRadius);
    && span {
      font-size: 40px;
      font-weight: 900;
    }
    && p {
      text-align: center;
    }
  }

  @media (max-width: 800px) {
    .cdfeeooofwwqr {
      flex-direction: column;
      gap: 20px;
    }
    .fcoooo {
      padding: 20px;
    }
    .fcsardjarwi {
      margin-top: 20px;
      gap: 20px;
    }
  }


/*  */
  .qx-plans {
    color: var(--textColor1);
  }

  .qx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .qx-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .qx-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
  }

  .qx-sub {
    max-width: 420px;
    text-wrap: balance;
    opacity: 0.8;
  }

  .qx-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
  }

  .qx-card {
    position: relative;
    z-index: 1;
    border-radius: var(--borderRadius);
    padding: 26px 26px 28px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(0, 0, 0, 0.12);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .qx-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .qx-card--core {
    background: var(--secondStyleColor);
    color: var(--textColor2);
    border-color: transparent;
    transform: translateY(-10px);
  }

  .qx-card--core .qx-btn {
    border-color: var(--textColor2);
    color: var(--textColor2);
  }

  .qx-flag {
    position: absolute;
    top: 14px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--textColor2);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .qx-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .qx-price {
    font-size: 30px;
    font-weight: 700;
  }

  .qx-note {
    font-size: 13px;
    opacity: 0.85;
  }

  .qx-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .qx-list li {
    padding-left: 18px;
    position: relative;
  }

  .qx-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 2px;
    background: currentColor;
    opacity: 0.7;
  }

  .qx-btn {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .qx-btn--dark {
    background: rgba(0, 0, 0, 0.25);
  }

  .qx-btn:hover {
    transform: translateY(-2px);
  }

  .qx-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .qx-link {
    padding: 8px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--textColor1);
    transition: transform 0.2s ease;
  }

  .qx-link:hover {
    transform: translateY(-2px);
  }

  @media (max-width: 900px) {
    .qx-head {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .qx-card--core {
      transform: none;
    }
  }


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


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


:root {
    --images-amount: 6;
    --highlight: var(--secondStyleColor);
    --border-a: rgba(247, 176, 91, 0.16);
    --border-b: rgba(247, 147, 76, 0.16);
    --transition-duration: 620ms;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
  }

  .gallery {
    position: relative;
    width: 80%;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5em;
    padding: 10px;
    overflow: hidden;
    user-select: none;
  }

  #gallery .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .gallery-header {
    text-align: center;
    margin-bottom: 40px;
    && p {
      text-align: center;
      margin: 0 auto;
      text-wrap: balance;
    }
  }

  .gallery__image-wrapper {
    position: relative;
    cursor: pointer;
    padding-top: 75%;
    width: 100%;
    height: 0;
    transform-origin: 0 0;
    overflow: hidden;
    grid-row: span 2;
    grid-column: span 2;
    box-sizing: content-box;
    backface-visibility: hidden;
    perspective: 1px;
    transform: translate3d(0, 0, 1px);
    border-radius: var(--borderRadius);

    && img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: top;
    }
  }

  .gallery__image-wrapper::before,
  .gallery__image-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .gallery__image-wrapper::after {
    background: #000;
    opacity: 0.33;
    z-index: 1;
    transform: translate(0, 0);
    transition: all 500ms ease-out;
  }

  .gallery__image-wrapper::before {
    opacity: 0;
    z-index: 2;
    background: var(--secondStyleColor);
    transition: all 160ms ease-in;
    mix-blend-mode: hard-light;
  }

  .gallery__image-wrapper:hover:not(.gallery__image-wrapper--selected)::before {
    opacity: 0.32;
  }

  .gallery__image-wrapper:nth-child(1) {
    order: 2;
  }
  .gallery__image-wrapper:nth-child(2) {
    order: 4;
  }
  .gallery__image-wrapper:nth-child(3) {
    order: 6;
  }
  .gallery__image-wrapper:nth-child(4) {
    order: 8;
  }
  .gallery__image-wrapper:nth-child(5) {
    order: 10;
  }
  .gallery__image-wrapper:nth-child(6) {
    order: 12;
  }

  .gallery__image {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    border-radius: var(--borderRadius);
    width: auto;
    transform: translate(-50%, -50%);
    transition: all 320ms ease;
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected {
    grid-row: span 4;
    grid-column: span 4;
    z-index: 1;
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(
      odd
    )::after {
    transform: translate(0, 100%);
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(
      even
    )::after {
    transform: translate(100%, 0);
  }

  /* SCSS: &:nth-child(images-amount / 2) => 3 */
  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(3) {
    order: 3;
  }

  /* SCSS: &:nth-child(images-amount) => 6 */
  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(6) {
    order: 9;
  }

  /* ===== Mobile adaptive (paste at the end of your CSS) ===== */
  @media (max-width: 640px) {
    .gallery {
      width: 100%;
      max-width: 560px;
      gap: 0.35em;
      padding: 0.35em;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: none;
      grid-auto-rows: 1fr;
    }
    .gallery-header {
      margin-bottom: 20px;
    }

    .gallery__image-wrapper {
      grid-column: span 1;
      pointer-events: none;
      grid-row: span 1;
      padding-top: 78%;
    }

    /* выбранный элемент — на всю ширину */
    .gallery__image-wrapper.gallery__image-wrapper--selected {
      grid-column: 1 / -1;
      grid-row: span 2;
    }

    /* На мобиле лучше не мудрить с order — стабильно и предсказуемо */
    .gallery__image-wrapper {
      order: initial !important;
    }
    .gallery__image-wrapper.gallery__image-wrapper--selected {
      order: -1 !important; /* выбранная уедет вверх */
    }
  }

  /* Extra-small phones: 1 колонка */
  @media (max-width: 420px) {
    .gallery {
      grid-template-columns: 1fr;
    }

    .gallery__image-wrapper {
      grid-column: span 1;
      grid-row: span 1;
      padding-top: 75%;
    }

    .gallery__image-wrapper.gallery__image-wrapper--selected {
      grid-column: span 1;
      grid-row: span 1; /* чтобы не занимала слишком много */
    }
  }


/*  */
  .vx-partners {
    color: var(--textColor1);
  }

  .vx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vx-head {
    max-width: 560px;
  }

  .vx-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .vx-copy {
    margin-top: 12px;
    opacity: 0.8;
    text-wrap: balance;
  }

  .vx-stage {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }

  .vx-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--secondStyleColor);
    opacity: 0.5;
    animation: vx-rotate 18s linear infinite;
  }

  .vx-glow {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 40%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
    z-index: 0;
  }

  .vx-logoBox {
    position: relative;
    z-index: 1;
    width: min(260px, 65%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid var(--secondStyleColor);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vx-logoBox:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vx-logoBox img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

  @keyframes vx-rotate {
    to {
      transform: rotate(360deg);
    }
  }

  @media (max-width: 800px) {
    .vx-shell {
      gap: 24px;
    }
    .vx-ring {
      display: none;
    }
  }


/* ===== ROADMAP v5 ===== */

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

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

  /* Header */
  .roadmapHeader {
    max-width: 760px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

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

  .roadmapTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .roadmapSubtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
  }

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

  /* Card */
  .roadmapCard-v5 {
    position: relative;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 24px 34px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  /* Dot */
  .roadmapDot-v5 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    margin-bottom: 14px;
  }

  /* Text inside */
  .roadmapCardTitle-v5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .roadmapCardText-v5 {
    font-size: 15px;
    line-height: 1.7;
    color: #dcdcdc;
    margin-bottom: 18px;
  }

  /* Badge */
  .roadmapBadge-v5 {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(2, 255, 57, 0.12);
    color: var(--secondStyleColor);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
  }

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


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


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