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


/* ============== */

  .ljawccnk {
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .iurjbsd {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -1;
    filter: blur(5px);
    opacity: 0.1;
  }
  .ljawccnk .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    h1 {
      text-align: center;
      text-transform: uppercase;
    }
  }
  .hero-card-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin: 50px 0;
  }
  .iulibcjAJL {
    text-align: center;
    max-width: 800px;
    text-wrap: balance;
  }
  .hero-hbkawkc {
    padding: 60px 20px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    border-radius: var(--borderRadius);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    backdrop-filter: blur(5px);
    span {
      font-size: 44px;
      font-weight: 900;
    }
    && p {
      text-align: center;
    }
  }
  .hero-hbkawkc::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    z-index: -1;
    opacity: 0.1;
  }

  .ljawccnk a {
    padding: 12px 40px;
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    color: var(--textColor1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.2s all linear;
    &&:hover {
      background-color: var(--secondStyleColor);
    }
  }
  .waWKNNCKLNwkhk {
    text-transform: uppercase;
    position: relative;
    &&::after {
      content: "";
      position: absolute;
      width: 50px;
      height: 1px;
      background-color: var(--secondStyleColor);
      left: -70px;
      top: 10px;
    }
    &&::before {
      content: "";
      position: absolute;
      width: 50px;
      height: 1px;
      background-color: var(--secondStyleColor);
      right: -70px;
      top: 10px;
    }
  }

  @media (max-width: 800px) {
    .hero-card-wrapper {
      flex-direction: column;
      margin: 20px 0;
    }
    .hero-hbkawkc {
      width: 100%;
      padding: 20px 0;
    }
    .ljawccnk a {
      padding: 15px 40px;
    }
    .hero-hbkawkc span {
      font-size: 30px;
    }
    .waWKNNCKLNwkhk {
      margin-top: 50px;
    }
  }


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

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

  .toc h2 {
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 1px solid var(--secondStyleColor);
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }


/* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

  .ab18 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
  }

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .ab18__cell:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
  }

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

  .ab18__cell--hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .ab18__cell--hero:hover img {
    transform: scale(1.04);
  }

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .ab18__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab18__cell--intro h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .ab18__cell--intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab18__cell--stat span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    font-weight: 500;
  }

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ab18__feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

  .ab18__feat-icon i {
    font-size: 17px;
    color: var(--secondStyleColor);
  }

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

  .ab18__cell--feat p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .ab18__cell--img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .ab18__cell--img2:hover img {
    transform: scale(1.04);
  }

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ab18__bento {
      grid-template-columns: repeat(2, 1fr);
    }

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .ab18__cell--intro h2 {
      font-size: 22px;
    }

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

  @media (max-width: 600px) {
    .ab18 {
      padding: 50px 0;
    }

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      transition: none;
    }
  }


/* ===== PLANS v15 — Split intro + vertical card stack with connectors ===== */

  .pl15 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
  }

  .pl15__layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: start;
  }

  /* Intro */
  .pl15__intro {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pl15__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .pl15__intro h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .pl15__intro > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    max-width: 380px;
  }

  .pl15__stats {
    display: flex;
    gap: 24px;
    margin-top: 12px;
  }

  .pl15__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .pl15__stat strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

  .pl15__stat span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    font-weight: 500;
  }

  /* Cards column */
  .pl15__cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Card */
  .pl15__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.25s ease;
  }

  .pl15__card:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  .pl15__card--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .pl15__card--featured:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

  .pl15__label {
    position: absolute;
    top: -10px;
    left: 24px;
    padding: 3px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .pl15__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .pl15__card-top h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
  }

  .pl15__card-top p {
    margin: 4px 0 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .pl15__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
  }

  .pl15__amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl15__period {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    font-weight: 500;
  }

  .pl15__divider {
    height: 1px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl15__feats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pl15__feats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  }

  .pl15__feats i {
    font-size: 10px;
    color: var(--secondStyleColor);
  }

  .pl15__btn {
    display: block;
    text-align: center;
    padding: 11px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: auto;
  }

  .pl15__btn:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    transform: translateY(-1px);
  }

  .pl15__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

  .pl15__btn--primary:hover {
    background: var(--secondStyleColor);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  /* Connector */
  .pl15__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
  }

  .pl15__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .pl15__line {
    width: 1px;
    height: 16px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

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

    .pl15__intro {
      position: static;
      text-align: center;
      align-items: center;
    }

    .pl15__stats {
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .pl15 {
      padding: 50px 0;
    }

    .pl15__intro h2 {
      font-size: 24px;
    }

    .pl15__card {
      padding: 20px;
    }

    .pl15__card-top {
      flex-direction: column;
    }

    .pl15__stats {
      gap: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl15__card,
    .pl15__btn {
      transition: none;
    }
  }


/* ===== PARTNERS v5 — Cinematic split with spotlight card ===== */

  .pt5 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
  }

  /* Background image */
  .pt5__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.15;
    filter: blur(4px);
  }

  /* Dark gradient overlay */
  .pt5__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
  }

  /* Dot pattern */
  .pt5__dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(
      ellipse 70% 60% at 50% 50%,
      #000 20%,
      transparent 70%
    );
  }

  /* Layout */
  .pt5__shell {
    position: relative;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }

  /* Left — text */
  .pt5__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pt5__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt5__left h2 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .pt5__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
    max-width: 440px;
  }

  /* Stats */
  .pt5__stats {
    display: flex;
    gap: 24px;
    margin-top: 10px;
  }

  .pt5__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s ease;
  }

  .pt5__stat:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .pt5__stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt5__stat-lbl {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    letter-spacing: 0.04em;
  }

  /* Right — logo card */
  .pt5__right {
    display: flex;
    justify-content: center;
  }

  .pt5__card {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--borderRadius) * 1.2);
    padding: 3px;
    overflow: hidden;
  }

  /* Animated conic border */
  .pt5__border-anim {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 10%,
      transparent 20%,
      transparent 50%,
      var(--secondStyleColor) 60%,
      transparent 70%,
      transparent 100%
    );
    animation: pt5Rotate 6s linear infinite;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .pt5__card:hover .pt5__border-anim {
    opacity: 1;
  }

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

  .pt5__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2 - 3px);
    background: var(--bodyBG);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Spotlight effect */
  .pt5__spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(
      ellipse 40% 50% at 50% 0%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      transparent 70%
    );
    pointer-events: none;
    animation: pt5Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes pt5Breathe {
    0% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  .pt5__logo-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt5__logo-link:hover {
    transform: scale(1.06);
  }

  .pt5__logo-link img {
        height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
  }

  /* ---- Responsive ---- */
  @media (max-width: 950px) {
    .pt5__shell {
      gap: 40px;
    }

    .pt5__card {
      width: min(300px, 100%);
    }

    .pt5__desc {
      font-size: 14px;
    }
  }

  @media (max-width: 800px) {
    .pt5__shell {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .pt5__left {
      align-items: center;
    }

    .pt5__desc {
      max-width: 100%;
    }

    .pt5__stats {
      justify-content: center;
    }

    .pt5__card {
      width: min(320px, 85vw);
    }
  }

  @media (max-width: 600px) {
    .pt5 {
      padding: 50px 0;
      min-height: auto;
    }

    .pt5__left h2 {
      font-size: 26px;
    }

    .pt5__stats {
      gap: 12px;
      flex-wrap: wrap;
    }

    .pt5__stat {
      padding: 10px 14px;
    }

    .pt5__stat-val {
      font-size: 18px;
    }

    .pt5__card {
      width: min(280px, 80vw);
    }

    .pt5__logo-link img {
      max-width: min(180px, 60%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt5__border-anim {
      animation: none;
      opacity: 0.3;
    }
    .pt5__spotlight {
      animation: none;
    }
    .pt5__stat,
    .pt5__logo-link {
      transition: none;
    }
  }


/* контейнер секции */
  #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;
    }
  }


.statsheader {
    margin-bottom: 40px;
  }

  .stats-curve {
    position: relative;
    width: 100%;
    overflow: hidden;
    h2 {
      color: var(--textColor1);
    }
  }
  .featureText {
    color: var(--textColor1);
  }

  .stats-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 320px; /* высота блока как на скрине */
  }

  /* SVG кривая */
  .curve-svg {
    position: absolute;
    left: -2%;
    right: -2%;
    top: 8px;
    width: 104%;
    height: 210px;
    pointer-events: none;
  }

  /* точки на кривой */
  .node {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(38, 183, 255, 0.08);
    border: 1px solid rgba(38, 183, 255, 0.28);
    display: grid;
    place-items: center;
  }

  .node::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(38, 183, 255, 0.55);
    background: rgba(38, 183, 255, 0.06);
    display: block;
  }

  .node::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  }

  /* блоки метрик */
  .metric {
    position: absolute;
    transform: translateX(-50%);
    text-align: left;
  }

  .metric .value {
    font-size: clamp(54px, 6.6vw, 92px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--secondStyleColor);
    margin: 0;
  }

  .metric .label {
    margin: 14px 0 0;
    font-size: 13px;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--textColor1);
    text-transform: uppercase;
  }

  /* Позиции как на макете (проценты по ширине + px по высоте) */
  .m1 {
    left: 14%;
    top: 169px;
  }
  .m2 {
    left: 36%;
    top: 134px;
  }
  .m3 {
    left: 58%;
    top: 86px;
  }
  .m4 {
    left: 78%;
    top: 54px;
  }

  /* узлы на кривой (примерно над метриками) */
  .n1 {
    left: 6%;
    top: 152px;
  }
  .n2 {
    left: 30%;
    top: 120px;
  }
  .n3 {
    left: 52%;
    top: 74px;
  }
  .n4 {
    left: 72%;
    top: 44px;
  }

  /* аккуратная адаптация */
  @media (max-width: 900px) {
    .statsheader {
      margin-bottom: 20px;
    }
    .stats-inner {
      padding: 0;
      height: auto;
    }
    .metric {
      position: relative;
    }
    .node {
      display: none;
    }
    .curve-svg {
      display: none;
    }

    .curve-svg {
      top: 0;
      height: 220px;
    }

    .metric {
      transform: none;
      left: 0 !important;
      right: 0;
    }

    .m1 {
      top: 0;
    }
    .m2 {
      top: 0;
    }
    .m3 {
      top: 0;
    }
    .m4 {
      top: 0;
    }

    .node {
      transform: translate(0, -50%);
      left: 18px !important;
    }

    .n1 {
      top: 0;
    }
    .n2 {
      top: 0;
    }
    .n3 {
      top: 0;
    }
    .n4 {
      top: 0;
    }
  }


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


/* ===== HOW v18 — Rotating border + spark icons ===== */

  .hw18 {
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
  }

  .hw18__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 55px;
  }

  .hw18__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .hw18__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  .hw18__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* Card wrapper with animated border */
  .hw18__card {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 2px;
    overflow: hidden;
  }

  .hw18__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 12%,
      transparent 24%,
      transparent 100%
    );
    animation: hw18Rotate 5s linear infinite;
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .hw18__card:hover .hw18__border {
    opacity: 0.8;
  }

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

  .hw18__inner {
    position: relative;
    background: var(--bodyBG);
    border-radius: calc(var(--borderRadius) - 2px);
    padding: 32px 24px 28px;
    text-align: center;
    height: 100%;
  }

  /* Icon box with sparks */
  .hw18__icon-box {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hw18__icon-box i {
    font-size: 24px;
    color: var(--secondStyleColor);
    transition: transform 0.3s ease;
  }

  .hw18__card:hover .hw18__icon-box i {
    transform: rotate(-10deg) scale(1.15);
  }

  /* Sparks */
  .hw18__spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0;
  }

  .hw18__card:hover .hw18__spark {
    animation: hw18Spark 0.8s ease forwards;
  }

  .hw18__spark--1 {
    top: 4px;
    right: 8px;
    animation-delay: 0s;
  }

  .hw18__spark--2 {
    top: -2px;
    left: 14px;
    animation-delay: 0.15s;
  }

  .hw18__spark--3 {
    bottom: 2px;
    right: 2px;
    animation-delay: 0.3s;
  }

  .hw18__card:hover .hw18__spark--2 {
    animation-delay: 0.15s;
  }

  .hw18__card:hover .hw18__spark--3 {
    animation-delay: 0.3s;
  }

  @keyframes hw18Spark {
    0% {
      opacity: 0;
      transform: scale(0) translate(0, 0);
    }
    50% {
      opacity: 1;
      transform: scale(1.2) translate(-4px, -8px);
    }
    100% {
      opacity: 0;
      transform: scale(0.6) translate(-8px, -16px);
    }
  }

  .hw18__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hw18__inner h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 600;
  }

  .hw18__inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .hw18__grid {
      gap: 18px;
    }

    .hw18__inner {
      padding: 26px 20px 24px;
    }

    .hw18__inner h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 800px) {
    .hw18__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
      margin: 0 auto;
    }
  }

  @media (max-width: 600px) {
    .hw18 {
      padding: 50px 0;
    }

    .hw18__head {
      margin-bottom: 36px;
    }

    .hw18__head h2 {
      font-size: 24px;
    }

    .hw18__inner {
      padding: 24px 18px 20px;
    }

    .hw18__inner h3 {
      font-size: 16px;
    }

    .hw18__inner p {
      font-size: 13px;
    }

    .hw18__icon-box {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw18__icon-box i {
      font-size: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw18__border {
      animation: none;
      opacity: 0.2;
      background: var(--secondStyleColor);
    }
    .hw18__card:hover .hw18__spark {
      animation: none;
    }
    .hw18__icon-box i {
      transition: none;
    }
  }


.gl11 {
    padding: 60px 0;
    overflow: hidden;
  }

  .gl11__head {
    text-align: center;
    margin-bottom: 40px;
  }

  .gl11__head p {
    margin: 12px auto 0;
    color: var(--textColor1);
    text-wrap: balance;
    text-align: center;
  }

  .gl11__marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gl11__row {
    display: flex;
    width: max-content;
  }

  .gl11__track {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }

  .gl11__row--left {
    animation: gl11-scroll-left 70s linear infinite;
  }

  .gl11__row--right {
    animation: gl11-scroll-right 80s linear infinite;
  }

  .gl11__marquee-wrap:hover .gl11__row {
    animation-play-state: paused;
  }

  @keyframes gl11-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes gl11-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .gl11__item {
    flex-shrink: 0;
    width: 340px;
    height: 240px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: border-color 0.3s ease;
  }

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

  .gl11__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }

  .gl11__item:hover img {
    transform: scale(1.06);
  }

  @media (max-width: 950px) {
    .gl11__item {
      width: 280px;
      height: 200px;
    }
  }

  @media (max-width: 600px) {
    .gl11 {
      padding: 40px 0;
    }

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

    .gl11__track {
      gap: 12px;
      padding-right: 12px;
    }

    .gl11__item {
      width: 220px;
      height: 160px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl11__row--left,
    .gl11__row--right {
      animation: none;
    }

    .gl11__item img {
      transition: none;
    }
  }


/* ===== SOMETHING v9 — Stats with SVG ring progress + dot grid bg ===== */

  .sm9 {
    position: relative;
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .sm9__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

  .sm9 .container {
    position: relative;
    z-index: 1;
  }

  .sm9__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 55px;
  }

  .sm9__kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .sm9__head h2 {
    margin: 0;
    font-size: clamp(26px, 3.8vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  /* Grid */
  .sm9__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .sm9__item {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .sm9__item:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  /* SVG ring */
  .sm9__ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
  }

  .sm9__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .sm9__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
  }

  .sm9__ring-fill {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: calc(2 * 3.14159 * 52);
    stroke-dashoffset: calc(2 * 3.14159 * 52 * (1 - var(--p, 0) / 100));
    transition: stroke-dashoffset 0.8s ease;
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--secondStyleColor) 30%, transparent));
  }

  .sm9__value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

  .sm9__item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
  }

  .sm9__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

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

  @media (max-width: 800px) {
    .sm9__ring {
      width: 90px;
      height: 90px;
    }

    .sm9__value {
      font-size: 20px;
    }

    .sm9__item h3 {
      font-size: 15px;
    }
  }

  @media (max-width: 600px) {
    .sm9 {
      padding: 50px 0;
    }

    .sm9__head {
      margin-bottom: 36px;
    }

    .sm9__head h2 {
      font-size: 24px;
    }

    .sm9__grid {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .sm9__item {
      padding: 22px 12px;
    }

    .sm9__ring {
      width: 80px;
      height: 80px;
      margin-bottom: 14px;
    }

    .sm9__value {
      font-size: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sm9__ring-fill {
      transition: none;
    }

    .sm9__item {
      transition: none;
    }
  }


/* ===== FAQ SECTION ===== */

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

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

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 45px auto;
    text-align: center;
  }

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

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

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

  /* List */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Item */
  .faqItem {
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 22px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
  }

  /* Responsive */
  @media (max-width: 700px) {
    .faqItem {
      padding: 20px 18px;
    }
  }


/* ===============================
   FOOTER — SUDOLAB neon style
=============================== */

  .site-footer {
    padding: 28px 0 22px;
    border-top: 1px solid var(--secondStyleColor);
    color: var(--textColor1);
    position: relative;
  }

  /* Layout */

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

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

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

  .footer-main .logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 6px;
  }

  /* 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: var(--textColor1);
  }

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

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

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .footer-social a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--textColor1);
    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 {
    border-color: var(--secondStyleColor);
    transform: translateY(-1px);
  }

  /* Contacts */

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

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

  /* Bottom */

  .footer-bottom {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid var(--textColor1);
    font-size: 11.5px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

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