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


.grid-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    && h1 {
      text-transform: uppercase;
      font-weight: 900;
      color: var(--secondStyleColor);
    }
  }
  .fonImgGrid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, 1fr);
    gap: 0;
    z-index: 0;
    filter: grayscale(1) blur(5px);
    opacity: 0.3;

    /* ДВИЖЕНИЕ ФОНА */
    transform: scale(
      1.1
    ); /* чуть увеличим, чтобы при движении не было чёрных краёв */
    animation: grid-drift 30s linear infinite alternate;
  }

  @keyframes grid-drift {
    0% {
      transform: translate3d(-3%, -3%, 0) scale(1.1);
    }
    50% {
      transform: translate3d(3%, -1%, 0) scale(1.1);
    }
    100% {
      transform: translate3d(3%, 3%, 0) scale(1.1);
    }
  }

  /* каждая ячейка */
  .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* сами картинки растягиваем под ячейку */
  .hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* контент поверх фона */
  .grid-hero > .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .grid-hero a {
    width: fit-content;
  }

  .grid-hero p {
    max-width: 600px;
  }

  .grid-hero a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-weight: 600;
  }

  /* маленькие телефоны */
  @media (max-width: 800px) {
    .fonImgGrid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: minmax(100px, 1fr);
      animation-duration: 65s;
    }

    .grid-hero h1 {
      font-size: 1.6rem;
    }

    .grid-hero p {
      font-size: 0.85rem;
    }

    .grid-hero a {
      text-align: center;
    }
  }


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


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


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


/* =========================================================
   Testimonials (unique classes: tstx7k1-*)
   ========================================================= */

  .tstx7k1-sec {
    position: relative;
    padding: 74px 0 92px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* декоративные "веточки" по бокам (inline SVG как фон) */
  .tstx7k1-sec::before,
  .tstx7k1-sec::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(420px, 28vw);
    opacity: 0.22;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(1);
  }

  .tstx7k1-shell {
    width: min(1200px, calc(100% - 44px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .tstx7k1-head {
    text-align: center;
    margin-bottom: 28px;
  }

  .tstx7k1-title {
    margin: 0;
    font-size: clamp(26px, 2.4vw, 40px);
    letter-spacing: 0.01em;
    font-weight: 700;
  }

  .tstx7k1-dots {
    margin: 12px auto 0;
    display: inline-flex;
    gap: 12px;
    opacity: 0.6;
  }
  .tstx7k1-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--textColor1);
  }

  /* ----- stage (slider area) ----- */

  .tstx7k1-stage {
    position: relative;
    padding-top: 8px;
  }

  .tstx7k1-sw {
    width: 100%;
    overflow: visible;
  }

  .tstx7k1-slide {
    display: flex;
    justify-content: center;
    padding: 40px 0 18px;
    opacity: 0.18;
    transform: scale(0.86);
    transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
    filter: blur(0.3px);
  }

  .tstx7k1-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  .tstx7k1-card {
    width: min(720px, 92vw);
    text-align: center;
  }

  .tstx7k1-quoteMark {
    display: inline-flex;
    color: var(--secondStyleColor);
    opacity: 0.86;
    margin-bottom: 18px;
  }

  .tstx7k1-text {
    margin: 0 auto;
    width: min(720px, 92%);
    font-size: 18px;
    line-height: 1.9;
    font-style: italic;
    color: var(--textColor1);
  }

  .tstx7k1-author {
    margin-top: 54px;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: var(--secondStyleColor);
    opacity: 0.9;
  }

  /* ----- nav buttons (круглые) ----- */

  .tstx7k1-nav {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(31, 36, 38, 0.45);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
    user-select: none;
  }

  .tstx7k1-nav span {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .tstx7k1-prev {
    left: clamp(12px, 7vw, 160px);
  }
  .tstx7k1-next {
    right: clamp(12px, 7vw, 160px);
  }

  .tstx7k1-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .tstx7k1-nav:active {
    transform: translateY(-50%) scale(0.98);
  }

  .tstx7k1-nav:focus-visible {
    outline-offset: 4px;
  }

  .tstx7k1-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  /* ----- pagination dots ----- */

  .tstx7k1-pagi {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .tstx7k1-pagi .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: var(--textColor1);
    opacity: 1;
    margin: 0 !important;
  }

  .tstx7k1-pagi .swiper-pagination-bullet-active {
    background: var(--secondStyleColor);
  }

  /* ----- responsive ----- */

  @media (max-width: 900px) {
    .tstx7k1-sec {
      padding: 60px 0 72px;
    }
    .tstx7k1-prev {
      left: 14px;
    }
    .tstx7k1-next {
      right: 14px;
    }
    .tstx7k1-text {
      font-size: 16px;
      line-height: 1.85;
    }
    .tstx7k1-author {
      margin-top: 40px;
    }
  }

  @media (max-width: 520px) {
    .tstx7k1-nav {
      display: none;
    }
    .tstx7k1-slide {
      padding-top: 26px;
    }
  }


/*  */
  .zr-features {
    color: var(--textColor1);
    position: relative;
  }

  .zr-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.2), transparent 55%),
      linear-gradient(120deg, rgba(0, 0, 0, 0.15), transparent 60%);
    z-index: -1;
  }

  .zr-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
  }

  .zr-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

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

  .zr-lead {
    max-width: 520px;
    text-wrap: balance;
    opacity: 0.85;
  }

  .zr-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .zr-badges span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .zr-btn {
    width: fit-content;
    padding: 12px 26px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    transition: transform 0.2s ease;
  }

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

  .zr-right {
    display: grid;
    gap: 16px;
  }

  .zr-card {
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    padding: 20px 22px;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .zr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  }

  .zr-cardTop {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .zr-index {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  @media (max-width: 900px) {
    .zr-shell {
      grid-template-columns: 1fr;
    }
  }


/* ===== ROADMAP SECTION v2 ===== */

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

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

  /* Header */

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

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

  .roadmapTitle {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
  }

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

  /* Timeline */

  .roadmapTimeline {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Один шаг */

  .roadmapStep {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
  }

  /* Левая колонка — маркеры */

  .roadmapMarker {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .roadmapDot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
    margin-top: 6px;
    z-index: 2;
  }

  .roadmapDot-final {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.18);
  }

  /* Вертикальная линия */

  .roadmapLine {
    position: absolute;
    top: 20px;
    bottom: -18px;
    width: 1px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      rgba(2, 255, 57, 0.1)
    );
    z-index: 1;
  }

  /* Правая колонка — карточка шага */

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

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

  .roadmapCard-final {
    background: #272d27;
  }

  /* Тексты шага */

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

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

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

  /* Адаптив */

  @media (max-width: 700px) {
    .roadmapTitle {
      font-size: 28px;
    }

    .roadmapStep {
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
    }

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


/* ===== HOW v4 (random class variant) ===== */

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

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

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

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

  .howMainTitle_jx7p {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
  }

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

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

  /* Tile */
  .howTile_r0x4 {
    position: relative;
    text-align: center;
    border-radius: var(--borderRadius);
    padding: 26px 20px 24px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    overflow: hidden;
  }

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

  .howTile_r0x4::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;
    transition: 0.25s ease;
  }

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

  /* Badge */
  .howNum_b7d2 {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  /* Icon */
  .howIcon_f2m9 {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
  }

  .howIcon_f2m9 i {
    font-size: 22px;
    color: var(--secondStyleColor);
  }

  /* Titles */
  .howTitle_g4s0 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

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

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


.panels {
    display: flex;
    width: 100%;
  }

  .galeryhead {
    margin-bottom: 45px;
    color: var(--textColor1);
  }

  .panel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 5%;
    position: relative;
    height: 500px;
    margin: 0 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    position: relative;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      position: absolute;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: center;
      user-select: none;
    }
  }

  .panel.active {
    flex: 5;
    opacity: 1;
  }

  .panel.active h1 {
    opacity: 1;
    right: 0;
    filter: blur(0);
    transition: all 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6);
    transition-delay: 200ms;
  }

  @media (max-width: 800px) {
    .galeryhead {
      margin-bottom: 30px;
    }
    .panels {
      flex-direction: column;
    }

    .panel {
      width: 100%;
      height: 220px;
      flex: 0 0 auto;
      margin: 0 0 10px;
      opacity: 1;
    }
  }


.marquee {
    padding: 10px 0;
    border-top: 1px solid var(--secondStyleColor);
    border-bottom: 1px solid var(--secondStyleColor);
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .marquee .track {
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    padding: 12px 0;
    width: max-content;
    animation: scroll 56s linear infinite;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--textColor1);
    -webkit-animation: scroll 56s linear infinite;
  }
  .marquee span::before {
    content: "♥";
    /* font-size: 24px; */
    margin: 0 10px 0 0;
    color: var(--secondStyleColor);
  }
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }


/* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

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

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

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

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

  /* Grid */
  .faqColsGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

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

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

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

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

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


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