
:root {
  --bg: #121212;
  --bg-card: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #f1c40f;
  --accent-rgb: 241,196,15;
  --accent2: #0ff12d;
  --accent2-rgb: 15,241,45;
  --accent3: #f2272e;
  --accent3-rgb: 242,39,46;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --bodyBG: #121212;
  --textColor1: #e0e0e0;
  --textColor2: #111111;
  --textSecondary: #adadad;
  --textMuted: #797979;
  --secondStyleColor: #f1c40f;
  --bgCard: #1e1e1e;
  --bgAlt: #222222;
  --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 */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

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

  .nav li {
    list-style: none;
  }

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

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

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

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

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



  .k9zQ1m {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 700px;
    display: grid;
    place-items: center;
    background:
      radial-gradient(
        900px 380px at 50% 0%,
        color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
        color-mix(in srgb, var(--secondStyleColor) 1%, transparent) 35%
      ),
      radial-gradient(
        700px 460px at 50% 110%,
        color-mix(in srgb, var(--secondStyleColor) 45%, transparent),
        transparent 64%
      ),
      linear-gradient(180deg, color-mix(in srgb, var(--bodyBG) 5%, transparent));
  }

  /* точечный паттерн сверху */
  .n8uL4x {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
    background-size: 18px 18px;
    opacity: 0.35;
    transform: translateY(-14px);
    mask-image: radial-gradient(
      520px 220px at 50% 10%,
      #000 35%,
      transparent 78%
    );
  }

  /* левый “шар” (оранжевый) */
  .vP0a7n {
    position: absolute;
    left: -365px;
    bottom: -288px;
    width: clamp(340px, 46vw, 640px);
    height: clamp(340px, 46vw, 640px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

    background:
      radial-gradient(
        circle at 35% 30%,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0) 36%
      ),
      radial-gradient(
        circle at 45% 55%,
        rgba(255, 122, 42, 0.65),
        rgba(255, 59, 26, 0.25) 44%,
        rgba(7, 3, 18, 0) 72%
      ),
      conic-gradient(
        from 220deg,
        rgba(255, 140, 70, 0),
        rgba(255, 140, 70, 0.55),
        rgba(255, 255, 255, 0.22),
        rgba(255, 59, 26, 0.55),
        rgba(255, 140, 70, 0)
      );
    filter: blur(0.2px) saturate(1.1);
  }

  /* дуги поверх левого шара */
  .vP0a7n::before,
  .vP0a7n::after {
    content: "";
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .vP0a7n::before {
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  }

  .vP0a7n::after {
    inset: 120px;
    border: 2px solid rgba(255, 122, 42, 0.55);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 16px rgba(255, 122, 42, 0.18));
  }

  /* правый “шар” (фиолетовый) */
  .w2Yt3b {
    position: absolute;
    right: -456px;
    bottom: 154px;
    width: clamp(360px, 50vw, 690px);
    height: clamp(360px, 50vw, 690px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

    background:
      radial-gradient(
        circle at 40% 30%,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0) 34%
      ),
      radial-gradient(
        circle at 55% 58%,
        rgba(166, 75, 255, 0.7),
        rgba(111, 34, 255, 0.24) 46%,
        rgba(7, 3, 18, 0) 74%
      ),
      conic-gradient(
        from 310deg,
        rgba(166, 75, 255, 0),
        rgba(166, 75, 255, 0.62),
        rgba(255, 255, 255, 0.18),
        rgba(111, 34, 255, 0.62),
        rgba(166, 75, 255, 0)
      );
    filter: blur(0.2px) saturate(1.12);
  }

  /* дуги поверх правого шара */
  .w2Yt3b::before,
  .w2Yt3b::after {
    content: "";
    position: absolute;
    inset: 88px;
    border-radius: 50%;
    pointer-events: none;
  }

  .w2Yt3b::before {
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-14deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
  }

  .w2Yt3b::after {
    inset: 128px;
    border: 2px solid rgba(166, 75, 255, 0.55);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-14deg);
    filter: drop-shadow(0 0 18px rgba(166, 75, 255, 0.18));
  }

  /* контент */
  .r7Xc2p {
    position: relative;
    z-index: 2;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .s1qV9d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: 999px;
    color: var(--textColor1);
    font-size: 14px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
  }

  .h4mR2k {
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 0 10px rgba(166, 75, 255, 0.35));
  }

  .c3eT8w {
    margin: 0;
    font-weight: 600;
    line-height: 1.06;
    color: var(--textColor1);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow:
      0 10px 30px rgba(0, 0, 0, 0.45),
      0 0 30px rgba(166, 75, 255, 0.1);
  }

  .x6Jp1a {
    color: rgba(255, 255, 255, 0.84);
  }

  .m5nB0q {
    margin: 0;
    max-width: 620px;
    color: var(--textColor1);
    line-height: 1.55;
  }

  .b8Qv3y {
    margin-top: 6px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--textColor1);
    font-size: 20px;
    border: 1px solid var(--secondStyleColor);
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-4px);
    }
  }

  .t2cH7u {
    position: relative;
    z-index: 1;
  }

  /* мелкие точки вокруг кнопки */
  .g6dS1e {
    position: absolute;
    left: 50%;
    top: calc(50% + 72px);
    transform: translateX(-50%);
    width: 380px;
    height: 160px;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.14) 1px,
      transparent 1px
    );
    background-size: 16px 16px;
    opacity: 0.22;
    mask-image: radial-gradient(
      170px 70px at 50% 55%,
      #000 30%,
      transparent 78%
    );
  }

  /* адаптив */
  @media (max-width: 900px) {
    .vP0a7n,
    .w2Yt3b {
      display: none;
    }

    .k9zQ1m {
      min-height: 500px;
    }
  }



  :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 a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: color-mix(in srgb, var(--textColor1) 6%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    overflow: hidden;
  }

  .toc a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

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

  .toc a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent 70%
    );
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .toc a:hover::after,
  .toc a:focus::after {
    opacity: 1;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    transform: translateY(-2px);
  }

  .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);
    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 {
      transform: none;
    }
  }



  /*  */
  .about--pulse {
    padding: var(--sectionPadding);
    padding: 20px 0;
    border-radius: var(--borderRadius);
  }

  .about--pulse .container {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 4vw, 44px);
  }

  .aboutEyebrow {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-size: 13px;
  }

  .aboutHeader h2 {
    margin: 0 0 10px 0;
  }

  .aboutLead {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
    max-width: 72ch;
  }

  .aboutGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 16px;
    align-items: stretch;
  }

  .aboutCard {
    border-radius: calc(var(--borderRadius) * 0.85);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 42%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    padding: clamp(18px, 2.6vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .aboutCard h3 {
    margin: 0 0 10px 0;
    color: var(--textColor1);
  }

  .aboutCard p {
    margin: 0 0 12px 0;
    color: var(--textColor1);
    line-height: 1.7;
  }

  .aboutList {
    margin: 14px 0 18px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .aboutList li {
    padding: 10px 12px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    font-weight: 600;
    color: var(--textColor1);
  }

  .aboutLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid var(--secondStyleColor);
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease;
  }

  .aboutLink:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 70%, white);
  }

  .aboutCard--stats {
    gap: 10px;
    position: relative;
    overflow: hidden;
  }

  .aboutCard--stats::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(
      closest-side,
      color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
      transparent
    );
    pointer-events: none;
    opacity: 0.8;
  }

  .statItem {
    position: relative;
    z-index: 1;
    padding: 14px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--mainStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
  }

  .statValue {
    margin: 0 0 4px 0;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 900;
    color: var(--secondStyleColor);
    line-height: 1.05;
  }

  .statLabel {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.92;
    font-weight: 600;
  }

  .aboutStrip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .stripItem {
    border-radius: calc(var(--borderRadius) * 0.8);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    padding: 16px 18px;
    background: color-mix(in srgb, var(--mainStyleColor) 5%, transparent);
  }

  .stripItem h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
  }

  .stripItem p {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.9;
  }

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

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



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

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

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

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

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

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

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

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

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

  .featureTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

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

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



  /* ===== HOW v23 — Flip cards with progress connector ===== */

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

  /* Wave background */
  .hw23__wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hw23__wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    animation: hw23Shift 20s linear infinite;
    opacity: 0.04;
  }

  .hw23__wave-line1 {
    color: var(--secondStyleColor);
  }

  .hw23__wave-line2 {
    color: var(--accent2);
  }

  @keyframes hw23Shift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .hw23__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  }

  /* Header */
  .hw23__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
  }

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

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

  /* Cards grid */
  .hw23__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--maxWidthContainer);
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
  }

  /* Flip card */
  .hw23__card {
    perspective: 900px;
    height: 320px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .hw23__card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hw23__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
  }

  .hw23__card:hover .hw23__inner {
    transform: rotateY(180deg);
  }

  .hw23__front,
  .hw23__back {
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 22px;
  }

  /* Front */
  .hw23__front {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hw23__num {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
    opacity: 0.12;
  }

  .hw23__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transition: transform 0.3s ease;
  }

  .hw23__card:hover .hw23__icon {
    transform: scale(1.1);
  }

  .hw23__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  .hw23__subtitle {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    margin: 6px 0 0;
    text-align: center;
  }

  /* Per-card accent colors */
  .hw23__card:nth-child(1) .hw23__num { color: var(--secondStyleColor); }
  .hw23__card:nth-child(1) .hw23__icon {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .hw23__card:nth-child(2) .hw23__num { color: var(--accent2); }
  .hw23__card:nth-child(2) .hw23__icon {
    background: color-mix(in srgb, var(--accent2) 10%, transparent);
    color: var(--accent2);
    border-color: color-mix(in srgb, var(--accent2) 20%, transparent);
  }

  .hw23__card:nth-child(3) .hw23__num { color: var(--accent3); }
  .hw23__card:nth-child(3) .hw23__icon {
    background: color-mix(in srgb, var(--accent3) 10%, transparent);
    color: var(--accent3);
    border-color: color-mix(in srgb, var(--accent3) 20%, transparent);
  }

  .hw23__card:nth-child(4) .hw23__num { color: var(--secondStyleColor); }
  .hw23__card:nth-child(4) .hw23__icon {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Back */
  .hw23__back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .hw23__back-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
  }

  .hw23__back-desc {
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    margin: 0 0 16px;
  }

  .hw23__back-detail {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  /* Connector line */
  .hw23__connector {
    position: relative;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    height: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
  }

  .hw23__connector-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    flex: 1;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .hw23__connector-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
  }

  .hw23__connector-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    inset: 0;
    padding: 0 calc(12.5% - 5px);
  }

  .hw23__connector-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-top: -4px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }

  .hw23__connector-dots span.active {
    background: var(--secondStyleColor);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  }

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

    .hw23__card {
      height: 280px;
    }

    .hw23__connector-dots {
      padding: 0 calc(25% - 5px);
    }
  }

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

    .hw23__head {
      margin-bottom: 36px;
    }

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

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

    .hw23__card {
      height: 260px;
    }

    .hw23__num {
      font-size: 3rem;
    }

    .hw23__title {
      font-size: 16px;
    }

    .hw23__back-desc {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw23__card,
    .hw23__inner,
    .hw23__icon,
    .hw23__connector-fill,
    .hw23__connector-dots span {
      transition: none;
    }

    .hw23__wave svg {
      animation: none;
    }

    .hw23__card {
      opacity: 1;
      transform: none;
    }

    .hw23__card:hover .hw23__inner {
      transform: none;
    }
  }



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

  .gl4__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 44px;
  }

  .gl4__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
  }

  .gl4__head p {
    margin: 0;
    font-size: 15px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  .gl4__panels {
    display: flex;
    gap: 8px;
    height: clamp(340px, 45vw, 520px);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .gl4__panel {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--borderRadius);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gl4__panel--active { flex: 5; }

  .gl4__panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gl4__panel--active img { transform: scale(1.03); }

  .gl4__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 80%, transparent),
      transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl4__panel--active .gl4__label { opacity: 1; }

  .gl4__label h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }

  @media (max-width: 800px) {
    .gl4__panels { flex-direction: column; height: auto; }
    .gl4__panel { height: 80px; flex: none; }
    .gl4__panel--active { height: 280px; }
    .gl4__label { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl4 { padding: 48px 0; }
    .gl4__head { margin-bottom: 32px; }
    .gl4__panel--active { height: 220px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl4__panel, .gl4__panel img, .gl4__label { transition: none; }
  }



  /* ===== MOBILE v7 — Two overlapping phones, mesh bg ===== */

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

  .mob7__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mob7__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
  }

  .mob7__blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: 20%;
    right: 10%;
  }

  .mob7__blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--accent2);
    bottom: 10%;
    left: 20%;
  }

  .mob7 > .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .mob7__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
  }

  /* Info */
  .mob7__info {
    text-align: left;
  }

  .mob7__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    margin: 0 0 16px;
  }

  .mob7__info h2 {
    margin: 0 0 16px;
    font-weight: 700;
  }

  .mob7__info > p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  .mob7__rating {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mob7__stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 16px;
  }

  .mob7__rating p {
    margin: 0;
    font-size: 13px;
    color: var(--textSecondary);
  }

  /* Phones */
  .mob7__phones {
    position: relative;
    width: 300px;
    height: 520px;
  }

  .mob7__phone {
    position: absolute;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 30px 60px rgba(0,0,0,0.5);
  }

  .mob7__phone--front {
    width: 240px;
    height: 480px;
    bottom: 0;
    left: 0;
    z-index: 2;
  }

  .mob7__phone--back {
    width: 210px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.7;
  }

  .mob7__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    z-index: 3;
  }

  .mob7__screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bgCard);
  }

  .mob7__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Actions */
  .mob7__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .mob7__store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-radius: var(--borderRadius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
    width: 100%;
  }

  .mob7__store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .mob7__store i {
    font-size: 28px;
  }

  .mob7__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
  }

  .mob7__store small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
  }

  .mob7__note {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--textSecondary);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .mob7__grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }

    .mob7__info {
      text-align: center;
    }

    .mob7__rating {
      justify-content: center;
    }

    .mob7__phones {
      margin: 0 auto;
      width: 260px;
      height: 450px;
    }

    .mob7__phone--front {
      width: 210px;
      height: 420px;
    }

    .mob7__phone--back {
      width: 180px;
      height: 360px;
    }

    .mob7__actions {
      align-items: center;
    }

    .mob7__store {
      width: auto;
    }
  }

  @media (max-width: 600px) {
    .mob7__phone--back {
      display: none;
    }

    .mob7__phones {
      width: 200px;
      height: 400px;
    }

    .mob7__phone--front {
      width: 200px;
      height: 400px;
      position: relative;
      border-radius: 28px;
      padding: 8px;
    }

    .mob7__screen {
      border-radius: 22px;
    }
  }



  .reviewHeader {
    color: var(--textColor1);
    margin-bottom: 40px;
  }

  /* Masonry как на скрине */
  .masonry {
    column-count: 3;
    column-gap: 28px;
  }

  .masonry-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    border-radius: var(--borderRadius);
    padding: 34px 32px 26px;
    margin: 0 0 28px;
    position: relative;
    border: 1px solid var(--secondStyleColor);
  }

  .quoteMark {
    width: 42px;
    height: 28px;
    display: inline-block;
    margin: 2px 0 18px;
  }

  /* две красные “галочки” */
  .quoteMark::before,
  .quoteMark::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 20px;
    height: 20px;
    background: var(--secondStyleColor);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .quoteMark::before {
    left: 32px;
  }
  .quoteMark::after {
    left: 56px;
    transform: scaleX(-1);
  }

  .text {
    margin: 0;
    color: var(--textColor1);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
  }

  .urevj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 30% 30%,
        rgba(255, 59, 48, 0.35),
        transparent 55%
      ),
      radial-gradient(
        circle at 70% 70%,
        rgba(30, 136, 255, 0.35),
        transparent 55%
      ),
      #f3f4f7;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bhkasjh {
    min-width: 0;
  }

  .name {
    margin: 0;
    font-weight: 800;
    font-size: 15px;
    color: var(--textColor1);
    line-height: 1.25;
  }

  .role {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--textColor1);
    font-weight: 600;
  }

  /* Точный “воздух” как в макете */
  .masonry-card.tight .text {
    line-height: 1.85;
  }

  /* Адаптив */
  @media (max-width: 1100px) {
    .masonry {
      column-count: 2;
    }
  }
  @media (max-width: 700px) {
    .masonry {
      column-count: 1;
    }
    .masonry-card {
      padding: 28px 22px 22px;
    }
    .quoteMark::before,
    .quoteMark::after {
      top: 28px;
    }
    .quoteMark::before {
      left: 22px;
    }
    .quoteMark::after {
      left: 46px;
    }
    .reviewHeader {
      margin-bottom: 20px;
    }
  }



  /*  */
  .vx-partners {
    color: var(--textColor1);
  }

  .vx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vx-head {
    max-width: 560px;
  }

  .vx-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .vx-copy {
    margin-top: 12px;
    opacity: 0.8;
    text-wrap: balance;
  }

  .vx-stage {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }

  .vx-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--secondStyleColor);
    opacity: 0.5;
    animation: vx-rotate 18s linear infinite;
  }

  .vx-glow {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 40%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
    z-index: 0;
  }

  .vx-logoBox {
    position: relative;
    z-index: 1;
    width: min(260px, 65%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid var(--secondStyleColor);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vx-logoBox:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vx-logoBox img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

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

  @media (max-width: 800px) {
    .vx-shell {
      gap: 24px;
    }
    .vx-ring {
      display: none;
    }
  }



  /* ===== SOMETHING v11 — Spotlight quote with SVG wave + avatar ===== */

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

  .sm11__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: color-mix(in srgb, var(--secondStyleColor) 4%, transparent);
    pointer-events: none;
  }

  .sm11__block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sm11__quote-mark {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.5;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .sm11__quote {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 85%, transparent);
  }

  .sm11__author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .sm11__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    flex-shrink: 0;
  }

  .sm11__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sm11__author-info {
    text-align: left;
  }

  .sm11__author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
  }

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

  .sm11__stars {
    display: flex;
    gap: 4px;
  }

  .sm11__stars i {
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  @media (max-width: 800px) {
    .sm11__quote {
      font-size: 18px;
    }

    .sm11__quote-mark {
      font-size: 60px;
    }
  }

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

    .sm11__quote {
      font-size: 16px;
    }

    .sm11__avatar {
      width: 44px;
      height: 44px;
    }
  }



  #bonuses { padding: 80px 0; }
  .bn3-head { text-align: center; margin-bottom: 50px; }
  .bn3-head h2 { margin-bottom: 12px; }
  .bn3-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .bn3-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bn3-grid .bonus-card {
    background: var(--cardBG); border-radius: var(--borderRadius); overflow: hidden;
    border: 1px solid var(--secondStyleColor); position: relative;
    opacity: 0; animation: bn3FadeIn 0.5s ease forwards;
  }
  .bn3-grid .bonus-card:nth-child(1) { animation-delay: 0s; }
  .bn3-grid .bonus-card:nth-child(2) { animation-delay: 0.1s; }
  .bn3-grid .bonus-card:nth-child(3) { animation-delay: 0.2s; }
  .bn3-grid .bonus-card:nth-child(4) { animation-delay: 0.3s; }
  .bn3-grid .bonus-card:nth-child(5) { animation-delay: 0.4s; }
  .bn3-grid .bonus-card:nth-child(n+6) { animation-delay: 0.5s; }
  @keyframes bn3FadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .bn3-grid .bonus-card__top {
    padding: 24px 24px 16px; background: linear-gradient(135deg, var(--accentColor), transparent);
    position: relative;
  }
  .bn3-grid .bonus-card__badge {
    position: absolute; top: 12px; right: 12px;
    padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 700;
    background: rgba(0,0,0,0.4); color: #fff; text-transform: uppercase; backdrop-filter: blur(4px);
  }
  .bn3-grid .bonus-card__badge:empty { display: none; }
  .bn3-grid .bonus-card h3 { font-size: 20px; color: #fff; margin-bottom: 4px; }
  .bn3-grid .bonus-card__cat { font-size: 12px; color: rgba(255,255,255,0.7); }
  .bn3-grid .bonus-card__bottom { padding: 16px 24px 24px; }
  .bn3-grid .bonus-card p { color: var(--textSecondary); font-size: 14px; line-height: 1.6; }
  @media (max-width: 600px) { .bn3-grid { grid-template-columns: 1fr; } }



  /*  */
  .faq--builder {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--builder .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }

  .faqContent {
    width: 100%;
  }

  .faqContent h2 {
    margin: 0 0 12px 0;
  }

  .faqLead {
    margin: 0 0 28px 0;
    color: var(--textColor1);
    opacity: 0.9;
    max-width: 70ch;
  }

  .containerFAQ {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accord__item {
    border: 1px dotted
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    border-radius: calc(var(--borderRadius) * 0.75);
    overflow: clip;
    transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
  }

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

  .accord__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
  }

  .accord__trigger:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .accord__title {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.35;
  }

  .accord__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .accord__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
    padding: 0 20px;
  }

  .accord__panel p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .accord__panel.show {
    opacity: 1;
    padding-top: 2px;
  }

  .faqImageWrap {
    display: block;
    height: 100%;
  }

  .faqImagePlaceholder {
    width: 100%;
    height: 785px;
    min-height: 320px;
    border-radius: var(--borderRadius);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 65%, transparent);
    background:
      radial-gradient(
        120% 120% at 100% 0%,
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 0%,
        transparent 55%
      ),
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 12%, transparent),
        transparent 60%
      );
    padding: 12px;
  }

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

  @media (max-width: 980px) {
    .faq--builder .container {
      grid-template-columns: 1fr;
      && h2 {
        text-align: center;
      }
    }

    .faqImageWrap {
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .accord__trigger {
      padding: 16px 16px;
    }

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }



  .ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

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

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ft5__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
    row-gap: 8px;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .ft5__nav a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

    .ft5__nav {
      justify-content: flex-start;
    }
  }

  @media (max-width: 800px) {
    .ft5__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      transition: none;
    }
  }



[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}