:root{--font-sans:'Archivo', sans-serif;}


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

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* 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-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: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

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

  .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 {
    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;
      border: none;
    }

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


/* ===== HERO v25 — Constellation SVG + background image behind text ===== */

  .hr26 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vw, 160px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background image layer */
  .hr26__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hr26__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
  }

  /* Constellation SVG — above image, below content */
  .hr26__constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--secondStyleColor);
    pointer-events: none;
    z-index: 1;
  }

  .hr26 .container {
    position: relative;
    z-index: 2;
  }

  /* Content */
  .hr26__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .hr26__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hr26__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    animation: hr26Pulse 1.5s ease-in-out infinite;
  }

  @keyframes hr26Pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.4;
      transform: scale(0.7);
    }
  }

  .hr26__content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  }

  .hr26__content > p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 540px;
  }

  /* Actions */
  .hr26__actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
  }

  .hr26__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--borderRadius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
  }

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

  .hr26__btn--primary i {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .hr26__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .hr26__btn--primary:hover i {
    transform: translateX(3px);
  }

  .hr26__btn--ghost {
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    color: var(--textColor1);
    background: color-mix(in srgb, var(--bodyBG) 40%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hr26__btn--ghost:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hr26 {
      min-height: 480px;
    }

    .hr26__content h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 600px) {
    .hr26 {
      padding: 80px 0;
      min-height: 400px;
    }

    .hr26__content h1 {
      font-size: 28px;
    }

    .hr26__content > p {
      font-size: 15px;
    }

    .hr26__actions {
      flex-direction: column;
      width: 100%;
    }

    .hr26__btn {
      justify-content: center;
    }
  }

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

    .hr26__btn,
    .hr26__btn--primary i {
      transition: none;
    }

    .hr26__constellation * {
      animation: none !important;
    }
  }


: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: #fff;
    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);
  }

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


/* ============ Matchday Atmosphere (Layered stack) ============ */
  .fxl-atmo__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .fxl-btn {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    color: var(--textColor2);
    text-transform: uppercase;
    font-weight: 800;
    width: fit-content;
    transition: 0.3s all linear;
    &&:hover {
      transform: translateY(-2px);
    }
  }
  .head-about-s {
    color: var(--textColor1);
  }
  .fxl-atmo__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .fxl-atmo__grid {
      grid-template-columns: 1fr;
    }
  }
  .head-about-s--left {
    text-align: left;
  }

  .fxl-bullets {
    margin: 12px 0 20px;
    padding: 0;
    list-style: none;
  }
  .fxl-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--textColor1);
  }
  .fxl-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px rgba(121, 255, 207, 0.18);
  }

  .fxl-atmo__visuals {
    position: relative;
    min-height: 420px;
  }
  .fxl-blob,
  .fxl-blob--b {
    position: absolute;
    inset: auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    z-index: 0;
    background: radial-gradient(
        45% 45% at 60% 40%,
        var(--secondStyleColor),
        transparent 70%
      ),
      radial-gradient(
        45% 45% at 30% 70%,
        var(--secondStyleColor),
        transparent 70%
      ),
      #0f2a1f;
    top: -20px;
    left: -10px;
  }
  .fxl-blob--b {
    width: 280px;
    height: 280px;
    bottom: -30px;
    right: -20px;
    top: auto;
    left: auto;
  }

  .fxl-polaroid {
    position: absolute;
    width: 60%;
    aspect-ratio: 4/3;
    border-radius: var(--borderRadius);
    padding: 8px;
  }
  .fxl-polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
  }
  .fxl-polaroid--a {
    top: 8%;
    left: 10%;
    transform: rotate(-6deg);
  }
  .fxl-polaroid--b {
    top: 28%;
    right: 2%;
    transform: rotate(5deg);
  }
  .fxl-polaroid--c {
    bottom: 0;
    left: 18%;
    transform: rotate(2deg);
  }


/* ===== PLANS v14 — Stacked horizontal rows with number + SVG lines bg ===== */

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

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

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

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

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

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

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

  /* Stack */
  .pl14__stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
  }

  /* Card row */
  .pl14__card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
    padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
    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;
  }

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

  .pl14__card--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .pl14__card--featured:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

  /* Number */
  .pl14__num {
    font-size: 32px;
    font-weight: 800;
    color: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    font-variant-numeric: tabular-nums;
    min-width: 48px;
  }

  .pl14__card--featured .pl14__num {
    color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Info */
  .pl14__info h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .pl14__pop {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

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

  /* Tags */
  .pl14__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pl14__tags li {
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
  }

  .pl14__card--featured .pl14__tags li {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  /* Right */
  .pl14__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }

  .pl14__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

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

  .pl14__period {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    font-weight: 500;
  }

  .pl14__btn {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .pl14__btn:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    transform: translateY(-1px);
  }

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

  .pl14__btn--primary:hover {
    background: var(--secondStyleColor);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

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

    .pl14__num {
      grid-row: 1 / 3;
    }

    .pl14__tags {
      grid-column: 2 / -1;
    }

    .pl14__right {
      grid-column: 1 / -1;
      justify-content: space-between;
      padding-top: 8px;
      border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    }
  }

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

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

    .pl14__num {
      font-size: 24px;
    }

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

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


/* ===== PARTNERS v8 — Glassmorphism card + info ===== */

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

  .pt8__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  /* Glass card */
  .pt8__card {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    border-radius: calc(var(--borderRadius) * 1.3);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pt8__card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* Shimmer */
  .pt8__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;
  }

  .pt8__card:hover .pt8__shimmer {
    animation: pt8Sweep 0.9s ease forwards;
  }

  @keyframes pt8Sweep {
    to { left: 140%; }
  }

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

  .pt8__logo-wrap:hover {
    transform: scale(1.05);
  }

  .pt8__logo-wrap img {
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

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

  .pt8__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

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

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

  .pt8__bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .pt8__card {
      max-width: 340px;
    }
  }

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

    .pt8__info {
      align-items: center;
    }

    .pt8__card {
      max-width: 300px;
    }

    .pt8__list li {
      justify-content: center;
    }
  }

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

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

    .pt8__desc {
      font-size: 14px;
    }

    .pt8__card {
      max-width: 260px;
    }

    .pt8__list li {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt8__card:hover .pt8__shimmer {
      animation: none;
    }
    .pt8__card,
    .pt8__logo-wrap {
      transition: none;
    }
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .rv15__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(18px, 2.5vw, 24px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    transition:
      transform 0.25s ease,
      border-color 0.25s ease;
  }

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

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

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

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

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

    .rv15__head {
      margin-bottom: 36px;
    }

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

    .rv15__featured {
      padding: 24px;
    }

    .rv15__quote {
      font-size: 16px;
    }

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

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


/* ===== FEATURES v17 — Radial wheel with SVG ring + spokes ===== */

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

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

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

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

  /* Wheel container */
  .ft17__wheel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  /* SVG background */
  .ft17__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .ft17__ring {
    fill: none;
    stroke: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    stroke-width: 1;
  }

  .ft17__ring--dash {
    stroke: var(--secondStyleColor);
    stroke-width: 1.5;
    stroke-dasharray: 8 16;
    animation: ft17Spin 30s linear infinite;
    transform-origin: center;
  }

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

  .ft17__core {
    fill: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    stroke: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    stroke-width: 1;
  }

  .ft17__spoke {
    stroke: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    stroke-width: 1;
    stroke-dasharray: 4 6;
  }

  /* Center label */
  .ft17__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 2;
  }

  .ft17__center i {
    font-size: 22px;
    color: var(--secondStyleColor);
  }

  .ft17__center span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  /* Nodes positioned around the ring */
  .ft17__node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
    transform: translate(-50%, -50%);
    z-index: 3;
  }

  .ft17__node--1 { top: 8%;  left: 50%; }
  .ft17__node--2 { top: 27%; left: 88%; }
  .ft17__node--3 { top: 73%; left: 88%; }
  .ft17__node--4 { top: 92%; left: 50%; }
  .ft17__node--5 { top: 73%; left: 12%; }
  .ft17__node--6 { top: 27%; left: 12%; }

  .ft17__dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .ft17__node:hover .ft17__dot {
    transform: scale(1.15);
    background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  }

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

  .ft17__node h3 {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft17__wheel {
      max-width: 500px;
    }

    .ft17__node {
      width: 100px;
    }

    .ft17__node h3 {
      font-size: 13px;
    }

    .ft17__node p {
      font-size: 10px;
    }

    .ft17__dot {
      width: 42px;
      height: 42px;
    }
  }

  /* Collapse to grid on tablets */
  @media (max-width: 800px) {
    .ft17__wheel {
      aspect-ratio: auto;
      max-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      justify-items: center;
    }

    .ft17__svg,
    .ft17__center {
      display: none;
    }

    .ft17__node {
      position: static;
      transform: none;
      width: auto;
      padding: 20px 14px;
      border-radius: var(--borderRadius);
      border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
      background: rgba(255, 255, 255, 0.03);
    }

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

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

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

    .ft17__head {
      margin-bottom: 36px;
    }

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

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

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

    .ft17__dot {
      transition: none;
    }
  }


/* ===== ROADMAP v6 — SVG curve path + glass cards + travelling light ===== */

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

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

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

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

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

  /* Track container */
  .rm6__track {
    position: relative;
  }

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

  .rm6__path {
    stroke: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    stroke-width: 2;
  }

  .rm6__path--dash {
    stroke: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    stroke-width: 2;
    stroke-dasharray: 8 12;
  }

  .rm6__light {
    fill: var(--secondStyleColor);
    filter: drop-shadow(0 0 8px var(--secondStyleColor));
    opacity: 0.7;
  }

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

  /* Stagger vertically to follow curve */
  .rm6__phase--1 {
    padding-top: 0;
  }
  .rm6__phase--2 {
    padding-top: 50px;
  }
  .rm6__phase--3 {
    padding-top: 100px;
  }
  .rm6__phase--4 {
    padding-top: 150px;
  }

  /* Number circle */
  .rm6__num {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .rm6__num span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    animation: rm6Pulse 2.5s ease-in-out infinite;
  }

  @keyframes rm6Pulse {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 0 10px
        color-mix(in srgb, var(--secondStyleColor) 0%, transparent);
    }
  }

  /* Card */
  .rm6__card {
    padding: 24px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

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

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

  .rm6__card:hover .rm6__ico {
    transform: scale(1.12) rotate(-5deg);
  }

  .rm6__ico i {
    font-size: 17px;
    color: var(--secondStyleColor);
  }

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

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

  /* Badges */
  .rm6__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

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

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

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

    .rm6__phase--1 {
      padding-top: 0;
    }
    .rm6__phase--2 {
      padding-top: 0;
    }
    .rm6__phase--3 {
      padding-top: 0;
    }
    .rm6__phase--4 {
      padding-top: 0;
    }

    .rm6__svg {
      display: none;
    }
  }

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

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

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

    .rm6__head {
      margin-bottom: 36px;
    }

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

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

    .rm6__card {
      padding: 20px 16px;
    }
  }

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

    .rm6__light animateMotion {
      dur: 0s;
    }

    .rm6__card,
    .rm6__ico {
      transition: none;
    }
  }


/* ===== HOW v20 — Cards with SVG progress rings + tags ===== */

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

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

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

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

  .hw20__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

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

  .hw20__card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

  /* Top row: icon + ring */
  .hw20__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }

  /* Icon */
  .hw20__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .hw20__card:hover .hw20__icon {
    transform: rotate(-8deg) scale(1.08);
  }

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

  /* SVG progress ring */
  .hw20__counter {
    position: relative;
    width: 48px;
    height: 48px;
  }

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

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

  .hw20__ring-fg {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 163.36;
    stroke-dashoffset: calc(163.36 - 163.36 * var(--pct) / 100);
    transition: stroke-dashoffset 0.6s ease;
    opacity: 0.6;
  }

  .hw20__card:hover .hw20__ring-fg {
    opacity: 1;
  }

  .hw20__ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.7;
  }

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

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

  /* Tags */
  .hw20__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .hw20__tags span {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    font-size: 11px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    transition: border-color 0.3s ease, color 0.3s ease;
  }

  .hw20__card:hover .hw20__tags span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    color: var(--secondStyleColor);
  }

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

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

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

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

    .hw20__icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
    }

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

    .hw20__counter {
      width: 42px;
      height: 42px;
    }
  }

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

    .hw20__head {
      margin-bottom: 36px;
    }

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

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

    .hw20__card {
      padding: 22px 16px 18px;
    }

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

    .hw20__top {
      margin-bottom: 16px;
    }

    .hw20__icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
    }

    .hw20__icon i {
      font-size: 16px;
    }

    .hw20__counter {
      width: 38px;
      height: 38px;
    }

    .hw20__ring-num {
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw20__card,
    .hw20__icon,
    .hw20__ring-fg,
    .hw20__tags span {
      transition: none;
    }
  }


.inspx9v2-sec {
    padding: 72px 0 64px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* -------- header -------- */

  .inspx9v2-head {
    text-align: center;
    margin-bottom: 34px;
  }

  .inspx9v2-title {
    margin: 0;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.08;
    letter-spacing: 0.01em;
    font-weight: 650;
    color: var(--textColor1);
  }

  .inspx9v2-dots {
    margin: 12px auto 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
  }

  .inspx9v2-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--secondStyleColor);
  }

  .inspx9v2-sub {
    margin: 0 auto 18px;
    width: min(680px, 92%);
    font-size: 14px;
    line-height: 1.6;
    color: var(--textColor1);
  }

  /* -------- gallery wrapper -------- */

  .inspx9v2-gallery {
    position: relative;
    padding: 10px 0 6px;
  }

  /* Swiper container */
  .inspx9v2-swiper {
    width: 100%;
    overflow: visible; /* so side slides peek */
  }

  /* Make slides "card width" like the screenshot */
  .inspx9v2-slide {
    width: 300px;
    height: 400px;
    display: flex;
    align-items: stretch;
  }

  /* card */
  .inspx9v2-card {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  /* image */
  .inspx9v2-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    transform: translateZ(0);
    filter: saturate(0.98) contrast(0.98);
    user-select: none;
  }

  /* subtle hover */
  @media (hover: hover) {
    .inspx9v2-card {
      transition: transform 260ms ease, box-shadow 260ms ease;
    }
    .inspx9v2-slide:hover .inspx9v2-card {
      transform: translateY(-4px);
      box-shadow: 0 22px 40px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    }
  }

  /* -------- side nav buttons (circle, like screenshot) -------- */

  .inspx9v2-nav {
    position: absolute;
    top: 50%;
    transform: translateY(22px); /* slight lower like screenshot */
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.82);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 200ms ease, background 200ms ease,
      border-color 200ms ease, opacity 200ms ease;
    user-select: none;
  }

  .inspx9v2-nav span {
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
  }

  .inspx9v2-navPrev {
    left: 8px;
  }
  .inspx9v2-navNext {
    right: 8px;
  }

  .inspx9v2-nav:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(22px) scale(1.03);
  }

  .inspx9v2-nav:active {
    transform: translateY(22px) scale(0.99);
  }

  .inspx9v2-nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 4px;
  }

  /* if Swiper disables buttons */
  .inspx9v2-nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }
  /* --- staggered (up/down) layout like in screenshot --- */
  .inspx9v2-gallery {
    --inspx9v2-stagger: 34px; /* сила "шахматки" */
  }

  /* вверх/вниз для слайдов */
  .inspx9v2-track .inspx9v2-slide:nth-child(odd) {
    transform: translateY(calc(var(--inspx9v2-stagger) * -1));
  }

  .inspx9v2-track .inspx9v2-slide:nth-child(even) {
    transform: translateY(var(--inspx9v2-stagger));
  }

  /* чтобы влезало по высоте и не резалось */
  .inspx9v2-gallery {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  /* на мобилке обычно шахматку лучше выключить */
  @media (max-width: 720px) {
    .inspx9v2-gallery {
      --inspx9v2-stagger: 0px;
    }
  }

  @media (max-width: 720px) {
    .inspx9v2-sec {
      padding: 56px 0 52px;
    }
    .inspx9v2-shell {
      width: min(1240px, calc(100% - 28px));
    }
    .inspx9v2-head {
      margin-bottom: 24px;
    }
    .inspx9v2-nav {
      display: none;
    } /* on mobile user swipes */
    .inspx9v2-slide {
      width: min(78vw, 320px);
      height: min(88vw, 380px);
    }
  }


/* ===== SOMETHING v14 — Team strip with circular avatars + orbit ring ===== */

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

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

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

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

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

  .sm14__grid {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    flex-wrap: wrap;
  }

  .sm14__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .sm14__avatar {
    position: relative;
    width: 100px;
    height: 100px;
  }

  .sm14__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    transition: transform 0.3s ease;
  }

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

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

  .sm14__member:hover .sm14__ring {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

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

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

  .sm14__role {
    font-size: 12px;
    color: var(--secondStyleColor);
    font-weight: 500;
  }

  @media (max-width: 800px) {
    .sm14__avatar {
      width: 84px;
      height: 84px;
    }

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

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

    .sm14__head {
      margin-bottom: 36px;
    }

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

    .sm14__grid {
      gap: 20px;
    }

    .sm14__avatar {
      width: 72px;
      height: 72px;
    }

    .sm14__ring {
      inset: -5px;
    }
  }

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

    .sm14__avatar img {
      transition: none;
    }
  }


/* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

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

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

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .faqSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .faqColsGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
  }

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


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

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

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

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

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

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

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