
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #08b0e7;
  --accent-rgb: 8,176,231;
  --accent2: #8908e7;
  --accent2-rgb: 137,8,231;
  --accent3: #12f770;
  --accent3-rgb: 18,247,112;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #111111;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #08b0e7;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.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; }


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



.hero32{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;
  background:var(--bodyBG);
}

.hero32__canvas{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;
}

.hero32__glow{
  position:absolute;z-index:0;
  width:60vw;height:60vw;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(var(--accent-rgb),.08) 0%,transparent 65%);
  pointer-events:none;
  animation:hero32glowPulse 6s ease-in-out infinite alternate;
}
@keyframes hero32glowPulse{
  0%{opacity:.6;transform:translate(-50%,-50%) scale(1)}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1.15)}
}

.hero32__grid{
  position:absolute;inset:0;z-index:0;
  background-image:
    linear-gradient(var(--borderSubtle) 1px,transparent 1px),
    linear-gradient(90deg,var(--borderSubtle) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,black 30%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,black 30%,transparent 100%);
}

.hero32__content{
  position:relative;z-index:2;
  max-width:750px;
  margin:0 auto;
  text-align:center;
}

.hero32__eyebrow{
  display:inline-flex;align-items:center;gap:.75rem;
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:2rem;
  animation:hero32fadeUp .7s ease both;
}
.hero32__eyebrow::before,.hero32__eyebrow::after{
  content:'';display:block;
  width:32px;height:2px;
  background:var(--secondStyleColor);
}

.hero32 h1{
  color:var(--textColor1);
  margin-bottom:1.5rem;
  animation:hero32fadeUp .7s ease .1s both;
}

.hero32 p{
  color:var(--textSecondary);
  max-width:520px;
  margin-bottom:2.5rem;
  animation:hero32fadeUp .7s ease .2s both;
}

.hero32__cta{
  display:flex;gap:1.2rem;flex-wrap:wrap;justify-content:center;
  animation:hero32fadeUp .7s ease .3s both;
}

.hero32__btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.85rem 2rem;
  font-size:.9rem;font-weight:600;
  text-decoration:none;border:none;cursor:pointer;
  transition:all .3s ease;
  letter-spacing:.03em;
}
.hero32__btn--fill{
  background:var(--secondStyleColor);color:var(--textColor2);
  clip-path:polygon(0 0,calc(100% - 14px) 0,100% 100%,0 100%);
  padding-right:2.8rem;
}
.hero32__btn--fill:hover{
  background:var(--accent2);
  transform:translateX(4px);
}
.hero32__btn--outline{
  background:transparent;color:var(--textColor1);
  border:1px solid var(--borderSubtle);
  clip-path:polygon(14px 0,100% 0,100% 100%,0 100%);
  padding-left:2.8rem;
}
.hero32__btn--outline:hover{
  border-color:var(--secondStyleColor);
  color:var(--secondStyleColor);
}

.hero32__stats{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:2;
  display:flex;
  border-top:1px solid var(--borderSubtle);
}
.hero32__stat{
  flex:1;
  padding:1.8rem 2rem;
  border-right:1px solid var(--borderSubtle);
  animation:hero32fadeUp .6s ease both;
}
.hero32__stat:last-child{border-right:none}
.hero32__stat:nth-child(1){animation-delay:.5s}
.hero32__stat:nth-child(2){animation-delay:.6s}
.hero32__stat:nth-child(3){animation-delay:.7s}
.hero32__stat:nth-child(4){animation-delay:.8s}
.hero32__stat-value{
  font-size:1.8rem;font-weight:700;
  color:var(--secondStyleColor);
  margin-bottom:.25rem;
}
.hero32__stat-label{
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--textMuted);
}

@keyframes hero32fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:768px){
  .hero32__stats{flex-wrap:wrap}
  .hero32__stat{flex:1 1 50%;border-bottom:1px solid var(--borderSubtle)}
}

@media(prefers-reduced-motion:reduce){
  .hero32__glow,
  .hero32__eyebrow,
  .hero32 h1,
  .hero32 p,
  .hero32__cta,
  .hero32__stat{animation:none!important;opacity:1;transform:none}
}



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



  /* ---------- Spotlight Reels (Mosaic + Lightbox) ---------- */
  .fxl-reels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
  }
  .fxl-head {
    margin-bottom: 45px;
    text-align: center;
  }

  .fxl-reel {
    position: relative;
    display: block;
    padding: 0;
    border: 1px solid var(--secondStyleColor);
    border-radius: calc(var(--borderRadius) + 2px);
    overflow: hidden;
    background: #0c221a;
    box-shadow: var(--fxl-shadow);
    transition: transform 0.3s ease;
  }
  .fxl-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transform: scale(1.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* органичная маска */
    mask-image: radial-gradient(
      120% 80% at 80% 20%,
      #000 60%,
      transparent 100%
    );
  }
  .fxl-reel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  .fxl-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  .fxl-reel:hover img {
    transform: scale(1.06);
  }

  .fxl-reel__cap {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 42, 31, 0.75);
    border: 1px solid var(--secondStyleColor);
    font-size: 12px;
    color: var(--textColor1);
  }

  /* Layout variants */
  .fxl-reel--wide {
    grid-column: span 4;
    grid-row: span 2;
  }
  .fxl-reel--tall {
    grid-column: span 2;
    grid-row: span 3;
  }
  .fxl-reels > .fxl-reel:not(.fxl-reel--wide):not(.fxl-reel--tall) {
    grid-column: span 2;
    grid-row: span 2;
  }

  @media (max-width: 1200px) {
    .fxl-reels {
      grid-template-columns: repeat(4, 1fr);
    }
    .fxl-reel--wide {
      grid-column: span 4;
    }
  }
  @media (max-width: 800px) {
    .fxl-reels {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .fxl-reel--wide,
    .fxl-reel--tall {
      grid-column: span 2;
      grid-row: span 2;
    }
  }



  /* ===== HOW v17 — Vertical rail with pulse + icon dots ===== */

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

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

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

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

  .hw17__rail {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 56px;
  }

  /* Vertical line */
  .hw17__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    overflow: hidden;
  }

  /* Travelling pulse on the line */
  .hw17__pulse {
    position: absolute;
    left: 0;
    top: -30px;
    width: 2px;
    height: 30px;
    background: linear-gradient(
      180deg,
      transparent,
      var(--secondStyleColor)
    );
    animation: hw17Travel 3.5s ease-in-out infinite;
  }

  @keyframes hw17Travel {
    0% {
      top: -30px;
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }

  .hw17__items {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hw17__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  /* Dot with icon */
  .hw17__dot {
    position: absolute;
    left: -56px;
    top: 18px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--bodyBG);
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

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

  .hw17__step:hover .hw17__dot i {
    transform: scale(1.2);
  }

  /* Card */
  .hw17__card {
    flex: 1;
    padding: 24px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .hw17__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

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

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

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

  @media (max-width: 800px) {
    .hw17__card {
      padding: 20px 18px;
    }

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

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

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

    .hw17__head {
      margin-bottom: 36px;
    }

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

    .hw17__rail {
      padding-left: 46px;
    }

    .hw17__line {
      left: 18px;
    }

    .hw17__dot {
      left: -46px;
      width: 38px;
      height: 38px;
      top: 14px;
    }

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

    .hw17__card {
      padding: 18px 16px;
    }

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

    .hw17__items {
      gap: 22px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw17__pulse {
      animation: none;
    }
    .hw17__dot,
    .hw17__dot i,
    .hw17__card {
      transition: none;
    }
  }



  /* ===== ABOUT v15 — Hero image with overlay + SVG hatch bg + feature row ===== */

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

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

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

  /* Hero */
  .ab15__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.4);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 50px;
  }

  .ab15__hero-img {
    position: absolute;
    inset: 0;
  }

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

  .ab15__hero:hover .ab15__hero-img img {
    transform: scale(1.03);
  }

  .ab15__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 48px);
    gap: 10px;
  }

  .ab15__kicker {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ab15__hero h2 {
    margin: 0;
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 600px;
    line-height: 1.15;
    color: var(--textColor1);
  }

  /* Body */
  .ab15__body {
    max-width: 960px;
    margin: 0 auto;
  }

  .ab15__desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
    max-width: 680px;
    margin: 0 auto 48px;
  }

  /* Feature row */
  .ab15__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

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

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

  .ab15__feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
  }

  .ab15__feat:hover .ab15__feat-ico {
    transform: scale(1.12);
  }

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

  .ab15__feat h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
  }

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

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

    .ab15__hero {
      aspect-ratio: 16 / 9;
    }
  }

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

    .ab15__desc {
      font-size: 14px;
    }

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

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

    .ab15__hero {
      aspect-ratio: 16 / 10;
      margin-bottom: 36px;
    }

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

    .ab15__desc {
      margin-bottom: 32px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab15__hero-img img,
    .ab15__feat,
    .ab15__feat-ico {
      transition: none;
    }
  }



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

  .rm12__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 50px;
  }

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

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

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

  /* Timeline wrapper */
  .rm12__wrapper {
    position: relative;
    overflow: hidden;
  }

  /* Connecting line */
  .rm12__line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    border-radius: 2px;
    z-index: 0;
  }

  .rm12__line-glow {
    position: absolute;
    inset: -3px 0;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      var(--accent2),
      transparent
    );
    filter: blur(8px);
    opacity: 0.4;
    animation: rm12LineGlow 3s ease-in-out infinite alternate;
  }

  @keyframes rm12LineGlow {
    0% { opacity: 0.25; }
    100% { opacity: 0.55; }
  }

  /* Scrollable track */
  .rm12__track {
    display: flex;
    gap: 40px;
    padding: 40px 60px 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    align-items: flex-start;
  }

  .rm12__track::-webkit-scrollbar {
    display: none;
  }

  /* Phase card */
  .rm12__card {
    position: relative;
    z-index: 1;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    background: var(--bgCard);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-radius: var(--borderRadius);
    padding: 28px 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

  .rm12__card:hover {
    border-color: color-mix(in srgb, var(--accent2) 40%, transparent);
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent2) 10%, transparent);
  }

  /* Connector dot */
  .rm12__dot {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    border: 3px solid var(--bodyBG);
    box-shadow: 0 0 12px color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .rm12__dot--pulse {
    background: var(--accent2);
    border-color: var(--bodyBG);
    box-shadow: 0 0 12px color-mix(in srgb, var(--accent2) 50%, transparent);
    animation: rm12DotPulse 2s ease-in-out infinite;
  }

  .rm12__dot--empty {
    background: transparent;
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

  @keyframes rm12DotPulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent2) 0%, transparent); }
  }

  .rm12__stem {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, var(--secondStyleColor), transparent);
    transform: translateX(-50%);
  }

  /* Status badge */
  .rm12__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    white-space: nowrap;
  }

  .rm12__status--completed {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  .rm12__status--active {
    background: color-mix(in srgb, var(--accent2) 15%, transparent);
    color: var(--accent2);
    border-color: color-mix(in srgb, var(--accent2) 28%, transparent);
    animation: rm12PulseStatus 2s ease-in-out infinite;
  }

  @keyframes rm12PulseStatus {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent2) 0%, transparent); }
  }

  .rm12__status i {
    font-size: 9px;
  }

  .rm12__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
  }

  .rm12__date {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .rm12__date i {
    margin-right: 4px;
  }

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

  /* Nav arrows */
  .rm12__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .rm12__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: var(--bgCard);
    color: var(--secondStyleColor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
  }

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

  /* Scroll indicator */
  .rm12__dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
  }

  .rm12__scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 15%, transparent);
    transition: all 0.3s ease;
  }

  .rm12__scroll-dot--active {
    background: var(--secondStyleColor);
    width: 24px;
    border-radius: 4px;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm12__track {
      padding: 40px 32px 50px;
      gap: 28px;
    }
  }

  @media (max-width: 768px) {
    .rm12__track {
      padding: 40px 24px 50px;
      gap: 24px;
    }

    .rm12__card {
      min-width: 250px;
      max-width: 250px;
    }

    .rm12__line {
      left: 24px;
      right: 24px;
    }
  }

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

    .rm12__head {
      margin-bottom: 36px;
    }

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

    .rm12__card {
      min-width: 230px;
      max-width: 230px;
      padding: 24px 18px;
    }

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

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

    .rm12__dot--pulse {
      animation: none;
    }

    .rm12__status--active {
      animation: none;
    }

    .rm12__line-glow {
      animation: none;
    }

    .rm12__arrow {
      transition: none;
    }

    .rm12__scroll-dot {
      transition: none;
    }
  }



  /* ===== FEATURES v19 — Spotlight hero with SVG light rays + side cards ===== */

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

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

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

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

  .ft19__layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
    align-items: start;
  }

  /* Hero spotlight card */
  .ft19__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* SVG rays */
  .ft19__rays {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 70%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
  }

  .ft19__ray {
    stroke: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    stroke-width: 1;
    animation: ft19Pulse 3s ease-in-out infinite alternate;
  }

  .ft19__ray:nth-child(2n) {
    animation-delay: 0.5s;
    stroke: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .ft19__ray:nth-child(3n) {
    animation-delay: 1s;
  }

  @keyframes ft19Pulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
  }

  .ft19__hero-img {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

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

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

  .ft19__hero-body {
    position: relative;
    z-index: 1;
    padding: 24px 26px 28px;
  }

  .ft19__kicker {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .ft19__hero-body h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
  }

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

  /* Side cards */
  .ft19__side {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft19__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

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

  .ft19__card:hover .ft19__ico {
    transform: scale(1.1);
  }

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

  .ft19__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
  }

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

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

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

    .ft19__side {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .ft19__hero-body h3 {
      font-size: 20px;
    }
  }

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

    .ft19__head {
      margin-bottom: 36px;
    }

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

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

    .ft19__card {
      padding: 18px 16px;
    }

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

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

    .ft19__hero-img img,
    .ft19__card,
    .ft19__ico {
      transition: none;
    }
  }



  /* ===== EXPERT REVIEW (ADAPTED TO DARK THEME) ===== */

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

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

  .expertreview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  /* сетка */
  .expertReview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ссылки внутри цитат — акцент тем же зелёным */
  .expertReview a {
    color: var(--secondStyleColor);
    text-decoration: none;
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .expertReview a:hover {
    border-color: var(--secondStyleColor);
  }

  /* левый штрих у абзаца — градиент от ярко-зелёного к прозрачному */
  .expertReview p {
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--secondStyleColor), transparent)
      1;
    padding-left: 18px;
    margin: 0 0 1rem;
    font-style: italic;
    color: var(--textSecondary);
  }

  /* автор */
  .expertReview span {
    font-style: italic;
    opacity: 0.75;
    display: block;
    text-align: right;
    color: #c4c4c4;
  }

  /* карточки */
  .review-card {
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 2rem 2.2rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
    border-color: var(--secondStyleColor);
  }

  /* 2 колонки на десктопе */
  @media (min-width: 900px) {
    .expertReview {
      grid-template-columns: 1fr 1fr;
    }
  }



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



  .site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .intoLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    span {
      width: 8px;
      height: 8px;
      background-color: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }



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