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


/* Hero Section with Enhanced Animated Background */
  #hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Central Light Core */
  #hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 70%
    );
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  /* Connecting Lines and Dots Background */
  .network-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
  }

  .network-line {
    position: absolute;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    height: 1px;
    transform-origin: left center;
  }

  .network-line:nth-child(1) {
    width: 200px;
    top: 20%;
    left: 10%;
    transform: rotate(25deg);
    animation: pulseLine 4s ease-in-out infinite;
  }

  .network-line:nth-child(2) {
    width: 150px;
    top: 40%;
    right: 20%;
    transform: rotate(-45deg);
    animation: pulseLine 4s ease-in-out infinite 1s;
  }

  .network-line:nth-child(3) {
    width: 180px;
    bottom: 30%;
    left: 30%;
    transform: rotate(60deg);
    animation: pulseLine 4s ease-in-out infinite 2s;
  }

  .network-line:nth-child(4) {
    width: 220px;
    top: 60%;
    right: 15%;
    transform: rotate(-20deg);
    animation: pulseLine 4s ease-in-out infinite 3s;
  }

  .network-line:nth-child(5) {
    width: 160px;
    bottom: 20%;
    right: 35%;
    transform: rotate(40deg);
    animation: pulseLine 4s ease-in-out infinite 1.5s;
  }

  @keyframes pulseLine {
    0%,
    100% {
      opacity: 0.1;
      transform: scaleX(0.8) rotate(var(--rotation));
    }

    50% {
      opacity: 0.5;
      transform: scaleX(1) rotate(var(--rotation));
    }
  }

  .network-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondStyleColor);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  .network-dot:nth-child(6) {
    top: 20%;
    left: 10%;
    animation: dotPulse 3s ease-in-out infinite;
  }

  .network-dot:nth-child(7) {
    top: 40%;
    right: 20%;
    animation: dotPulse 3s ease-in-out infinite 0.5s;
  }

  .network-dot:nth-child(8) {
    bottom: 30%;
    left: 30%;
    animation: dotPulse 3s ease-in-out infinite 1s;
  }

  .network-dot:nth-child(9) {
    top: 60%;
    right: 15%;
    animation: dotPulse 3s ease-in-out infinite 1.5s;
  }

  .network-dot:nth-child(10) {
    bottom: 20%;
    right: 35%;
    animation: dotPulse 3s ease-in-out infinite 2s;
  }

  .network-dot:nth-child(11) {
    top: 35%;
    left: 25%;
    animation: dotPulse 3s ease-in-out infinite 2.5s;
  }

  .network-dot:nth-child(12) {
    bottom: 40%;
    right: 25%;
    animation: dotPulse 3s ease-in-out infinite 0.8s;
  }

  .network-dot:nth-child(13) {
    top: 15%;
    left: 60%;
    animation: dotPulse 3s ease-in-out infinite 1.2s;
  }

  .network-dot:nth-child(14) {
    bottom: 50%;
    left: 15%;
    animation: dotPulse 3s ease-in-out infinite 2.8s;
  }

  .network-dot:nth-child(15) {
    top: 70%;
    left: 45%;
    animation: dotPulse 3s ease-in-out infinite 0.3s;
  }

  .network-dot:nth-child(16) {
    top: 25%;
    right: 40%;
    animation: dotPulse 3s ease-in-out infinite 1.8s;
  }

  .network-dot:nth-child(17) {
    bottom: 15%;
    left: 55%;
    animation: dotPulse 3s ease-in-out infinite 2.3s;
  }

  @keyframes dotPulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.4;
    }

    50% {
      transform: scale(1.5);
      opacity: 1;
    }
  }

  /* Inner Peace Animated Background */
  .peace-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .breathing-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      var(--secondStyleColor),
      transparent 5%
    );
    animation: breathe 8s ease-in-out infinite;
  }

  .breathing-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .breathing-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
  }

  .breathing-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
  }

  .breathing-circle:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
  }

  @keyframes breathe {
    0%,
    100% {
      transform: scale(1) translate(0, 0);
      opacity: 0.3;
    }

    25% {
      transform: scale(1.2) translate(-10px, -10px);
      opacity: 0.5;
    }

    50% {
      transform: scale(1.4) translate(10px, -20px);
      opacity: 0.3;
    }

    75% {
      transform: scale(1.1) translate(-5px, 10px);
      opacity: 0.4;
    }
  }

  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .zen-stone {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(
      circle,
      var(--secondStyleColor) 0%,
      transparent 30%
    );
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
  }

  .zen-stone:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
  }

  .zen-stone:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 5s;
  }

  .zen-stone:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 10s;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0) translateX(0) rotate(0deg);
    }

    33% {
      transform: translateY(-30px) translateX(20px) rotate(120deg);
    }

    66% {
      transform: translateY(20px) translateX(-20px) rotate(240deg);
    }
  }

  .mandala-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
  }

  .mandala-circle {
    position: absolute;
    border: 2px solid var(--secondStyleColor);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
  }

  .mandala-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 60s;
  }

  .mandala-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-duration: 50s;
    animation-direction: reverse;
  }

  .mandala-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 40s;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .hero {
    position: relative;
  }

  .heroBG {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    object-fit: cover;
    object-position: top;
    opacity: 0.1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
  }

  .hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    position: relative;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    color: var(--textColor1);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-align: center;
    -webkit-animation: fadeInUp 1s ease;
    text-transform: uppercase;
  }

  .hero-content p {
    font-size: 1.3rem;
    color: var(--textColor1);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-wrap: balance;
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--textColor1);
    color: var(--textColor2);
    text-decoration: none;
    border-radius: var(--borderRadius);
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }


: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: 2px dotted 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;
    }
  }


.roadmapZigzagList_q8t {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .roadmapZigzagItem_h6b {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
  }

  .roadmapZigzagItem_h6b--alt {
    direction: rtl;
  }

  .roadmapZigzagItem_h6b--alt .roadmapZigzagBody_m9y {
    direction: ltr;
  }

  .roadmapZigzagSide_u1c {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .roadmapZigzagPoint_v5r {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: rgba(2, 255, 57, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondStyleColor);
  }

  .roadmapZigzagLine_l0k {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
  }

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

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

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

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

  .roadmapZigzagText_j3s {
    font-size: 14px;
    line-height: 1.7;
    color: #dfdfdf;
  }

  /* ===== Responsive ===== */

  @media (max-width: 900px) {
    .roadmapSection-steps .roadmapStepsRow {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .roadmapSection-grid .roadmapGrid {
      grid-template-columns: 1fr;
    }
  }

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

    .roadmapZigzagItem_h6b,
    .roadmapZigzagItem_h6b--alt {
      grid-template-columns: auto minmax(0, 1fr);
      direction: ltr;
    }
  }


/*  */

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


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

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

  .badges {
    margin-right: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  /* шапка секции */
  .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;
    justify-content: center;
    align-items: flex-start;
    cursor: grab;
    transition: border-color 0.2s ease, transform 0.22s ease;
    position: relative;
    min-height: 150px;
    width: 96%;
  }
  .rv-card:active {
    cursor: grabbing;
  }

  /* верх карточки */
  .rv-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    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 {
    position: absolute;
    right: 20px;
    bottom: 0;
    margin-left: auto;
    color: var(--secondStyleColor);
    font-weight: 800;
    font-size: 150px;
    opacity: 0.3;
    z-index: 0;
  }

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

  /* теги */
  .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);
    position: relative;
    z-index: 1;
  }

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

    .pill {
      font-size: 14px;
    }
    .rv-quote {
      font-size: 16px;
      width: 100%;
    }
    .rv-rate {
      top: 10px;
      opacity: 1;
      font-size: 34px;
    }
  }

  @media (max-width: 768px) {
    .rv-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 30px;
    }

    .rv-controls {
      justify-content: center;
    }

    .rv-title {
      text-align: center;
      font-size: 22px;
    }

    .rv-card {
      width: 95%;
      padding: 14px;
      min-height: 200px;
    }

    .rv-quote {
      font-size: 14px;
    }
  }

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

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

    .rv-controls {
      justify-content: center;
    }

    .rv-head {
      margin-bottom: 25px;
    }

    .rv-title {
      font-size: 20px;
    }

    .rv-quote {
      font-size: 13px;
      margin: 4px 0 10px;
    }

    .rv-top {
      margin-bottom: 6px;
    }
  }

  @media (max-width: 480px) {
    .rv-card {
      padding: 10px;
      min-height: 160px;
    }

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

    .rev-btn {
      width: 36px;
      height: 36px;
      font-size: 15px;
    }
  }


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

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


.mN2__ .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .headnMMMM2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    && h2 {
      text-align: center;
    }
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && span {
      width: 10%;
      height: 2px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
    }
  }

  /* HERO */
  .x9Qp1 {
    /* hero */
    position: relative;
    height: 120px;
    background: linear-gradient(326deg, var(--h1) 0%, var(--h2) 74%);
    display: grid;
    place-items: center;
    text-align: center;
  }
  .kZ_7m {
    /* hero cta wrapper */
    position: absolute;
    inset: 0;
    height: 200px;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .kZ_7m span {
    pointer-events: auto;
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-size: 15px;
    height: 44px;
    line-height: 24px;
    padding: 10px 28px;
    border-radius: 999px;
    position: relative;
    transition:
      transform 0.2s ease,
      padding 0.2s ease;
  }
  .kZ_7m span::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 12px solid var(--secondStyleColor);
    border-radius: 999px;
    opacity: 0.95;
  }
  .kZ_7m span:hover {
    transform: translateY(-1px);
    padding-left: 40px;
    padding-right: 40px;
  }
  .wA_vv {
    /* wave */
    position: absolute;
    left: 0;
    right: 0;
    bottom: -67px;
    height: 188px;
    background: url("https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png")
      repeat-x;
    animation: ZzWv9 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
    z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  }
  @keyframes ZzWv9 {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 1440px 0;
    }
  }

  .gR1dX {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    align-items: stretch;
  }
  @media (max-width: 980px) {
    .gR1dX {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .gR1dX {
      grid-template-columns: 1fr;
      gap: 44px;
    }
  }

  /* CARD */
  .bL0pA {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .iNn3r {
    position: relative;
    height: 100%;
    padding: 60px 30px 60px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    overflow: visible;
    transition: transform 0.2s ease;
  }
  /* TITLE PILL */
  .t1Tl3 {
    margin: 0 0 22px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .t1Tl3 > span {
    color: var(--textColor2);
    display: inline-block;
    padding: 10px 20px 10px 28px;
    border-radius: var(--borderRadius);
    background: var(--textColor1);
    position: relative;
  }
  .t1Tl3 > span > b {
    position: absolute;
    top: -3px;
    left: -30px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    display: grid;
    color: var(--textColor2);
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow:
      15px 15px 30px rgba(80, 80, 80, 0.2),
      5px 0 80px rgba(80, 80, 80, 0.15);
  }

  .xCrpT {
    margin: 0;
    padding: 0 18px;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--textColor2);
  }

  /* RIPPLE DOT */
  .d0Tt0 {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    box-shadow:
      5px 5px 10px rgba(163, 177, 198, 0.6),
      -5px -5px 10px rgba(255, 255, 255, 0.5);
  }
  .d0Tt0::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    animation: rrPpL 0.7s linear infinite;
    box-shadow:
      0 0 0 0 rgba(163, 177, 198, 0.3),
      0 0 0 1em rgba(163, 177, 198, 0.3),
      0 0 0 3em rgba(163, 177, 198, 0.03),
      0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  @keyframes rrPpL {
    0% {
      box-shadow:
        0 0 0 0 rgba(163, 177, 198, 0.3),
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
      box-shadow:
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.03),
        0 0 0 8em rgba(163, 177, 198, 0.01);
    }
  }

  .bL0pA:hover .iNn3r {
    transform: translateY(-2px);
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

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

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

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

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

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .featureIcon i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .featureTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d2d2;
  }

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


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


.planshead {
    margin-bottom: 45px;
  }

  /* Billing switcher */
  .billing-switcher {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 20px;
  }

  .plansWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .billing-switcher * {
    transition: all 0.2s ease-in-out;
  }

  .yearly #month,
  #year {
    color: var(--textColor1);
    text-transform: uppercase;
  }

  .yearly #year {
    color: var(--textColor1);
  }

  .billing-switcher button {
    width: 4rem;
    height: 2rem;
    background: var(--secondStyleColor);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.03);
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
  }

  .billing-switcher button span {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;

    background: white;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
  }

  .yearly button span {
    transform: translateX(2rem);
  }

  /* Pricing plans */
  .plans {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
  }

  .plan-content {
    background-color: transparent;
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 20rem;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07),
      0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
      0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275),
      0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035),
      0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725),
      0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  }

  .meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--text-color-10);
    padding-bottom: 2rem;
  }

  .price {
    font-size: 2.441rem;
    font-weight: 100;
  }

  .title {
    font-size: 1.953rem;
    font-weight: 900;
  }

  .description {
    font-size: 1.25rem;
    color: var(--text-color-60);
  }

  .features {
    font-weight: 500;
    color: var(--text-color-90);
    list-style: none;
    padding: 0;
  }

  .features li {
    margin-bottom: 10px;
    /* padding-left: 40px; */
    /* list-style: disc; */
  }

  .btn {
    display: inline-block;
    cursor: pointer;
    padding: 1rem 2rem;
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: var(--textColor1);
  }

  /* Awesome additions using CSS transforms */
  /* Translate */
  .plan {
    position: relative;
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-5px);
    }

    img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      z-index: -1;
      border-radius: var(--borderRadius);
      filter: blur(5px);
      opacity: 0.2;
    }
  }

  .plan :is(.shadow-1, .shadow-2) {
    background-color: var(--card-shadow-color);
    width: 100%;
    height: 100%;
    border-radius: var(--card-radius);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: transform 0.2s ease-in-out, width 0.2s ease-in-out;
  }

  .plan:hover .shadow-1 {
    transform: translate(-1rem, 1rem);
    width: calc(100% + 2rem);
  }

  .plan:hover .shadow-2 {
    transform: translate(-2rem, 2rem);
    width: calc(100% + 4rem);
  }

  /* Scale */
  .yearly #month,
  #year {
    transform: scale(0.8);
  }

  .yearly #year {
    transform: scale(1);
  }

  /* Rotate */
  .billing-switcher button span {
    background: white
      url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.58225 6.79651C0.3685 6.58276 0.25 6.30151 0.25 6.00151C0.25 5.69926 0.3685 5.41651 0.58225 5.20501L5.707 0.219756C6.00325 -0.0727435 6.48175 -0.0727435 6.778 0.219756C7.07425 0.512256 7.07425 0.987756 6.778 1.27951L1.921 6.00151L6.778 10.722C7.07425 11.0145 7.07425 11.49 6.778 11.7833C6.48175 12.0758 6.00325 12.0758 5.707 11.7818L0.58225 6.79726V6.79651Z' fill='%23ECAD1D'/%3E%3C/svg%3E%0A")
      no-repeat 45% center;
  }

  .yearly button span {
    transform: translateX(2rem) rotate(0.5turn);
  }

  /* Skew */
  .btn {
    position: relative;
    overflow: hidden;
    z-index: 100;
    transition: all 0.2s ease-in-out;
  }

  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 0;
    height: 100%;
    background-color: var(--text-color);
    transform: skew(35deg);
    transition: width 0.2s ease-in-out;
    z-index: -1;
  }

  @media (max-width: 800px) {
    .plans {
      display: flex;
      flex-direction: column;
    }
  }


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

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

  .faqContent {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faqImageWrap {
      order: -1;
    }
  }

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

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }


/* ===== FOOTER ===== */

  .footer {
    background: #181818;
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

  .footerLogo i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: #bcbcbc;
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9a9a9a;
  }

  .footerMeta {
    text-align: right;
  }

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

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }