
:root {
  --bg: #1a1a2e;
  --bg-card: #16213e;
  --text: #eaeaea;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #e94560;
  --accent-rgb: 233,69,96;
  --accent2: #cde945;
  --accent2-rgb: 205,233,69;
  --accent3: #ec5ceb;
  --accent3-rgb: 236,92,235;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --bodyBG: #1a1a2e;
  --textColor1: #eaeaea;
  --textColor2: #ffffff;
  --textSecondary: #b6b6bb;
  --textMuted: #82828c;
  --secondStyleColor: #e94560;
  --bgCard: #16213e;
  --bgAlt: #2b2b3d;
  --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;
    }
  }



  .hero-11 {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  .hero-11 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .hero-lerft {
    display: flex;
    flex-direction: column;
    gap: 20px;
    img {
      height: 500px;
      width: 100%;
      object-fit: cover;
      border-radius: var(--borderRadius);
      object-position: 50% 20%;
    }
  }

  .hero-gight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: auto;
    gap: 20px;
    img {
      height: 500px;
      width: 500px;
      object-position: 50% 20%;
      border-radius: var(--borderRadius);
      object-fit: cover;
    }
    a {
      padding: 12px 20px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-weight: 900;
      font-size: 24px;
      transition: 0.2s all linear;
    }
    a:hover {
      transform: translateY(-5px);
    }
  }

  @media (max-width: 800px) {
    .hero-lerft img {
      display: none;
    }
    .hero-lerft {
      justify-content: center;
      h1,
      p {
        text-align: center;
      }
    }
    .hero-11 .container {
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .hero-gight img {
      width: 100%;
    }
    .hero-gight a {
      margin: 0 auto;
    }
  }



  :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: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--textColor1) 12%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease;
    -webkit-transition: color 0.35s ease, border-color 0.35s ease;
    -moz-transition: color 0.35s ease, border-color 0.35s ease;
    -ms-transition: color 0.35s ease, border-color 0.35s ease;
    -o-transition: color 0.35s ease, border-color 0.35s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--secondStyleColor);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor2);
    border-color: var(--secondStyleColor);
  }

  .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 {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }



  /* ===========================
     Reviews 20 — Masonry Grid
     CSS columns masonry + glassmorphism cards + staggered reveal
     =========================== */

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

  /* Background glows */
  .rev20__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .rev20__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    top: -100px;
    left: -5%;
    animation: rev20-drift1 20s ease-in-out infinite;
  }

  .rev20__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--accent2);
    opacity: 0.04;
    bottom: -80px;
    right: 5%;
    animation: rev20-drift2 24s ease-in-out infinite;
  }

  @keyframes rev20-drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.08); }
  }

  @keyframes rev20-drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, -40px) scale(1.06); }
  }

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

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

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

  .rev20__sub {
    margin: 0;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.55;
  }

  /* Masonry layout */
  .rev20__masonry {
    position: relative;
    z-index: 1;
    columns: 2;
    column-gap: 22px;
  }

  /* Card */
  .rev20__card {
    break-inside: avoid;
    margin-bottom: 22px;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 70%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease,
      border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

  .rev20__card:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: 0 12px 36px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* Stars */
  .rev20__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
  }

  .rev20__stars .fa-star {
    color: var(--secondStyleColor);
  }

  .rev20__stars .fa-star-half-stroke {
    color: var(--secondStyleColor);
  }

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

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

  .rev20__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      color-mix(in srgb, var(--accent2) 20%, transparent)
    );
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

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

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

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rev20__glow {
      animation: none !important;
    }
    .rev20__card {
      opacity: 1;
      transform: none;
      transition: none !important;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .rev20__masonry {
      columns: 2;
      column-gap: 16px;
    }
    .rev20__card {
      margin-bottom: 16px;
      padding: 24px 20px 20px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .rev20__masonry {
      columns: 1;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rev20__card {
      margin-bottom: 14px;
      padding: 22px 18px 20px;
    }
  }



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

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

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

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

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

  /* ---- Timeline ---- */
  .rm19__timeline {
    max-width: 960px;
    margin: 0 auto;
  }

  /* ---- Card rows ---- */
  .rm19__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .rm19__row--top .rm19__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .rm19__row--bottom .rm19__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .rm19__cell--empty {
    visibility: hidden;
    pointer-events: none;
  }

  /* ---- Stem ---- */
  .rm19__stem {
    width: 2px;
    height: 24px;
    background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    flex-shrink: 0;
  }

  .rm19__stem--active {
    background: linear-gradient(
      to bottom,
      var(--accent2, var(--secondStyleColor)),
      color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 18%, transparent)
    );
  }

  /* ---- Rail row ---- */
  .rm19__rail-row {
    position: relative;
    height: 52px;
    display: flex;
    align-items: center;
  }

  .rm19__rail {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: 2px;
  }

  .rm19__rail-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2, var(--secondStyleColor)));
    border-radius: 2px;
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm19__dots {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* ---- Dot ---- */
  .rm19__dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    font-size: 13px;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition: transform 0.3s ease;
  }

  .rm19__dot:hover {
    transform: scale(1.15);
  }

  .rm19__dot i { font-size: 13px; }

  .rm19__dot--done {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .rm19__dot--glow {
    border-color: var(--accent2, var(--secondStyleColor));
    color: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 35%, transparent);
    animation: rm19Pulse 2s ease-in-out infinite;
  }

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

  .rm19__dot--empty {
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    color: color-mix(in srgb, var(--textColor1) 30%, transparent);
  }

  /* ---- Card ---- */
  .rm19__card {
    padding: 22px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .rm19__row--top .rm19__card:hover {
    transform: translateY(-4px);
  }

  .rm19__row--bottom .rm19__card:hover {
    transform: translateY(4px);
  }

  .rm19__card--active {
    border-color: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 28%, transparent);
    background: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 4%, transparent);
  }

  .rm19__phase {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 6px;
  }

  .rm19__card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
  }

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

  /* ---- Responsive ---- */
  @media (max-width: 850px) {
    .rm19__row { grid-template-columns: 1fr 1fr; }
    .rm19__dots { grid-template-columns: 1fr 1fr; }
    .rm19__rail { display: none; }

    /* Stack: all cards above, all dots, all cards below */
    .rm19__row--top .rm19__cell:nth-child(1) { order: 1; }
    .rm19__row--top .rm19__cell:nth-child(2) { display: none; }
    .rm19__row--top .rm19__cell:nth-child(3) { order: 2; }
    .rm19__row--top .rm19__cell:nth-child(4) { display: none; }

    .rm19__row--bottom .rm19__cell:nth-child(1) { display: none; }
    .rm19__row--bottom .rm19__cell:nth-child(2) { order: 1; }
    .rm19__row--bottom .rm19__cell:nth-child(3) { display: none; }
    .rm19__row--bottom .rm19__cell:nth-child(4) { order: 2; }

    .rm19__cell--empty { display: none; }
    .rm19__rail-row { height: 44px; }
  }

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

    /* Collapse to vertical list */
    .rm19__timeline { display: flex; flex-direction: column; gap: 16px; }
    .rm19__row { display: flex; flex-direction: column; gap: 14px; }
    .rm19__row--top .rm19__cell,
    .rm19__row--bottom .rm19__cell { flex-direction: row; gap: 14px; }
    .rm19__cell--empty,
    .rm19__row--top .rm19__cell:nth-child(2),
    .rm19__row--top .rm19__cell:nth-child(4),
    .rm19__row--bottom .rm19__cell:nth-child(1),
    .rm19__row--bottom .rm19__cell:nth-child(3) { display: none; }
    .rm19__stem { display: none; }
    .rm19__rail-row { display: none; }
    .rm19__card { text-align: left; padding: 18px 16px; }
    .rm19__card h3 { font-size: 15px; }
    .rm19__card p { font-size: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm19__dot--glow { animation: none; }
    .rm19__card, .rm19__dot { transition: none; }
  }



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

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

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

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

  .gl7__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gl7__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
  }

  .gl7__item--tall {
    grid-row: span 2;
  }

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

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

  .gl7__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 0%,
      transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .gl7__item:hover .gl7__overlay {
    opacity: 1;
  }

  .gl7__overlay h3 {
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 600;
  }

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

  @media (max-width: 800px) {
    .gl7__mosaic {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
    }
    .gl7__overlay { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl7 { padding: 48px 0; }
    .gl7__head { margin-bottom: 32px; }
    .gl7__mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: 200px;
    }
    .gl7__item--tall { grid-row: span 1; }
  }

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



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

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

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

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

  .pl6__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
  }

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

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

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

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

  .pl6__name {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }

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

  .pl6__price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
    flex-shrink: 0;
  }

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

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

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

  .pl6__feat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

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

  .pl6__btn {
    display: inline-block;
    width: fit-content;
    padding: 10px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

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

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

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

  @media (max-width: 600px) {
    .pl6 { padding: 48px 0; }
    .pl6__head { margin-bottom: 36px; }
    .pl6__name { flex-direction: column; gap: 4px; }
  }

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



  /* ====== hxqZp (responsive) ====== */
  .hxqZp {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 6vw, 92px) 0;
    color: var(--textColor1);
  }

  .hxqZp-bg {
    position: absolute;
    inset: -2px;
    background:
      radial-gradient(
        900px 420px at 50% 110%,
        rgba(255, 255, 255, 0.05),
        transparent 60%
      ),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0 1px,
        transparent 1px 14px
      );
    opacity: 0.22;
    pointer-events: none;
    mask-image: radial-gradient(60% 60% at 50% 45%, #000 30%, transparent 70%);
  }

  .hxqZp-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .hxqZp-head h2,
  .hxqZp-head p {
    text-align: center;
  }

  .hxqZp-ttl {
    line-height: 1.08;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
  }

  .hxqZp-sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
  }

  .hxqZp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .hxqZp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 18px;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .hxqZp-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
  }

  .hxqZp-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .hxqZp-box h3,
  .hxqZp-box p {
    text-align: center;
  }

  .hxqZp-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--borderRadius);
    display: grid;
    place-items: center;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
    background:
      radial-gradient(
        12px 12px at 30% 30%,
        color-mix(in srgb, var(--secondStyleColor) 70%, transparent),
        transparent 70%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        rgba(0, 229, 255, 0.1)
      );
  }

  .hxqZp-num {
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 20px;
    opacity: 0.95;
  }

  .hxqZp-h3 {
    margin: 2px 0 6px 0;
    letter-spacing: -0.01em;
  }

  .hxqZp-p {
    margin: 0 0 10px 0;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .hxqZp-meta {
    display: flex;
    gap: 8px;
  }

  .hxqZp-chip {
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .hxqZp-item {
      transition: none;
    }
  }



  .ai-technology h2 {
    text-align: left;
  }
  .ai-technology__body {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .ai-technology__body-text ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  .ai-technology__body-img {
    width: 600px;
    height: 500px;
    border-radius: var(--borderRadius);
    img {
      object-fit: cover;
      border-radius: inherit;
      width: 100%;
      height: 100%;
      object-position: 50% 20%;
    }
  }
  .ai-technology__body-text li {
    flex: 1 1 30%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    border-radius: var(--borderRadius);
    background-color: transparent;
    border: 1px solid var(--secondStyleColor);
    color: var(--textColor1);
  }
  .ai-technology__body-text li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* color: var(--pink); */
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    font-family: "Inter", serif;
  }
  .ai-technology__body-text li > span:first-child {
    position: relative;
    z-index: 0; /* чтобы сам span был поверх псевдоэлемента */
  }

  .ai-technology__body-text li > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    p {
      text-align: left;
    }
  }
  .ai-technology__body-text li > div span {
    font-weight: 600;
    font-size: 24px;
    line-height: 31.2px;
  }

  @media (max-width: 800px) {
    .ai-technology__body {
      flex-direction: column;
    }
    .ai-technology__body-img {
      width: 100%;
    }
    .ai-technology__header h2 {
      text-align: center;
    }
  }



  .stats--dynamic-head {
    margin: 0 auto 45px auto;
  }
  .stats--dynamic {
    background: var(--bodyBG);
    h2,
    h2 + p {
      text-align: center;
    }
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .stat-card--glow {
    backdrop-filter: blur(20px);
    border: 1px solid var(--secondStyleColor);

    border-radius: var(--borderRadius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .stat-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .stat-card__header h3 {
    color: var(--textColor1);
    margin: 0;
  }

  .live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondStyleColor);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondStyleColor);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .stat-period {
    color: var(--secondStyleColor);
    font-size: 0.9rem;
  }

  .stat-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--secondStyleColor);
  }

  .stat-label {
    color: var(--textColor1);
    font-size: 0.9rem;
  }

  .stat-value {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--secondStyleColor);
  }

  .stat-suffix {
    color: var(--secondStyleColor);
    font-size: 0.9rem;
  }

  .players-list,
  .wins-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .player-item,
  .win-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease;
  }

  .player-item:hover,
  .win-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .player-rank {
    width: 24px;
    height: 24px;
    background: var(--secondStyleColor);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .player-name {
    flex: 1;
    color: var(--text-primary);
  }

  .player-win {
    color: var(--secondStyleColor);
    font-weight: 700;
  }

  .win-multiplier {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--secondStyleColor);
  }

  .win-details {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .win-amount {
    color: var(--text-primary);
    font-weight: 700;
  }

  .win-time {
    color: var(--secondStyleColor);
    font-size: 0.8rem;
  }

  @media (max-width: 800px) {
    .stats-grid {
      display: flex;
      flex-direction: column;
      width: inherit;
    }
  }



  /* ===== MOBILE v8 — Floating phone with ring accents ===== */

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

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

  .mob8__ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.08);
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
  }

  .mob8__ring--2 {
    width: 700px;
    height: 700px;
    border-color: rgba(var(--accent-rgb), 0.04);
  }

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

  .mob8__wrap {
    display: flex;
    align-items: center;
    gap: 70px;
  }

  /* Phone */
  .mob8__phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 40px;
    padding: 12px;
    flex-shrink: 0;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 40px 80px rgba(0,0,0,0.5),
      0 0 100px rgba(var(--accent-rgb), 0.06);
    animation: mob8Float 6s ease-in-out infinite;
  }

  @keyframes mob8Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  .mob8__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 3;
  }

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

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

  /* Content */
  .mob8__content {
    flex: 1;
    min-width: 0;
  }

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

  .mob8__content > p {
    margin: 0 0 30px;
    line-height: 1.7;
    color: var(--textSecondary);
    max-width: 480px;
  }

  /* Perks */
  .mob8__perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
  }

  .mob8__perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--borderRadius);
    background: var(--bgCard);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .mob8__perk i {
    font-size: 20px;
    color: var(--secondStyleColor);
    flex-shrink: 0;
  }

  .mob8__perk p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
  }

  /* Store buttons */
  .mob8__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

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

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

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

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

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

  /* Responsive */
  @media (max-width: 900px) {
    .mob8__wrap {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

    .mob8__buttons {
      justify-content: center;
    }

    .mob8__phone {
      width: 220px;
      height: 440px;
      border-radius: 32px;
      padding: 10px;
    }

    .mob8__screen {
      border-radius: 24px;
    }

    .mob8__notch {
      width: 90px;
      height: 22px;
      top: 10px;
    }

    .mob8__ring {
      left: 50%;
    }
  }

  @media (max-width: 600px) {
    .mob8__phone {
      width: 200px;
      height: 400px;
    }

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

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



  /* ===== FEATURES v20 — Vertical timeline with SVG connector + mixed cards ===== */

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

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

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

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

  /* Timeline */
  .ft20__timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* SVG dashed line */
  .ft20__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 0;
  }

  .ft20__line-svg {
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .ft20__line-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 60px;
    margin-left: -3px;
    background: var(--secondStyleColor);
    border-radius: 6px;
    filter: blur(6px);
    opacity: 0.5;
    animation: ft20Travel 4s ease-in-out infinite;
  }

  @keyframes ft20Travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: calc(100% - 60px); opacity: 0; }
  }

  /* Items */
  .ft20__item {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    z-index: 1;
  }

  .ft20__marker {
    display: flex;
    justify-content: center;
    padding-top: 22px;
  }

  .ft20__dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ft20__item:hover .ft20__dot {
    transform: scale(1.12);
    border-color: var(--secondStyleColor);
  }

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

  /* Content cards */
  .ft20__content {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    padding: 24px 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* Image variant */
  .ft20__content--img {
    padding: 0;
    overflow: hidden;
  }

  .ft20__thumb {
    aspect-ratio: 16 / 8;
    overflow: hidden;
  }

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

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

  .ft20__body {
    padding: 20px 22px 24px;
  }

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

  .ft20__content h3,
  .ft20__body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  .ft20__checks {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ft20__checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }

  .ft20__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft20__timeline {
      max-width: 600px;
    }
  }

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

    .ft20__content > p,
    .ft20__body p {
      font-size: 13px;
    }

    .ft20__dot {
      width: 42px;
      height: 42px;
    }

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

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

    .ft20__line {
      left: 20px;
    }
  }

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

    .ft20__head {
      margin-bottom: 40px;
    }

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

    .ft20__timeline {
      gap: 24px;
    }

    .ft20__content {
      padding: 20px 16px;
    }

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

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

    .ft20__item {
      grid-template-columns: 40px 1fr;
      gap: 12px;
    }

    .ft20__line {
      left: 18px;
    }
  }

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

    .ft20__content,
    .ft20__dot,
    .ft20__thumb img {
      transition: none;
    }
  }



  /* ── Section ── */
  .faq14 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 20px;
    overflow: hidden;
    color: var(--textColor1);
  }

  /* ── Background Image ── */
  .faq14__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ── Gradient Overlay ── */
  .faq14__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 20%,
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 92%, transparent) 0%,
        color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
        color-mix(in srgb, var(--bodyBG) 95%, transparent) 100%
      );
  }

  /* ── Circuit-board pattern ── */
  .faq14::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image:
      linear-gradient(
        90deg,
        var(--secondStyleColor) 1px,
        transparent 1px
      ),
      linear-gradient(
        0deg,
        var(--secondStyleColor) 1px,
        transparent 1px
      );
    background-size: 60px 60px;
    pointer-events: none;
  }

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

  /* ── Header ── */
  .faq14__head {
    text-align: center;
    margin-bottom: 56px;
  }

  .faq14__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .faq14__kicker i {
    font-size: 12px;
  }

  .faq14__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .faq14__head p {
    font-size: clamp(14px, 1.4vw, 16px);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.7;
    margin: 0 auto;
  }

  /* ── List ── */
  .faq14__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* ── Item ── */
  .faq14__item {
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .faq14__item--open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    box-shadow: 0 8px 32px
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* ── Trigger Button ── */
  .faq14__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    position: relative;
    transition:
      background 0.2s ease,
      color 0.3s ease;
  }

  .faq14__trigger:hover {
    background: color-mix(in srgb, var(--textColor1) 4%, transparent);
    color: var(--secondStyleColor);
  }

  .faq14__item--open .faq14__trigger {
    color: var(--secondStyleColor);
  }

  /* ── Neon Glow Left Border ── */
  .faq14__glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--secondStyleColor);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow:
      0 0 12px var(--secondStyleColor),
      0 0 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .faq14__item--open .faq14__glow {
    opacity: 1;
  }

  /* ── Number ── */
  .faq14__num {
    flex-shrink: 0;
    min-width: 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    transition: color 0.35s ease;
  }

  .faq14__item--open .faq14__num {
    color: var(--secondStyleColor);
  }

  /* ── Question Text ── */
  .faq14__question {
    flex: 1;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  /* ── Toggle Icon ── */
  .faq14__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    border-radius: 6px;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    transition:
      transform 0.35s ease,
      border-color 0.3s ease,
      background 0.3s ease,
      color 0.3s ease;
  }

  .faq14__item--open .faq14__toggle {
    transform: rotate(45deg);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
  }

  /* ── Body (collapsible) ── */
  .faq14__body {
    overflow: hidden;
    height: 0;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* ── Answer ── */
  .faq14__answer {
    padding: 0 24px 24px 68px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.35s 0.1s ease,
      transform 0.35s 0.1s ease;
  }

  .faq14__item--open .faq14__answer {
    opacity: 1;
    transform: translateY(0);
  }

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

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .faq14 {
      padding: clamp(48px, 6vw, 80px) 20px;
    }
  }

  @media (max-width: 800px) {
    .faq14__answer {
      padding-left: 24px;
    }

    .faq14__trigger {
      padding: 18px 20px;
      gap: 12px;
    }
  }

  @media (max-width: 600px) {
    .faq14 {
      padding: 48px 16px;
    }

    .faq14__trigger {
      padding: 16px;
      gap: 10px;
    }

    .faq14__answer {
      padding: 0 16px 20px 16px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq14__body,
    .faq14__answer,
    .faq14__toggle,
    .faq14__glow,
    .faq14__item,
    .faq14__trigger,
    .faq14__num {
      transition: none;
    }
  }



  /* ===== FOOTER ===== */

  .footer {
    background: var(--bgAlt);
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

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

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: var(--textMuted);
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2 140px;
    column-gap: 24px;
  }

  .footerNav li {
    break-inside: avoid;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: var(--textSecondary);
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: var(--textSecondary);
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textSecondary);
    font-size: 14px;
    transition: 0.15s ease;
  }

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

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: var(--textMuted);
  }

  .footerMeta {
    text-align: right;
  }

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

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }



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