:root{--font-sans:'Inter', 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;
    }
  }


.k9zQ1m {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 700px;
    display: grid;
    place-items: center;
    background:
      radial-gradient(
        900px 380px at 50% 0%,
        color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
        color-mix(in srgb, var(--secondStyleColor) 1%, transparent) 35%
      ),
      radial-gradient(
        700px 460px at 50% 110%,
        color-mix(in srgb, var(--secondStyleColor) 45%, transparent),
        transparent 64%
      ),
      linear-gradient(180deg, color-mix(in srgb, var(--bodyBG) 5%, transparent));
  }

  /* точечный паттерн сверху */
  .n8uL4x {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
    background-size: 18px 18px;
    opacity: 0.35;
    transform: translateY(-14px);
    mask-image: radial-gradient(
      520px 220px at 50% 10%,
      #000 35%,
      transparent 78%
    );
  }

  /* левый “шар” (оранжевый) */
  .vP0a7n {
    position: absolute;
    left: -365px;
    bottom: -288px;
    width: clamp(340px, 46vw, 640px);
    height: clamp(340px, 46vw, 640px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

    background:
      radial-gradient(
        circle at 35% 30%,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0) 36%
      ),
      radial-gradient(
        circle at 45% 55%,
        rgba(255, 122, 42, 0.65),
        rgba(255, 59, 26, 0.25) 44%,
        rgba(7, 3, 18, 0) 72%
      ),
      conic-gradient(
        from 220deg,
        rgba(255, 140, 70, 0),
        rgba(255, 140, 70, 0.55),
        rgba(255, 255, 255, 0.22),
        rgba(255, 59, 26, 0.55),
        rgba(255, 140, 70, 0)
      );
    filter: blur(0.2px) saturate(1.1);
  }

  /* дуги поверх левого шара */
  .vP0a7n::before,
  .vP0a7n::after {
    content: "";
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .vP0a7n::before {
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
  }

  .vP0a7n::after {
    inset: 120px;
    border: 2px solid rgba(255, 122, 42, 0.55);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(18deg);
    filter: drop-shadow(0 0 16px rgba(255, 122, 42, 0.18));
  }

  /* правый “шар” (фиолетовый) */
  .w2Yt3b {
    position: absolute;
    right: -456px;
    bottom: 154px;
    width: clamp(360px, 50vw, 690px);
    height: clamp(360px, 50vw, 690px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;

    background:
      radial-gradient(
        circle at 40% 30%,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0) 34%
      ),
      radial-gradient(
        circle at 55% 58%,
        rgba(166, 75, 255, 0.7),
        rgba(111, 34, 255, 0.24) 46%,
        rgba(7, 3, 18, 0) 74%
      ),
      conic-gradient(
        from 310deg,
        rgba(166, 75, 255, 0),
        rgba(166, 75, 255, 0.62),
        rgba(255, 255, 255, 0.18),
        rgba(111, 34, 255, 0.62),
        rgba(166, 75, 255, 0)
      );
    filter: blur(0.2px) saturate(1.12);
  }

  /* дуги поверх правого шара */
  .w2Yt3b::before,
  .w2Yt3b::after {
    content: "";
    position: absolute;
    inset: 88px;
    border-radius: 50%;
    pointer-events: none;
  }

  .w2Yt3b::before {
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-14deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
  }

  .w2Yt3b::after {
    inset: 128px;
    border: 2px solid rgba(166, 75, 255, 0.55);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-14deg);
    filter: drop-shadow(0 0 18px rgba(166, 75, 255, 0.18));
  }

  /* контент */
  .r7Xc2p {
    position: relative;
    z-index: 2;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .s1qV9d {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: 999px;
    color: var(--textColor1);
    font-size: 14px;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
  }

  .h4mR2k {
    color: rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 0 10px rgba(166, 75, 255, 0.35));
  }

  .c3eT8w {
    margin: 0;
    font-weight: 600;
    line-height: 1.06;
    color: var(--textColor1);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow:
      0 10px 30px rgba(0, 0, 0, 0.45),
      0 0 30px rgba(166, 75, 255, 0.1);
  }

  .x6Jp1a {
    color: rgba(255, 255, 255, 0.84);
  }

  .m5nB0q {
    margin: 0;
    max-width: 620px;
    color: var(--textColor1);
    line-height: 1.55;
  }

  .b8Qv3y {
    margin-top: 6px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--textColor1);
    font-size: 20px;
    border: 1px solid var(--secondStyleColor);
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-4px);
    }
  }

  .t2cH7u {
    position: relative;
    z-index: 1;
  }

  /* мелкие точки вокруг кнопки */
  .g6dS1e {
    position: absolute;
    left: 50%;
    top: calc(50% + 72px);
    transform: translateX(-50%);
    width: 380px;
    height: 160px;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.14) 1px,
      transparent 1px
    );
    background-size: 16px 16px;
    opacity: 0.22;
    mask-image: radial-gradient(
      170px 70px at 50% 55%,
      #000 30%,
      transparent 78%
    );
  }

  /* адаптив */
  @media (max-width: 900px) {
    .vP0a7n,
    .w2Yt3b {
      display: none;
    }

    .k9zQ1m {
      min-height: 500px;
    }
  }


: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: 1px solid 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;
    }
  }


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


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

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

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

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

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

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

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

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

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

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

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

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

  .ft15__card-img {
    overflow: hidden;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft15__head {
      margin-bottom: 36px;
    }

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

    .ft15__masonry {
      columns: 1;
    }
  }

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


/* ===========================
     Reviews 18 — Spotlight Mosaic
     Bento grid + CSS hover spotlight (dim others) + holographic shine
     =========================== */

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

  /* Floating glow blobs */
  .rv18__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
    will-change: transform;
  }

  .rv18__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    top: -120px;
    left: 10%;
    animation: rv18-drift1 24s ease-in-out infinite;
  }

  .rv18__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    bottom: -100px;
    right: 5%;
    animation: rv18-drift2 28s ease-in-out infinite;
  }

  .rv18__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    opacity: 0.035;
    top: 50%;
    left: 55%;
    animation: rv18-drift3 20s ease-in-out infinite;
  }

  @keyframes rv18-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(50px, 40px) scale(1.1);
    }
  }

  @keyframes rv18-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(-40px, -50px) scale(1.08);
    }
  }

  @keyframes rv18-drift3 {
    0%,
    100% {
      transform: translate(-50%, 0) scale(1);
    }
    50% {
      transform: translate(-50%, -35px) scale(1.12);
    }
  }

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

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

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

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

  /* Bento grid */
  .rv18__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
  }

  /* Featured card spans 2 rows */
  .rv18__card--featured {
    grid-row: 1 / 3;
  }

  /* Card */
  .rv18__card {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 4%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 2%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition:
      opacity 0.45s ease,
      filter 0.45s ease,
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.4s ease;
  }

  /* ── Spotlight effect: hover grid → dim all, un-dim hovered ── */
  .rv18__grid:hover .rv18__card {
    opacity: 0.4;
    filter: blur(2px) saturate(0.6);
  }

  .rv18__grid:hover .rv18__card:hover {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: scale(1.03);
    z-index: 2;
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    box-shadow:
      0 16px 48px color-mix(in srgb, var(--secondStyleColor) 16%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* Holographic shine sweep on hover */
  .rv18__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 30%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 45%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 55%,
      transparent 70%
    );
    background-size: 250% 100%;
    background-position: 200% 0;
    pointer-events: none;
    transition: background-position 0.8s ease;
  }

  .rv18__card:hover .rv18__shine {
    background-position: -50% 0;
  }

  /* Quote icon (featured card) */
  .rv18__quote-icon {
    font-size: 28px;
    color: var(--secondStyleColor);
    opacity: 0.3;
  }

  /* Stars */
  .rv18__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  /* Text */
  .rv18__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
  }

  .rv18__text--large {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
  }

  /* Author */
  .rv18__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
  }

  .rv18__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  .rv18__avatar--lg {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .rv18__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .rv18__role {
    margin: 0;
    font-size: 12px;
    color: var(--textColor1);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv18__glow {
      animation: none !important;
    }
    .rv18__card {
      transition: none !important;
    }
    .rv18__shine {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv18__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .rv18__card--featured {
      grid-row: auto;
      grid-column: 1 / -1;
    }
    .rv18__card {
      padding: 24px 20px 20px;
    }
  }

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

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv18__grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv18__card--featured {
      grid-column: auto;
    }
    .rv18__card {
      padding: 22px 18px 20px;
    }
    /* Disable spotlight on mobile (no hover) */
    .rv18__grid:hover .rv18__card {
      opacity: 1;
      filter: none;
    }
    .rv18__grid:hover .rv18__card:hover {
      transform: none;
      box-shadow: none;
    }
  }


/*  */
  .vx-partners {
    color: var(--textColor1);
  }

  .vx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .vx-head {
    max-width: 560px;
  }

  .vx-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
  }

  .vx-copy {
    margin-top: 12px;
    opacity: 0.8;
    text-wrap: balance;
  }

  .vx-stage {
    position: relative;
    width: min(420px, 80vw);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
  }

  .vx-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--secondStyleColor);
    opacity: 0.5;
    animation: vx-rotate 18s linear infinite;
  }

  .vx-glow {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: radial-gradient(
      circle at 50% 40%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
    z-index: 0;
  }

  .vx-logoBox {
    position: relative;
    z-index: 1;
    width: min(260px, 65%);
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid var(--secondStyleColor);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .vx-logoBox:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  }

  .vx-logoBox img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

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

  @media (max-width: 800px) {
    .vx-shell {
      gap: 24px;
    }
    .vx-ring {
      display: 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;
    }
  }


/* ===== HOW v18 — Rotating border + spark icons ===== */

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

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

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

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

  .hw18__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* Card wrapper with animated border */
  .hw18__card {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 2px;
    overflow: hidden;
  }

  .hw18__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 12%,
      transparent 24%,
      transparent 100%
    );
    animation: hw18Rotate 5s linear infinite;
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .hw18__card:hover .hw18__border {
    opacity: 0.8;
  }

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

  .hw18__inner {
    position: relative;
    background: var(--bodyBG);
    border-radius: calc(var(--borderRadius) - 2px);
    padding: 32px 24px 28px;
    text-align: center;
    height: 100%;
  }

  /* Icon box with sparks */
  .hw18__icon-box {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hw18__icon-box i {
    font-size: 24px;
    color: var(--secondStyleColor);
    transition: transform 0.3s ease;
  }

  .hw18__card:hover .hw18__icon-box i {
    transform: rotate(-10deg) scale(1.15);
  }

  /* Sparks */
  .hw18__spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0;
  }

  .hw18__card:hover .hw18__spark {
    animation: hw18Spark 0.8s ease forwards;
  }

  .hw18__spark--1 {
    top: 4px;
    right: 8px;
    animation-delay: 0s;
  }

  .hw18__spark--2 {
    top: -2px;
    left: 14px;
    animation-delay: 0.15s;
  }

  .hw18__spark--3 {
    bottom: 2px;
    right: 2px;
    animation-delay: 0.3s;
  }

  .hw18__card:hover .hw18__spark--2 {
    animation-delay: 0.15s;
  }

  .hw18__card:hover .hw18__spark--3 {
    animation-delay: 0.3s;
  }

  @keyframes hw18Spark {
    0% {
      opacity: 0;
      transform: scale(0) translate(0, 0);
    }
    50% {
      opacity: 1;
      transform: scale(1.2) translate(-4px, -8px);
    }
    100% {
      opacity: 0;
      transform: scale(0.6) translate(-8px, -16px);
    }
  }

  .hw18__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hw18__inner h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw18__grid {
      gap: 18px;
    }

    .hw18__inner {
      padding: 26px 20px 24px;
    }

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

  @media (max-width: 800px) {
    .hw18__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
      margin: 0 auto;
    }
  }

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

    .hw18__head {
      margin-bottom: 36px;
    }

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

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

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

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

    .hw18__icon-box {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw18__icon-box i {
      font-size: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw18__border {
      animation: none;
      opacity: 0.2;
      background: var(--secondStyleColor);
    }
    .hw18__card:hover .hw18__spark {
      animation: none;
    }
    .hw18__icon-box i {
      transition: none;
    }
  }


.x9p {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;

    overflow: hidden;
    position: relative;

    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.1;
      filter: blur(15px);
    }
  }

  .i7a {
    font-size: 70px;
    color: var(--secondStyleColor);
    text-transform: uppercase;
    font-weight: 900;
  }

  .l3k {
    color: var(--textColor1);
    text-decoration: none;
    transition: text-shadow 300ms ease-in;
    text-shadow:
      0 2ex color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
      0 -2ex color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
      0 4ex color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
      0 -4ex color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
      0 6ex color-mix(in srgb, var(--secondStyleColor) 7.5%, transparent),
      0 -6ex color-mix(in srgb, var(--secondStyleColor) 7.5%, transparent);
  }

  @media (max-width: 800px) {
    .i7a {
      font-size: 24px;
    }
    .x9p {
      min-height: 200px;
    }
  }


:root {
    --images-amount: 6;
    --highlight: var(--secondStyleColor);
    --border-a: rgba(247, 176, 91, 0.16);
    --border-b: rgba(247, 147, 76, 0.16);
    --transition-duration: 620ms;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
  }

  .gallery {
    position: relative;
    width: 80%;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5em;
    padding: 10px;
    overflow: hidden;
    user-select: none;
  }

  #gallery .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .gallery-header {
    text-align: center;
    margin-bottom: 40px;
    && p {
      text-align: center;
      margin: 0 auto;
      text-wrap: balance;
    }
  }

  .gallery__image-wrapper {
    position: relative;
    cursor: pointer;
    padding-top: 75%;
    width: 100%;
    height: 0;
    transform-origin: 0 0;
    overflow: hidden;
    grid-row: span 2;
    grid-column: span 2;
    box-sizing: content-box;
    backface-visibility: hidden;
    perspective: 1px;
    transform: translate3d(0, 0, 1px);
    border-radius: var(--borderRadius);

    && img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: top;
    }
  }

  .gallery__image-wrapper::before,
  .gallery__image-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .gallery__image-wrapper::after {
    background: #000;
    opacity: 0.33;
    z-index: 1;
    transform: translate(0, 0);
    transition: all 500ms ease-out;
  }

  .gallery__image-wrapper::before {
    opacity: 0;
    z-index: 2;
    background: var(--secondStyleColor);
    transition: all 160ms ease-in;
    mix-blend-mode: hard-light;
  }

  .gallery__image-wrapper:hover:not(.gallery__image-wrapper--selected)::before {
    opacity: 0.32;
  }

  .gallery__image-wrapper:nth-child(1) {
    order: 2;
  }
  .gallery__image-wrapper:nth-child(2) {
    order: 4;
  }
  .gallery__image-wrapper:nth-child(3) {
    order: 6;
  }
  .gallery__image-wrapper:nth-child(4) {
    order: 8;
  }
  .gallery__image-wrapper:nth-child(5) {
    order: 10;
  }
  .gallery__image-wrapper:nth-child(6) {
    order: 12;
  }

  .gallery__image {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    border-radius: var(--borderRadius);
    width: auto;
    transform: translate(-50%, -50%);
    transition: all 320ms ease;
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected {
    grid-row: span 4;
    grid-column: span 4;
    z-index: 1;
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(
      odd
    )::after {
    transform: translate(0, 100%);
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(
      even
    )::after {
    transform: translate(100%, 0);
  }

  /* SCSS: &:nth-child(images-amount / 2) => 3 */
  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(3) {
    order: 3;
  }

  /* SCSS: &:nth-child(images-amount) => 6 */
  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(6) {
    order: 9;
  }

  /* ===== Mobile adaptive (paste at the end of your CSS) ===== */
  @media (max-width: 640px) {
    .gallery {
      width: 100%;
      max-width: 560px;
      gap: 0.35em;
      padding: 0.35em;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: none;
      grid-auto-rows: 1fr;
    }
    .gallery-header {
      margin-bottom: 20px;
    }

    .gallery__image-wrapper {
      grid-column: span 1;
      pointer-events: none;
      grid-row: span 1;
      padding-top: 78%;
    }

    /* выбранный элемент — на всю ширину */
    .gallery__image-wrapper.gallery__image-wrapper--selected {
      grid-column: 1 / -1;
      grid-row: span 2;
    }

    /* На мобиле лучше не мудрить с order — стабильно и предсказуемо */
    .gallery__image-wrapper {
      order: initial !important;
    }
    .gallery__image-wrapper.gallery__image-wrapper--selected {
      order: -1 !important; /* выбранная уедет вверх */
    }
  }

  /* Extra-small phones: 1 колонка */
  @media (max-width: 420px) {
    .gallery {
      grid-template-columns: 1fr;
    }

    .gallery__image-wrapper {
      grid-column: span 1;
      grid-row: span 1;
      padding-top: 75%;
    }

    .gallery__image-wrapper.gallery__image-wrapper--selected {
      grid-column: span 1;
      grid-row: span 1; /* чтобы не занимала слишком много */
    }
  }


/*  */
  .faq--timeline {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--timeline .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .faqEyebrow {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--secondStyleColor);
    font-size: 13px;
  }

  .faqHeader h2 {
    margin: 0 0 10px 0;
  }

  .faqIntro {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.9;
  }

  /* Two fixed columns prevent items from jumping between columns */
  .faqGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
  }

  .faqCol {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faqCard {
    position: relative;
    border-radius: calc(var(--borderRadius) * 0.8);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    overflow: hidden;
    transition:
      border-color 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease;
  }

  .faqCard::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--secondStyleColor);
    opacity: 0.35;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    transform: scaleY(0.4);
    transform-origin: top;
  }

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

  .faqCard.is-open::before {
    opacity: 0.9;
    transform: scaleY(1);
  }

  .faqQuestion {
    width: 100%;
    min-height: 80px;
    padding: 18px 18px 14px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--textColor1);
    text-align: left;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.35;
  }

  .faqQuestion:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .faqBadge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: var(--secondStyleColor);
    font-weight: 900;
    font-size: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  .faqAnswer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
  }

  .faqAnswer p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .faqCard.is-open .faqAnswer {
    opacity: 1;
    padding-bottom: 2px;
  }

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

  @media (max-width: 640px) {
    .faqQuestion {
      font-size: 17px;
      padding: 16px 16px 12px 16px;
    }

    .faqAnswer {
      padding: 0 16px;
    }
  }


/* ===== FOOTER ===== */

  .footer {
    background: #181818;
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

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

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: #bcbcbc;
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9a9a9a;
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }