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


:root {
    --c-red: #ef4540;
    --c-yellow: #ffb300;
    --c-green: #37b24d;
    --c-blue: #2fa4db;
    --c-indigo: #2f1cff;
    --c-purple: #9b00ff;
  }
  .heroSection {
    overflow: hidden;
    position: relative;
    min-height: 700px;
    display: flex;
    width: 100%;
    align-items: center;
  }
  .heroSectionBG {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: blur(15px);
    opacity: 0.2;
  }

  /* серый “лист” как на скрине */
  .hero-panel {
    position: relative;
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .content {
    max-width: 680px;
  }

  h1 {
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-size: clamp(38px, 4.8vw, 66px);
    color: var(--textColor1);
    text-transform: uppercase;
  }

  .sub {
    margin: 0 0 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--textColor1);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 46px;
    border-radius: var(--borderRadius);
    border: 0;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
  }

  /* Блоки справа снизу (ступеньки) */
  .blocks {
    position: relative;
    right: 0;
    width: 560px;
    height: 360px;
    pointer-events: none;
  }

  .b {
    position: absolute;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
  }

  .b.red {
    background: var(--c-red);
    left: 80px;
    bottom: 0px;
  }
  .b.yellow {
    background: var(--c-yellow);
    left: 210px;
    bottom: 130px;
  }
  .b.green {
    background: var(--c-green);
    left: 340px;
    bottom: 0px;
  }
  .b.indigo {
    background: var(--c-indigo);
    left: 470px;
    bottom: 130px;
  }
  .b.blue {
    background: var(--c-blue);
    left: 470px;
    bottom: 0px;
  }
  .b.purple {
    background: var(--c-purple);
    left: 600px; /* вылезает правее панели, как на скрине */
    bottom: 260px;
  }

  /* Иконки (все белые) */
  .icon {
    width: 64px;
    height: 64px;
    background: #fff;
  }

  /* ромб */
  .diamond {
    width: 62px;
    height: 62px;
    background: #fff;
    transform: rotate(45deg);
  }

  /* круг */
  .circle {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 999px;
  }

  /* квадрат */
  .square {
    width: 44px;
    height: 44px;
    background: #fff;
  }

  /* двойная стрелка (>>) */
  .chevrons {
    width: 70px;
    height: 42px;
    position: relative;
  }
  .chevrons::before,
  .chevrons::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 28px solid #fff;
    transform: translateY(-50%);
  }
  .chevrons::before {
    left: 6px;
  }
  .chevrons::after {
    left: 30px;
  }

  /* треугольник вниз */
  .tri {
    width: 0;
    height: 0;
    border-left: 34px solid transparent;
    border-right: 34px solid transparent;
    border-top: 56px solid #fff;
    transform: rotate(-12deg);
  }

  /* “звезда” 4 луча */
  .spark {
    width: 70px;
    height: 70px;
    background: #fff;
    clip-path: polygon(
      50% 0%,
      60% 32%,
      100% 50%,
      60% 68%,
      50% 100%,
      40% 68%,
      0% 50%,
      40% 32%
    );
  }

  /* адаптив */
  @media (max-width: 1100px) {
    .hero-panel {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .blocks {
      display: none;
    }
    .heroSection {
      max-height: 650px;
    }
  }


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }


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

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

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


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


/* ===== TESTIMONIALS SECTION ===== */

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

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

  /* Header */
  .testimonialsHeader {
    max-width: 760px;
    margin: 0 auto 45px 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: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

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

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

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

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

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

  /* Quote icon */
  .testimonialQuoteIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonialQuoteIcon i {
    color: var(--secondStyleColor);
    font-size: 16px;
  }

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

  .testimonialMeta {
    margin-top: 6px;
  }

  .testimonialName {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .testimonialRole {
    font-size: 13px;
    color: #b0b0b0;
  }

  /* Responsive */
  @media (max-width: 1000px) {
    .testimonialsGrid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

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

    .testimonialCard {
      padding: 22px 18px;
    }
  }


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


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


.about-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .models__cards_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .card-mod {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    color: var(--textColor1);
    h3,
    p {
      padding-left: 10px;
      color: var(--textColor1);
    }
    img {
      border-radius: var(--borderRadius);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }
  }

  @media (max-width: 800px) {
    .models__cards_container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .card-mod {
      width: 100%;
      height: fit-content;

      img {
        height: 300px;
      }
    }
  }


/* ===== 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 — SUDOLAB neon style
=============================== */

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

  /* Layout */

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

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

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

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

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

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

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

  /* Brand */

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

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

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

  /* Links & Address */

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

  .site-footer address {
    font-style: normal;
    color: var(--textColor1);
  }

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

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

  /* Social */

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

  .footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--textColor1);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

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

  /* Contacts */

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

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

  /* Links */

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

  /* Bottom */

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

  .footer-bottom p {
    margin: 0;
  }

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