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


/* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-family: system-ui, -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

  .nav {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 6px 4px;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

  @media (max-width: 1024px) {
    .header-cta {
      display: none;
    }
    .nav {
      display: none;
    }

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: #050814 !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }


/* ==== */
  .op6pujj {
    position: relative;
    min-height: 700px;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    && img {
      position: absolute;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: 50% 20%;
      inset: 0;
      z-index: -1;
      opacity: 0.15;
      filter: blur(2px);
    }
  }
  .op6pujj .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    && h1 {
      text-align: center;
      text-transform: uppercase;
    }

    && p {
      text-align: center;
    }
    && a {
      margin: 0 auto;
      color: var(--bodyBG);
      font-weight: 500;
      cursor: pointer;
      transition: 0.2s all linear;
      text-transform: uppercase;
      background-color: var(--secondStyleColor);
      border: 1px solid transparent;
      padding: 12px 40px;
      border-radius: var(--borderRadius);
      &&:hover {
        padding: 12px 60px;
        background-color: transparent;
        border: 1px solid var(--secondStyleColor);
        color: var(--textColor1);
      }
    }
  }

  .ootyuth {
    width: 100%;
    position: relative;
    height: 2px;
    background-color: var(--secondStyleColor);

    &&:after {
      content: "";
      position: absolute;
      width: 2px;
      left: 0;
      height: 150px;
      background-color: var(--secondStyleColor);
      bottom: 0;
    }
    &&::before {
      content: "";
      position: absolute;
      width: 2px;
      right: 0;
      height: 150px;
      background-color: var(--secondStyleColor);
    }
  }

  .code-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    contain: layout paint;
  }

  .particle {
    position: absolute;
    left: calc(var(--x) * 1%);
    top: calc(var(--y) * 1%);
    font-weight: 800;
    font-size: calc(var(--s) * 1px);
    letter-spacing: -0.06em;
    opacity: var(--o);
    transform: translate3d(-50%, -50%, 0) rotate(calc(var(--r) * 1deg));
    will-change: transform, opacity;
    animation: floatUp calc(var(--d) * 1s) linear infinite;
    animation-delay: calc(var(--delay) * -1s);
    user-select: none;
  }
  .particle::before {
    content: ".";
    -webkit-text-stroke: 1px var(--secondStyleColor);
  }
  @keyframes floatUp {
    0% {
      transform: translate3d(-50%, calc(-50% + 120px), 0)
        rotate(calc(var(--r) * 1deg));
      opacity: 0;
    }
    8% {
      opacity: var(--o);
    }
    100% {
      transform: translate3d(
          calc(-50% + (var(--drift) * 1px)),
          calc(-50% - 140vh),
          0
        )
        rotate(calc((var(--r) + 220) * 1deg));
      opacity: 0;
    }
  }

  @media (max-width: 768px) {
    .particle {
      font-size: calc((var(--s) - 4) * 1px);
    }
    .op6pujj {
      height: auto;
      min-height: 600px;
    }
  }


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


:root {
    --scrollbarBg: rgba(0, 0, 0, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    white-space: nowrap;
    margin: 0 !important;
    text-align: center;
    color: var(--bodyBG);
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 2px solid var(--bodyBG);
    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 {
    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(--bodyBG);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-color: var(--secondStyleColor);
  }

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


.hiwWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .him-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;
    h2,
    p {
      color: var(--textColor1);
    }
  }
  .hiw_image {
    border-radius: var(--borderRadius);
    width: 400px;
    height: 500px;
    img {
      border-radius: inherit;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  @media (max-width: 800px) {
    .hiwWrapper {
      flex-direction: column;
    }
    .him-left {
      width: 100%;
    }
    .hiw_image {
      margin-top: 20px;
      width: 100%;
      height: auto;
    }
  }


.plansWrapper {
    display: flex;
    flex-direction: column;
  }
  .planshead {
    margin-bottom: 45px;
  }

  .priceBitton {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border: none;
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    background-color: var(--secondStyleColor);
    transition: 0.3s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
  }

  /* ===== Новая интересная секция цен ===== */

  .pricing-alt {
    padding: 0 20px 40px;
    color: var(--textColor1);
  }

  .pricing-alt__title {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
  }

  .pricing-alt__subtitle {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.7;
  }

  .pricing-alt__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
  }

  .plan {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 22px 42px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 2px solid var(--secondStyleColor);
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
    &&::after {
      content: "";
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 90px;
      height: 90px;
      background-color: transparent;
      border: 2px solid var(--secondStyleColor);
      border-radius: 50%;
    }
  }

  .plan--main {
    padding: 26px 26px 28px;
    background-color: var(--secondStyleColor);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    color: var(--textColor2);
    .plan__dot {
      background: var(--textColor2);
    }
  }

  .plan__badge {
    position: absolute;
    top: 14px;
    right: 16px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(12, 5, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .plan__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
  }

  .plan__name {
    font-size: 20px;
    font-weight: 600;
  }

  .plan__desc {
    margin-top: 4px;
    font-size: 13px;
    opacity: 0.8;
  }

  .plan__price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .plan__price {
    font-size: 30px;
    font-weight: 700;
  }

  .plan__period {
    font-size: 12px;
    opacity: 0.8;
  }

  .plan__features {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .plan__dot {
    margin-top: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
  }

  .plan__button {
    border-radius: 999px;
    border: none;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    transition: transform 0.12s ease, box-shadow 0.12s ease,
      background 0.12s ease, opacity 0.12s ease;
  }

  .plan__button--main {
    background: #0b0517;
    color: #f5e9ff;
    box-shadow: 0 12px 30px rgba(5, 1, 15, 0.9);
  }

  .plan__button--main:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(5, 1, 15, 1);
  }

  .plan__button--ghost {
    background: transparent;
    color: #ffe2ff;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .plan__button--ghost:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .plan__button:not(.plan__button--main):not(.plan__button--ghost) {
    background: rgba(5, 1, 15, 0.9);
    color: #ffffff;
  }

  .plan__button:not(.plan__button--main):not(.plan__button--ghost):hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
  }

  .plan__note {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.85;
  }

  /* Адаптив */

  @media (max-width: 900px) {
    .planshead {
      margin-bottom: 32px;
    }
    .pricing-alt__grid {
      grid-template-columns: 1fr;
    }

    .plan--main {
      grid-row: auto;
    }
  }


.partners {
    position: relative;
  }

  .partners::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background-color: var(--secondStyleColor);
    opacity: 0.1;
  }

  .partners__container {
    text-align: center;
  }
  .partnersHead {
    margin-bottom: 45px;
  }

  .partners__title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--textColor1);
  }

  .partners__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    padding-bottom: 0;
    gap: 30px;
  }

  .partners__logo-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all linear;
    img {
      height: 50%;
    }
  }

  .partners__logo-wrapper a:hover {
    transform: scale(1.05);
  }

  .partners__logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }
  @media (max-width: 800px) {
    .partners__logo-wrapper {
      flex-direction: column;
    }
    .partners__logo-wrapper a {
      width: 100%;
    }
  }


.steps-dheader {
    margin-bottom: 40px;
  }
  .steps--diagonal {
    position: relative;
    overflow: hidden;
    h2,
    h2 + p {
      text-align: center;
    }
  }

  .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
  }

  .step--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .step--outline:hover {
    transform: translateY(-5px);
  }

  .step__number {
    font-size: 4rem;
    color: var(--secondStyleColor);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
  }

  .step__content {
    position: relative;
    z-index: 2;
  }

  .step__content h3 {
    margin-bottom: 1rem;
    color: var(--textColor1);
  }

  .step__content p {
    color: var(--textColor1);
    line-height: 1.6;
  }

  .step-arc {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--secondStyleColor);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    bottom: -10px;
    left: -10px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .step--outline:hover .step-arc {
    opacity: 1;
  }

  .steps-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 200px;
    opacity: 0.5;
  }

  .plane-trajectory {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .plane-trajectory svg {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 1024px) {
    .steps-visual {
      display: none;
    }
    .steps-dheader {
      margin-bottom: 20px;
    }
  }


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


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

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

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

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

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

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

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


.featuresWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .feaItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    img {
      height: 500px;
      width: 400px;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: top;
    }
  }
  .feaWrap {
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    .feaWrap {
      margin-bottom: 20px;
    }
    .featuresWrap {
      flex-direction: column;
      gap: 20px;
    }
    .feaItem {
      gap: 20px;
      img {
        width: 100%;
      }
    }
  }


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


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

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

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

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

  .faq h3 {
    margin: 10px 0;
  }

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

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

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

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

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

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

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

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

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


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

  /* Layout */

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

  /* Brand */

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

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

  /* Links & Address */

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

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

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

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

  /* Social */

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

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

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

  /* Contacts */

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

  /* Links */

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

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

  /* Bottom */

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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