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


/* new */
  .hero {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
  }

  /* Фоновое изображение */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.55);
    transform: scale(1.1);
    z-index: -1;
  }

  .hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .hero__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;
    a {
      width: fit-content;
    }
  }

  .hero__title {
    margin: 0 0 18px;
  }

  .hero__subtitle {
    font-size: 22px;
    color: var(--textColor1);
  }

  .hero__btn {
    margin-top: 28px;
    padding: 14px 30px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
  }

  .hero__right.metrics {
    display: grid;
    gap: 26px;
  }

  .metric__num {
    font: 900 54px/1 Montserrat, sans-serif;
  }

  .metric__label {
    font-size: 16px;
    color: var(--textColor1);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  @media (max-width: 900px) {
    .hero__inner {
      flex-direction: column;
      text-align: center;
    }
    .hero__left {
      max-width: 100%;
      align-items: center;
    }
    .hero {
      height: 80vh !important;
    }
    .hero__right.metrics {
      display: none;
    }
  }


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

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

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

  .toc {
    background-color: transparent;
  }

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

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

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

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

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

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

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

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

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


/*  */
  .about--pulse {
    padding: var(--sectionPadding);
    padding: 20px 0;
    border-radius: var(--borderRadius);
  }

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

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

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

  .aboutLead {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
    max-width: 72ch;
  }

  .aboutGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 16px;
    align-items: stretch;
  }

  .aboutCard {
    border-radius: calc(var(--borderRadius) * 0.85);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 42%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    padding: clamp(18px, 2.6vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .aboutCard h3 {
    margin: 0 0 10px 0;
    color: var(--textColor1);
  }

  .aboutCard p {
    margin: 0 0 12px 0;
    color: var(--textColor1);
    line-height: 1.7;
  }

  .aboutList {
    margin: 14px 0 18px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }

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

  .aboutLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid var(--secondStyleColor);
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease;
  }

  .aboutLink:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 70%, white);
  }

  .aboutCard--stats {
    gap: 10px;
    position: relative;
    overflow: hidden;
  }

  .aboutCard--stats::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
      transparent
    );
    pointer-events: none;
    opacity: 0.8;
  }

  .statItem {
    position: relative;
    z-index: 1;
    padding: 14px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
  }

  .statValue {
    margin: 0 0 4px 0;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    color: var(--secondStyleColor);
    line-height: 1.05;
  }

  .statLabel {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
    font-weight: 600;
  }

  .aboutStrip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .stripItem {
    border-radius: calc(var(--borderRadius) * 0.8);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    padding: 16px 18px;
    background: color-mix(in srgb, var(--mainStyleColor) 5%, transparent);
  }

  .stripItem h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
  }

  .stripItem p {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.9;
  }

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

    .aboutStrip {
      grid-template-columns: 1fr;
    }
  }


#plans .u3m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .r8h {
    margin-bottom: 40px;
  }
  .r8h h2,
  .r8h p {
    text-align: center;
  }

  .b6x {
    color: var(--textColor2);
    max-width: 420px;
    border-radius: var(--borderRadius);
    overflow: clip;
    padding: 20px;
    background: var(--bodyBG);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    backdrop-filter: blur(20px);
    position: relative;
    font-weight: 200;
    transition: 0.2s all linear;
  }

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

  .k1t {
    grid-template-areas: "stack";
    height: 600px;
    position: relative;
    border-radius: var(--borderRadius);
    overflow: clip;
    display: grid;
    box-shadow:
      inset 0 0 4px -2px #ffffff55,
      0 0 4px -2px #ffffff55;
  }

  .k1t img {
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius);
    object-fit: cover;
  }

  .k1t::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    backdrop-filter: blur(100px);
    -webkit-mask: linear-gradient(-14deg, black 30%, transparent 66%);
    mask: linear-gradient(-14deg, black 30%, transparent 66%);
  }

  .n9z {
    grid-area: stack;
  }

  .p4w {
    z-index: 1;
    grid-area: stack;
    margin-top: auto;
    padding: 1rem 2rem;
    && p {
      color: var(--textColor1);
    }
  }

  .s2d {
    color: var(--textColor1);
    font-size: 2.2rem;
    font-weight: 300;
  }

  .v1e {
    width: 30px;
    height: 30px;
  }

  .c7y {
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--textColor1);
  }

  .f5j {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 20px;
    color: var(--textColor1);
  }

  .f5j span {
    font-size: 44px;
    color: var(--textColor1);
    font-weight: 900;
  }

  @media (max-width: 800px) {
    #plans .u3m {
      flex-direction: column;
    }
    .r8h {
      margin-bottom: 20px;
    }
    .k1t {
      height: 450px;
    }
  }


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


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


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


/* ===== HOW IT WORKS SECTION ALT (VARIANT 2) ===== */

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

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

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

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

  .howTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

  /* Timeline */
  .howAltTimeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 28px;
  }

  .howAltLine {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      rgba(2, 255, 57, 0.05)
    );
  }

  /* Step */
  .howAltStep {
    position: relative;
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
  }

  .howAltDot {
    position: relative;
    flex: 0 0 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    z-index: 1;
    margin-left: -2px;
  }

  .howAltStepBody {
    border-radius: var(--borderRadius);
    padding: 18px 20px 18px 20px;
    border: 4px dotted var(--secondStyleColor);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

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

  .howAltStepText {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
  }

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

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

    .howAltLine {
      left: 10px;
    }

    .howAltStep {
      gap: 12px;
    }

    .howAltStepBody {
      padding: 16px 16px;
    }
  }


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


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


/*  */
  .faq--builder {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--builder .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }

  .faqContent {
    width: 100%;
  }

  .faqContent h2 {
    margin: 0 0 12px 0;
  }

  .faqLead {
    margin: 0 0 28px 0;
    color: var(--textColor1);
    opacity: 0.9;
    max-width: 70ch;
  }

  .containerFAQ {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accord__item {
    border: 1px dotted
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    border-radius: calc(var(--borderRadius) * 0.75);
    overflow: clip;
    transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
  }

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

  .accord__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
  }

  .accord__trigger:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .accord__title {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.35;
  }

  .accord__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .accord__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
    padding: 0 20px;
  }

  .accord__panel p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .accord__panel.show {
    opacity: 1;
    padding-top: 2px;
  }

  .faqImageWrap {
    display: block;
    height: 100%;
  }

  .faqImagePlaceholder {
    width: 100%;
    height: 785px;
    min-height: 320px;
    border-radius: var(--borderRadius);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 65%, transparent);
    background:
      radial-gradient(
        120% 120% at 100% 0%,
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 0%,
        transparent 55%
      ),
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 12%, transparent),
        transparent 60%
      );
    padding: 12px;
  }

  .faqImagePlaceholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: var(--borderRadius);
  }

  @media (max-width: 980px) {
    .faq--builder .container {
      grid-template-columns: 1fr;
      && h2 {
        text-align: center;
      }
    }

    .faqImageWrap {
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .accord__trigger {
      padding: 16px 16px;
    }

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }


.site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .intoLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    span {
      width: 8px;
      height: 8px;
      background-color: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }