
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #6c5ce7;
  --accent-rgb: 108,92,231;
  --accent2: #e75ca9;
  --accent2-rgb: 231,92,169;
  --accent3: #72c8ea;
  --accent3-rgb: 114,200,234;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #6c5ce7;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 100vw; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100vw; }
::-webkit-scrollbar-thumb:hover { background: var(--secondStyleColor); filter: brightness(1.2); }
::-webkit-scrollbar-thumb:active { background: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.05); }

body {
  font-family: var(--font);
  background: var(--bodyBG);
  color: var(--textColor1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; object-position: 50% 20%; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* Standardized typography */
section h1 {
  font-size: 48px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
section h2 {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
section h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section h4 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section p,
section li {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
footer p,
footer li,
footer a {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h3 {
  font-size: 16px !important;
}
@media (max-width: 900px) {
  section h1 {
    font-size: 36px !important;
  }
  section h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 600px) {
  section h1 {
    font-size: 30px !important;
  }
  section h2 {
    font-size: 24px !important;
  }
  section h3 {
    font-size: 18px !important;
  }
  section p,
  section li {
    font-size: 15px !important;
  }
}

/* Heading font */
section h1, section h2, section h3, section h4,
header h1, header h2, header h3, header h4,
footer h3 {
  font-family: var(--font-heading) !important;
}

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


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



  /*  */
  .homeuyydgb {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }

    && h1 {
      text-transform: uppercase;
      max-width: 900px;
    }

    && a {
      font-size: 18px;
      padding: 15px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      color: var(--textColor2);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        filter: brightness(1.15);
      }
    }
  }

  .homeuyydgb .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    && .hrr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .hll {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      background-color: rgba(17, 17, 17, 0.4);
      position: relative;
      max-width: 500px;
      border-radius: var(--borderRadius);
      && span:first-child {
        font-size: clamp(64px, 8vw, 96px);
        font-weight: 900;
        line-height: 1;
        color: var(--secondStyleColor);
      }
      && p {
        font-style: italic;
        color: var(--textColor1);
      }

      && .khvaejklj {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .homeuyydgb .container {
      flex-direction: column;
      && .hrr {
        align-items: center;
        && h1 {
          text-align: center;
        }
        && p {
          text-align: center;
        }
      }
      && .hll {
        gap: 10px;
        padding: 10px;
        && span:first-child {
          font-size: 56px;
        }
      }
    }
  }



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

  .toc {
    background-color: transparent;
  }

  .toc .swiper-wrapper {
    padding-top: 36px;
    padding-bottom: 24px;
    position: relative;
  }

  .toc .swiper-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 10%,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 90%,
      transparent
    );
    transform: translateY(-50%);
    pointer-events: none;
  }

  .toc a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    padding: 28px 24px 10px;
    border-radius: 0;
    background-color: var(--itemBgColor);
    border: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 60%, transparent);
    border: 2px solid var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scale(1.35);
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
                0 0 16px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    background: var(--secondStyleColor);
  }

  .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);
    margin: 0 auto;
  }

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

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::before,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }

    .toc a:hover::before {
      transform: translateX(-50%) scale(1);
    }
  }



  /* ===== HOW IT WORKS SECTION ALT (VARIANT 2) ===== */

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

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

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

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

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

  .howSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* Timeline */
  .howAltTimeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 28px;
  }

  .howAltLine {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      rgba(2, 255, 57, 0.05)
    );
  }

  /* Step */
  .howAltStep {
    position: relative;
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
  }

  .howAltDot {
    position: relative;
    flex: 0 0 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    z-index: 1;
    margin-left: -2px;
  }

  .howAltStepBody {
    border-radius: var(--borderRadius);
    padding: 18px 20px 18px 20px;
    border: 4px dotted var(--secondStyleColor);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

  .howAltStepTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .howAltStepText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

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

    .howAltLine {
      left: 10px;
    }

    .howAltStep {
      gap: 12px;
    }

    .howAltStepBody {
      padding: 16px 16px;
    }
  }



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

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

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

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

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

  /* ---- List ---- */
  .rm18__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .rm18__item {
    display: grid;
    grid-template-columns: 180px 40px 1fr;
    gap: 0;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease;
  }

  .rm18__item:last-child {
    border-bottom: none;
  }

  .rm18__item:hover {
    background: rgba(255, 255, 255, 0.01);
  }

  .rm18__item--active {
    background: color-mix(
      in srgb,
      var(--accent2, var(--secondStyleColor)) 3%,
      transparent
    );
    border-radius: var(--borderRadius);
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ---- Left: number + status ---- */
  .rm18__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .rm18__num {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: color 0.3s ease;
  }

  .rm18__item--done .rm18__num {
    color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .rm18__item--active .rm18__num {
    color: var(--accent2, var(--secondStyleColor));
    text-shadow: 0 0 30px
      color-mix(
        in srgb,
        var(--accent2, var(--secondStyleColor)) 20%,
        transparent
      );
  }

  .rm18__item:hover .rm18__num {
    color: var(--secondStyleColor);
  }

  .rm18__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
  }

  .rm18__status--done {
    color: var(--secondStyleColor);
  }

  .rm18__status--active {
    color: var(--accent2, var(--secondStyleColor));
  }

  .rm18__status i {
    font-size: 10px;
  }

  /* ---- Center divider ---- */
  .rm18__divider {
    display: flex;
    justify-content: center;
    padding-top: 14px;
  }

  .rm18__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    flex-shrink: 0;
  }

  .rm18__dot--pulse {
    background: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 12px
      color-mix(
        in srgb,
        var(--accent2, var(--secondStyleColor)) 40%,
        transparent
      );
    animation: rm18Pulse 2s ease-in-out infinite;
  }

  @keyframes rm18Pulse {
    0%,
    100% {
      box-shadow: 0 0 12px
        color-mix(
          in srgb,
          var(--accent2, var(--secondStyleColor)) 40%,
          transparent
        );
    }
    50% {
      box-shadow: 0 0 24px
        color-mix(
          in srgb,
          var(--accent2, var(--secondStyleColor)) 10%,
          transparent
        );
    }
  }

  .rm18__dot--empty {
    background: transparent;
    border: 2px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* ---- Right: content ---- */
  .rm18__right {
    padding-left: 8px;
  }

  .rm18__right h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
  }

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

  /* ---- Responsive ---- */
  @media (max-width: 700px) {
    .rm18__item {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 24px 0;
    }

    .rm18__item--active {
      padding-left: 16px;
      padding-right: 16px;
    }

    .rm18__left {
      flex-direction: row;
      align-items: baseline;
      gap: 12px;
    }

    .rm18__num {
      font-size: 36px;
    }
    .rm18__divider {
      display: none;
    }
    .rm18__right {
      padding-left: 0;
    }
    .rm18__right h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 600px) {
    .rm18 {
      padding: 50px 0;
    }
    .rm18__head {
      margin-bottom: 36px;
    }
    .rm18__head h2 {
      font-size: 24px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm18__dot--pulse {
      animation: none;
    }
    .rm18__num {
      transition: none;
    }
  }



  /* ===== FEATURES v11 — Central image with floating pills ===== */

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

  .ft11__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
  }

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

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

  .ft11__showcase {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Central image */
  .ft11__center {
    position: relative;
    z-index: 1;
    width: min(380px, 50%);
  }

  .ft11__frame {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 3 / 4;
  }

  .ft11__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .ft11__glow {
    position: absolute;
    inset: -30px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(60px);
    z-index: -1;
    animation: ft11Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes ft11Breathe {
    0% { opacity: 0.04; transform: scale(0.95); }
    100% { opacity: 0.1; transform: scale(1.05); }
  }

  /* Floating pills */
  .ft11__pills {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .ft11__pill {
    position: absolute;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    max-width: 260px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ft11__pill:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

  .ft11__pill--tl { top: 5%; left: 0; }
  .ft11__pill--tr { top: 10%; right: 0; }
  .ft11__pill--bl { bottom: 10%; left: 0; }
  .ft11__pill--br { bottom: 5%; right: 0; }

  .ft11__pill-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .ft11__pill h3 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 600;
  }

  .ft11__pill p {
    margin: 0;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.4;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft11__pill {
      max-width: 220px;
      padding: 14px 16px;
    }

    .ft11__center {
      width: min(320px, 45%);
    }
  }

  @media (max-width: 800px) {
    .ft11__showcase {
      flex-direction: column;
      min-height: auto;
      gap: 24px;
    }

    .ft11__pills {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ft11__pill {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      max-width: 100%;
    }

    .ft11__center {
      width: min(340px, 80%);
    }
  }

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

    .ft11__head {
      margin-bottom: 36px;
    }

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

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

    .ft11__pill {
      padding: 14px 16px;
      gap: 12px;
    }

    .ft11__pill h3 {
      font-size: 14px;
    }

    .ft11__pill-icon {
      width: 36px;
      height: 36px;
    }

    .ft11__pill-icon i {
      font-size: 14px;
    }

    .ft11__center {
      width: min(280px, 85%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft11__glow {
      animation: none;
    }
    .ft11__pill {
      transition: none;
    }
  }



  /* ===== TESTIMONIALS SECTION ===== */

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

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

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

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

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

  .testimonialsSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

  /* Card */
  .testimonialCard {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 26px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.2s ease;
    overflow: hidden;
  }

  .testimonialCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

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

  .testimonialCard:hover::before {
    opacity: 1;
  }

  /* Quote icon */
  .testimonialQuoteIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonialQuoteIcon i {
    color: var(--secondStyleColor);
    font-size: 16px;
  }

  /* Text + meta */
  .testimonialText {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textSecondary);
    flex: 1;
  }

  .testimonialMeta {
    margin-top: 6px;
  }

  .testimonialName {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .testimonialRole {
    font-size: 13px;
    color: var(--textMuted);
  }

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

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

    .testimonialCard {
      padding: 22px 18px;
    }
  }



  /* ===== ABOUT v14 — Sticky text + stacked cards + SVG deco + stats strip ===== */

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

  /* SVG decorative circles */
  .ab14__deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .ab14__circle {
    fill: none;
    stroke: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    stroke-width: 1;
  }

  .ab14__circle--1 {
    stroke-dasharray: 10 14;
    animation: ab14Spin 40s linear infinite;
    transform-origin: 85% 15%;
  }

  .ab14__circle--2 {
    stroke-dasharray: 6 10;
    animation: ab14Spin 30s linear infinite reverse;
    transform-origin: 10% 80%;
  }

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

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

  /* Layout */
  .ab14__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
    margin-bottom: 60px;
  }

  /* Left sticky */
  .ab14__left {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ab14__eyebrow {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

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

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

  .ab14__btn {
    display: inline-block;
    margin-top: 6px;
    padding: 12px 28px;
    width: fit-content;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .ab14__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Right cards */
  .ab14__right {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ab14__card {
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.03);
    padding: 26px 22px;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

  .ab14__card:hover {
    transform: translateX(6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 38%, transparent);
  }

  /* Image card */
  .ab14__card--img {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
  }

  .ab14__thumb {
    overflow: hidden;
    min-height: 180px;
  }

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

  .ab14__card--img:hover .ab14__thumb img {
    transform: scale(1.05);
  }

  .ab14__card-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ab14__card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Icon card */
  .ab14__card-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
  }

  .ab14__card:hover .ab14__card-ico {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ab14__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

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

  /* Stats strip */
  .ab14__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 0 0;
    border-top: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  .ab14__stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .ab14__stat strong {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab14__stat span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .ab14__divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(
      180deg,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent
    );
    animation: ab14Shimmer 2.5s ease-in-out infinite alternate;
  }

  @keyframes ab14Shimmer {
    0% {
      opacity: 0.4;
    }
    100% {
      opacity: 1;
    }
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ab14__left {
      position: static;
    }

    .ab14__layout {
      gap: 36px;
    }
  }

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

    .ab14__left {
      text-align: center;
      align-items: center;
    }

    .ab14__left p {
      max-width: 100%;
    }

    .ab14__card--img {
      grid-template-columns: 1fr;
    }

    .ab14__thumb {
      min-height: 160px;
      aspect-ratio: 16 / 8;
    }

    .ab14__card-body h3,
    .ab14__card h3 {
      font-size: 16px;
    }

    .ab14__card-body p,
    .ab14__card p {
      font-size: 13px;
    }

    .ab14__layout {
      margin-bottom: 44px;
    }
  }

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

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

    .ab14__stats {
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 28px;
    }

    .ab14__divider {
      display: none;
    }

    .ab14__stat {
      flex: 0 0 40%;
    }

    .ab14__card {
      padding: 22px 18px;
    }

    .ab14__card-body {
      padding: 18px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab14__circle--1,
    .ab14__circle--2 {
      animation: none;
    }

    .ab14__divider {
      animation: none;
    }

    .ab14__card,
    .ab14__btn,
    .ab14__card-ico,
    .ab14__thumb img {
      transition: none;
    }
  }



  .unitLuma {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .unitLumaShell {
    max-width: var(--maxWidthContainer);
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 32px;
    align-items: center;
  }

  /* Левая колонка */
  .unitLumaLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .unitLumaTitle {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 14px 0;
  }

  .unitLumaLead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textColor1);
    max-width: 420px;
  }

  /* Правая колонка: карточки */
  .unitLumaGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

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

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

  .unitLumaCardAccent {
    background: radial-gradient(
      circle at top left,
      rgba(2, 255, 57, 0.16),
      #262626 55%
    );
  }

  .unitLumaCardTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
  }

  .unitLumaCardText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

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

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



  /* ── Section ── */
  .gl14 {
    position: relative;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 80px 0 60px;
  }

  /* ── Container ── */
  .gl14 .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ── Film Strip ── */
  .gl14__strip {
    height: 24px;
    background: color-mix(in srgb, var(--bodyBG) 80%, var(--textColor1));
    border-top: 2px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-bottom: 2px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .gl14__strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent, transparent 28px,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 28px,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 30px,
      transparent 30px, transparent 40px,
      color-mix(in srgb, var(--textColor1) 5%, transparent) 40px,
      color-mix(in srgb, var(--textColor1) 5%, transparent) 44px,
      transparent 44px, transparent 58px
    );
    animation: gl14-film-scroll 12s linear infinite;
  }

  .gl14__strip--bottom {
    margin-top: 40px;
  }

  @keyframes gl14-film-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-58px); }
  }

  .gl14__perf {
    width: 10px;
    height: 8px;
    border-radius: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    flex-shrink: 0;
    margin: 0 12px;
  }

  /* ── Header ── */
  .gl14__head {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
  }

  .gl14__head h2 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--textColor1);
    margin: 0;
  }

  /* ── Carousel ── */
  .gl14__carousel {
    position: relative;
    padding: 20px 0;
    perspective: 1200px;
  }

  .gl14__viewport {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    position: relative;
  }

  /* ── Slide ── */
  .gl14__slide {
    position: absolute;
    width: 60%;
    max-width: 700px;
    height: 380px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .gl14__slide[data-pos="-2"] {
    transform: translateX(-110%) scale(0.6) rotateY(20deg);
    opacity: 0.2;
    z-index: 1;
  }

  .gl14__slide[data-pos="-1"] {
    transform: translateX(-62%) scale(0.78) rotateY(12deg);
    opacity: 0.5;
    z-index: 2;
    filter: brightness(0.6);
  }

  .gl14__slide[data-pos="0"] {
    transform: translateX(-50%) scale(1);
    left: 50%;
    opacity: 1;
    z-index: 4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .gl14__slide[data-pos="1"] {
    transform: translateX(12%) scale(0.78) rotateY(-12deg);
    opacity: 0.5;
    z-index: 2;
    filter: brightness(0.6);
  }

  .gl14__slide[data-pos="2"] {
    transform: translateX(60%) scale(0.6) rotateY(-20deg);
    opacity: 0.2;
    z-index: 1;
  }

  /* ── Slide Image ── */
  .gl14__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gl14__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── Slide Caption ── */
  .gl14__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, color-mix(in srgb, var(--bodyBG) 90%, transparent));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 5;
  }

  .gl14__slide[data-pos="0"] .gl14__caption {
    transform: translateY(0);
  }

  .gl14__caption h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--textColor1);
    margin: 0 0 4px;
  }

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

  /* ── Navigation Arrows ── */
  .gl14__nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: color-mix(in srgb, var(--bodyBG) 80%, transparent);
    color: var(--textColor1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
  }

  .gl14__nav:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    box-shadow: 0 0 20px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .gl14__nav--prev {
    left: 20px;
  }

  .gl14__nav--next {
    right: 20px;
  }

  /* ── Dot Indicators ── */
  .gl14__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .gl14__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .gl14__dot--active {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 10px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* ── Autoplay Bar ── */
  .gl14__autoplay {
    height: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    margin: 16px auto 0;
    max-width: 200px;
    border-radius: 1px;
    overflow: hidden;
  }

  .gl14__autoplay-fill {
    height: 100%;
    background: var(--secondStyleColor);
    width: 0;
    animation: gl14-auto-fill 5s linear infinite;
  }

  @keyframes gl14-auto-fill {
    0% { width: 0; }
    100% { width: 100%; }
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .gl14 {
      padding: 60px 0 40px;
    }

    .gl14__viewport {
      height: 280px;
    }

    .gl14__slide {
      width: 80%;
      height: 260px;
    }

    .gl14__slide[data-pos="-2"],
    .gl14__slide[data-pos="2"] {
      display: none;
    }

    .gl14__slide[data-pos="-1"] {
      transform: translateX(-55%) scale(0.82);
      opacity: 0.4;
    }

    .gl14__slide[data-pos="1"] {
      transform: translateX(5%) scale(0.82);
      opacity: 0.4;
    }

    .gl14__slide[data-pos="0"] {
      transform: translateX(-50%) scale(1);
    }

    .gl14__nav {
      width: 40px;
      height: 40px;
    }

    .gl14__head h2 {
      letter-spacing: 2px;
    }
  }

  @media (max-width: 480px) {
    .gl14__slide {
      width: 90%;
    }

    .gl14__nav--prev {
      left: 8px;
    }

    .gl14__nav--next {
      right: 8px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .gl14__slide {
      transition: none;
    }

    .gl14__caption {
      transition: none;
    }

    .gl14__strip::before {
      animation: none;
    }

    .gl14__autoplay-fill {
      animation: none;
    }

    .gl14__nav {
      transition: none;
    }
  }



.faq19{
  padding:clamp(64px,7vw,110px) 20px;
  background:var(--bodyBG);
  color:var(--textColor1);
}
.faq19 .container{max-width:700px;margin:0 auto}

.faq19__head{text-align:center;margin-bottom:40px}
.faq19__kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 16px;font-size:13px;font-weight:600;letter-spacing:.04em;
  color:var(--secondStyleColor);
  background:color-mix(in srgb,var(--secondStyleColor) 10%,transparent);
  border:1px solid color-mix(in srgb,var(--secondStyleColor) 20%,transparent);
  border-radius:100px;margin-bottom:20px;
}
.faq19__kicker i{font-size:12px}
.faq19__head h2{font-size:clamp(28px,4vw,44px);font-weight:800;margin:0;letter-spacing:-.02em;line-height:1.15}

.faq19__chat{
  display:flex;flex-direction:column;gap:6px;
  padding:28px;
  border-radius:20px;
  background:color-mix(in srgb,var(--textColor1) 3%,transparent);
  border:1px solid color-mix(in srgb,var(--textColor1) 6%,transparent);
}

.faq19__msg{
  display:flex;gap:10px;
  max-width:85%;
  animation:faq19fadeIn .5s ease both;
}
.faq19__msg--q{
  align-self:flex-end;
  flex-direction:column;align-items:flex-end;
}
.faq19__msg--a{
  align-self:flex-start;
  align-items:flex-end;
}

.faq19__bubble{
  padding:14px 18px;
  border-radius:16px;
  line-height:1.6;
}
.faq19__bubble--q{
  background:var(--secondStyleColor);
  color:var(--textColor2);
  border-bottom-right-radius:4px;
}
.faq19__bubble--q h3{
  margin:0;font-size:clamp(14px,1.3vw,16px);font-weight:600;line-height:1.4;
}
.faq19__bubble--a{
  background:color-mix(in srgb,var(--textColor1) 6%,transparent);
  border:1px solid color-mix(in srgb,var(--textColor1) 8%,transparent);
  border-bottom-left-radius:4px;
}
.faq19__bubble--a p{
  margin:0;font-size:14px;line-height:1.7;
  color:color-mix(in srgb,var(--textColor1) 75%,transparent);
}

.faq19__avatar{
  flex-shrink:0;
  width:32px;height:32px;
  border-radius:50%;
  background:color-mix(in srgb,var(--secondStyleColor) 15%,transparent);
  border:1px solid color-mix(in srgb,var(--secondStyleColor) 25%,transparent);
  display:flex;align-items:center;justify-content:center;
  color:var(--secondStyleColor);
  font-size:.75rem;
}

.faq19__time{
  font-size:.65rem;
  color:var(--textMuted);
  padding:0 4px;
}

@keyframes faq19fadeIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}
.faq19__msg:nth-child(1){animation-delay:0s}
.faq19__msg:nth-child(2){animation-delay:.1s}
.faq19__msg:nth-child(3){animation-delay:.2s}
.faq19__msg:nth-child(4){animation-delay:.3s}
.faq19__msg:nth-child(5){animation-delay:.4s}
.faq19__msg:nth-child(6){animation-delay:.5s}
.faq19__msg:nth-child(7){animation-delay:.6s}
.faq19__msg:nth-child(8){animation-delay:.7s}
.faq19__msg:nth-child(9){animation-delay:.8s}
.faq19__msg:nth-child(10){animation-delay:.9s}
.faq19__msg:nth-child(11){animation-delay:1s}
.faq19__msg:nth-child(12){animation-delay:1.1s}

@media(max-width:600px){
  .faq19__chat{padding:16px}
  .faq19__msg{max-width:92%}
}

@media(prefers-reduced-motion:reduce){
  .faq19__msg{animation:none;opacity:1;transform:none}
}



  /* ===============================
   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 {
      columns: 1;
      text-align: 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;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

  .footer-links li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

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



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}