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


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

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


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

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

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

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 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;
    }
  }


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

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

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


/* ===== ROADMAP BASE ===== */

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

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

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

  .roadmapEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    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.6;
    color: #cfcfcf;
  }

  /* ===== ROADMAP v1 (timeline) ===== */

  .roadmapTimeline {
    margin-top: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .roadmapStep {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 16px 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .roadmapStep::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

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

  .roadmapBadge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 6px;
  }

  .roadmapStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapStepText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== ROADMAP v2 (cards grid) ===== */

  .roadmapSection-v2 .roadmapGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

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

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

  .roadmapCardTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .roadmapYear {
    font-size: 13px;
    font-weight: 600;
  }

  .roadmapTag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2, 255, 57, 0.7);
    color: var(--secondStyleColor);
  }

  .roadmapCardTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapCardText {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
  }

  /* ===== ROADMAP v3 (horizontal track) ===== */

  .roadmapSection-v3 .roadmapTrack {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .roadmapTrackLine {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 0;
  }

  .roadmapStage {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 30px 18px 18px 18px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    z-index: 1;
  }

  .roadmapStage--active {
    border-color: var(--secondStyleColor);
  }

  .roadmapDot {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

  .roadmapStageLabel {
    margin-left: 28px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 4px;
  }

  .roadmapStageTitle {
    font-size: 16px;
    font-weight: 600;
    margin-left: 0;
    margin-bottom: 6px;
  }

  .roadmapStageText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== RESPONSIVE ===== */

  @media (max-width: 900px) {
    .roadmapSection-v2 .roadmapGrid {
      grid-template-columns: 1fr;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .roadmapTimeline {
      border-left: none;
      padding-left: 0;
    }

    .roadmapStep::before {
      left: 14px;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr;
    }

    .roadmapTrackLine {
      display: none;
    }
  }


.reviewHeader {
    color: var(--textColor1);
    margin-bottom: 40px;
  }

  /* Masonry как на скрине */
  .masonry {
    column-count: 3;
    column-gap: 28px;
  }

  .masonry-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    border-radius: var(--borderRadius);
    padding: 34px 32px 26px;
    margin: 0 0 28px;
    position: relative;
    border: 1px solid var(--secondStyleColor);
  }

  .quoteMark {
    width: 42px;
    height: 28px;
    display: inline-block;
    margin: 2px 0 18px;
  }

  /* две красные “галочки” */
  .quoteMark::before,
  .quoteMark::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 20px;
    height: 20px;
    background: var(--secondStyleColor);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .quoteMark::before {
    left: 32px;
  }
  .quoteMark::after {
    left: 56px;
    transform: scaleX(-1);
  }

  .text {
    margin: 0;
    color: var(--textColor1);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
  }

  .urevj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 30% 30%,
        rgba(255, 59, 48, 0.35),
        transparent 55%
      ),
      radial-gradient(
        circle at 70% 70%,
        rgba(30, 136, 255, 0.35),
        transparent 55%
      ),
      #f3f4f7;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bhkasjh {
    min-width: 0;
  }

  .name {
    margin: 0;
    font-weight: 800;
    font-size: 15px;
    color: var(--textColor1);
    line-height: 1.25;
  }

  .role {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--textColor1);
    font-weight: 600;
  }

  /* Точный “воздух” как в макете */
  .masonry-card.tight .text {
    line-height: 1.85;
  }

  /* Адаптив */
  @media (max-width: 1100px) {
    .masonry {
      column-count: 2;
    }
  }
  @media (max-width: 700px) {
    .masonry {
      column-count: 1;
    }
    .masonry-card {
      padding: 28px 22px 22px;
    }
    .quoteMark::before,
    .quoteMark::after {
      top: 28px;
    }
    .quoteMark::before {
      left: 22px;
    }
    .quoteMark::after {
      left: 46px;
    }
    .reviewHeader {
      margin-bottom: 20px;
    }
  }


/*  */
  .zq9-pulse {
    padding: clamp(18px, 3vw, 40px) 0;
    color: var(--txt);
  }

  .zq9-head {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(14px, 2vw, 22px);
  }

  .zq9-title {
    line-height: 1.15;
    margin: 0;
    letter-spacing: 0.2px;
  }

  .zq9-sub {
    margin: 0;
    color: var(--textColor1);
    white-space: nowrap;
  }

  .zq9-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .zq9-card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    overflow: hidden;
    padding: 16px;
    min-height: 168px;
  }

  .zq9-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(
      400px 120px at 20% 0%,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      transparent 60%
    );
    pointer-events: none;
    opacity: 0.9;
  }

  .zq9-card:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-1px);
    transition:
      transform 220ms ease,
      border-color 220ms ease;
  }

  .zq9-card * {
    position: relative;
    z-index: 1;
  }

  .zq9-card--big {
    padding: clamp(18px, 2.4vw, 28px);
    min-height: 260px;
  }

  .zq9-kicker {
    margin: 0 0 10px;
    color: var(--textColor1);
  }

  .zq9-pay {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
  }

  .zq9-payNum {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 650;
    letter-spacing: -0.5px;
  }

  .zq9-payUnit {
    font-size: 14px;
    color: var(--textColor1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Decorative “3D” blob + ribs like in the reference */
  .zq9-deco {
    position: absolute;
    left: -70px;
    bottom: -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
      radial-gradient(
        circle at 38% 35%,
        rgba(255, 255, 255, 0.14),
        transparent 55%
      ),
      radial-gradient(
        circle at 62% 70%,
        rgba(76, 222, 255, 0.24),
        transparent 60%
      ),
      radial-gradient(
        circle at 50% 50%,
        rgba(76, 222, 255, 0.12),
        rgba(0, 0, 0, 0) 60%
      );
    filter: blur(0.2px);
    opacity: 0.95;
    transform: rotate(-12deg);
    z-index: 0;
  }

  .zq9-ribs {
    position: absolute;
    left: -24px;
    bottom: -18px;
    width: 280px;
    height: 240px;
    background: repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 2px,
      rgba(255, 255, 255, 0) 10px,
      rgba(255, 255, 255, 0) 16px
    );
    mask-image: radial-gradient(circle at 45% 55%, #000 0 48%, transparent 70%);
    opacity: 0.9;
    z-index: 0;
  }

  .zq9-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .zq9-top {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
  }

  .zq9-h3 {
    margin: 0;
    font-weight: 600;
    color: var(--textColor1);
  }

  .zq9-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--textColor1);
    font-size: 20px;
  }

  .zq9-miniA {
    opacity: 0.75;
  }
  .zq9-miniSep {
    opacity: 0.55;
  }
  .zq9-miniB {
    color: var(--secondStyleColor);
  }

  .zq9-chart {
    padding: 6px 0 2px;
  }

  .zq9-chart svg {
    width: 100%;
    height: 120px;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(76, 222, 255, 0.1));
  }

  .zq9-foot {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
  }

  .zq9-badge {
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: var(--bodyBG);
    color: var(--textColor1);
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .zq9-badge--down {
    border-color: rgba(76, 222, 255, 0.18);
    background: rgba(76, 222, 255, 0.06);
  }

  .zq9-badge--up {
    border-color: rgba(76, 222, 255, 0.26);
    background: rgba(76, 222, 255, 0.1);
  }

  /* Responsive layout similar to reference */
  @media (min-width: 860px) {
    .zq9-grid {
      grid-template-columns: 1.05fr 2fr;
      align-items: stretch;
    }
    .zq9-card--big {
      min-height: 360px;
    }
    .zq9-metrics {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 520px) and (max-width: 859px) {
    .zq9-metrics {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .zq9-card:hover {
      transform: none;
    }
    .zq9-card {
      transition: none;
    }
  }


/*  */

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


: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; /* чтобы не занимала слишком много */
    }
  }


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


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

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

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

    && p {
      width: 100%;
    }

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

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

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

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


/* ===========================
   FAQ 2026 — glass + neon + motion
   =========================== */

  .faq26 {
    position: relative;
    padding: clamp(56px, 6vw, 96px) 0;
    background:
      radial-gradient(
        1300px 760px at 18% 12%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 0%,
        transparent 62%
      ),
      radial-gradient(
        1050px 720px at 82% 18%,
        color-mix(in srgb, var(--bodyBG) 16%, transparent) 0%,
        transparent 68%
      ),
      radial-gradient(
        1100px 820px at 60% 92%,
        color-mix(in srgb, var(--bodyBG) 12%, transparent) 0%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        var(--bodyBG) 0%,
        color-mix(in srgb, var(--bodyBG) 92%, var(--secondStyleColor) 8%) 100%
      );

    overflow: hidden;
    color: var(--textColor1);
  }

  .faq26__head {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }

  .faq26__title {
    line-height: 1.05;
    margin: 0;
  }

  .faq26__sub {
    margin: 0;
    color: var(--textColor1);
    max-width: 62ch;
  }

  .faq26__grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  /* Card */
  .faq26__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 16px 18px;
    transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  /* gradient “neon edge” */
  .faq26__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: var(--borderRadius);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
  }

  .faq26__shine {
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 120%;
    background: radial-gradient(
      closest-side,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    );
    transform: translate3d(-20%, -20%, 0) rotate(12deg);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .faq26__card:hover .faq26__shine {
    opacity: 0.38;
  }

  /* Content */
  .faq26__content {
    position: relative;
    min-height: 76px;
    display: grid;
    align-content: center;
    padding-right: 8px;
  }

  /* Question / Answer layers */
  .faq26__q,
  .faq26__a {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    padding-right: 4px;
    will-change: transform, opacity, filter;
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.45s ease,
      filter 0.55s ease;
  }
  .faq26__q {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0px);
  }

  .faq26__a {
    opacity: 0;
    transform: translate3d(14px, 10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__step {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq26__qText {
    margin: 0;
    line-height: 1.2;
  }

  .faq26__hint {
    margin: 0;
    color: var(--textColor1);
  }

  .faq26__aTitle {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .faq26__aText {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.45;
  }

  .faq26__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  .faq26__chip {
    color: var(--textColor1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* Toggle button */
  .faq26__toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

  .faq26__toggle:hover {
    transform: translateY(-1px);
    border-color: var(--secondStyleColor);
  }
  .faq26__toggle:hover::before {
    opacity: 1;
  }

  .faq26__arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    border-top: 2px solid rgba(255, 255, 255, 0.86);
    transform: rotate(134deg);
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.3s ease;
  }

  /* OPEN STATE (answer visible) */
  .faq26__card.is-open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .faq26__card.is-open .faq26__q {
    opacity: 0;
    transform: translate3d(-18px, -10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__card.is-open .faq26__a {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0px);
  }

  .faq26__card.is-open .faq26__arrow {
    transform: rotate(312deg);
  }

  /* height animation via JS measured height */
  .faq26__content {
    transition: height 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
    height: 76px; /* will be overridden by JS */
  }
  /* по умолчанию (карточка закрыта): кликаем по вопросу */
  .faq26__q {
    pointer-events: auto;
  }
  .faq26__a {
    pointer-events: none;
  }

  /* когда открыто: кликаем по ответу, вопрос клики не ловит */
  .faq26__card.is-open .faq26__q {
    pointer-events: none;
  }
  .faq26__card.is-open .faq26__a {
    pointer-events: auto;
  }

  /* опционально, чтобы было понятно что кликабельно */
  .faq26__q,
  .faq26__a {
    cursor: pointer;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq26__bg {
      animation: none;
    }
    .faq26__q,
    .faq26__a,
    .faq26__toggle,
    .faq26__content {
      transition: none !important;
    }
  }

  /* Responsive */
  @media (max-width: 720px) {
    .faq26__card {
      grid-template-columns: 1fr;
    }
    .faq26__toggle {
      width: 100%;
      height: 44px;
      border-radius: 16px;
    }
  }


/* ===============================
   FOOTER — SUDOLAB neon style
=============================== */

  .site-footer {
    padding: 28px 0 22px;
    border-top: 1px solid var(--secondStyleColor);
    color: var(--textColor1);
    position: relative;
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

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

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

  .footer-main .logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 6px;
  }

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

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--textColor1);
    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 {
    border-color: var(--secondStyleColor);
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

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

  /* Bottom */

  .footer-bottom {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid var(--textColor1);
    font-size: 11.5px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--textColor1);
    font-weight: 700;
  }