:root{--font-sans:'Oswald', 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;
    }
  }


.qz1n7 {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 52px) 0;
    min-height: 675px;
    display: flex;
    align-items: center;
  }

  .m9k2p {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px);
    transform: scale(1.06);
    opacity: 0.9;
    z-index: -2;
  }

  .qz1n7::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      60% 80% at 30% 40%,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.7)
    );
    z-index: -1;
  }

  .r4t8x {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(18px, 4vw, 46px);
    align-items: center;
  }

  /* left */
  .h1v3s {
    color: var(--textColor1);
  }

  .u3p0a {
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .t0y7q {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .b8d1c {
    margin: 0 0 16px;
    line-height: 1.55;
  }

  .k7l2e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 20px;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    transition: 0.2s;
  }
  .k7l2e:hover {
    transform: translateY(-2px);
  }

  /* card */
  .z2w6d {
    width: 600px;
    justify-self: end;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: var(--bodyBG);
    backdrop-filter: blur(3px);
  }

  .z2w6d__img {
    position: relative;
    height: 390px;

    background: rgba(255, 255, 255, 0.08);
  }

  .z2w6d__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  .z2w6d__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.55);
  }

  .z2w6d__stats {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .n1c0v {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--secondStyleColor);
  }

  .n1c0v__ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .z2w6d__ttl {
    text-align: right;
    min-width: 220px;
  }

  .z2w6d__t1 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .z2w6d__t2 {
    margin-top: 2px;
    font-size: 20px;
    color: var(--secondStyleColor);
  }

  @media (max-width: 900px) {
    h1 {
      font-size: 36px;
    }
    .h1v3s {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      && h1,
      p {
        text-align: center;
      }
    }
    .r4t8x {
      grid-template-columns: 1fr;
    }
    .z2w6d {
      justify-self: start;
    }
    .z2w6d {
      width: 100%;
    }
    .z2w6d__bar {
      flex-direction: column;
      align-items: flex-start;
    }
    .z2w6d__ttl {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
    }
    .z2w6d__img {
      height: 190px;
    }
  }


:root {
    --scrollbarBg: rgba(255, 255, 255, 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;
  }

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


/* =========================================================
   Testimonials (unique classes: tstx7k1-*)
   ========================================================= */

  .tstx7k1-sec {
    position: relative;
    padding: 74px 0 92px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* декоративные "веточки" по бокам (inline SVG как фон) */
  .tstx7k1-sec::before,
  .tstx7k1-sec::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(420px, 28vw);
    opacity: 0.22;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(1);
  }

  .tstx7k1-shell {
    width: min(1200px, calc(100% - 44px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .tstx7k1-head {
    text-align: center;
    margin-bottom: 28px;
  }

  .tstx7k1-title {
    margin: 0;
    font-size: clamp(26px, 2.4vw, 40px);
    letter-spacing: 0.01em;
    font-weight: 700;
  }

  .tstx7k1-dots {
    margin: 12px auto 0;
    display: inline-flex;
    gap: 12px;
    opacity: 0.6;
  }
  .tstx7k1-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--textColor1);
  }

  /* ----- stage (slider area) ----- */

  .tstx7k1-stage {
    position: relative;
    padding-top: 8px;
  }

  .tstx7k1-sw {
    width: 100%;
    overflow: visible;
  }

  .tstx7k1-slide {
    display: flex;
    justify-content: center;
    padding: 40px 0 18px;
    opacity: 0.18;
    transform: scale(0.86);
    transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
    filter: blur(0.3px);
  }

  .tstx7k1-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  .tstx7k1-card {
    width: min(720px, 92vw);
    text-align: center;
  }

  .tstx7k1-quoteMark {
    display: inline-flex;
    color: var(--secondStyleColor);
    opacity: 0.86;
    margin-bottom: 18px;
  }

  .tstx7k1-text {
    margin: 0 auto;
    width: min(720px, 92%);
    font-size: 18px;
    line-height: 1.9;
    font-style: italic;
    color: var(--textColor1);
  }

  .tstx7k1-author {
    margin-top: 54px;
    letter-spacing: 0.06em;
    font-size: 14px;
    color: var(--secondStyleColor);
    opacity: 0.9;
  }

  /* ----- nav buttons (круглые) ----- */

  .tstx7k1-nav {
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(31, 36, 38, 0.45);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
    user-select: none;
  }

  .tstx7k1-nav span {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .tstx7k1-prev {
    left: clamp(12px, 7vw, 160px);
  }
  .tstx7k1-next {
    right: clamp(12px, 7vw, 160px);
  }

  .tstx7k1-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .tstx7k1-nav:active {
    transform: translateY(-50%) scale(0.98);
  }

  .tstx7k1-nav:focus-visible {
    outline-offset: 4px;
  }

  .tstx7k1-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  /* ----- pagination dots ----- */

  .tstx7k1-pagi {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .tstx7k1-pagi .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: var(--textColor1);
    opacity: 1;
    margin: 0 !important;
  }

  .tstx7k1-pagi .swiper-pagination-bullet-active {
    background: var(--secondStyleColor);
  }

  /* ----- responsive ----- */

  @media (max-width: 900px) {
    .tstx7k1-sec {
      padding: 60px 0 72px;
    }
    .tstx7k1-prev {
      left: 14px;
    }
    .tstx7k1-next {
      right: 14px;
    }
    .tstx7k1-text {
      font-size: 16px;
      line-height: 1.85;
    }
    .tstx7k1-author {
      margin-top: 40px;
    }
  }

  @media (max-width: 520px) {
    .tstx7k1-nav {
      display: none;
    }
    .tstx7k1-slide {
      padding-top: 26px;
    }
  }


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

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

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


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


.about-us {
    position: relative;
  }

  .about-us .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .fghjkvbnwdh {
    width: 500px;
    height: 600px;
    && img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--borderRadius);
      object-position: top;
    }
  }

  .about-ussection-heading {
    margin-bottom: 40px;
    && h2 {
      text-wrap: balance;
    }
    && p {
      text-wrap: balance;
    }
  }

  .about-us .section-heading,
  .about-us .box-item,
  .about-us p,
  .about-us .box-item .gradient-button,
  .about-us .box-item span {
    position: relative;
    z-index: 1;
  }

  .about-us .box-item {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    padding: 20px 30px;
    border: 1px solid var(--secondStyleColor);
    border-radius: 40px;
    margin-bottom: 30px;
    color: var(--textColor1);
    && h3 {
      margin-bottom: 10px;
    }
  }

  .about-us .gradient-button {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .about-us span {
    font-size: 14px;
    color: #7a7a7a;
  }

  .about-us .right-image {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 800px) {
    .about-us .container {
      flex-direction: column;
    }
    .fghjkvbnwdh {
      width: 100%;
    }
  }


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


.banner-section {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    h2 {
      text-transform: uppercase;
      text-align: center;
    }
  }
  .banner-section img {
    position: absolute;
    width: 120%;
    height: 120%;
    inset: 0;
    z-index: -1;
    object-fit: cover;
    object-position: 50% 20%;
    filter: blur(15px);
    opacity: 0.2;
  }


[data-accordion-element-content] {
    overflow: hidden;
    transition: height 0.5s;
  }

  :root {
    --bgHead: var(--bodyBG);
    --bgHeadHover_active: var(--secondStyleColor);
    --bgText: rgba(255, 255, 255, 0.1);
  }

  .faq h2 {
    text-align: center;
  }
  .card-faq {
    width: 90%;
    margin: 50px auto;
    border-radius: 2px;
    background: transparent;
    margin-top: 40px;
  }

  .faq-article {
    position: relative;
    transition: all 0.3s;
    background-color: transparent;
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -ms-border-radius: 0 0 12px 12px;
    -o-border-radius: 0 0 12px 12px;
    p {
      padding: 10px 20px;
    }
  }

  .faq-article.selected {
    transform: scale(1.1);
    z-index: 2;
    background: var(--bgText);
  }

  .faq-h3 {
    position: relative;
    background: var(--bgHead);
    padding: 20px 75px 20px 20px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    overflow: hidden;
    transition: background 0.3s;
    margin: 10px 0;
    cursor: pointer;
  }

  .faq-h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .selected .faq-h3 {
    cursor: pointer;
    background: var(--bgHeadHover_active);
    color: var(--bgHead);
    border: none;
  }

  .faq-h3:before,
  .faq-h3:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    margin-right: 30px;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s;
  }

  .faq-h3:before {
    transform: rotate(0deg);
    animation: close-line-one-in 0.8s forwards;
  }

  .selected .faq-h3:before {
    animation: close-line-one-out 0.8s forwards;
    background: #000;
  }

  .faq-h3:after {
    transform: rotate(90deg);
    animation: close-line-two-in 0.8s forwards;
  }

  .selected .faq-h3:after {
    background: #000;
    animation: close-line-two-out 0.8s forwards;
  }

  .content {
    opacity: 0;
    transform: translateY(20px);
    transition: all ease-out 0.4s 0.1s;
  }

  .selected .content {
    transform: translateY(0);
    opacity: 1;
  }

  .faq-p {
    padding: 25px 30px 40px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
  }

  @keyframes close-line-one-out {
    0%,
    50% {
      transform: translateX(0);
    }
    75% {
      transform: translateX(50px);
    }
    76% {
      transform: translateX(50px) translateY(50px);
    }
    100% {
      transform: rotate(45deg);
    }
  }

  @keyframes close-line-one-in {
    0%,
    20% {
      transform: rotate(45deg);
    }
    60% {
      transform: translateX(50px) translateY(50px) rotate(45deg);
    }
    61% {
      transform: translateX(50px);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  @keyframes close-line-two-out {
    0%,
    50% {
      transform: rotate(90deg);
    }
    75% {
      transform: translateY(-50px) rotate(90deg);
    }
    76% {
      transform: translateY(-50px) translateX(50px) rotate(90deg);
    }
    100% {
      transform: rotate(135deg);
    }
  }

  @keyframes close-line-two-in {
    0% {
      transform: rotate(135deg);
    }
    50% {
      transform: translateY(-50px) translateX(50px) rotate(135deg);
    }
    51% {
      transform: translateY(-50px) rotate(90deg);
    }
    100% {
      transform: rotate(90deg);
    }
  }

  @media screen and (max-width: 750px) {
    .card-faq {
      width: 90%;
    }
  }


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