
:root {
  --bg: #edf3ec;
  --bg-card: #ffffff;
  --text: #1e2b1c;
  --text-muted: rgba(0,0,0,0.5);
  --accent: #b05ce0;
  --accent-rgb: 176,92,224;
  --accent2: #e05c60;
  --accent2-rgb: 224,92,96;
  --accent3: #7188e4;
  --accent3-rgb: 113,136,228;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --bodyBG: #edf3ec;
  --textColor1: #1e2b1c;
  --textColor2: #111111;
  --textSecondary: #525d50;
  --textMuted: #868f84;
  --secondStyleColor: #b05ce0;
  --bgCard: #ffffff;
  --bgAlt: #dce3db;
  --borderSubtle: rgba(0,0,0,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(0,0,0,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: #000; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(0,0,0,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.05);
  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;
    }
  }



  /* ==== */
  .op6pujj {
    position: relative;
    min-height: 700px;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    && img {
      position: absolute;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: 50% 20%;
      inset: 0;
      z-index: -1;
      opacity: 0.15;
      filter: blur(2px);
    }
  }
  .op6pujj .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    && h1 {
      text-align: center;
      text-transform: uppercase;
    }

    && p {
      text-align: center;
    }
    && a {
      margin: 0 auto;
      color: var(--bodyBG);
      font-weight: 500;
      cursor: pointer;
      transition: 0.2s all linear;
      text-transform: uppercase;
      background-color: var(--secondStyleColor);
      border: 1px solid transparent;
      padding: 12px 40px;
      border-radius: var(--borderRadius);
      &&:hover {
        padding: 12px 60px;
        background-color: transparent;
        border: 1px solid var(--secondStyleColor);
        color: var(--textColor1);
      }
    }
  }

  .ootyuth {
    width: 100%;
    position: relative;
    height: 2px;
    background-color: var(--secondStyleColor);

    &&:after {
      content: "";
      position: absolute;
      width: 2px;
      left: 0;
      height: 150px;
      background-color: var(--secondStyleColor);
      bottom: 0;
    }
    &&::before {
      content: "";
      position: absolute;
      width: 2px;
      right: 0;
      height: 150px;
      background-color: var(--secondStyleColor);
    }
  }

  .code-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    contain: layout paint;
  }

  .particle {
    position: absolute;
    left: calc(var(--x) * 1%);
    top: calc(var(--y) * 1%);
    font-weight: 800;
    font-size: calc(var(--s) * 1px);
    letter-spacing: -0.06em;
    opacity: var(--o);
    transform: translate3d(-50%, -50%, 0) rotate(calc(var(--r) * 1deg));
    will-change: transform, opacity;
    animation: floatUp calc(var(--d) * 1s) linear infinite;
    animation-delay: calc(var(--delay) * -1s);
    user-select: none;
  }
  .particle::before {
    content: ".";
    -webkit-text-stroke: 1px var(--secondStyleColor);
  }
  @keyframes floatUp {
    0% {
      transform: translate3d(-50%, calc(-50% + 120px), 0)
        rotate(calc(var(--r) * 1deg));
      opacity: 0;
    }
    8% {
      opacity: var(--o);
    }
    100% {
      transform: translate3d(
          calc(-50% + (var(--drift) * 1px)),
          calc(-50% - 140vh),
          0
        )
        rotate(calc((var(--r) + 220) * 1deg));
      opacity: 0;
    }
  }

  @media (max-width: 768px) {
    .particle {
      font-size: calc((var(--s) - 4) * 1px);
    }
    .op6pujj {
      height: auto;
      min-height: 600px;
    }
  }



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



.ab24{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.ab24__mesh{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;
  filter:blur(100px);
  opacity:.35;
}
.ab24__mesh span{
  position:absolute;border-radius:50%;
  animation:ab24Drift 20s ease-in-out infinite alternate;
}
.ab24__mesh span:nth-child(1){
  width:45vw;height:45vw;top:-10%;left:-5%;
  background:radial-gradient(circle,var(--secondStyleColor),transparent 70%);
}
.ab24__mesh span:nth-child(2){
  width:35vw;height:35vw;bottom:-5%;right:5%;
  background:radial-gradient(circle,var(--accent2),transparent 70%);
  animation-delay:-7s;animation-duration:25s;
}
.ab24__mesh span:nth-child(3){
  width:25vw;height:25vw;top:40%;right:25%;
  background:radial-gradient(circle,var(--accent3),transparent 70%);
  animation-delay:-14s;animation-duration:22s;
}
@keyframes ab24Drift{
  0%{transform:translate(0,0) scale(1)}
  50%{transform:translate(5vw,-5vh) scale(1.2)}
  100%{transform:translate(-3vw,4vh) scale(.95)}
}

.ab24__container{
  max-width:var(--maxWidthContainer);
  position:relative;z-index:1;
}

.ab24__header{
  text-align:center;
  margin-bottom:5rem;
}
.ab24__tag{
  display:inline-block;
  padding:.35rem 1rem;
  border:1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  border-radius:4px;
  font-size:.65rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1.5rem;
  animation:ab24FadeUp .6s ease both;
}
.ab24 h2{
  line-height:1.2;
  margin-bottom:1.2rem;
  color:var(--textColor1);
  animation:ab24FadeUp .6s ease .1s both;
}
.ab24 h2 em{font-style:italic;color:var(--secondStyleColor)}
.ab24__subtitle{
  font-size:.85rem;font-weight:400;
  color:color-mix(in srgb, var(--textColor1) 40%, transparent);
  max-width:500px;margin:0 auto;
  line-height:1.7;
  animation:ab24FadeUp .6s ease .2s both;
}

.ab24__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

.ab24__card{
  position:relative;
  background:color-mix(in srgb, var(--textColor1) 3%, transparent);
  backdrop-filter:blur(20px);
  border:1px solid color-mix(in srgb, var(--textColor1) 6%, transparent);
  border-radius:var(--borderRadius);
  padding:2.5rem 2rem;
  overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  opacity:0;transform:translateY(30px);
}
.ab24__card.visible{
  opacity:1;transform:translateY(0);
}
.ab24__card:hover{
  transform:translateY(-6px);
  border-color:color-mix(in srgb, var(--textColor1) 12%, transparent);
  box-shadow:0 20px 60px rgba(0,0,0,.3);
}
.ab24__card::before{
  content:'';position:absolute;
  top:0;left:0;right:0;height:2px;
  opacity:0;
  transition:opacity .3s;
}
.ab24__card:hover::before{opacity:1}
.ab24__card:nth-child(1)::before{background:linear-gradient(90deg,var(--secondStyleColor),transparent)}
.ab24__card:nth-child(2)::before{background:linear-gradient(90deg,var(--accent2),transparent)}
.ab24__card:nth-child(3)::before{background:linear-gradient(90deg,var(--accent3),transparent)}

.ab24__card-icon{
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  font-size:1.2rem;
  margin-bottom:1.5rem;
}
.ab24__card:nth-child(1) .ab24__card-icon{
  background:rgba(var(--accent-rgb),.12);color:var(--secondStyleColor);
}
.ab24__card:nth-child(2) .ab24__card-icon{
  background:rgba(var(--accent2-rgb),.12);color:var(--accent2);
}
.ab24__card:nth-child(3) .ab24__card-icon{
  background:rgba(var(--accent3-rgb),.12);color:var(--accent3);
}

.ab24__card-title{
  color:var(--textColor1);
  margin-bottom:.8rem;
}
.ab24__card-text{
  font-size:.8rem;font-weight:400;
  line-height:1.8;
  color:color-mix(in srgb, var(--textColor1) 45%, transparent);
  margin-bottom:1.5rem;
}

.ab24__card-stat{
  display:flex;align-items:baseline;gap:.5rem;
  padding-top:1rem;
  border-top:1px solid color-mix(in srgb, var(--textColor1) 6%, transparent);
}
.ab24__card-stat-value{
  font-size:1.8rem;font-weight:700;
  color:var(--textColor1);
}
.ab24__card-stat-label{
  font-size:.65rem;
  letter-spacing:.1em;text-transform:uppercase;
  color:color-mix(in srgb, var(--textColor1) 35%, transparent);
}

.ab24__bottom{
  text-align:center;
  margin-top:4rem;
  animation:ab24FadeUp .6s ease .5s both;
}
.ab24__bottom-text{
  font-size:.8rem;
  color:color-mix(in srgb, var(--textColor1) 35%, transparent);
  margin-bottom:1.5rem;
}
.ab24__btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.8rem 2rem;
  font-size:.8rem;font-weight:700;
  text-decoration:none;cursor:pointer;border:none;
  background:var(--secondStyleColor);color:var(--textColor2);
  border-radius:8px;
  transition:all .3s ease;
}
.ab24__btn:hover{
  box-shadow:0 8px 30px rgba(var(--accent-rgb),.3);
  transform:translateY(-2px);
}

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

@media(max-width:768px){
  .ab24__grid{grid-template-columns:1fr}
  .ab24{padding:5rem 1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .ab24__card,
  .ab24__mesh span,
  .ab24__tag,
  .ab24 h2,
  .ab24__subtitle,
  .ab24__bottom{animation:none!important;opacity:1;transform:none;transition:none}
}



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

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

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

  .pt10b__head {
    text-align: center;
    margin-bottom: 48px;
  }

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

  .pt10b__head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
  }

  .pt10b__showcase {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* Logo card with ring */
  .pt10b__card {
    position: relative;
    width: min(240px, 60vw);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s ease;
  }

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

  .pt10b__ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    animation: pt10bSpin 30s linear infinite;
  }

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

  .pt10b__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt10b__logo-link:hover { transform: scale(1.06); }

  .pt10b__logo-link img {
    max-width: min(140px, 55%);
    max-height: 70px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
  }

  .pt10b__desc {
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    max-width: 480px;
  }

  .pt10b__features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pt10b__feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.25s ease;
    flex: 1;
    min-width: 200px;
  }

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

  .pt10b__feat > i {
    font-size: 18px;
    color: var(--secondStyleColor);
    margin-top: 2px;
  }

  .pt10b__feat-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
  }

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

  @media (max-width: 600px) {
    .pt10b { padding: 48px 0; }
    .pt10b__head { margin-bottom: 36px; }
    .pt10b__card { width: min(200px, 55vw); }
    .pt10b__features { flex-direction: column; }
    .pt10b__feat { min-width: auto; }
    .pt10b__logo-link img { max-width: 110px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt10b__ring { animation: none; }
    .pt10b__card, .pt10b__logo-link, .pt10b__feat { transition: none; }
  }



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



  /* ===== ROADMAP v8 — Metro-style horizontal line with nodes + cards ===== */

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

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

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

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

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

  /* Metro container */
  .rm8__metro {
    max-width: 960px;
    margin: 0 auto;
  }

  /* SVG line */
  .rm8__line {
    width: 100%;
    height: 80px;
    display: block;
    margin-bottom: 24px;
  }

  .rm8__rail {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 3;
    stroke-linecap: round;
  }

  .rm8__rail--active {
    stroke: var(--secondStyleColor);
    stroke-dasharray: 580;
    stroke-dashoffset: 0;
    opacity: 0.3;
  }

  .rm8__node {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
  }

  .rm8__node--done {
    fill: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    stroke: var(--secondStyleColor);
  }

  .rm8__node--current {
    fill: transparent;
    stroke: var(--secondStyleColor);
    stroke-width: 2.5;
  }

  .rm8__inner {
    fill: var(--secondStyleColor);
  }

  .rm8__inner--pulse {
    fill: var(--secondStyleColor);
    animation: rm8Pulse 2s ease-in-out infinite;
  }

  @keyframes rm8Pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.5; }
  }

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

  .rm8__card {
    position: relative;
    padding: 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
  }

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

  .rm8__card--active {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent),
      transparent
    );
  }

  .rm8__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    margin-bottom: 14px;
  }

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

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

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

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

  .rm8__card-ico {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 28px;
    color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    transition: color 0.3s ease;
    pointer-events: none;
  }

  .rm8__card:hover .rm8__card-ico {
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

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

    .rm8__line {
      display: none;
    }
  }

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

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

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

    .rm8__head {
      margin-bottom: 36px;
    }

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

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

    .rm8__card {
      padding: 18px 16px;
    }
  }

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

    .rm8__card,
    .rm8__card-ico {
      transition: none;
    }
  }



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

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

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

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

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

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

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

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

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

  .bhkasjh {
    min-width: 0;
  }

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

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

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

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



  /*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

  .ft15__card-img {
    overflow: hidden;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft15__head {
      margin-bottom: 36px;
    }

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

    .ft15__masonry {
      columns: 1;
    }
  }

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



  /* ===========================
   FAQ 2026 — glass + neon + motion
   =========================== */

  .faq26 {
    position: relative;
    padding: clamp(56px, 6vw, 96px) 0;
    background:
      radial-gradient(
        1300px 760px at 18% 12%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 0%,
        transparent 62%
      ),
      radial-gradient(
        1050px 720px at 82% 18%,
        color-mix(in srgb, var(--bodyBG) 16%, transparent) 0%,
        transparent 68%
      ),
      radial-gradient(
        1100px 820px at 60% 92%,
        color-mix(in srgb, var(--bodyBG) 12%, transparent) 0%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        var(--bodyBG) 0%,
        color-mix(in srgb, var(--bodyBG) 92%, var(--secondStyleColor) 8%) 100%
      );

    overflow: hidden;
    color: var(--textColor1);
  }

  .faq26__head {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }

  .faq26__title {
    line-height: 1.05;
    margin: 0;
  }

  .faq26__sub {
    margin: 0;
    color: var(--textColor1);
    max-width: 62ch;
  }

  .faq26__grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  /* Card */
  .faq26__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 16px 18px;
    transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  /* gradient “neon edge” */
  .faq26__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: var(--borderRadius);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
  }

  .faq26__shine {
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 120%;
    background: radial-gradient(
      closest-side,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    );
    transform: translate3d(-20%, -20%, 0) rotate(12deg);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .faq26__card:hover .faq26__shine {
    opacity: 0.38;
  }

  /* Content */
  .faq26__content {
    position: relative;
    min-height: 76px;
    display: grid;
    align-content: center;
    padding-right: 8px;
  }

  /* Question / Answer layers */
  .faq26__q,
  .faq26__a {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    padding-right: 4px;
    will-change: transform, opacity, filter;
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.45s ease,
      filter 0.55s ease;
  }
  .faq26__q {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0px);
  }

  .faq26__a {
    opacity: 0;
    transform: translate3d(14px, 10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__step {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq26__qText {
    margin: 0;
    line-height: 1.2;
  }

  .faq26__hint {
    margin: 0;
    color: var(--textColor1);
  }

  .faq26__aTitle {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .faq26__aText {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.45;
  }

  .faq26__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  .faq26__chip {
    color: var(--textColor1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* Toggle button */
  .faq26__toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

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

  .faq26__arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    border-top: 2px solid rgba(255, 255, 255, 0.86);
    transform: rotate(134deg);
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.3s ease;
  }

  /* OPEN STATE (answer visible) */
  .faq26__card.is-open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .faq26__card.is-open .faq26__q {
    opacity: 0;
    transform: translate3d(-18px, -10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__card.is-open .faq26__a {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0px);
  }

  .faq26__card.is-open .faq26__arrow {
    transform: rotate(312deg);
  }

  /* height animation via JS measured height */
  .faq26__content {
    transition: height 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
    height: 76px; /* will be overridden by JS */
  }
  /* по умолчанию (карточка закрыта): кликаем по вопросу */
  .faq26__q {
    pointer-events: auto;
  }
  .faq26__a {
    pointer-events: none;
  }

  /* когда открыто: кликаем по ответу, вопрос клики не ловит */
  .faq26__card.is-open .faq26__q {
    pointer-events: none;
  }
  .faq26__card.is-open .faq26__a {
    pointer-events: auto;
  }

  /* опционально, чтобы было понятно что кликабельно */
  .faq26__q,
  .faq26__a {
    cursor: pointer;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq26__bg {
      animation: none;
    }
    .faq26__q,
    .faq26__a,
    .faq26__toggle,
    .faq26__content {
      transition: none !important;
    }
  }

  /* Responsive */
  @media (max-width: 720px) {
    .faq26__card {
      grid-template-columns: 1fr;
    }
    .faq26__toggle {
      width: 100%;
      height: 44px;
      border-radius: 16px;
    }
  }



  .site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--textSecondary);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

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

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

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      columns: 1;
      text-align: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }



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