
:root {
  --bg: #130f1d;
  --bg-card: #1e1730;
  --text: #e0d4f5;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #9b59b6;
  --accent-rgb: 155,89,182;
  --accent2: #b65d59;
  --accent2-rgb: 182,93,89;
  --accent3: #6b75be;
  --accent3-rgb: 107,117,190;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --bodyBG: #130f1d;
  --textColor1: #e0d4f5;
  --textColor2: #ffffff;
  --textSecondary: #ada3bf;
  --textMuted: #7a7289;
  --secondStyleColor: #9b59b6;
  --bgCard: #1e1730;
  --bgAlt: #231f2e;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

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


  /* ===== HEADER v8 — Command bar / terminal style ===== */

  .hd8 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bodyBG) 92%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

  /* Glowing top border */
  .hd8__glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 20%,
      var(--accent2) 50%,
      var(--secondStyleColor) 80%,
      transparent 100%
    );
    opacity: 0.8;
  }

  .hd8__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 24px;
  }

  /* Logo — terminal prompt */
  .hd8__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 110;
  }

  .hd8__prompt {
    color: var(--secondStyleColor);
    font-size: 20px;
    font-weight: 700;
  }

  .hd8__logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--textColor1);
    letter-spacing: 0.02em;
  }

  .hd8__cursor {
    display: inline-block;
    width: 9px;
    height: 18px;
    background: var(--secondStyleColor);
    animation: hd8-blink 1s step-end infinite;
    border-radius: 1px;
    vertical-align: middle;
    margin-left: 2px;
  }

  @keyframes hd8-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* Desktop nav */
  .hd8__nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hd8__nav .hd8__link {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: 0.02em;
  }

  .hd8__slash {
    color: var(--secondStyleColor);
    font-weight: 400;
    margin-right: 2px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

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

  .hd8__nav .hd8__link:hover .hd8__slash {
    opacity: 1;
  }

  /* Right section — clock + CTA */
  .hd8__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .hd8__clock {
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    min-width: 72px;
    text-align: center;
  }

  /* CTA — bracket style */
  .hd8__cta {
    padding: 8px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

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

  /* Burger — hidden on desktop */
  .hd8__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: 8px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

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

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

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

  /* Mobile overlay */
  .hd8__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: 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

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

  .hd8__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hd8__mobile .hd8__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
  }

  .hd8__prefix {
    color: var(--secondStyleColor);
    font-weight: 400;
    margin-right: 8px;
    opacity: 0.7;
  }

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

  .hd8__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  .stopScroll {
    overflow: hidden;
  }

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

    .hd8__right {
      display: none;
    }

    .hd8__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd8__mobile,
    .hd8__burger-line,
    .hd8__burger,
    .hd8__cta,
    .hd8__nav .hd8__link,
    .hd8__slash {
      transition: none;
    }

    .hd8__cursor {
      animation: none;
      opacity: 1;
    }
  }



  /* ── Section ── */
  .hr30 {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 120px 20px 80px;
  }

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

  /* ── Dimmer ── */
  .hr30__dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 30%,
        color-mix(in srgb, var(--bodyBG) 55%, transparent),
        transparent 60%
      ),
      color-mix(in srgb, var(--bodyBG) 72%, transparent);
  }

  /* ── Broken Glass SVG ── */
  .hr30__glass {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr30__spark {
    fill: var(--textColor1);
  }

  /* ── Content ── */
  .hr30 .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .hr30__body {
    text-align: center;
  }

  .hr30__body h1 {
    font-size: clamp(32px, 5.2vw, 58px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hr30__sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: color-mix(in srgb, var(--textColor1) 62%, transparent);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
  }

  /* ── Button ── */
  .hr30__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
  }

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

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

  .hr30__cta:hover i {
    transform: translateX(3px);
  }

  /* ── Cards ── */
  .hr30__cards {
    display: flex;
    gap: 24px;
    max-width: 820px;
    margin: 56px auto 0;
    text-align: left;
  }

  .hr30__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 32px 28px;
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    border-radius: var(--borderRadius);
    transition: all 0.3s ease;
  }

  .hr30__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    box-shadow: 0 16px 48px color-mix(in srgb, var(--bodyBG) 50%, transparent);
  }

  .hr30__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 20px;
    margin-bottom: 18px;
  }

  .hr30__card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0 0 10px;
  }

  .hr30__card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.65;
    margin: 0;
    text-align: center;
  }

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

  @media (max-width: 800px) {
    .hr30__cards {
      flex-direction: column;
      max-width: 420px;
    }
  }

  @media (max-width: 600px) {
    .hr30 {
      padding: 80px 16px 48px;
      min-height: 100svh;
    }
    .hr30__body h1 {
      font-size: clamp(28px, 7vw, 40px);
    }
    .hr30__cta {
      width: 100%;
      justify-content: center;
    }
    .hr30__card {
      padding: 24px 20px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hr30__spark {
      animation: none;
    }
    .hr30__shimmer-g {
      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;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    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;
    border: 2px dotted var(--secondStyleColor);
    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(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background-color: rgba(17, 17, 17, 0.2);
  }

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



  /* ===== HOW v16 — Animated glow cards + AOS + FontAwesome ===== */

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

  /* ---- Floating background orbs ---- */
  .hw16__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .hw16__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.12;
    animation: hw16Float 14s ease-in-out infinite alternate;
  }

  .hw16__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: -10%;
    left: -5%;
    animation-duration: 14s;
  }

  .hw16__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    bottom: -8%;
    right: -3%;
    animation-duration: 18s;
    animation-delay: -4s;
  }

  .hw16__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--secondStyleColor);
    top: 40%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -8s;
  }

  @keyframes hw16Float {
    0% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(30px, -20px) scale(1.1);
    }
    100% {
      transform: translate(-20px, 15px) scale(0.95);
    }
  }

  /* ---- Head ---- */
  .hw16__head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 65px;
  }

  .hw16__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    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.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .hw16__eyebrow i {
    font-size: 12px;
    animation: hw16Pulse 2s ease-in-out infinite;
  }

  @keyframes hw16Pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.2);
    }
  }

  .hw16__head h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }

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

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

  /* ---- Card ---- */
  .hw16__card {
    position: relative;
    padding: 34px 24px 28px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    text-align: center;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .hw16__card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.3),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* Shimmer sweep */
  .hw16__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    pointer-events: none;
    transition: none;
  }

  .hw16__card:hover .hw16__shimmer {
    animation: hw16Shimmer 0.8s ease forwards;
  }

  @keyframes hw16Shimmer {
    to {
      left: 130%;
    }
  }

  /* Icon */
  .hw16__icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
  }

  .hw16__icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px dashed
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    animation: hw16Ring 10s linear infinite;
  }

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

  .hw16__icon {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(
      145deg,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hw16__card:hover .hw16__icon {
    transform: scale(1.1) rotate(-5deg);
  }

  .hw16__icon i {
    font-size: 26px;
    color: var(--secondStyleColor);
    filter: drop-shadow(
      0 4px 10px color-mix(in srgb, var(--secondStyleColor) 40%, transparent)
    );
    transition: transform 0.35s ease;
  }

  .hw16__card:hover .hw16__icon i {
    transform: scale(1.15);
  }

  /* Watermark number */
  .hw16__number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 64px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
  }

  .hw16__card:hover .hw16__number {
    opacity: 0.1;
  }

  .hw16__card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Arrow connector between cards */
  .hw16__connector {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--bodyBG);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .hw16__connector i {
    font-size: 11px;
    color: var(--secondStyleColor);
    animation: hw16Arrow 1.5s ease-in-out infinite;
  }

  @keyframes hw16Arrow {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(3px);
    }
  }

  /* ---- Responsive ---- */
  @media (max-width: 950px) {
    .hw16__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    /* Hide horizontal connectors in 2-col */
    .hw16__card:nth-child(2) .hw16__connector,
    .hw16__card:nth-child(4) .hw16__connector {
      display: none;
    }

    .hw16__card {
      padding: 28px 20px 24px;
    }

    .hw16__icon-wrap {
      width: 64px;
      height: 64px;
    }

    .hw16__icon i {
      font-size: 22px;
    }
  }

  @media (max-width: 800px) {
    .hw16__head {
      margin-bottom: 45px;
    }

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

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

    .hw16__number {
      font-size: 52px;
    }

    .hw16__orb--1 {
      width: 250px;
      height: 250px;
    }
    .hw16__orb--2 {
      width: 200px;
      height: 200px;
    }
    .hw16__orb--3 {
      display: none;
    }
  }

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

    .hw16__head {
      margin-bottom: 36px;
    }

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

    .hw16__head p {
      font-size: 14px;
    }

    .hw16__eyebrow {
      font-size: 11px;
      padding: 6px 14px;
      margin-bottom: 16px;
    }

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

    /* Hide all connectors on mobile */
    .hw16__connector {
      display: none;
    }

    .hw16__card {
      padding: 24px 18px 20px;
    }

    .hw16__icon-wrap {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw16__icon i {
      font-size: 20px;
    }

    .hw16__icon-ring {
      inset: -3px;
    }

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

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

    .hw16__number {
      font-size: 44px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw16__orb,
    .hw16__icon-ring,
    .hw16__eyebrow i,
    .hw16__connector i {
      animation: none;
    }
    .hw16__card,
    .hw16__icon,
    .hw16__icon i,
    .hw16__number {
      transition: none;
    }
    .hw16__card:hover .hw16__shimmer {
      animation: none;
    }
  }



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

.feat23__grid-bg{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;overflow:hidden;
}
.feat23__grid-bg canvas{
  width:100%;height:100%;
  opacity:.08;
}

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

.feat23__header{
  display:flex;
  align-items:flex-start;
  gap:3rem;
  margin-bottom:5rem;
}
.feat23__count{
  font-size:clamp(4rem,8vw,6rem);
  font-weight:700;
  line-height:1;
  -webkit-text-stroke:1.5px var(--secondStyleColor);
  color:transparent;
  flex-shrink:0;
}
.feat23__header-text{padding-top:.5rem}
.feat23 h2{color:var(--textColor1);margin-bottom:.8rem}
.feat23__subtitle{
  font-style:italic;
  color:var(--textMuted);
  max-width:450px;
}

.feat23__row{
  display:grid;
  grid-template-columns:60px 1fr 1fr;
  gap:0;
  border-top:1px solid var(--borderSubtle);
  opacity:0;
  transform:translateY(20px);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.feat23__row.visible{opacity:1;transform:translateY(0)}
.feat23__row:last-child{border-bottom:1px solid var(--borderSubtle)}
.feat23__row:hover{background:var(--bgCard)}

.feat23__num{
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;font-weight:600;
  color:var(--textMuted);
  border-right:1px solid var(--borderSubtle);
  transition:color .3s;
}
.feat23__row:hover .feat23__num{color:var(--secondStyleColor)}

.feat23__main{
  padding:2rem 2.5rem;
  display:flex;align-items:center;gap:1.2rem;
  border-right:1px solid var(--borderSubtle);
}
.feat23__icon{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;
  font-size:.95rem;
  flex-shrink:0;
  transition:transform .3s;
}
.feat23__row:hover .feat23__icon{transform:rotate(-10deg) scale(1.1)}

.feat23__icon--1{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}
.feat23__icon--2{background:rgba(var(--accent2-rgb),.1);color:var(--accent2)}
.feat23__icon--3{background:rgba(var(--accent3-rgb),.1);color:var(--accent3)}
.feat23__icon--4{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}

.feat23__main h3{color:var(--textColor1)}

.feat23__detail{
  padding:2rem 2.5rem;
  display:flex;flex-direction:column;justify-content:center;
}
.feat23__detail p{color:var(--textSecondary);font-size:.88rem;line-height:1.75;margin-bottom:.8rem}

.feat23__tag{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.6rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:4px;
  width:fit-content;
}
.feat23__tag--1{background:rgba(var(--accent-rgb),.08);color:var(--secondStyleColor)}
.feat23__tag--2{background:rgba(var(--accent2-rgb),.08);color:var(--accent2)}
.feat23__tag--3{background:rgba(var(--accent3-rgb),.08);color:var(--accent3)}
.feat23__tag--4{background:rgba(var(--accent-rgb),.08);color:var(--secondStyleColor)}

@media(max-width:768px){
  .feat23__header{flex-direction:column;gap:1rem}
  .feat23__row{grid-template-columns:1fr;border:none;border-top:1px solid var(--borderSubtle)}
  .feat23__num{display:none}
  .feat23__main{border-right:none;padding:1.5rem}
  .feat23__detail{padding:0 1.5rem 1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .feat23__row{animation:none!important;opacity:1;transform:none;transition:none}
}



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

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

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

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

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

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

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

  .rm11__num {
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .rm11__item:hover .rm11__num {
    transform: translateY(-3px);
  }

  .rm11__num span {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .rm11__num--outline {
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm11__body {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 20px 22px;
    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;
  }

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

  .rm11__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 18px;
    flex-shrink: 0;
  }

  .rm11__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
  }

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

  @media (max-width: 700px) {
    .rm11__item { grid-template-columns: 60px 1fr; }
    .rm11__num span { font-size: 24px; }
    .rm11__body { grid-template-columns: 1fr; gap: 10px; }
    .rm11__icon { width: 36px; height: 36px; font-size: 16px; }
  }

  @media (max-width: 600px) {
    .rm11 { padding: 48px 0; }
    .rm11__head { margin-bottom: 36px; }
  }

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



  /* ===== TESTIMONIALS SECTION ALT (VARIANT 2) ===== */

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

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

  /* Header */
  .testimonialsAltHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .testimonialsEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .testimonialsTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .testimonialsSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* List */
  .testimonialsAltList {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Row card */
  .testimonialRow {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;

    border-radius: var(--borderRadius);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

  .testimonialRow:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  /* Avatar */
  .testimonialAvatar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .testimonialAvatarCircle {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondStyleColor);
  }

  /* Body */
  .testimonialRowBody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

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

  .testimonialName {
    font-size: 16px;
    font-weight: 600;
  }

  .testimonialRole {
    font-size: 13px;
    color: var(--textMuted);
  }

  .testimonialTag {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    white-space: nowrap;
  }

  .testimonialRowText {
    font-size: 14px;
    line-height: 1.7;
    color: #dfdfdf;
  }

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

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



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

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

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

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

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

  .pl1__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    align-items: start;
  }

  .pl1__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(24px, 3vw, 36px);
    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;
  }

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

  .pl1__card--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    box-shadow: 0 0 50px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl1__badge {
    position: absolute;
    top: 16px;
    right: -1px;
    padding: 5px 14px 5px 18px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--borderRadius) 0 0 var(--borderRadius);
  }

  .pl1__card-top i {
    font-size: 24px;
    color: var(--secondStyleColor);
    margin-bottom: 4px;
  }

  .pl1__card-top h3 {
    margin: 8px 0 4px;
    font-size: 20px;
    font-weight: 700;
  }

  .pl1__card-top p {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .pl1__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .pl1__amount {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl1__period {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
  }

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

  .pl1__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 78%, transparent);
  }

  .pl1__list li i {
    font-size: 12px;
    color: var(--secondStyleColor);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

  .pl1__list--off { opacity: 0.4; }
  .pl1__list--off i { color: color-mix(in srgb, var(--textColor1) 35%, transparent) !important; }

  .pl1__btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
    margin-top: auto;
  }

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

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

  .pl1__btn--primary:hover {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  @media (max-width: 900px) {
    .pl1__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pl1__card--featured { order: -1; }
  }

  @media (max-width: 600px) {
    .pl1 { padding: 48px 0; }
    .pl1__head { margin-bottom: 36px; }
  }

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



  /* ===== ABOUT v19 — SVG waves + circular portrait with orbit ring ===== */

  .ab19 {
    position: relative;
    color: var(--textColor1);
  }

  /* SVG waves */
  .ab19__wave {
    display: block;
    width: 100%;
    height: 50px;
    color: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .ab19__wave--top {
    margin-bottom: -1px;
  }

  .ab19__wave--bot {
    margin-top: -1px;
  }

  .ab19__inner {
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    padding: clamp(50px, 6vw, 80px) 0;
  }

  .ab19__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
  }

  /* Visual — portrait + orbit */
  .ab19__visual {
    position: relative;
    width: clamp(220px, 28vw, 320px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ab19__orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    animation: ab19Rotate 25s linear infinite;
  }

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

  .ab19__portrait {
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

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

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

  .ab19__glow {
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(40px);
    z-index: 0;
    animation: ab19Breathe 3.5s ease-in-out infinite alternate;
  }

  @keyframes ab19Breathe {
    0% { opacity: 0.04; transform: scale(0.95); }
    100% { opacity: 0.1; transform: scale(1.08); }
  }

  /* Text */
  .ab19__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ab19__tag {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab19__text h2 {
    margin: 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .ab19__row {
    display: flex;
    gap: 24px;
    margin-top: 8px;
  }

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

  .ab19__mini i {
    font-size: 20px;
    color: var(--secondStyleColor);
  }

  .ab19__mini strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ab19__visual {
      width: clamp(200px, 26vw, 280px);
    }
  }

  @media (max-width: 800px) {
    .ab19__layout {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }

    .ab19__visual {
      width: 240px;
    }

    .ab19__text {
      align-items: center;
    }

    .ab19__row {
      justify-content: center;
    }

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

    .ab19__text > p {
      font-size: 14px;
    }
  }

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

    .ab19__wave {
      height: 32px;
    }

    .ab19__visual {
      width: 200px;
    }

    .ab19__row {
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    .ab19__mini i {
      font-size: 18px;
    }
  }

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

    .ab19__glow {
      animation: none;
    }

    .ab19__portrait img {
      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; }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



  .site-footer {
    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;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

  .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 {
      align-items: 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}