
:root {
  --bg: #1b2d1b;
  --bg-card: #243524;
  --text: #d4e7d4;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #4caf50;
  --accent-rgb: 76,175,80;
  --accent2: #4c8aaf;
  --accent2-rgb: 76,138,175;
  --accent3: #a5b85c;
  --accent3-rgb: 165,184,92;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --bodyBG: #1b2d1b;
  --textColor1: #d4e7d4;
  --textColor2: #111111;
  --textSecondary: #a6b9a6;
  --textMuted: #788a78;
  --secondStyleColor: #4caf50;
  --bgCard: #243524;
  --bgAlt: #2a3c2a;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


  /* ===== HEADER v5 — Glass floating bar + centered nav pill ===== */

  .hd5 {
    position: relative;
    z-index: 100;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bodyBG) 85%, transparent),
      color-mix(in srgb, var(--bodyBG) 70%, transparent)
    );

    border-bottom: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hd5__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
  }

  /* Logo */
  .hd5__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--textColor1);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Desktop nav — centered pill */
  .hd5__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hd5__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 5px 6px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .hd5__nav .hd5__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    border-radius: 100px;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

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

  /* CTA button */
  .hd5__cta {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .hd5__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Burger — hidden on desktop */
  .hd5__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 10px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

  .hd5__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--textColor1);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transform-origin: center;
  }

  /* Burger active state */
  .hd5__burger.active .hd5__burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .hd5__burger.active .hd5__burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* Mobile overlay — hidden by default */
  .hd5__mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

  .hd5__mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hd5__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hd5__mobile .hd5__link {
    font-size: 22px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .hd5__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .stopScroll {
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hd5__nav {
      display: none;
    }

    .hd5__cta {
      display: none;
    }

    .hd5__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd5__mobile,
    .hd5__burger-line,
    .hd5__burger,
    .hd5__cta,
    .hd5__nav .hd5__link {
      transition: none;
    }
  }



  /* ── Section ── */
  .hr29 {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

  /* ── Gradient Mesh Blobs ── */
  .hr29__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hr29__blob {
    position: absolute;
    border-radius: 50%;
    background: var(--secondStyleColor);
    will-change: transform;
    contain: layout paint;
  }

  .hr29__blob--a {
    width: 550px;
    height: 550px;
    top: -15%;
    left: -10%;
    opacity: 0.25;
    filter: blur(100px);
    animation: hr29-dA 22s ease-in-out infinite;
  }

  .hr29__blob--b {
    width: 420px;
    height: 420px;
    top: -5%;
    right: -8%;
    opacity: 0.2;
    filter: blur(90px) hue-rotate(45deg);
    animation: hr29-dB 26s ease-in-out infinite;
  }

  .hr29__blob--c {
    width: 480px;
    height: 480px;
    bottom: -20%;
    left: 30%;
    opacity: 0.22;
    filter: blur(110px) hue-rotate(-40deg);
    animation: hr29-dC 20s ease-in-out infinite;
  }

  .hr29__blob--d {
    width: 320px;
    height: 320px;
    top: 35%;
    right: 15%;
    opacity: 0.28;
    filter: blur(80px) hue-rotate(90deg);
    animation: hr29-dD 18s ease-in-out infinite;
  }

  .hr29__blob--e {
    width: 380px;
    height: 380px;
    bottom: -10%;
    left: -5%;
    opacity: 0.18;
    filter: blur(95px) hue-rotate(160deg);
    animation: hr29-dE 28s ease-in-out infinite;
  }

  @keyframes hr29-dA {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(80px, 60px) scale(1.08);
    }
    50% {
      transform: translate(40px, 120px) scale(0.95);
    }
    75% {
      transform: translate(-30px, 70px) scale(1.04);
    }
  }

  @keyframes hr29-dB {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-70px, 50px) scale(0.92);
    }
    50% {
      transform: translate(-110px, -20px) scale(1.1);
    }
    75% {
      transform: translate(30px, -50px) scale(1);
    }
  }

  @keyframes hr29-dC {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, -80px) scale(1.06);
    }
    66% {
      transform: translate(-50px, -40px) scale(0.94);
    }
  }

  @keyframes hr29-dD {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-40px, 30px) scale(1.12);
    }
    50% {
      transform: translate(20px, -50px) scale(0.88);
    }
    75% {
      transform: translate(50px, 20px) scale(1.05);
    }
  }

  @keyframes hr29-dE {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    30% {
      transform: translate(90px, -30px) scale(1.1);
    }
    60% {
      transform: translate(50px, 50px) scale(0.9);
    }
  }

  /* ── Dot Grid Overlay ── */
  .hr29__dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(
      circle,
      color-mix(in srgb, var(--textColor1) 6%, transparent) 1px,
      transparent 1px
    );
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* ── Floating SVG UI Shapes ── */
  .hr29__shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr29__sh {
    animation: hr29-fade 8s ease-in-out infinite;
  }

  .hr29__sh:nth-child(2) {
    animation-duration: 6s;
    animation-delay: -2s;
  }
  .hr29__sh:nth-child(3) {
    animation-duration: 10s;
    animation-delay: -4s;
  }
  .hr29__sh:nth-child(4) {
    animation-duration: 7s;
    animation-delay: -1s;
  }
  .hr29__sh:nth-child(5) {
    animation-duration: 9s;
    animation-delay: -6s;
  }
  .hr29__sh:nth-child(6) {
    animation-duration: 11s;
    animation-delay: -3s;
  }

  @keyframes hr29-fade {
    0%,
    100% {
      opacity: 0.08;
    }
    50% {
      opacity: 0.16;
    }
  }

  .hr29__sh rect,
  .hr29__sh circle,
  .hr29__sh line,
  .hr29__sh polygon {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 1.5;
  }

  /* ── Center Glow ── */
  .hr29__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 700px;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--bodyBG) 70%, transparent) 0%,
        transparent 70%
      );
    z-index: 3;
    pointer-events: none;
  }

  /* ── Content ── */
  .hr29 .container {
    position: relative;
    max-width: var(--maxWidthContainer);
    width: 100%;
    z-index: 5;
  }

  .hr29__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hr29__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hr29__kicker i {
    font-size: 11px;
  }

  .hr29__content h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .hr29__sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
  }

  /* ── Buttons ── */
  .hr29__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hr29__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .hr29__btn--fill {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

  .hr29__btn--fill:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hr29__btn--fill i {
    font-size: 13px;
    transition: transform 0.25s ease;
  }

  .hr29__btn--fill:hover i {
    transform: translateX(3px);
  }

  .hr29__btn--line {
    background: transparent;
    color: var(--textColor1);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
  }

  .hr29__btn--line:hover {
    border-color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    transform: translateY(-2px);
  }

  .hr29__btn--line i {
    font-size: 11px;
  }

  /* ── Stats ── */
  .hr29__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .hr29__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hr29__stat strong {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--textColor1);
  }

  .hr29__stat span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .hr29__stat-sep {
    width: 1px;
    height: 36px;
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .hr29 {
      padding: 80px 20px;
    }
    .hr29__blob--a {
      width: 400px;
      height: 400px;
    }
    .hr29__blob--b {
      width: 320px;
      height: 320px;
    }
    .hr29__blob--c {
      width: 380px;
      height: 380px;
    }
    .hr29__blob--d {
      width: 250px;
      height: 250px;
    }
    .hr29__blob--e {
      width: 300px;
      height: 300px;
    }
  }

  @media (max-width: 800px) {
    .hr29__glow {
      width: 600px;
      height: 500px;
    }
  }

  @media (max-width: 600px) {
    .hr29 {
      padding: 60px 16px;
      min-height: 700px;
    }
    .hr29__kicker {
      font-size: 11px;
      padding: 6px 14px;
    }
    .hr29__actions {
      flex-direction: column;
      gap: 12px;
    }
    .hr29__btn {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
    }
    .hr29__stats {
      gap: 20px;
    }
    .hr29__stat-sep {
      height: 28px;
    }
    .hr29__stat strong {
      font-size: 22px;
    }
    .hr29__shapes {
      display: none;
    }
    .hr29__dots {
      background-size: 24px 24px;
    }
    .hr29__glow {
      width: 100%;
      height: 100%;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hr29__blob {
      animation: none;
    }
    .hr29__sh {
      animation: none;
    }
    .hr29__shapes {
      display: 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 {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-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;
    }
  }



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

.about21__mesh{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;
  filter:blur(100px);
  opacity:.35;
}
.about21__mesh span{
  position:absolute;border-radius:50%;
  animation:about21drift 20s ease-in-out infinite alternate;
}
.about21__mesh span:nth-child(1){
  width:45vw;height:45vw;top:-10%;left:-5%;
  background:radial-gradient(circle,var(--secondStyleColor),transparent 70%);
}
.about21__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;
}
.about21__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 about21drift{
  0%{transform:translate(0,0) scale(1)}
  50%{transform:translate(5vw,-5vh) scale(1.2)}
  100%{transform:translate(-3vw,4vh) scale(.95)}
}

.about21__container{position:relative;z-index:1;max-width:1100px}

.about21__header{text-align:center;margin-bottom:5rem}
.about21__tag{
  display:inline-block;
  padding:.35rem 1rem;
  border:1px solid var(--secondStyleColor);
  border-radius:4px;
  font-size:.65rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1.5rem;
  opacity:.7;
}
.about21 h2{color:var(--textColor1);margin-bottom:1.2rem}
.about21 h2 em{font-style:italic;color:var(--secondStyleColor)}
.about21__subtitle{
  font-size:.85rem;
  color:var(--textMuted);
  max-width:500px;margin:0 auto;
  line-height:1.7;
}

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

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

.about21__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;
}
.about21__card-icon--1{background:rgba(var(--accent-rgb),.12);color:var(--secondStyleColor)}
.about21__card-icon--2{background:rgba(var(--accent2-rgb),.12);color:var(--accent2)}
.about21__card-icon--3{background:rgba(var(--accent3-rgb),.12);color:var(--accent3)}

.about21__card h3{color:var(--textColor1);margin-bottom:.8rem}
.about21__card > p{
  font-size:.85rem;
  line-height:1.8;
  color:var(--textSecondary);
  margin-bottom:1.5rem;
}

.about21__card-stat{
  display:flex;align-items:baseline;gap:.5rem;
  padding-top:1rem;
  border-top:1px solid var(--borderSubtle);
}
.about21__card-stat-value{
  font-size:1.8rem;font-weight:700;
  color:var(--textColor1);
}
.about21__card-stat-label{
  font-size:.65rem;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--textMuted);
}

.about21__bottom{
  text-align:center;
  margin-top:4rem;
}
.about21__bottom > p{
  font-size:.85rem;
  color:var(--textMuted);
  margin-bottom:1.5rem;
}
.about21__cta-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;
}
.about21__cta-btn:hover{
  box-shadow:0 8px 30px rgba(0,0,0,.2);
  transform:translateY(-2px);
  filter:brightness(1.1);
}

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

@media(prefers-reduced-motion:reduce){
  .about21__mesh span,
  .about21__card{animation:none!important;opacity:1;transform:none}
}



  .pt4 {
    color: var(--textColor1);
  }

  .pt4__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    padding: clamp(36px, 5vw, 60px) 0;
    background: linear-gradient(90deg,
      rgba(255,255,255,0.01),
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.01));
  }

  .pt4__inner {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
  }

  .pt4__logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

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

  .pt4__logo-box img {
    max-width: 180px;
    max-height: 60px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  }

  .pt4__divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--secondStyleColor), transparent);
    opacity: 0.3;
    flex-shrink: 0;
  }

  .pt4__body {
    flex: 1;
    min-width: 0;
  }

  .pt4__body h2 {
    margin: 0 0 8px;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
  }

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

  .pt4__trust {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pt4__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  .pt4__trust-item i {
    font-size: 14px;
    color: var(--secondStyleColor);
    width: 18px;
    text-align: center;
  }

  @media (max-width: 900px) {
    .pt4__inner { flex-wrap: wrap; justify-content: center; text-align: center; }
    .pt4__divider { display: none; }
    .pt4__body { flex-basis: 100%; order: -1; }
    .pt4__trust { flex-direction: row; gap: 16px; }
  }

  @media (max-width: 600px) {
    .pt4__strip { padding: 32px 0; }
    .pt4__logo-box { padding: 16px 24px; }
    .pt4__logo-box img { max-width: 140px; }
    .pt4__trust { flex-wrap: wrap; justify-content: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt4__logo-box { transition: none; }
  }



  /* центрирование блока по высоте */
  #features {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
  }
  #features .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .hufla {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hufla h2,
  .hufla p {
    text-align: center;
  }
  .hufla > span {
    display: flex;
    width: 30%;
    margin: 0 auto;
    border-radius: var(--borderRadius);
    height: 2px;
    background-color: var(--secondStyleColor);
  }

  .trunox {
    width: 100%;
    height: 50vh;
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .mivra {
    position: relative;
    --x-px: calc(var(--x) * 1px);
    --y-px: calc(var(--y) * 1px);
    --border: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .mivra::before,
  .mivra::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      800px circle at var(--x-px) var(--y-px),
      var(--secondStyleColor),
      transparent 40%
    );
    pointer-events: none;
  }

  .mivra::before {
    z-index: 1;
  }

  .mivra::after {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
  }

  .mivra:hover::after {
    opacity: 1;
  }

  .praxu {
    background: var(--bgCard);
    border-radius: inherit;
    color: var(--textColor1);
    text-decoration: none;
    position: absolute;
    inset: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 3;
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && h3 {
      text-align: center;
      margin-bottom: 10px;
    }
  }

  .praxu > p {
    opacity: 0.7;
  }
  @media (max-width: 800px) {
    .trunox {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      gap: 12px;
    }

    .mivra {
      min-height: 240px;
    }
    .hufla {
      margin-bottom: 20px;
    }
  }



  /* ── Section ── */
  .gl13 {
    position: relative;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

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

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

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

  .gl13__kicker i {
    font-size: 11px;
  }

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

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

  /* ── Filter Tabs (decorative) ── */
  .gl13__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .gl13__tab {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 24px;
    background: transparent;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    cursor: default;
    transition: all 0.3s ease;
  }

  .gl13__tab--active {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 0 16px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* ── Masonry Grid ── */
  .gl13__masonry {
    columns: 3;
    column-gap: 16px;
  }

  .gl13__item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .gl13__item.visible {
    opacity: 1;
    transform: scale(1);
  }

  /* ── Size Variants ── */
  .gl13__item--tall {
    aspect-ratio: 3 / 5;
  }

  .gl13__item--wide {
    aspect-ratio: 4 / 3;
  }

  .gl13__item--square {
    aspect-ratio: 1 / 1;
  }

  /* ── Image ── */
  .gl13__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gl13__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .gl13__item:hover .gl13__img-wrap img {
    transform: scale(1.06);
  }

  /* ── Hover Overlay ── */
  .gl13__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 40%,
      color-mix(in srgb, var(--bodyBG) 90%, transparent)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl13__item:hover .gl13__overlay {
    opacity: 1;
  }

  .gl13__tag {
    display: inline-block;
    width: fit-content;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    transform: translateY(8px);
    transition: transform 0.4s 0.05s ease;
  }

  .gl13__item:hover .gl13__tag {
    transform: translateY(0);
  }

  .gl13__overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0;
    transform: translateY(8px);
    transition: transform 0.4s 0.1s ease;
  }

  .gl13__item:hover .gl13__overlay h3 {
    transform: translateY(0);
  }

  /* ── Static Border ── */
  .gl13__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.3s ease;
  }

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

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .gl13 {
      padding: 80px 20px;
    }

    .gl13__masonry {
      columns: 2;
      column-gap: 10px;
    }

    .gl13__item {
      margin-bottom: 10px;
    }

    .gl13__overlay {
      opacity: 1;
    }

    .gl13__tag,
    .gl13__overlay h3 {
      transform: translateY(0);
    }
  }

  @media (max-width: 480px) {
    .gl13 {
      padding: 64px 16px;
    }

    .gl13__masonry {
      columns: 1;
    }

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

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .gl13__item {
      opacity: 1;
      transform: scale(1);
      transition: none;
    }

    .gl13__img-wrap img {
      transition: none;
    }

    .gl13__overlay,
    .gl13__tag,
    .gl13__overlay h3 {
      transition: none;
    }
  }



  /* ===== ROADMAP v7 — Progress bar + accordion phases ===== */

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

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

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

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

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

  /* Progress bar */
  .rm7__progress {
    position: relative;
    max-width: 600px;
    margin: 0 auto 44px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
  }

  .rm7__progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 62%;
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 50%, transparent)
    );
  }

  .rm7__progress-dots {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
  }

  .rm7__pdot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
  }

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

  .rm7__pdot--active {
    background: transparent;
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  /* Accordion list */
  .rm7__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .rm7__item {
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .rm7__item[open] {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rm7__summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .rm7__summary::-webkit-details-marker {
    display: none;
  }

  .rm7__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    flex-shrink: 0;
  }

  .rm7__label {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
  }

  .rm7__status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    flex-shrink: 0;
  }

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

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

  .rm7__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }

  .rm7__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    border-bottom: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.25s ease;
  }

  .rm7__item[open] .rm7__arrow::before {
    transform: translate(-50%, -30%) rotate(-135deg);
  }

  /* Body content */
  .rm7__body {
    display: flex;
    gap: 16px;
    padding: 0 22px 22px;
    align-items: flex-start;
  }

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

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

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

  .rm7__checks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

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

  .rm7__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
    width: 14px;
    text-align: center;
  }

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

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

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

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

    .rm7__head {
      margin-bottom: 30px;
    }

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

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

    .rm7__body {
      padding: 0 16px 18px;
      flex-direction: column;
    }

    .rm7__status {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm7__item,
    .rm7__arrow::before {
      transition: none;
    }
  }



  /* ===== REVIEWS v15 — Featured spotlight + stacked side cards ===== */

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

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

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

  /* Head */
  .rv15__head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 50px;
  }

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

  .rv15__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

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

  /* Layout */
  .rv15__layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
  }

  /* Featured */
  .rv15__featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
  }

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

  .rv15__quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .rv15__quote {
    margin: 0;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 500;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 88%, transparent);
  }

  .rv15__stars {
    display: flex;
    gap: 3px;
  }

  .rv15__stars i {
    font-size: 15px;
    color: var(--secondStyleColor);
  }

  .rv15__stars--sm i {
    font-size: 12px;
  }

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

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

  .rv15__avatar--lg {
    width: 54px;
    height: 54px;
  }

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

  .rv15__author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
  }

  .rv15__author span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

  /* Side cards */
  .rv15__stack {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
  }

  .rv15__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(18px, 2.5vw, 24px);
    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.25s ease,
      border-color 0.25s ease;
  }

  .rv15__card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rv15__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

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

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

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

    .rv15__head {
      margin-bottom: 36px;
    }

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

    .rv15__featured {
      padding: 24px;
    }

    .rv15__quote {
      font-size: 16px;
    }

    .rv15__card-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

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



  /* ===== PLANS v16 — Hologram cards with grid bg + shimmer ===== */

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

  /* Grid background */
  .pl16__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(color-mix(in srgb, var(--secondStyleColor) 4%, transparent) 1px, transparent 1px),
      linear-gradient(90deg, color-mix(in srgb, var(--secondStyleColor) 4%, transparent) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: pl16GridShift 20s linear infinite;
  }

  @keyframes pl16GridShift {
    to { background-position: 60px 60px; }
  }

  /* Floating particles */
  .pl16__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .pl16__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    filter: blur(2px);
    animation: pl16Float var(--dur) var(--delay) ease-in-out infinite;
    opacity: 0.5;
  }

  .pl16__particle:nth-child(even) {
    background: var(--accent2);
  }

  @keyframes pl16Float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(var(--dy)) translateX(var(--dx)); opacity: 0.8; }
  }

  .pl16__header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 64px;
  }

  .pl16__header h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

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

  .pl16__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
  }

  /* Card */
  .pl16__card {
    position: relative;
    background: color-mix(in srgb, var(--bodyBG) 85%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-radius: var(--borderRadius);
    padding: clamp(32px, 4vw, 40px) clamp(24px, 3vw, 32px);
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .pl16__card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: pl16CardIn 0.7s ease forwards;
  }

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

  /* Holographic shimmer overlay */
  .pl16__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      transparent 20%,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 30%,
      color-mix(in srgb, var(--accent2) 6%, transparent) 50%,
      transparent 60%
    );
    background-size: 300% 300%;
    animation: pl16Shimmer 6s ease-in-out infinite;
    pointer-events: none;
    border-radius: var(--borderRadius);
  }

  @keyframes pl16Shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .pl16__card:hover {
    border-color: var(--secondStyleColor);
    box-shadow:
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
      0 0 80px color-mix(in srgb, var(--accent2) 8%, transparent);
    transform: translateY(-6px);
  }

  /* Featured card */
  .pl16__card--featured {
    border-color: color-mix(in srgb, var(--accent2) 40%, transparent);
    transform: scale(1.06);
    z-index: 2;
    padding-top: clamp(40px, 5vw, 48px);
    padding-bottom: clamp(40px, 5vw, 48px);
  }

  .pl16__card--featured.visible {
    transform: scale(1.06);
  }

  .pl16__card--featured:hover {
    transform: scale(1.08) translateY(-4px);
  }

  .pl16__card--featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--borderRadius) + 2px);
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    background-size: 300% 300%;
    animation: pl16BorderGlow 4s linear infinite;
    z-index: -1;
  }

  @keyframes pl16BorderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  .pl16__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    color: var(--bodyBG);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .pl16__name {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
  }

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

  .pl16__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
  }

  .pl16__amount {
    font-size: 44px;
    font-weight: 900;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl16__period {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    font-weight: 500;
    margin-bottom: 32px;
  }

  .pl16__features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 0 36px;
  }

  .pl16__features li {
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--textColor1) 6%, transparent);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

  .pl16__features li i {
    color: var(--secondStyleColor);
    font-size: 11px;
    width: 20px;
    text-align: center;
  }

  .pl16__card--featured .pl16__features li i {
    color: var(--accent2);
  }

  /* CTA */
  .pl16__cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .pl16__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 50px;
  }

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

  .pl16__cta:hover::before {
    opacity: 1;
  }

  .pl16__cta span {
    position: relative;
    z-index: 1;
  }

  .pl16__cta--primary {
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    color: var(--bodyBG);
    border-color: transparent;
  }

  .pl16__cta--primary:hover {
    box-shadow: 0 0 40px color-mix(in srgb, var(--accent2) 40%, transparent);
    transform: scale(1.04);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .pl16__grid {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin: 0 auto;
    }

    .pl16__card--featured {
      transform: scale(1);
    }

    .pl16__card--featured.visible {
      transform: scale(1);
    }

    .pl16__card--featured:hover {
      transform: translateY(-4px);
    }
  }

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

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

    .pl16__card {
      padding: 28px 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl16__card,
    .pl16__cta,
    .pl16__card::before,
    .pl16__card--featured::after,
    .pl16__grid-bg,
    .pl16__particle {
      animation: none;
      transition: none;
    }
  }



  /* ===== HOW v14 — Alternating full-width strips ===== */

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

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

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

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

  .hw14__strips {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hw14__strip {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 40px;
    border-radius: var(--borderRadius);
    transition: background 0.3s ease;
  }

  .hw14__strip:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .hw14__strip--alt {
    flex-direction: row-reverse;
    text-align: right;
  }

  .hw14__left {
    flex-shrink: 0;
  }

  .hw14__ring {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(
      circle at center,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent),
      transparent 70%
    );
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

  .hw14__ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hw14__ring span {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .hw14__right {
    flex: 1;
    max-width: 600px;
  }

  .hw14__right h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
  }

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

  /* Divider between strips */
  .hw14__strip + .hw14__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .hw14__strip {
      gap: 30px;
      padding: 30px 28px;
    }

    .hw14__ring {
      width: 62px;
      height: 62px;
    }

    .hw14__ring span {
      font-size: 20px;
    }

    .hw14__right h3 {
      font-size: 18px;
    }
  }

  @media (max-width: 800px) {
    .hw14__strip,
    .hw14__strip--alt {
      flex-direction: column;
      text-align: center;
      gap: 18px;
      padding: 28px 20px;
    }

    .hw14__right {
      max-width: 100%;
    }

    .hw14__ring {
      width: 56px;
      height: 56px;
    }

    .hw14__ring::before {
      inset: -8px;
    }

    .hw14__ring span {
      font-size: 18px;
    }
  }

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

    .hw14__head {
      margin-bottom: 32px;
    }

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

    .hw14__strip {
      padding: 22px 16px;
      gap: 14px;
    }

    .hw14__ring {
      width: 50px;
      height: 50px;
    }

    .hw14__ring span {
      font-size: 16px;
    }

    .hw14__ring::before {
      inset: -6px;
    }

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

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

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



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

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

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

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

  .faq h3 {
    margin: 10px 0;
  }

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft5__nav {
      gap: 6px;
    }

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

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

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



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}