:root{--font-sans:'Space Grotesk', sans-serif;}


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

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* 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-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: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

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

  .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 {
    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;
      border: none;
    }

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

  .toc {
    background-color: transparent;
  }

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

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

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

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

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

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

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

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


.ai-technology h2 {
    text-align: left;
  }
  .ai-technology__body {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .ai-technology__body-text ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  .ai-technology__body-img {
    width: 600px;
    height: 500px;
    border-radius: var(--borderRadius);
    img {
      object-fit: cover;
      border-radius: inherit;
      width: 100%;
      height: 100%;
      object-position: top;
    }
  }
  .ai-technology__body-text li {
    flex: 1 1 30%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    border-radius: var(--borderRadius);
    background-color: transparent;
    border: 1px solid var(--secondStyleColor);
    color: var(--textColor1);
  }
  .ai-technology__body-text li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* color: var(--pink); */
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    font-family: "Inter", serif;
  }
  .ai-technology__body-text li > span:first-child {
    position: relative;
    z-index: 0; /* чтобы сам span был поверх псевдоэлемента */
  }

  .ai-technology__body-text li > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    p {
      text-align: left;
    }
  }
  .ai-technology__body-text li > div span {
    font-weight: 600;
    font-size: 24px;
    line-height: 31.2px;
  }

  @media (max-width: 800px) {
    .ai-technology__body {
      flex-direction: column;
    }
    .ai-technology__body-img {
      width: 100%;
    }
    .ai-technology__header h2 {
      text-align: center;
    }
  }


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


/* ====== hxqZp (responsive) ====== */
  .hxqZp {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 6vw, 92px) 0;
    color: var(--textColor1);
  }

  .hxqZp-bg {
    position: absolute;
    inset: -2px;
    background:
      radial-gradient(
        900px 420px at 50% 110%,
        rgba(255, 255, 255, 0.05),
        transparent 60%
      ),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0 1px,
        transparent 1px 14px
      );
    opacity: 0.22;
    pointer-events: none;
    mask-image: radial-gradient(60% 60% at 50% 45%, #000 30%, transparent 70%);
  }

  .hxqZp-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .hxqZp-head h2,
  .hxqZp-head p {
    text-align: center;
  }

  .hxqZp-ttl {
    line-height: 1.08;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
  }

  .hxqZp-sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
  }

  .hxqZp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .hxqZp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 18px;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .hxqZp-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
  }

  .hxqZp-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .hxqZp-box h3,
  .hxqZp-box p {
    text-align: center;
  }

  .hxqZp-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--borderRadius);
    display: grid;
    place-items: center;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
    background:
      radial-gradient(
        12px 12px at 30% 30%,
        color-mix(in srgb, var(--secondStyleColor) 70%, transparent),
        transparent 70%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        rgba(0, 229, 255, 0.1)
      );
  }

  .hxqZp-num {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 20px;
    opacity: 0.95;
  }

  .hxqZp-h3 {
    margin: 2px 0 6px 0;
    letter-spacing: -0.01em;
  }

  .hxqZp-p {
    margin: 0 0 10px 0;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .hxqZp-meta {
    display: flex;
    gap: 8px;
  }

  .hxqZp-chip {
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hxqZp-item {
      transition: none;
    }
  }


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


.bx7-cta-wrap {
    padding: 70px 0;
    color: var(--textColor1);
  }

  .bx7-cta-inner {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }

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

  .bx7-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #dcdcdc;
  }

  .bx7-btn {
    display: inline-block;
    background: var(--secondStyleColor);
    color: #111;
    padding: 12px 26px;
    font-weight: 600;
    border-radius: var(--borderRadius);
    transition: 0.2s ease;
  }

  .bx7-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }


/*  */
  .partners--luxe {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 20px 0;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  .partners--luxe::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -10%;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent),
      transparent 70%
    );
    opacity: 0.75;
    z-index: -2;
    pointer-events: none;
  }

  .partners--luxe::after {
    content: "";
    position: absolute;
    inset: auto -12% -40% auto;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--mainStyleColor) 26%, transparent),
      transparent 72%
    );
    opacity: 0.6;
    z-index: -3;
    pointer-events: none;
  }

  .partnersShell {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 4vw, 44px);
  }

  .partnersKicker {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-size: 13px;
  }

  .partnersHead h2 {
    margin: 0 0 10px 0;
  }

  .partnersCopy {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
  }

  .partnerCard {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(14px, 2.6vw, 26px);
    border-radius: calc(var(--borderRadius) * 0.9);
    padding: clamp(18px, 3vw, 32px);
    border: 2px solid
      color-mix(in srgb, var(--secondStyleColor) 44%, transparent);
    background:
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 14%, transparent),
        transparent 60%
      ),
      color-mix(in srgb, var(--mainStyleColor) 6%, transparent);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  .partnerCard--feature::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    mask:
      linear-gradient(#000, #000) padding-box,
      linear-gradient(#000, #000);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
  }

  .partnerMedia {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 26px;
    padding: clamp(16px, 2.6vw, 26px);
    min-height: 200px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    background:
      radial-gradient(
        120% 120% at 10% 10%,
        color-mix(in srgb, var(--secondStyleColor) 22%, transparent),
        transparent 65%
      ),
      color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
    box-shadow:
      inset 0 0 0 1px
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      0 18px 40px rgba(0, 0, 0, 0.28);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .partnerMedia:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      inset 0 0 0 1px
        color-mix(in srgb, var(--secondStyleColor) 24%, transparent),
      0 26px 60px rgba(0, 0, 0, 0.34);
  }

  .partnerMedia img {
    max-width: min(190px, 80%);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.32));
  }

  .partnerMeta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .partnerMeta h3 {
    margin: 0;
    font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.15;
  }

  .partnerMeta > p {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.95;
    line-height: 1.7;
    max-width: 56ch;
  }

  .partnerBullets {
    margin: 6px 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
  }

  .partnerBullets li {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
    font-weight: 600;
  }

  .partnerAura {
    position: absolute;
    inset: auto -10% -40% auto;
    width: min(320px, 40vw);
    height: min(320px, 40vw);
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
      transparent 70%
    );
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
  }

  .partnerSide {
    display: grid;
    gap: 12px;
  }

  .partnerMini {
    border-radius: calc(var(--borderRadius) * 0.8);
    padding: 16px 18px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    position: relative;
    overflow: hidden;
  }

  .partnerMini::after {
    content: "";
    position: absolute;
    inset: auto -30% -60% auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      transparent 72%
    );
    opacity: 0.7;
    pointer-events: none;
  }

  .miniLabel {
    margin: 0 0 6px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    color: var(--secondStyleColor);
  }

  .miniText {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
    line-height: 1.65;
    position: relative;
    z-index: 1;
  }

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

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


/* ===== TESTIMONIALS SECTION STARS (VARIANT 3) ===== */

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

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

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

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

  .testimonialsTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

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

  /* Grid */
  .testimonialsStarsGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  /* Card base */
  .testimonialStarCard {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 22px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.2s ease;
    overflow: hidden;
  }

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

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

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

  /* Highlighted main card */
  .testimonialStarCard--highlight {
    grid-row: span 2;
  }

  /* Stars row */
  .testimonialStarsRow {
    display: flex;
    gap: 4px;
    font-size: 14px;
  }

  .testimonialStarsRow i {
    color: var(--secondStyleColor);
  }

  /* Text + meta */
  .testimonialStarText {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  .testimonialStarMeta {
    margin-top: 4px;
  }

  .testimonialStarName {
    font-size: 15px;
    font-weight: 600;
  }

  .testimonialStarRole {
    font-size: 13px;
    color: #b2b2b2;
  }

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

    .testimonialStarCard--highlight {
      grid-row: auto;
    }
  }


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

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

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

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

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

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

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

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

  /* Item */
  .faqItem {
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 22px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  /* Responsive */
  @media (max-width: 700px) {
    .faqItem {
      padding: 20px 18px;
    }
  }


/* ===== FOOTER ===== */

  .footer {
    background: #181818;
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

  .footerLogo i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: #bcbcbc;
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.15s ease;
  }

  .footerNav a:hover {
    color: var(--secondStyleColor);
  }

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9a9a9a;
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }