: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: var(--bodyBG);
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

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

  /* layout */

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

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

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

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

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

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

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

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

  /* ссылки */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile__menu {
    display: none;
  }

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

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

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

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

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

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

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

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

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

    header .btn {
      display: none;
    }
  }

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

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

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


/* ===== HERO v27 — Layered animated waves background ===== */

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

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

  .hr28__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
  }

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

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

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

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

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

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

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

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

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

  .hr28__btn--fill {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
  }

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

  .hr28__btn--fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hr28__btn--fill:hover i {
    transform: translateX(3px);
  }

  .hr28__btn--glass {
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    color: var(--textColor1);
    background: color-mix(in srgb, var(--bodyBG) 30%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

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

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

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

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

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

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

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

    .hr28__btn {
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hr28__waves * {
      animation: none !important;
    }

    .hr28__btn,
    .hr28__btn--fill i {
      transition: none;
    }
  }


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

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

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

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

  .toc {
    background-color: transparent;
  }

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

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    transform: scaleX(1);
  }

  .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::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }


/* ===== FEATURES v13 — Split layout with progress bars ===== */

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

  .ft13__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
  }

  /* Left */
  .ft13__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
  }

  .ft13__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ft13__left h2 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

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

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

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

  /* Right — list */
  .ft13__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ft13__item {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
  }

  .ft13__item:first-child {
    padding-top: 0;
  }

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

  .ft13__num {
    grid-row: 1 / 3;
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.25;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
  }

  .ft13__item:hover .ft13__num {
    opacity: 0.6;
  }

  .ft13__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
  }

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

  /* Progress bar */
  .ft13__bar {
    grid-column: 2;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 12px;
    overflow: hidden;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft13__left {
      position: static;
    }
  }

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

    .ft13__left {
      text-align: center;
      align-items: center;
    }

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

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

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

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

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

    .ft13__item {
      grid-template-columns: 40px 1fr;
      padding: 18px 0;
    }

    .ft13__num {
      font-size: 22px;
    }

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

  @media (prefers-reduced-motion: reduce) {
    .ft13__btn,
    .ft13__num,
    .ft13__fill {
      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;
    }
  }


/* ===========================
     Reviews 17 — Constellation Network
     Animated SVG mesh background + rotating gradient card borders
     =========================== */

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

  .rv17 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background:
      radial-gradient(
        1200px 700px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 60%
      ),
      radial-gradient(
        1000px 600px at 80% 80%,
        color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
        transparent 65%
      ),
      var(--bodyBG);
  }

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

  /* Header */
  .rv17__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;
  }

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

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

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

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

  /* Card — wrapper for rotating border */
  .rv17__card {
    position: relative;
    border-radius: var(--borderRadius);
  }

  /* Rotating conic-gradient border */
  .rv17__border {
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    padding: 1.5px;
    background: conic-gradient(
      from var(--rv17-angle),
      transparent 0%,
      var(--secondStyleColor) 6%,
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent) 14%,
      transparent 26%
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .rv17__card:hover .rv17__border {
    opacity: 1;
    animation: rv17-rotate 4s linear infinite;
  }

  @keyframes rv17-rotate {
    to {
      --rv17-angle: 360deg;
    }
  }

  /* Card inner content */
  .rv17__inner {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 78%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    transition:
      border-color 0.4s ease,
      box-shadow 0.4s ease,
      transform 0.4s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .rv17__card:hover .rv17__inner {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow:
      0 10px 36px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

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

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

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

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

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

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

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv17__bg * {
      animation: none !important;
    }
    .rv17__border {
      animation: none !important;
    }
    .rv17__inner {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv17__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .rv17__inner {
      padding: 24px 20px 20px;
    }
  }

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

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv17__grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv17__inner {
      padding: 22px 18px 20px;
    }
  }


/* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

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

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

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

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

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

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

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

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

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

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

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

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

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

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

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

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

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

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

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

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

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

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      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 v9 — Stats with SVG ring progress + dot grid bg ===== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .sm9__value {
      font-size: 20px;
    }

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

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

    .sm9__head {
      margin-bottom: 36px;
    }

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

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

    .sm9__item {
      padding: 22px 12px;
    }

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

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

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

    .sm9__item {
      transition: none;
    }
  }


#gallery > .container {
    display: flex;
    flex-direction: column;
  }
  .headGallery {
    margin-bottom: 45px;
  }
  .gal-cardsWrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .card-g img {
    height: 220px;
    object-fit: cover;
    object-position: top;
  }
  .card-g {
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-direction: column;
    transition: 0.3s all linear;
  }
  @media (hover: hover) and (pointer: fine) {
    .card-g:hover {
      border: 1px solid var(--secondStyleColor);
      transform: translateY(-5px);
    }
  }
  .carg-g-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    span {
      color: var(--secondStyleColor);
      font-size: 20px;
    }
  }

  @media (max-width: 800px) {
    .gal-cardsWrapper {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .card-g {
      border: 1px solid var(--secondStyleColor);
    }
    .headGallery {
      margin-bottom: 30px;
    }
  }


/* ===========================
     FAQ 12 — Aurora Cascade
     Staggered glass grid + animated SVG waves + shimmer accents
     =========================== */

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

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

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

  .faq12__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -100px;
    right: -80px;
    animation: faq12-drift1 28s ease-in-out infinite;
  }

  .faq12__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
    animation: faq12-drift2 33s ease-in-out infinite;
  }

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

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

  /* Header */
  .faq12__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;
  }

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

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

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

  /* Grid — two columns, right column offset for cascade effect */
  .faq12__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq12__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .faq12__col--offset {
    padding-top: 52px;
  }

  /* Card */
  .faq12__card {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    overflow: hidden;
    transition:
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.45s ease;
    animation: faq12-float 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq12__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow:
      0 12px 40px color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    animation-play-state: paused;
  }

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

  /* Shimmer accent line at top of card */
  .faq12__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 30%,
      var(--secondStyleColor) 50%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: faq12-shimmer 4s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }

  .faq12__card:hover .faq12__accent {
    opacity: 1;
  }

  @keyframes faq12-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Number badge */
  .faq12__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    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);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    margin-bottom: 18px;
    animation: faq12-breathe 3.5s ease-in-out infinite;
  }

  @keyframes faq12-breathe {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 18px 4px
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    }
  }

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

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

  .faq12__card:hover .faq12__answer {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq12__bg * {
      animation: none !important;
    }
    .faq12__glow {
      animation: none !important;
    }
    .faq12__card {
      animation: none !important;
    }
    .faq12__accent {
      animation: none !important;
    }
    .faq12__num {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq12__grid {
      gap: 18px;
    }
    .faq12__col--offset {
      padding-top: 36px;
    }
    .faq12__card {
      padding: 24px 22px 22px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq12__grid {
      grid-template-columns: 1fr;
      max-width: 560px;
    }
    .faq12__col--offset {
      padding-top: 0;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq12__card {
      padding: 22px 18px 20px;
    }
    .faq12__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      margin-bottom: 14px;
    }
  }


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