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


/* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .headerButton {
    transition: 0.2s all linear;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    background-color: var(--textColor2);
    color: var(--textColor1);
    cursor: pointer;
    border-radius: var(--borderRadius);
  }
  .headerButton:hover {
    transform: translateY(-2px);
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .headerButton {
      display: none;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }


.vfdsdc {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px) 0;
    min-height: 700px;
    display: flex;
    align-items: center;
  }
  .kmndzI {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: center;
    filter: blur(5px);
    opacity: 0.2;
  }

  /* Белый “треугольник” снизу (диагональный срез) */
  .vfdsdc::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: var(--bodyBG);
    clip-path: polygon(
      0 40%,
      33% 40%,
      33% 20%,
      66% 20%,
      66% 5%,
      100% 5%,
      100% 100%,
      0 100%
    );

    pointer-events: none;
  }

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

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

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

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

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

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

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

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

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

    .vfdsdc::after {
      height: 40%;
      clip-path: polygon(0 55%, 50% 55%, 50% 35%, 100% 35%, 100% 100%, 0 100%);
    }
  }


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


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


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


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


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

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

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

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

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

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

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

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

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

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

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


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


#plans .u3m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .r8h {
    margin-bottom: 40px;
  }
  .r8h h2,
  .r8h p {
    text-align: center;
  }

  .b6x {
    color: var(--textColor2);
    max-width: 420px;
    border-radius: var(--borderRadius);
    overflow: clip;
    padding: 20px;
    background: var(--bodyBG);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    backdrop-filter: blur(20px);
    position: relative;
    font-weight: 200;
    transition: 0.2s all linear;
  }

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

  .k1t {
    grid-template-areas: "stack";
    height: 600px;
    position: relative;
    border-radius: var(--borderRadius);
    overflow: clip;
    display: grid;
    box-shadow:
      inset 0 0 4px -2px #ffffff55,
      0 0 4px -2px #ffffff55;
  }

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

  .k1t::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    backdrop-filter: blur(100px);
    -webkit-mask: linear-gradient(-14deg, black 30%, transparent 66%);
    mask: linear-gradient(-14deg, black 30%, transparent 66%);
  }

  .n9z {
    grid-area: stack;
  }

  .p4w {
    z-index: 1;
    grid-area: stack;
    margin-top: auto;
    padding: 1rem 2rem;
    && p {
      color: var(--textColor1);
    }
  }

  .s2d {
    color: var(--textColor1);
    font-size: 2.2rem;
    font-weight: 300;
  }

  .v1e {
    width: 30px;
    height: 30px;
  }

  .c7y {
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--textColor1);
  }

  .f5j {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 20px;
    color: var(--textColor1);
  }

  .f5j span {
    font-size: 44px;
    color: var(--textColor1);
    font-weight: 900;
  }

  @media (max-width: 800px) {
    #plans .u3m {
      flex-direction: column;
    }
    .r8h {
      margin-bottom: 20px;
    }
    .k1t {
      height: 450px;
    }
  }


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


.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 {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

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

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

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

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

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

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