:root{--font-sans:'Source Serif 4', serif;}


/* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-family:
      system-ui,
      -apple-system,
      "SF Pro Text",
      "Segoe UI",
      sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

  .nav {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 6px 4px;
    text-transform: uppercase;
    transition:
      color 0.2s ease,
      transform 0.15s ease,
      opacity 0.2s ease;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

  @media (max-width: 1024px) {
    .header-cta {
      display: none;
    }
    .nav {
      display: none;
    }

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: #050814 !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }


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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft19__head {
      margin-bottom: 36px;
    }

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

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

    .ft19__card {
      padding: 18px 16px;
    }

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

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

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


/* ===== SOMETHING v9 — Stats with SVG ring progress + dot grid bg ===== */

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

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

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

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

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

  .sm9__head h2 {
    margin: 0;
    font-size: clamp(26px, 3.8vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  /* Grid */
  .sm9__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .sm9__item {
    text-align: center;
    padding: 28px 16px;
    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;
  }

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

  /* SVG ring */
  .sm9__ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
  }

  .sm9__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .sm9__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
  }

  .sm9__ring-fill {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: calc(2 * 3.14159 * 52);
    stroke-dashoffset: calc(2 * 3.14159 * 52 * (1 - var(--p, 0) / 100));
    transition: stroke-dashoffset 0.8s ease;
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--secondStyleColor) 30%, transparent));
  }

  .sm9__value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

  .sm9__item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
  }

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

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

  @media (max-width: 800px) {
    .sm9__ring {
      width: 90px;
      height: 90px;
    }

    .sm9__value {
      font-size: 20px;
    }

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

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

    .sm9__head {
      margin-bottom: 36px;
    }

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

    .sm9__grid {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .sm9__item {
      padding: 22px 12px;
    }

    .sm9__ring {
      width: 80px;
      height: 80px;
      margin-bottom: 14px;
    }

    .sm9__value {
      font-size: 18px;
    }
  }

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

    .sm9__item {
      transition: none;
    }
  }


/* ===== ROADMAP v9 — Sticky sidebar progress + scrolling cards ===== */

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

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

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

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

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

  /* Layout */
  .rm9__layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
  }

  /* Sidebar */
  .rm9__sidebar {
    position: sticky;
    top: 80px;
  }

  .rm9__progress-track {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
  }

  .rm9__progress-line {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
  }

  .rm9__progress-filled {
    width: 100%;
    height: 62%;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 30%, transparent));
  }

  .rm9__step {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    transition: color 0.2s ease;
  }

  .rm9__step:hover {
    color: var(--textColor1);
  }

  .rm9__step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

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

  .rm9__step--done {
    color: var(--textColor1);
  }

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

  .rm9__step--active {
    color: var(--secondStyleColor);
    font-weight: 600;
  }

  /* Cards */
  .rm9__cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .rm9__card {
    padding: 26px 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.3s ease, border-color 0.3s ease;
  }

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

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

  .rm9__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .rm9__card-num {
    font-size: 28px;
    font-weight: 800;
    color: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    line-height: 1;
  }

  .rm9__badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

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

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

  .rm9__card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 600;
  }

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

  .rm9__card-footer {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .rm9__metric strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondStyleColor);
    line-height: 1;
    margin-bottom: 2px;
  }

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

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

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

    .rm9__sidebar {
      position: static;
    }

    .rm9__progress-track {
      flex-direction: row;
      gap: 0;
      justify-content: space-between;
    }

    .rm9__progress-line {
      left: 0;
      right: 0;
      top: 7px;
      bottom: auto;
      width: auto;
      height: 2px;
    }

    .rm9__progress-filled {
      height: 100%;
      width: 62%;
    }

    .rm9__step span:last-child {
      display: none;
    }

    .rm9__card h3 {
      font-size: 17px;
    }

    .rm9__card > p {
      font-size: 13px;
    }
  }

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

    .rm9__head {
      margin-bottom: 36px;
    }

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

    .rm9__card {
      padding: 20px 18px;
    }

    .rm9__card-footer {
      gap: 16px;
    }

    .rm9__metric strong {
      font-size: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm9__card,
    .rm9__step,
    .rm9__step-dot {
      transition: none;
    }
  }


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


/* partners */
  .partners-sec {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    border-top: 2px solid var(--secondStyleColor);
    border-bottom: 2px solid var(--secondStyleColor);
  }
  .partners-sec > container {
    display: flex;
    flex-direction: column;
  }
  h2 {
    font-size: 40px;
  }
  .partnershead {
    margin-bottom: 100px;
    h2 {
      color: var(--textColor1);
      text-align: center;
    }
    p {
      color: var(--textColor1);
      text-align: center;
      text-wrap: balance;
    }
  }
  .partnersfon {
    position: absolute;
    height: 100%;
    width: 100%;
    inset: 0;
    object-fit: cover;
    object-position: 50% 20%;
    z-index: -1;
    filter: blur(5px);
    opacity: 0.2;
  }

  .logosWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    && a {
      transition: 0.2s all linear;
    }
    && a:hover {
      transform: scale(105%);
    }
    && img {
      max-width: 400px;
    }
  }

  @media (max-width: 800px) {
    .partnershead {
      margin-bottom: 30px;
    }
    .logosWrap {
      flex-direction: column;
      gap: 20px;
      img {
        width: 200px;
      }
    }
  }


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


/* ===== ABOUT v20 — Magazine 3-col: quote + image + text/stats + SVG dots ===== */

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

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

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

  /* 3-column layout */
  .ab20__cols {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  /* Quote column */
  .ab20__col--quote {
    padding: 30px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.025);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ab20__quote-mark {
    font-size: 64px;
    font-weight: 800;
    line-height: 0.6;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab20__col--quote blockquote {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 82%, transparent);
  }

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

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

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

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

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

  /* Image column */
  .ab20__img-frame {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  }

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

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

  .ab20__img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    transform: translateX(-100%);
    animation: ab20Shine 4s ease-in-out infinite;
  }

  @keyframes ab20Shine {
    0%,
    70% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  /* Info column */
  .ab20__col--info {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ab20__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab20__col--info h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  /* Stats bars */
  .ab20__stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
  }

  .ab20__stat-bar {
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .ab20__stat-fill {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent)
    );
    transition: width 0.6s ease;
  }

  .ab20__stat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
  }

  .ab20__stat-info span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  .ab20__stat-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .ab20__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    width: fit-content;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .ab20__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

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

    .ab20__col--quote {
      grid-column: span 2;
      order: 3;
    }
  }

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

    .ab20__col--quote {
      grid-column: span 1;
      order: 0;
    }

    .ab20__img-frame {
      aspect-ratio: 16 / 9;
      max-width: 500px;
      margin: 0 auto;
      width: 100%;
    }

    .ab20__col--info h2 {
      font-size: 24px;
    }

    .ab20__col--quote blockquote {
      font-size: 15px;
    }
  }

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

    .ab20__col--quote {
      padding: 24px 18px;
    }

    .ab20__quote-mark {
      font-size: 48px;
    }

    .ab20__col--quote blockquote {
      font-size: 14px;
    }

    .ab20__stat-info span {
      font-size: 12px;
    }
  }

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

    .ab20__img-frame img,
    .ab20__btn,
    .ab20__stat-fill {
      transition: none;
    }
  }


/* ===========================
     FAQ 11 — Orbital Cards
     Floating cards + orbiting dots + gradient blobs
     =========================== */

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

  /* Animated gradient blobs */
  .faq11__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    will-change: transform;
  }

  .faq11__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    opacity: 0.07;
    top: -120px;
    left: -80px;
    animation: faq11-drift1 25s ease-in-out infinite;
  }

  .faq11__blob--2 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -100px;
    right: -60px;
    animation: faq11-drift2 30s ease-in-out infinite;
  }

  .faq11__blob--3 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    top: 40%;
    left: 50%;
    animation: faq11-drift3 20s ease-in-out infinite;
  }

  @keyframes faq11-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, 40px) scale(1.1);
    }
    66% {
      transform: translate(-30px, 70px) scale(0.95);
    }
  }

  @keyframes faq11-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, -30px) scale(1.08);
    }
    66% {
      transform: translate(40px, -60px) scale(0.92);
    }
  }

  @keyframes faq11-drift3 {
    0%,
    100% {
      transform: translate(-50%, 0) scale(1);
    }
    50% {
      transform: translate(-50%, -40px) scale(1.15);
    }
  }

  /* SVG decorative layer */
  .faq11__deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

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

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

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

  .faq11__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

  /* Grid */
  .faq11__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Card */
  .faq11__card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 90%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition:
      transform 0.5s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.5s ease;
    animation: faq11-float 7s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq11__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow:
      0 8px 32px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  @keyframes faq11-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .faq11__card:hover {
    animation-play-state: paused;
  }

  /* Orbit ring + number */
  .faq11__orbit {
    position: relative;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .faq11__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .faq11__dot {
    transform-origin: 35px 35px;
    animation: faq11-orbit var(--orbit-dur) linear infinite;
    animation-direction: var(--orbit-dir);
    transition: filter 0.3s ease;
  }

  .faq11__card:hover .faq11__dot {
    animation-duration: 2s;
    filter: drop-shadow(0 0 4px var(--secondStyleColor));
  }

  @keyframes faq11-orbit {
    to {
      transform: rotate(360deg);
    }
  }

  .faq11__num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  /* Question */
  .faq11__question {
    margin: 0 0 10px;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Answer */
  .faq11__answer {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .faq11__card:hover .faq11__answer {
    opacity: 1;
  }

  /* Decorative line at card bottom */
  .faq11__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent) 50%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

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

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq11__blob {
      animation: none !important;
    }
    .faq11__card {
      animation: none !important;
      transition: none !important;
    }
    .faq11__dot {
      animation: none !important;
    }
    .faq11__deco * {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq11__grid {
      gap: 16px;
    }
    .faq11__card {
      padding: 28px 24px 24px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq11__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq11__card {
      padding: 24px 20px 20px;
    }
    .faq11__orbit {
      width: 54px;
      height: 54px;
      margin-bottom: 16px;
    }
    .faq11__num {
      font-size: 13px;
    }
  }


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

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