
:root {
  --bg: #161a14;
  --bg-card: #23291e;
  --text: #e2e7df;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #cdd00b;
  --accent-rgb: 205,208,11;
  --accent2: #0bd050;
  --accent2-rgb: 11,208,80;
  --accent3: #e8340c;
  --accent3-rgb: 232,52,12;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #161a14;
  --textColor1: #e2e7df;
  --textColor2: #111111;
  --textSecondary: #afb4ac;
  --textMuted: #7c817a;
  --secondStyleColor: #cdd00b;
  --bgCard: #23291e;
  --bgAlt: #262a24;
  --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;
  }

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

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

  .nav li {
    list-style: none;
  }

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

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

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

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

  @media (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .headerButton {
      display: none;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--textColor2);
      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;
    }
  }



  /* -------- HERO -------- */
  .tytyyya {
    position: relative;
    overflow: hidden;
  }
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(5px);
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(10, 12, 16, 0.9) 0%,
        rgba(10, 12, 16, 0.75) 42%,
        rgba(10, 12, 16, 0.3) 70%,
        rgba(10, 12, 16, 0) 100%
      ),
      radial-gradient(
        700px 400px at 20% 30%,
        rgba(122, 31, 43, 0.35),
        transparent 60%
      ),
      radial-gradient(
        700px 400px at 45% 60%,
        rgba(25, 135, 84, 0.25),
        transparent 60%
      );
  }
  .hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: clamp(68vh, 72vh, 780px);
    gap: clamp(16px, 4vw, 48px);
  }

  .tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--textColor2);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: var(--secondStyleColor);
  }
  .hero__title {
    margin: 12px 0 8px;
    line-height: 1.05;
    text-wrap: balance;
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    font-weight: 900;
  }
  .hero__subtitle {
    color: var(--textColor1);
    margin: 0 0 18px;
    max-width: 56ch;
  }
  .hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    && a {
      --pad-x: 18px;
      --pad-y: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 20px;
      border-radius: 14px;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
      transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
      will-change: transform;
      background: var(--secondStyleColor);
      color: var(--textColor2);
    }
  }

  .btn--primary:hover {
    transform: translateY(-2px);
  }
  .btn--ghost {
    background: transparent;
    color: var(--textColor1);
    border-color: var(--ring);
  }
  .btn--ghost:hover {
    border-color: var(--textColor1);
    transform: translateY(-2px);
  }
  .btn--tiny {
    --pad-x: 14px;
    --pad-y: 8px;
    font-weight: 700;
    border-radius: 10px;
    background: var(--secondStyleColor);
    color: var(--textColor1);
    border: 1px solid var(--borderRadius);
  }
  .btn--tiny:hover {
    transform: translateY(-2px);
    border-color: var(--textColor1);
  }
  .hero_rigth_img {
    width: 500px;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  .hero__shape {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 48px;
    fill: var(--bodyBG);
  }

  .hero__statpanel {
    margin-right: clamp(16px, 4vw, 40px);
  }

  @media (max-width: 800px) {
    .hero__statpanel {
      display: none;
    }
    .hero__inner {
      height: 60vh;
      min-height: auto;
    }
  }



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }

  .swiper {
    padding-bottom: 10px !important;
  }

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

  .toc h2 {
    margin: 0 !important;
    text-align: center;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
    counter-reset: toc-counter;
  }

  .toc a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 10px 22px 10px 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    flex-shrink: 0;
    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::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 40%, var(--textColor1)));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    border-color: var(--secondStyleColor);
    background-color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: scale(1.1);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    transform: scaleX(1);
  }

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



  /* ===== HOW v19 — Three-column rows with sonar nodes ===== */

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

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

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

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

  .hw19__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hw19__row {
    display: grid;
    grid-template-columns: 90px 70px 1fr;
    gap: 0;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
  }

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

  .hw19__row:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  /* Left — big number */
  .hw19__left {
    text-align: center;
  }

  .hw19__big {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.15;
    line-height: 1;
    transition: opacity 0.3s ease;
  }

  .hw19__row:hover .hw19__big {
    opacity: 0.4;
  }

  /* Mid — node with sonar */
  .hw19__mid {
    display: flex;
    justify-content: center;
  }

  .hw19__node {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bodyBG);
    z-index: 1;
  }

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

  .hw19__row:hover .hw19__node i {
    transform: scale(1.2);
  }

  /* Sonar pulse */
  .hw19__sonar {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    opacity: 0;
  }

  .hw19__row:hover .hw19__sonar {
    animation: hw19Sonar 1.2s ease-out infinite;
  }

  @keyframes hw19Sonar {
    0% {
      inset: -4px;
      opacity: 0.5;
    }
    100% {
      inset: -22px;
      opacity: 0;
    }
  }

  /* Right — text */
  .hw19__right {
    padding-left: 20px;
  }

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw19__list {
      max-width: 100%;
    }
  }

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

    .hw19__big {
      font-size: 32px;
    }

    .hw19__node {
      width: 38px;
      height: 38px;
    }

    .hw19__node i {
      font-size: 14px;
    }

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

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

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

    .hw19__head {
      margin-bottom: 36px;
    }

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

    .hw19__row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 14px;
      padding: 24px 16px;
    }

    .hw19__right {
      padding-left: 0;
    }

    .hw19__big {
      font-size: 28px;
    }

    .hw19__node {
      width: 42px;
      height: 42px;
      margin: 0 auto;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw19__row:hover .hw19__sonar {
      animation: none;
    }
    .hw19__node i,
    .hw19__big {
      transition: none;
    }
  }



  /* ===== FEATURES v15 — SVG dot-grid bg + staggered masonry ===== */

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

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

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

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

  .ft15__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

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

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

  /* Masonry grid */
  .ft15__masonry {
    columns: 3;
    column-gap: 18px;
  }

  .ft15__card {
    break-inside: avoid;
    margin-bottom: 18px;
    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;
  }

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

  /* Image cards */
  .ft15__card--tall,
  .ft15__card--wide {
    padding: 0;
    overflow: hidden;
  }

  .ft15__card-img {
    overflow: hidden;
  }

  .ft15__card--tall .ft15__card-img {
    aspect-ratio: 4 / 3;
  }

  .ft15__card--wide .ft15__card-img {
    aspect-ratio: 16 / 8;
  }

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

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

  .ft15__card-body {
    padding: 20px 22px 24px;
  }

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

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

  /* Icon cards */
  .ft15__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: 16px;
    transition: transform 0.3s ease;
  }

  .ft15__card:hover .ft15__ico {
    transform: scale(1.12) rotate(-5deg);
  }

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

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft15__masonry {
      columns: 2;
    }
  }

  @media (max-width: 800px) {
    .ft15__card h3,
    .ft15__card-body h3 {
      font-size: 16px;
    }

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

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

    .ft15__head {
      margin-bottom: 36px;
    }

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

    .ft15__masonry {
      columns: 1;
    }
  }

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



  /* ===== ROADMAP v6 — SVG curve path + glass cards + travelling light ===== */

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

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

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

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

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

  /* Track container */
  .rm6__track {
    position: relative;
  }

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

  .rm6__path {
    stroke: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    stroke-width: 2;
  }

  .rm6__path--dash {
    stroke: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    stroke-width: 2;
    stroke-dasharray: 8 12;
  }

  .rm6__light {
    fill: var(--secondStyleColor);
    filter: drop-shadow(0 0 8px var(--secondStyleColor));
    opacity: 0.7;
  }

  /* Phases grid */
  .rm6__phases {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Stagger vertically to follow curve */
  .rm6__phase--1 {
    padding-top: 0;
  }
  .rm6__phase--2 {
    padding-top: 50px;
  }
  .rm6__phase--3 {
    padding-top: 100px;
  }
  .rm6__phase--4 {
    padding-top: 150px;
  }

  /* Number circle */
  .rm6__num {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .rm6__num span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    animation: rm6Pulse 2.5s ease-in-out infinite;
  }

  @keyframes rm6Pulse {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 0 10px
        color-mix(in srgb, var(--secondStyleColor) 0%, transparent);
    }
  }

  /* Card */
  .rm6__card {
    padding: 24px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

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

  .rm6__ico {
    width: 42px;
    height: 42px;
    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;
  }

  .rm6__card:hover .rm6__ico {
    transform: scale(1.12) rotate(-5deg);
  }

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

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

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

  /* Badges */
  .rm6__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .rm6__badge--done {
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .rm6__badge--active {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

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

    .rm6__phase--1 {
      padding-top: 0;
    }
    .rm6__phase--2 {
      padding-top: 0;
    }
    .rm6__phase--3 {
      padding-top: 0;
    }
    .rm6__phase--4 {
      padding-top: 0;
    }

    .rm6__svg {
      display: none;
    }
  }

  @media (max-width: 800px) {
    .rm6__card h3 {
      font-size: 16px;
    }

    .rm6__card p {
      font-size: 12px;
    }
  }

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

    .rm6__head {
      margin-bottom: 36px;
    }

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

    .rm6__phases {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .rm6__card {
      padding: 20px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm6__num span {
      animation: none;
    }

    .rm6__light animateMotion {
      dur: 0s;
    }

    .rm6__card,
    .rm6__ico {
      transition: none;
    }
  }



  /* ============ Matchday Atmosphere (Layered stack) ============ */
  .fxl-atmo__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fxl-btn {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 800;
    width: fit-content;
    transition: 0.3s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
  }
  .head-about-s {
    color: var(--textColor1);
  }
  .fxl-atmo__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .fxl-atmo__grid {
      grid-template-columns: 1fr;
    }
  }
  .head-about-s--left {
    text-align: left;
  }

  .fxl-bullets {
    margin: 12px 0 20px;
    padding: 0;
    list-style: none;
  }
  .fxl-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--textColor1);
  }
  .fxl-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px rgba(121, 255, 207, 0.18);
  }

  .fxl-atmo__visuals {
    position: relative;
    min-height: 420px;
  }
  .fxl-blob,
  .fxl-blob--b {
    position: absolute;
    inset: auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    z-index: 0;
    background: radial-gradient(
        45% 45% at 60% 40%,
        var(--secondStyleColor),
        transparent 70%
      ),
      radial-gradient(
        45% 45% at 30% 70%,
        var(--secondStyleColor),
        transparent 70%
      ),
      #0f2a1f;
    top: -20px;
    left: -10px;
  }
  .fxl-blob--b {
    width: 280px;
    height: 280px;
    bottom: -30px;
    right: -20px;
    top: auto;
    left: auto;
  }

  .fxl-polaroid {
    position: absolute;
    width: 60%;
    aspect-ratio: 4/3;
    border-radius: var(--borderRadius);
    padding: 8px;
  }
  .fxl-polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: 12px;
  }
  .fxl-polaroid--a {
    top: 8%;
    left: 10%;
    transform: rotate(-6deg);
  }
  .fxl-polaroid--b {
    top: 28%;
    right: 2%;
    transform: rotate(5deg);
  }
  .fxl-polaroid--c {
    bottom: 0;
    left: 18%;
    transform: rotate(2deg);
  }



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

  .gl9__head {
    text-align: center;
    margin-bottom: 44px;
  }

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

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

  .gl9__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    align-items: stretch;
  }

  /* Featured large image */
  .gl9__feature {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    min-height: 420px;
  }

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

  .gl9__feature:hover img {
    transform: scale(1.04);
  }

  .gl9__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 90%, transparent) 0%,
      transparent 100%);
  }

  .gl9__caption h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
  }

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

  /* Thumbnail stack */
  .gl9__stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gl9__thumb {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    aspect-ratio: 1;
  }

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

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

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

  .gl9__thumb:hover .gl9__thumb-label {
    opacity: 1;
  }

  .gl9__thumb-label h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }

  @media (max-width: 800px) {
    .gl9__layout {
      grid-template-columns: 1fr;
    }
    .gl9__feature { min-height: 280px; }
    .gl9__thumb-label { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl9 { padding: 48px 0; }
    .gl9__head { margin-bottom: 32px; }
    .gl9__feature { min-height: 220px; }
    .gl9__stack { gap: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl9__feature img, .gl9__thumb img, .gl9__thumb-label { transition: none; }
  }



  .beamSlot {
    padding: 64px 0;
    color: var(--textColor1);
  }

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

  /* Текст слева */
  .beamSlotLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .beamSlotTitle {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .beamSlotLead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  /* Панель справа */
  .beamSlotPanel {
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 18px 18px 16px 18px;
  }

  .beamSlotFieldGroup {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  .beamSlotInput {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--bgAlt);
    color: var(--textColor1);
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
  }

  .beamSlotInput::placeholder {
    color: var(--textMuted);
  }

  .beamSlotInput:focus {
    border-color: var(--secondStyleColor);
  }

  .beamSlotButton {
    border-radius: 999px;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    white-space: nowrap;
    transition: 0.18s ease;
  }

  .beamSlotButton:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }

  .beamSlotHint {
    font-size: 12px;
    line-height: 1.6;
    color: var(--textMuted);
  }

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

  @media (max-width: 600px) {
    .beamSlotFieldGroup {
      flex-direction: column;
    }

    .beamSlotButton {
      width: 100%;
      text-align: center;
    }
  }



  /* ===========================
     Reviews 16 — Infinite Marquee
     Two auto-scrolling rows in opposite directions,
     glass cards, animated SVG background
     =========================== */

  .rv16 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

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

  /* Floating glow blobs */
  .rv16__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .rv16__glow--1 {
    width: 420px;
    height: 420px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -80px;
    left: -60px;
    animation: rv16-drift1 26s ease-in-out infinite;
  }

  .rv16__glow--2 {
    width: 360px;
    height: 360px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -60px;
    right: -80px;
    animation: rv16-drift2 30s ease-in-out infinite;
  }

  @keyframes rv16-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, 50px) scale(1.1);
    }
    66% {
      transform: translate(-30px, -40px) scale(0.95);
    }
  }

  @keyframes rv16-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, -30px) scale(1.08);
    }
    66% {
      transform: translate(40px, 60px) scale(0.93);
    }
  }

  /* Header */
  .rv16__head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 48px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .rv16__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .rv16__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
  }

  .rv16__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

  /* Marquee container */
  .rv16__marquee {
    padding: 10px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .rv16__marquee + .rv16__marquee {
    margin-top: 20px;
  }

  /* Track */
  .rv16__track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
  }

  .rv16__track--left {
    animation: rv16-scroll-left 45s linear infinite;
  }

  .rv16__track--right {
    animation: rv16-scroll-right 45s linear infinite;
  }

  .rv16__marquee:hover .rv16__track {
    animation-play-state: paused;
  }

  @keyframes rv16-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 10px));
    }
  }

  @keyframes rv16-scroll-right {
    0% {
      transform: translateX(calc(-50% - 10px));
    }
    100% {
      transform: translateX(0);
    }
  }

  /* Card */
  .rv16__card {
    flex-shrink: 0;
    width: 360px;
    padding: 26px 24px 24px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 82%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s ease;
  }

  .rv16__card:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    box-shadow:
      0 8px 32px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    transform: translateY(-4px);
  }

  /* Stars */
  .rv16__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  /* Text */
  .rv16__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
  }

  /* Author row */
  .rv16__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
  }

  .rv16__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  .rv16__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .rv16__role {
    margin: 0;
    font-size: 12px;
    color: var(--textColor1);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv16__track {
      animation: none !important;
    }
    .rv16__bg * {
      animation: none !important;
    }
    .rv16__glow {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv16__card {
      width: 320px;
      padding: 22px 20px 20px;
    }
    .rv16__track--left {
      animation-duration: 38s;
    }
    .rv16__track--right {
      animation-duration: 38s;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .rv16__card {
      width: 300px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv16__card {
      width: 280px;
      padding: 20px 18px 18px;
    }
    .rv16__track--left {
      animation-duration: 30s;
    }
    .rv16__track--right {
      animation-duration: 30s;
    }
    .rv16__marquee + .rv16__marquee {
      margin-top: 14px;
    }
  }



  .faq {
    margin-bottom: 100px;
    color: var(--textColor1);
  }

  /* Внутренняя секция */
  .faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bgAlt);
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  }

  .faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--textColor1);
  }

  /* Элементы FAQ */
  .faq-item {
    border-bottom: 2px solid var(--secondStyleColor);
    padding: 12px 0;
  }

  .faq h3 {
    margin: 10px 0;
  }

  /* Кнопка-вопрос */
  .faq-question {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    background: none;
    border: none;
    color: var(--textColor1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
  }

  .faq-question::after {
    content: "+";
    font-size: 32px;
    transition: transform 0.2s ease;
    color: var(--secondStyleColor);
  }

  .faq-question.active::after {
    content: "-";
    transform: rotate(180deg);
  }

  /* Ответ */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    color: var(--textColor1);
    padding-top: 0;
  }

  .faq-answer p {
    margin-top: 0;
  }

  /* Открытый ответ (по классу из твоего JS) */
  .faq-answer.open {
    max-height: 200px; /* можно увеличить, если текст длиннее */
    /* padding-top: 10px; */
  }

  /* Если используешь .reviewsWrapper рядом — оставил хук */
  .reviewsWrapper h2 {
    margin-bottom: 20px;
  }

  /* Мобилка */
  @media screen and (max-width: 750px) {
    .faq {
      margin-bottom: 60px;
    }

    .faq-section {
      padding: 30px 16px;
    }
  }



  .ft6 {
    position: relative;
    padding: 56px 20px 24px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Top Glow ── */
  .ft6__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
  }

  /* ── Container ── */
  .ft6 .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .ft6__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.2s ease;
  }

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

  /* ── Social ── */
  .ft6__social {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
  }

  .ft6__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 7%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .ft6__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  /* ── Divider ── */
  .ft6__divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 30%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 50%,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 70%,
      transparent
    );
    position: relative;
    margin-bottom: 28px;
  }

  .ft6__diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--secondStyleColor);
    border-radius: 1px;
  }

  /* ── Navigation ── */
  .ft6__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-bottom: 32px;
  }

  .ft6__nav a {
    position: relative;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .ft6__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--secondStyleColor);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ft6__nav a:hover {
    color: var(--textColor1);
  }

  .ft6__nav a:hover::after {
    transform: scaleX(1);
  }

  /* ── Bottom ── */
  .ft6__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .ft6__copy {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    margin: 0;
  }

  .ft6__email {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    margin: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .ft6 {
      padding: 48px 20px 20px;
    }
  }

  @media (max-width: 800px) {
    .ft6__nav {
      gap: 20px;
    }

    .ft6__bottom {
      flex-direction: column;
      gap: 6px;
    }
  }

  @media (max-width: 600px) {
    .ft6 {
      padding: 40px 16px 20px;
    }

    .ft6__nav {
      gap: 16px;
    }

    .ft6__nav a {
      font-size: 12px;
    }

    .ft6__social a {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }

    .ft6__glow {
      width: 300px;
      opacity: 0.06;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft6__social a,
    .ft6__nav a,
    .ft6__nav a::after,
    .ft6__logo {
      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}