:root{--font-sans:'Archivo', sans-serif;}


/* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .headerButton {
    transition: 0.2s all linear;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    background-color: var(--textColor2);
    color: var(--textColor1);
    cursor: pointer;
    border-radius: var(--borderRadius);
  }
  .headerButton:hover {
    transform: translateY(-2px);
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .headerButton {
      display: none;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }


.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 v16 — Diagonal split with floating stat badges ===== */

  .ab16 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .ab16__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
  }

  /* Image side */
  .ab16__img-wrap {
    position: relative;
  }

  .ab16__img {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  }

  .ab16__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .ab16__img:hover img {
    transform: scale(1.04);
  }

  /* SVG diagonal */
  .ab16__diag {
    position: absolute;
    top: 0;
    right: -30px;
    width: 80px;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

  /* Floating badges */
  .ab16__badge {
    position: absolute;
    z-index: 3;
    padding: 14px 20px;
    border-radius: var(--borderRadius);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: ab16Float 3s ease-in-out infinite alternate;
  }

  .ab16__badge--top {
    top: 12%;
    right: -24px;
  }

  .ab16__badge--bot {
    bottom: 12%;
    right: -24px;
    animation-delay: 1.5s;
  }

  @keyframes ab16Float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
  }

  .ab16__badge strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab16__badge span {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    font-weight: 500;
  }

  /* Text side */
  .ab16__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ab16__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab16__text h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .ab16__text > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  .ab16__highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  .ab16__hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }

  .ab16__hl i {
    color: var(--secondStyleColor);
    font-size: 14px;
  }

  .ab16__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    width: fit-content;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .ab16__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ab16__badge--top,
    .ab16__badge--bot {
      right: -12px;
    }

    .ab16__diag {
      right: -16px;
      width: 50px;
    }
  }

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

    .ab16__img-wrap {
      max-width: 400px;
      margin: 0 auto;
    }

    .ab16__img {
      aspect-ratio: 4 / 3;
    }

    .ab16__text h2 {
      font-size: 24px;
    }

    .ab16__text > p {
      font-size: 14px;
    }
  }

  @media (max-width: 600px) {
    .ab16 {
      padding: 50px 0;
    }

    .ab16__badge {
      padding: 10px 14px;
    }

    .ab16__badge strong {
      font-size: 20px;
    }

    .ab16__diag {
      display: none;
    }

    .ab16__text h2 {
      font-size: 22px;
    }

    .ab16__hl {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab16__badge {
      animation: none;
    }

    .ab16__img img,
    .ab16__btn {
      transition: none;
    }
  }


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


/* ===== PARTNERS v8 — Glassmorphism card + info ===== */

  .pt8 {
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
  }

  .pt8__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  /* Glass card */
  .pt8__card {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    border-radius: calc(var(--borderRadius) * 1.3);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pt8__card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* Shimmer */
  .pt8__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    pointer-events: none;
  }

  .pt8__card:hover .pt8__shimmer {
    animation: pt8Sweep 0.9s ease forwards;
  }

  @keyframes pt8Sweep {
    to { left: 140%; }
  }

  .pt8__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt8__logo-wrap:hover {
    transform: scale(1.05);
  }

  .pt8__logo-wrap img {
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

  /* Info */
  .pt8__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .pt8__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt8__info h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .pt8__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  }

  .pt8__list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pt8__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .pt8__bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .pt8__card {
      max-width: 340px;
    }
  }

  @media (max-width: 800px) {
    .pt8__layout {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }

    .pt8__info {
      align-items: center;
    }

    .pt8__card {
      max-width: 300px;
    }

    .pt8__list li {
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .pt8 {
      padding: 50px 0;
    }

    .pt8__info h2 {
      font-size: 24px;
    }

    .pt8__desc {
      font-size: 14px;
    }

    .pt8__card {
      max-width: 260px;
    }

    .pt8__list li {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt8__card:hover .pt8__shimmer {
      animation: none;
    }
    .pt8__card,
    .pt8__logo-wrap {
      transition: none;
    }
  }


/* ===== HOW v16 — Animated glow cards + AOS + FontAwesome ===== */

  .hw16 {
    position: relative;
    padding: clamp(70px, 8vw, 120px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ---- Floating background orbs ---- */
  .hw16__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .hw16__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.12;
    animation: hw16Float 14s ease-in-out infinite alternate;
  }

  .hw16__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: -10%;
    left: -5%;
    animation-duration: 14s;
  }

  .hw16__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    bottom: -8%;
    right: -3%;
    animation-duration: 18s;
    animation-delay: -4s;
  }

  .hw16__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--secondStyleColor);
    top: 40%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -8s;
  }

  @keyframes hw16Float {
    0% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(30px, -20px) scale(1.1);
    }
    100% {
      transform: translate(-20px, 15px) scale(0.95);
    }
  }

  /* ---- Head ---- */
  .hw16__head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 65px;
  }

  .hw16__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .hw16__eyebrow i {
    font-size: 12px;
    animation: hw16Pulse 2s ease-in-out infinite;
  }

  @keyframes hw16Pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.2);
    }
  }

  .hw16__head h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }

  .hw16__head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  /* ---- Grid ---- */
  .hw16__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* ---- Card ---- */
  .hw16__card {
    position: relative;
    padding: 34px 24px 28px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    text-align: center;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .hw16__card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.3),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* Shimmer sweep */
  .hw16__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    pointer-events: none;
    transition: none;
  }

  .hw16__card:hover .hw16__shimmer {
    animation: hw16Shimmer 0.8s ease forwards;
  }

  @keyframes hw16Shimmer {
    to {
      left: 130%;
    }
  }

  /* Icon */
  .hw16__icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
  }

  .hw16__icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px dashed
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    animation: hw16Ring 10s linear infinite;
  }

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

  .hw16__icon {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(
      145deg,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hw16__card:hover .hw16__icon {
    transform: scale(1.1) rotate(-5deg);
  }

  .hw16__icon i {
    font-size: 26px;
    color: var(--secondStyleColor);
    filter: drop-shadow(
      0 4px 10px color-mix(in srgb, var(--secondStyleColor) 40%, transparent)
    );
    transition: transform 0.35s ease;
  }

  .hw16__card:hover .hw16__icon i {
    transform: scale(1.15);
  }

  /* Watermark number */
  .hw16__number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 64px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
  }

  .hw16__card:hover .hw16__number {
    opacity: 0.1;
  }

  .hw16__card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

  .hw16__card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Arrow connector between cards */
  .hw16__connector {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--bodyBG);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .hw16__connector i {
    font-size: 11px;
    color: var(--secondStyleColor);
    animation: hw16Arrow 1.5s ease-in-out infinite;
  }

  @keyframes hw16Arrow {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(3px);
    }
  }

  /* ---- Responsive ---- */
  @media (max-width: 950px) {
    .hw16__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    /* Hide horizontal connectors in 2-col */
    .hw16__card:nth-child(2) .hw16__connector,
    .hw16__card:nth-child(4) .hw16__connector {
      display: none;
    }

    .hw16__card {
      padding: 28px 20px 24px;
    }

    .hw16__icon-wrap {
      width: 64px;
      height: 64px;
    }

    .hw16__icon i {
      font-size: 22px;
    }
  }

  @media (max-width: 800px) {
    .hw16__head {
      margin-bottom: 45px;
    }

    .hw16__card h3 {
      font-size: 16px;
    }

    .hw16__card p {
      font-size: 13px;
    }

    .hw16__number {
      font-size: 52px;
    }

    .hw16__orb--1 {
      width: 250px;
      height: 250px;
    }
    .hw16__orb--2 {
      width: 200px;
      height: 200px;
    }
    .hw16__orb--3 {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .hw16 {
      padding: 55px 0;
    }

    .hw16__head {
      margin-bottom: 36px;
    }

    .hw16__head h2 {
      font-size: 24px;
    }

    .hw16__head p {
      font-size: 14px;
    }

    .hw16__eyebrow {
      font-size: 11px;
      padding: 6px 14px;
      margin-bottom: 16px;
    }

    .hw16__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    /* Hide all connectors on mobile */
    .hw16__connector {
      display: none;
    }

    .hw16__card {
      padding: 24px 18px 20px;
    }

    .hw16__icon-wrap {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw16__icon i {
      font-size: 20px;
    }

    .hw16__icon-ring {
      inset: -3px;
    }

    .hw16__card h3 {
      font-size: 16px;
    }

    .hw16__card p {
      font-size: 13px;
    }

    .hw16__number {
      font-size: 44px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw16__orb,
    .hw16__icon-ring,
    .hw16__eyebrow i,
    .hw16__connector i {
      animation: none;
    }
    .hw16__card,
    .hw16__icon,
    .hw16__icon i,
    .hw16__number {
      transition: none;
    }
    .hw16__card:hover .hw16__shimmer {
      animation: none;
    }
  }


/* фон как на скрине */
  .hnySec {
    padding: 70px 16px;
    overflow: hidden;
  }

  .hnyBox {
    --sz: 350px; /* ширина шестиугольника */
    --gap: 20px; /* расстояние по горизонтали */
    --over: -30px; /* насколько ряды "впиваются" друг в друга (подгони под себя) */
  }

  .hnyRow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  /* второй ряд: сдвиг на пол-тайла + перекрытие вверх */
  .ulhawbvhiwefsc {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    && h2 {
      text-align: center;
    }
    && span {
      width: 20%;
      height: 2px;
      margin: 0 auto;
      border-radius: var(--borderRadius);
      margin-top: 10px;
      margin-bottom: 10px;
      background-color: var(--secondStyleColor);
    }
    && p {
      text-align: center;
      text-wrap: balance;
    }
  }
  /* hexagon (flat-top) */
  .hnyIt {
    width: var(--sz);
    aspect-ratio: 1.1547 / 1; /* width/height, чтобы был "правильный" flat-top hex */
    display: block;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 10px; /* чуть мягче как на макете */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease,
      filter 0.15s ease;
    position: relative;
  }

  .hnyIt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1.06);
  }

  .hnyIt:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    filter: saturate(1.05);
  }

  /* адаптив */
  @media (max-width: 900px) {
    .hnyBox {
      --sz: 120px;
      --gap: 14px;
      --over: 28px;
    }
    .hnyIt {
      width: 100%;
    }
  }
  @media (max-width: 600px) {
    .hnyBox {
      --sz: 100px;
      --gap: 12px;
      --over: 22px;
    }
    .hnyRow {
      flex-wrap: wrap;
    }
    .hnyRow2 {
      transform: none;
      margin-top: var(--gap);
    }
  }


.unitLuma {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .unitLumaShell {
    max-width: var(--maxWidthContainer);
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 32px;
    align-items: center;
  }

  /* Левая колонка */
  .unitLumaLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .unitLumaTitle {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 14px 0;
  }

  .unitLumaLead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textColor1);
    max-width: 420px;
  }

  /* Правая колонка: карточки */
  .unitLumaGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

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

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

  .unitLumaCardAccent {
    background: radial-gradient(
      circle at top left,
      rgba(2, 255, 57, 0.16),
      #262626 55%
    );
  }

  .unitLumaCardTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
  }

  .unitLumaCardText {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
  }

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

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

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


.expertReview a {
    color: var(--secondStyleColor);
  }
  #expertreview h2 {
    text-align: center;
  }
  .expertReview p {
    border-left: 5px solid var(--secondStyleColor);
    padding-left: 20px;
    margin-bottom: 30px;
    span {
      font-style: italic;
      opacity: 0.6;
    }
  }


.faq {
    margin-bottom: 100px;
    color: var(--textColor1);
  }

  /* Внутренняя секция */
  .faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #262626;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  }

  .faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--textColor1);
  }

  /* Элементы FAQ */
  .faq-item {
    border-bottom: 2px solid var(--secondStyleColor);
    padding: 12px 0;
  }

  .faq h3 {
    margin: 10px 0;
  }

  /* Кнопка-вопрос */
  .faq-question {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    background: none;
    border: none;
    color: var(--textColor1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
  }

  .faq-question::after {
    content: "+";
    font-size: 32px;
    transition: transform 0.2s ease;
    color: var(--secondStyleColor);
  }

  .faq-question.active::after {
    content: "-";
    transform: rotate(180deg);
  }

  /* Ответ */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    color: var(--textColor1);
    padding-top: 0;
  }

  .faq-answer p {
    margin-top: 0;
  }

  /* Открытый ответ (по классу из твоего JS) */
  .faq-answer.open {
    max-height: 200px; /* можно увеличить, если текст длиннее */
    /* padding-top: 10px; */
  }

  /* Если используешь .reviewsWrapper рядом — оставил хук */
  .reviewsWrapper h2 {
    margin-bottom: 20px;
  }

  /* Мобилка */
  @media screen and (max-width: 750px) {
    .faq {
      margin-bottom: 60px;
    }

    .faq-section {
      padding: 30px 16px;
    }
  }


.site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

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

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

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

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

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #e5e7eb;
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

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

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

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

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

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      align-items: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }