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

  .nav {
  }
  .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 screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .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;
    }
  }


/*  */
  .vfdsdc {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px) 0;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .vfdsdcBGIMG {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: top;
    filter: blur(5px);
    opacity: 0.2;
  }
  /* Белый “треугольник” снизу (диагональный срез) */
  .vfdsdc::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 56%;
    background: var(--bodyBG);
    -webkit-mask-image: radial-gradient(
      120% 100% at 50% 0%,
      transparent 60%,
      #000 61%
    );
    mask-image: radial-gradient(120% 100% at 50% 0%, transparent 60%, #000 61%);

    pointer-events: none;
    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 60px;
    && h1 {
      text-transform: uppercase;
      text-wrap: balance;
      text-align: right;
      font-weight: 900;
    }
  }

  .hero__content {
    margin: 0 0 14px;
    color: var(--textColor1);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 20px;
    && p {
      max-width: 700px;
      text-align: right;
    }
  }

  .hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: var(--borderRadius);
    background: var(--textColor1);
    color: var(--textColor2);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    width: fit-content;
    transition: 0.2s all linear;
    margin-left: auto;
  }

  .hero__btn:hover {
    transform: translateY(-3px);
  }

  .hero__phone a {
    color: inherit;
    text-decoration: none;
  }

  .hero__phoneIcon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero__art {
    display: flex;
    width: 450px;
    height: 550px;
    align-items: center;
    justify-content: center;
    && img {
      width: 100%;
      height: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: top;
    }
  }

  .hero__svg {
    width: min(440px, 100%);
    height: auto;
  }

  /* Адаптив */
  @media (max-width: 860px) {
    .vfdsdc {
      min-height: 500px;
    }
    .hero__art {
      display: none;
    }
    .hero__btn {
      margin: 0 auto;
    }

    .hero::after {
      height: 40%;
      clip-path: polygon(0 65%, 100% 20%, 100% 100%, 0% 100%);
    }
    .vfdsdc::after {
      display: none;
    }
    .hero__inner {
      && h1 {
        font-size: 36px;
        text-align: center;
      }
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
  }


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


.aboutWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }
  .about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-left a {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    width: fit-content;
    color: var(--textColor2);
    font-weight: 900;
    text-transform: uppercase;
  }
  .about-right {
    display: flex;
    align-items: center;
    gap: 20px;
    .a_img {
      height: 400px;
      object-position: top;
      border-radius: var(--borderRadius);
      img {
        border-radius: inherit;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
      }
    }
  }
  @media (max-width: 800px) {
    .aboutWrapper {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      width: 100%;
    }
    .a_img {
      width: 100%;
    }
  }


.how7__section {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
  }

  .how7__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5;
  }
  .how7__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 50px;
    align-items: start;
  }
  .how7__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .how7__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
    font-weight: 600;
    color: var(--textColor1);
  }
  .how7__intro h2 {
    font-family: "Syne", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0;
    color: var(--textColor1);
  }
  .how7__lead {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.7;
    max-width: 480px;
  }
  .how7__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .how7__meta-card {
    border: 1px solid var(--secondStyleColor);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .how7__meta-card strong {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    color: var(--textColor1);
  }
  .how7__meta-card span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    color: var(--textColor1);
  }

  .how7__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 26px;
    position: relative;
  }
  .how7__steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(var(--secondStyleColor));
  }
  .how7__step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    border: 1px solid var(--secondStyleColor);
    border-radius: 20px;
    padding: 20px 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    animation: how7Rise 0.6s ease both;
    animation-delay: var(--delay);
  }
  .how7__step-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  }
  .how7__step-body h3 {
    margin: 0 0 6px 0;
    font-family: "Syne", sans-serif;
    font-size: 20px;
    color: var(--textColor1);
  }
  .how7__step-body p {
    margin: 0 0 14px 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--textColor1);
    line-height: 1.6;
  }
  .how7__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .how7__chips span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--textColor1);
  }

  @keyframes how7Rise {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .how7__step {
      animation: none;
    }
  }
  @media (max-width: 980px) {
    .how7__layout {
      grid-template-columns: 1fr;
    }
    .how7__meta {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .how7__section {
      padding: 70px 0 90px;
    }
    .how7__meta {
      grid-template-columns: 1fr;
    }
    .how7__step {
      grid-template-columns: 1fr;
    }
    .how7__steps::before {
      display: none;
    }
    .how7__step-badge {
      width: 46px;
      height: 46px;
      border-radius: 12px;
    }
  }


/* центрирование блока по высоте */
  #features {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
  }
  #features .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .hufla {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hufla h2,
  .hufla p {
    text-align: center;
  }
  .hufla > span {
    display: flex;
    width: 30%;
    margin: 0 auto;
    border-radius: var(--borderRadius);
    height: 2px;
    background-color: var(--secondStyleColor);
  }

  .trunox {
    width: 100%;
    height: 50vh;
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .mivra {
    position: relative;
    --x-px: calc(var(--x) * 1px);
    --y-px: calc(var(--y) * 1px);
    --border: 2px;
    background: rgba(255, 255, 255, 0.125);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .mivra::before,
  .mivra::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      800px circle at var(--x-px) var(--y-px),
      var(--secondStyleColor),
      transparent 40%
    );
    pointer-events: none;
  }

  .mivra::before {
    z-index: 1;
  }

  .mivra::after {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
  }

  .mivra:hover::after {
    opacity: 1;
  }

  .praxu {
    background: var(--textColor2);
    border-radius: inherit;
    color: var(--textColor1);
    text-decoration: none;
    position: absolute;
    inset: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 3;
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && h3 {
      text-align: center;
      margin-bottom: 10px;
    }
  }

  .praxu > p {
    opacity: 0.7;
  }
  @media (max-width: 800px) {
    .trunox {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      gap: 12px;
    }

    .mivra {
      min-height: 240px;
    }
    .hufla {
      margin-bottom: 20px;
    }
  }


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

  .b7x-inner {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  .b7x-head {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto 40px auto;
    text-align: center;
  }

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

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

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

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

  /* Cards */
  .b7x-card {
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 20px 18px;
    transition: 0.2s ease;
  }

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

  .b7x-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

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

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

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

    .b7x-head {
      margin-bottom: 30px;
    }
  }


/* ===== ROADMAP v5 ===== */

  .roadmapSection-v5 {
    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 50px auto;
    text-align: center;
  }

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

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

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

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

  /* Card */
  .roadmapCard-v5 {
    position: relative;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 24px 34px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  /* Dot */
  .roadmapDot-v5 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    margin-bottom: 14px;
  }

  /* Text inside */
  .roadmapCardTitle-v5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .roadmapCardText-v5 {
    font-size: 15px;
    line-height: 1.7;
    color: #dcdcdc;
    margin-bottom: 18px;
  }

  /* Badge */
  .roadmapBadge-v5 {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(2, 255, 57, 0.12);
    color: var(--secondStyleColor);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
  }

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


/* контейнер секции */
  #reviews .swiper {
    width: 100%;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
  }

  .rv-wrap {
    padding: 40px 0 40px;
  }

  /* шапка секции */
  .rv-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    gap: 14px;
    margin-bottom: 45px;
  }

  .rv-kicker {
    grid-column: 1 / -1;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
  }

  .rv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
  }

  .rv-title {
    margin: 0;
    color: var(--textColor1);
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.12em;
  }

  /* контролы */
  .rv-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }

  /* кнопки навигации */
  .rev-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 17px;
    transition: background 0.2s ease, border-color 0.2s ease,
      transform 0.18s ease;
  }

  .rev-btn:hover {
    transform: translateY(-1px);
  }

  /* карточки */
  .rv-card {
    background: var(--bodyBG);
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 18px 20px;
    color: var(--textColor1);
    display: flex;
    flex-direction: column;
    height: fit-content;
    cursor: grab;
    transition: border-color 0.2s ease, transform 0.22s ease;
  }
  .rv-card:active {
    cursor: grabbing;
  }

  /* верх карточки */
  .rv-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .rv-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.8);
    overflow: hidden;
  }

  .rv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .rv-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
  }

  .rv-meta strong {
    color: var(--rv-text-main);
    font-weight: 700;
    font-size: 15px;
  }

  .rv-meta span {
    font-size: 12px;
    color: var(--textColor2);
  }

  .rv-rate {
    margin-left: auto;
    color: var(--secondStyleColor);
    font-weight: 800;
    font-size: 20px;
  }

  /* текст отзыва */
  .rv-quote {
    font-size: 14px;
    line-height: 1.5;
    margin: 6px 0 12px;
    color: var(--textColor1);
    flex-grow: 1;
  }

  /* теги */
  .rv-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .rv-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--rv-chip);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* мини-лейблы */
  .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

  /* адаптив */
  @media (max-width: 980px) {
    .rv-card {
      height: 190px;
      width: 90%;
      height: auto;
      margin-inline: auto;
      padding: 16px;
    }

    .pill {
      font-size: 12px;
    }
    .rv-quote {
      font-size: 20px;
    }
  }

  @media (max-width: 640px) {
    .rv-wrap {
      padding: 28px 0 32px;
    }

    .rv-card {
      width: 90%;
      height: auto;
      margin-inline: auto;
      padding: 16px;
      padding: 16px;
    }

    .rv-controls {
      justify-content: flex-start;
    }
  }


/*  */
  .vx-partners {
    color: var(--textColor1);
  }

  .vx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vx-head {
    max-width: 560px;
  }

  .vx-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .vx-copy {
    margin-top: 12px;
    opacity: 0.8;
    text-wrap: balance;
  }

  .vx-stage {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }

  .vx-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--secondStyleColor);
    opacity: 0.5;
    animation: vx-rotate 18s linear infinite;
  }

  .vx-glow {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 40%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
    z-index: 0;
  }

  .vx-logoBox {
    position: relative;
    z-index: 1;
    width: min(260px, 65%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid var(--secondStyleColor);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vx-logoBox:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vx-logoBox img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

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

  @media (max-width: 800px) {
    .vx-shell {
      gap: 24px;
    }
    .vx-ring {
      display: none;
    }
  }


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

  .faq--timeline .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

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

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

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

  /* Two fixed columns prevent items from jumping between columns */
  .faqGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
  }

  .faqCol {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faqCard {
    position: relative;
    border-radius: calc(var(--borderRadius) * 0.8);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    overflow: hidden;
    transition:
      border-color 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease;
  }

  .faqCard::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--secondStyleColor);
    opacity: 0.35;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    transform: scaleY(0.4);
    transform-origin: top;
  }

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

  .faqCard.is-open::before {
    opacity: 0.9;
    transform: scaleY(1);
  }

  .faqQuestion {
    width: 100%;
    min-height: 80px;
    padding: 18px 18px 14px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--textColor1);
    text-align: left;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.35;
  }

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

  .faqBadge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: var(--secondStyleColor);
    font-weight: 900;
    font-size: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

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

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

  .faqCard.is-open .faqAnswer {
    opacity: 1;
    padding-bottom: 2px;
  }

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

  @media (max-width: 640px) {
    .faqQuestion {
      font-size: 17px;
      padding: 16px 16px 12px 16px;
    }

    .faqAnswer {
      padding: 0 16px;
    }
  }


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

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

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

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

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

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

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