: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 shell ===== */
  .z9q-heroBox {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 24px);
    background:
      radial-gradient(
        900px 450px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
        transparent 55%
      ),
      radial-gradient(
        700px 380px at 75% 30%,
        color-mix(in srgb, var(--secondStyleColor) 30%, transparent),
        transparent 55%
      ),
      radial-gradient(
        500px 380px at 55% 95%,
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        color-mix(in srgb, var(--textColor2) 10%, transparent) 15%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
      );

    display: flex;
    align-items: center;
    width: 100%;
    isolation: isolate;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      opacity: 0.1;
      z-index: -1;
      inset: 0;
    }
  }

  .z9q-heroBox::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--borderRadius);
    pointer-events: none;
  }

  /* left/right striped “curtains” */
  .k2p-curtain,
  .k2p-curtain2 {
    position: absolute;
    top: -40px;
    bottom: -60px;
    width: 34%;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
  }

  .k2p-curtain {
    left: -8%;
    transform: skewX(-12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(60% 70% at 65% 50%, #000 60%, transparent 100%);
  }

  .k2p-curtain2 {
    right: -10%;
    transform: skewX(12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(65% 70% at 35% 55%, #000 60%, transparent 100%);
  }

  /* subtle diagonal lines behind */
  .p7x-gridwash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 45%),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0 1px,
        transparent 1px 18px
      );
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }

  /* ===== main layout ===== */
  .n0v-stage {
    position: relative;
    z-index: 2;
  }

  .t5q-centerCopy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .x8h-title {
    color: var(--textColor1);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .g7p-sub {
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto;
  }

  .j3c-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--textColor1);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.2s all linear;
    width: fit-content;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  /* ===== responsive rules ===== */
  @media (max-width: 780px) {
    .z9q-heroBox {
      min-height: 550px;
    }
    .t5q-centerCopy {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin: 10px auto 12px;
      padding: 0 6px;
    }

    .k2p-curtain,
    .k2p-curtain2 {
      opacity: 0.55;
      width: 46%;
    }
  }


:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }

  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    margin: 0 !important;
    text-align: center;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: color-mix(in srgb, var(--textColor1) 6%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    overflow: hidden;
  }

  .toc a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scaleX(1);
  }

  .toc a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent 70%
    );
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .toc a:hover::after,
  .toc a:focus::after {
    opacity: 1;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    transform: translateY(-2px);
  }

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

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::before,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }

    .toc a:hover {
      transform: none;
    }
  }


/* ===== TESTIMONIALS SECTION ===== */

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

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

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

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

  .testimonialsTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

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

  /* Card */
  .testimonialCard {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 26px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.2s ease;
    overflow: hidden;
  }

  .testimonialCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

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

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

  /* Quote icon */
  .testimonialQuoteIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  /* Text + meta */
  .testimonialText {
    font-size: 14px;
    line-height: 1.7;
    color: #e0e0e0;
    flex: 1;
  }

  .testimonialMeta {
    margin-top: 6px;
  }

  .testimonialName {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .testimonialRole {
    font-size: 13px;
    color: #b0b0b0;
  }

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

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

    .testimonialCard {
      padding: 22px 18px;
    }
  }


/* ===== ABOUT v15 — Hero image with overlay + SVG hatch bg + feature row ===== */

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

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

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

  /* Hero */
  .ab15__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.4);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 50px;
  }

  .ab15__hero-img {
    position: absolute;
    inset: 0;
  }

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

  .ab15__hero:hover .ab15__hero-img img {
    transform: scale(1.03);
  }

  .ab15__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 48px);
    gap: 10px;
  }

  .ab15__kicker {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ab15__hero h2 {
    margin: 0;
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 600px;
    line-height: 1.15;
    color: #fff;
  }

  /* Body */
  .ab15__body {
    max-width: 960px;
    margin: 0 auto;
  }

  .ab15__desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
    max-width: 680px;
    margin: 0 auto 48px;
  }

  /* Feature row */
  .ab15__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .ab15__feat {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .ab15__feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
  }

  .ab15__feat:hover .ab15__feat-ico {
    transform: scale(1.12);
  }

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

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

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

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

    .ab15__hero {
      aspect-ratio: 16 / 9;
    }
  }

  @media (max-width: 800px) {
    .ab15__hero h2 {
      font-size: 22px;
    }

    .ab15__desc {
      font-size: 14px;
    }

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

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

    .ab15__hero {
      aspect-ratio: 16 / 10;
      margin-bottom: 36px;
    }

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

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

  @media (prefers-reduced-motion: reduce) {
    .ab15__hero-img img,
    .ab15__feat,
    .ab15__feat-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;
    }
  }


/* ===== PARTNERS v9 — Minimal full-width strip ===== */

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

  .pt9__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    padding: clamp(40px, 5vw, 70px) 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  }

  .pt9__inner {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
  }

  .pt9__text {
    flex: 1;
  }

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

  .pt9__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 480px;
  }

  /* Vertical divider */
  .pt9__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
      180deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
    flex-shrink: 0;
  }

  /* Logo */
  .pt9__logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 36px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

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

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

  /* Responsive */
  @media (max-width: 800px) {
    .pt9__inner {
      flex-direction: column;
      text-align: center;
    }

    .pt9__divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        var(--secondStyleColor),
        transparent
      );
    }

    .pt9__text p {
      max-width: 100%;
    }

    .pt9__logo-box {
      padding: 20px 30px;
    }

    .pt9__logo-box img {
      max-width: 170px;
    }
  }

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

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

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

    .pt9__logo-box {
      padding: 18px 24px;
    }

    .pt9__logo-box img {
      max-width: 140px;
      max-height: 50px;
    }
  }

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


/* ===== SOMETHING v15 — Coming soon countdown with SVG grid bg + image ===== */

  .sm15 {
    position: relative;
    padding: clamp(80px, 9vw, 130px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .sm15__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .sm15__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
  }

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

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

  .sm15__block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

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

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

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

  /* Timer */
  .sm15__timer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0;
  }

  .sm15__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sm15__box {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sm15__box span {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--secondStyleColor);
    font-variant-numeric: tabular-nums;
  }

  .sm15__box--pulse {
    animation: sm15Pulse 1s ease-in-out infinite alternate;
  }

  @keyframes sm15Pulse {
    0% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 16%,
        transparent
      );
    }
    100% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 50%,
        transparent
      );
    }
  }

  .sm15__unit small {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }

  .sm15__sep {
    font-size: 32px;
    font-weight: 700;
    color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    line-height: clamp(60px, 10vw, 80px);
  }

  /* Actions */
  .sm15__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
  }

  .sm15__btn {
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

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

  .sm15__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .sm15__link i {
    font-size: 12px;
    transition: transform 0.2s ease;
  }

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

  /* Responsive */
  @media (max-width: 800px) {
    .sm15__block h2 {
      font-size: 28px;
    }
  }

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

    .sm15__timer {
      gap: 4px;
    }

    .sm15__sep {
      font-size: 24px;
    }

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

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

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

    .sm15__btn,
    .sm15__link,
    .sm15__link i {
      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;
    }
  }


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

  /* ── Background Glows ── */
  .gl12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.12;
    will-change: transform;
  }

  .gl12__glow--a {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    top: -120px;
    left: -100px;
    animation: gl12-float-a 16s ease-in-out infinite;
  }

  .gl12__glow--b {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    bottom: -80px;
    right: -60px;
    animation: gl12-float-b 20s ease-in-out infinite;
  }

  @keyframes gl12-float-a {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(60px, 40px);
    }
  }

  @keyframes gl12-float-b {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(-50px, -30px);
    }
  }

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

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

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

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

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

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

  /* ── Grid ── */
  .gl12__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }

  .gl12__item--tall {
    grid-row: span 2;
  }

  .gl12__item--wide {
    grid-column: span 2;
  }

  /* ── Item ── */
  .gl12__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
  }

  /* ── Animated Border ── */
  .gl12__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 3;
    pointer-events: none;
    padding: 1.5px;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background: conic-gradient(
      from var(--gl12-border-angle, 0deg),
      transparent 0%,
      transparent 25%,
      var(--secondStyleColor) 50%,
      transparent 75%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gl12-spin 4s linear infinite;
  }

  .gl12__item:hover .gl12__border {
    opacity: 1;
  }

  @keyframes gl12-spin {
    to {
      --gl12-border-angle: 360deg;
    }
  }

  @property --gl12-border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  /* ── Image ── */
  .gl12__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

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

  .gl12__item:hover .gl12__img-wrap img {
    transform: scale(1.08);
  }

  /* ── Overlay ── */
  .gl12__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
      to top,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 40%, transparent) 40%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl12__item:hover .gl12__overlay {
    opacity: 1;
  }

  .gl12__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 100px;
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: transform 0.4s 0.05s ease;
  }

  .gl12__item:hover .gl12__tag {
    transform: translateY(0);
  }

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

  .gl12__item:hover .gl12__overlay h3 {
    transform: translateY(0);
  }

  .gl12__overlay p {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.4s 0.15s ease;
  }

  .gl12__item:hover .gl12__overlay p {
    transform: translateY(0);
  }

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

  .gl12__item:hover::after {
    border-color: transparent;
  }

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

    .gl12__grid {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 200px;
    }

    .gl12__item--wide {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .gl12__grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 200px;
      gap: 12px;
    }

    .gl12__item--tall {
      grid-row: span 2;
    }

    .gl12__item--wide {
      grid-column: span 2;
    }
  }

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

    .gl12__grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }

    .gl12__item--tall,
    .gl12__item--wide {
      grid-row: span 1;
      grid-column: span 1;
    }

    .gl12__overlay {
      opacity: 1;
    }

    .gl12__tag,
    .gl12__overlay h3,
    .gl12__overlay p {
      transform: translateY(0);
    }

    .gl12__head {
      margin-bottom: 40px;
    }

    .gl12__glow {
      display: none;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .gl12__border {
      animation: none;
    }

    .gl12__glow {
      animation: none;
    }

    .gl12__img-wrap img {
      transition: none;
    }

    .gl12__overlay,
    .gl12__tag,
    .gl12__overlay h3,
    .gl12__overlay p {
      transition: none;
    }
  }


/* ===== ROADMAP v10 — Full-width strips + SVG dashed connector + glow ===== */

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

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

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

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

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

  /* Timeline */
  .rm10__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* SVG connector */
  .rm10__connector {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 0;
  }

  .rm10__connector-svg {
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .rm10__connector-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 50px;
    margin-left: -3px;
    background: var(--secondStyleColor);
    border-radius: 6px;
    filter: blur(5px);
    opacity: 0.5;
    animation: rm10Travel 4.5s ease-in-out infinite;
  }

  @keyframes rm10Travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: calc(100% - 50px); opacity: 0; }
  }

  /* Strip */
  .rm10__strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .rm10__strip:last-child {
    border-bottom: none;
  }

  /* Marker column */
  .rm10__strip-marker {
    display: flex;
    justify-content: center;
    padding-top: 28px;
  }

  .rm10__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm10__dot--pulse {
    animation: rm10DotPulse 2s ease-in-out infinite;
  }

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

  .rm10__dot--empty {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

  /* Content area */
  .rm10__strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 20px 26px 16px;
    transition: background 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-content {
    background: rgba(255, 255, 255, 0.015);
  }

  .rm10__strip--active .rm10__strip-content {
    background: color-mix(in srgb, var(--secondStyleColor) 3%, transparent);
  }

  .rm10__strip-left {
    flex: 1;
  }

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

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

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

  .rm10__strip-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .rm10__strip-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-ico {
    transform: scale(1.1);
  }

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

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

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .rm10__strip-left h3 {
      font-size: 17px;
    }
  }

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

    .rm10__strip-right {
      flex-direction: row;
      gap: 12px;
    }

    .rm10__strip-left p {
      font-size: 13px;
    }

    .rm10__strip-ico {
      width: 40px;
      height: 40px;
    }

    .rm10__strip-ico i {
      font-size: 16px;
    }
  }

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

    .rm10__head {
      margin-bottom: 36px;
    }

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

    .rm10__strip {
      grid-template-columns: 40px 1fr;
    }

    .rm10__connector {
      left: 18px;
    }

    .rm10__strip-content {
      padding: 20px 12px 20px 10px;
    }

    .rm10__strip-left h3 {
      font-size: 16px;
    }
  }

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

    .rm10__dot--pulse {
      animation: none;
    }

    .rm10__strip-content,
    .rm10__strip-ico {
      transition: none;
    }
  }


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

  .faq--builder .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }

  .faqContent {
    width: 100%;
  }

  .faqContent h2 {
    margin: 0 0 12px 0;
  }

  .faqLead {
    margin: 0 0 28px 0;
    color: var(--textColor1);
    opacity: 0.9;
    max-width: 70ch;
  }

  .containerFAQ {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accord__item {
    border: 1px dotted
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    border-radius: calc(var(--borderRadius) * 0.75);
    overflow: clip;
    transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
  }

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

  .accord__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
  }

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

  .accord__title {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.35;
  }

  .accord__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

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

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

  .accord__panel.show {
    opacity: 1;
    padding-top: 2px;
  }

  .faqImageWrap {
    display: block;
    height: 100%;
  }

  .faqImagePlaceholder {
    width: 100%;
    height: 785px;
    min-height: 320px;
    border-radius: var(--borderRadius);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 65%, transparent);
    background:
      radial-gradient(
        120% 120% at 100% 0%,
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 0%,
        transparent 55%
      ),
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 12%, transparent),
        transparent 60%
      );
    padding: 12px;
  }

  .faqImagePlaceholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: var(--borderRadius);
  }

  @media (max-width: 980px) {
    .faq--builder .container {
      grid-template-columns: 1fr;
      && h2 {
        text-align: center;
      }
    }

    .faqImageWrap {
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .accord__trigger {
      padding: 16px 16px;
    }

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }


.site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

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

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #e5e7eb;
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

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

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      align-items: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }