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


/* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }


/* ── Section ── */
  .hr29 {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

  /* ── Gradient Mesh Blobs ── */
  .hr29__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hr29__blob {
    position: absolute;
    border-radius: 50%;
    background: var(--secondStyleColor);
    will-change: transform;
    contain: layout paint;
  }

  .hr29__blob--a {
    width: 550px;
    height: 550px;
    top: -15%;
    left: -10%;
    opacity: 0.25;
    filter: blur(100px);
    animation: hr29-dA 22s ease-in-out infinite;
  }

  .hr29__blob--b {
    width: 420px;
    height: 420px;
    top: -5%;
    right: -8%;
    opacity: 0.2;
    filter: blur(90px) hue-rotate(45deg);
    animation: hr29-dB 26s ease-in-out infinite;
  }

  .hr29__blob--c {
    width: 480px;
    height: 480px;
    bottom: -20%;
    left: 30%;
    opacity: 0.22;
    filter: blur(110px) hue-rotate(-40deg);
    animation: hr29-dC 20s ease-in-out infinite;
  }

  .hr29__blob--d {
    width: 320px;
    height: 320px;
    top: 35%;
    right: 15%;
    opacity: 0.28;
    filter: blur(80px) hue-rotate(90deg);
    animation: hr29-dD 18s ease-in-out infinite;
  }

  .hr29__blob--e {
    width: 380px;
    height: 380px;
    bottom: -10%;
    left: -5%;
    opacity: 0.18;
    filter: blur(95px) hue-rotate(160deg);
    animation: hr29-dE 28s ease-in-out infinite;
  }

  @keyframes hr29-dA {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(80px, 60px) scale(1.08);
    }
    50% {
      transform: translate(40px, 120px) scale(0.95);
    }
    75% {
      transform: translate(-30px, 70px) scale(1.04);
    }
  }

  @keyframes hr29-dB {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-70px, 50px) scale(0.92);
    }
    50% {
      transform: translate(-110px, -20px) scale(1.1);
    }
    75% {
      transform: translate(30px, -50px) scale(1);
    }
  }

  @keyframes hr29-dC {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, -80px) scale(1.06);
    }
    66% {
      transform: translate(-50px, -40px) scale(0.94);
    }
  }

  @keyframes hr29-dD {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-40px, 30px) scale(1.12);
    }
    50% {
      transform: translate(20px, -50px) scale(0.88);
    }
    75% {
      transform: translate(50px, 20px) scale(1.05);
    }
  }

  @keyframes hr29-dE {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    30% {
      transform: translate(90px, -30px) scale(1.1);
    }
    60% {
      transform: translate(50px, 50px) scale(0.9);
    }
  }

  /* ── Dot Grid Overlay ── */
  .hr29__dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(
      circle,
      color-mix(in srgb, var(--textColor1) 6%, transparent) 1px,
      transparent 1px
    );
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* ── Floating SVG UI Shapes ── */
  .hr29__shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr29__sh {
    animation: hr29-fade 8s ease-in-out infinite;
  }

  .hr29__sh:nth-child(2) {
    animation-duration: 6s;
    animation-delay: -2s;
  }
  .hr29__sh:nth-child(3) {
    animation-duration: 10s;
    animation-delay: -4s;
  }
  .hr29__sh:nth-child(4) {
    animation-duration: 7s;
    animation-delay: -1s;
  }
  .hr29__sh:nth-child(5) {
    animation-duration: 9s;
    animation-delay: -6s;
  }
  .hr29__sh:nth-child(6) {
    animation-duration: 11s;
    animation-delay: -3s;
  }

  @keyframes hr29-fade {
    0%,
    100% {
      opacity: 0.08;
    }
    50% {
      opacity: 0.16;
    }
  }

  .hr29__sh rect,
  .hr29__sh circle,
  .hr29__sh line,
  .hr29__sh polygon {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 1.5;
  }

  /* ── Center Glow ── */
  .hr29__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 700px;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--bodyBG) 70%, transparent) 0%,
        transparent 70%
      );
    z-index: 3;
    pointer-events: none;
  }

  /* ── Content ── */
  .hr29 .container {
    position: relative;
    max-width: var(--maxWidthContainer);
    width: 100%;
    z-index: 5;
  }

  .hr29__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hr29__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

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

  .hr29__content h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .hr29__sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
  }

  /* ── Buttons ── */
  .hr29__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hr29__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .hr29__btn--fill {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

  .hr29__btn--fill:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

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

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

  .hr29__btn--line {
    background: transparent;
    color: var(--textColor1);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
  }

  .hr29__btn--line:hover {
    border-color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    transform: translateY(-2px);
  }

  .hr29__btn--line i {
    font-size: 11px;
  }

  /* ── Stats ── */
  .hr29__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .hr29__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hr29__stat strong {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--textColor1);
  }

  .hr29__stat span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .hr29__stat-sep {
    width: 1px;
    height: 36px;
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .hr29 {
      padding: 80px 20px;
    }
    .hr29__blob--a {
      width: 400px;
      height: 400px;
    }
    .hr29__blob--b {
      width: 320px;
      height: 320px;
    }
    .hr29__blob--c {
      width: 380px;
      height: 380px;
    }
    .hr29__blob--d {
      width: 250px;
      height: 250px;
    }
    .hr29__blob--e {
      width: 300px;
      height: 300px;
    }
  }

  @media (max-width: 800px) {
    .hr29__glow {
      width: 600px;
      height: 500px;
    }
  }

  @media (max-width: 600px) {
    .hr29 {
      padding: 60px 16px;
      min-height: 700px;
    }
    .hr29__kicker {
      font-size: 11px;
      padding: 6px 14px;
    }
    .hr29__actions {
      flex-direction: column;
      gap: 12px;
    }
    .hr29__btn {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
    }
    .hr29__stats {
      gap: 20px;
    }
    .hr29__stat-sep {
      height: 28px;
    }
    .hr29__stat strong {
      font-size: 22px;
    }
    .hr29__shapes {
      display: none;
    }
    .hr29__dots {
      background-size: 24px 24px;
    }
    .hr29__glow {
      width: 100%;
      height: 100%;
    }
  }

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


:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

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

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

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--secondStyleColor);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }


/*  */
  .cefjhead {
    margin-bottom: 40px;
  }

  .kdm42 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }

  /* base */
  .p1a7e {
    padding: 28px;
    color: #222;
    border: 1px solid var(--secondStyleColor);
  }

  .p1a7e h3 {
    margin: 0 0 10px;
    font-size: 18px;
  }

  .p1a7e p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  /* row 1 */
  .g3 {
    grid-column: span 4;
    color: var(--textColor1);
    /* background: #e6e6e6;s */
  }
  .g4 {
    grid-column: span 4;
    /* background: #bdbdbd; */
    color: var(--textColor1);
  }
  .g5 {
    grid-column: span 4;
    /* background: #6d6d6d; */
    color: var(--textColor1);
  }

  /* row 2 */
  .g6 {
    grid-column: span 6;
    color: var(--textColor1);
  }
  .g7 {
    grid-column: span 6;
    color: var(--textColor1);
  }

  /* row 3 */
  .g8 {
    grid-column: span 3;
    /* background: #b5651d; */
    color: var(--textColor1);
  }
  .g9 {
    grid-column: span 3;
    /* background: #1f87b4; */
    color: var(--textColor1);
  }
  .g10 {
    grid-column: span 3;
    color: var(--textColor1);
  }
  .g11 {
    grid-column: span 3;
    /* background: #9aa22f; */
    color: #fff;
  }

  /* buttons */
  .g6 a,
  .g7 a {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--borderRadius);
  }

  .g6 a {
    background: var(--secondStyleColor);
    color: var(--textColor1);
  }
  .g7 a {
    background: var(--secondStyleColor);
    color: var(--textColor1);
  }

  /* mobile */
  @media (max-width: 900px) {
    .cefjhead {
      margin-bottom: 20px;
    }
    .kdm42 {
      grid-template-columns: 1fr;
    }
    .g3,
    .g4,
    .g5,
    .g6,
    .g7,
    .g8,
    .g9,
    .g10,
    .g11 {
      grid-column: span 1;
    }
  }


.partners {
    position: relative;
  }

  .partners::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background-color: var(--secondStyleColor);
    opacity: 0.1;
  }

  .partners__container {
    text-align: center;
  }
  .partnersHead {
    margin-bottom: 45px;
  }

  .partners__title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--textColor1);
  }

  .partners__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    padding-bottom: 0;
    gap: 30px;
  }

  .partners__logo-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s all linear;
    img {
      height: 50%;
    }
  }

  .partners__logo-wrapper a:hover {
    transform: scale(1.05);
  }

  .partners__logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }
  @media (max-width: 800px) {
    .partners__logo-wrapper {
      flex-direction: column;
    }
    .partners__logo-wrapper a {
      width: 100%;
    }
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .rv15__head {
      margin-bottom: 36px;
    }

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

    .rv15__featured {
      padding: 24px;
    }

    .rv15__quote {
      font-size: 16px;
    }

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

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


/* ===== FEATURES v9 — Bento grid with hero card ===== */

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

  .ft9__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .ft9__kicker {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

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

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

  /* Bento grid */
  .ft9__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Hero card spans 1 col, 2 rows */
  .ft9__card--hero {
    grid-row: 1 / 3;
  }

  /* Wide card spans full width */
  .ft9__card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .ft9__wide-body {
    flex: 1;
  }

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

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

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

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

  /* Hero card BG — orbiting circles */
  .ft9__card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .ft9__orbit {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 220px;
    height: 220px;
  }

  .ft9__orbit span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .ft9__orbit span:nth-child(1) {
    inset: 0;
    animation: ft9Spin 14s linear infinite;
  }

  .ft9__orbit span:nth-child(2) {
    inset: 20%;
    animation: ft9Spin 20s linear infinite reverse;
  }

  .ft9__orbit span:nth-child(3) {
    inset: 40%;
    animation: ft9Spin 28s linear infinite;
  }

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

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

  .ft9__card:hover .ft9__icon {
    transform: rotate(-6deg) scale(1.08);
  }

  .ft9__icon i {
    font-size: 20px;
    color: var(--secondStyleColor);
    filter: drop-shadow(0 3px 8px color-mix(in srgb, var(--secondStyleColor) 35%, transparent));
  }

  .ft9__icon--lg {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .ft9__icon--lg i {
    font-size: 26px;
  }

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

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

  /* Chips inside hero card */
  .ft9__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 18px;
  }

  .ft9__chips span {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    font-size: 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    transition: border-color 0.3s ease, color 0.3s ease;
  }

  .ft9__card--hero:hover .ft9__chips span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
    color: var(--secondStyleColor);
  }

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

    .ft9__card--hero {
      grid-row: auto;
      grid-column: 1 / -1;
    }

    .ft9__card--wide {
      grid-column: 1 / -1;
    }
  }

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

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

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

    .ft9__card--wide {
      flex-direction: column;
    }

    .ft9__icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
    }

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

    .ft9__icon--lg {
      width: 52px;
      height: 52px;
    }

    .ft9__icon--lg i {
      font-size: 22px;
    }
  }

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

    .ft9__head {
      margin-bottom: 36px;
    }

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

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

    .ft9__card--hero {
      grid-column: auto;
    }

    .ft9__card--wide {
      grid-column: auto;
    }

    .ft9__card {
      padding: 22px 18px;
    }

    .ft9__chips span {
      font-size: 11px;
      padding: 4px 10px;
    }

    .ft9__orbit {
      width: 160px;
      height: 160px;
      right: -20px;
      bottom: -20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft9__orbit span {
      animation: none;
    }
    .ft9__card,
    .ft9__icon,
    .ft9__chips span {
      transition: none;
    }
  }


.rmStairs {
    --shadowA: 0 24px 60px rgba(15, 20, 35, 0.14);
    --shadowB: 0 10px 22px rgba(15, 20, 35, 0.1);
    --cardH: 118px;
    --numW: 130px;
    --gapY: 18px;

    background: radial-gradient(
      1200px 540px at 35% 0%,
      #f7f9fb 0%,
      var(--bg) 55%,
      #e9edf2 100%
    );
    padding: 70px 20px 80px;
    overflow: hidden;
    color: var(--ink);
    font-family:
      ui-sans-serif,
      system-ui,
      -apple-system,
      Segoe UI,
      Roboto,
      Arial,
      "Apple Color Emoji",
      "Segoe UI Emoji";
  }

  .rmStairs__head {
    margin-bottom: 40px;
  }
  .rmStairs__eyebrow {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--textColor1);
    margin-bottom: 8px;
  }
  .rmStairs__title {
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.08;
    margin: 0;
  }

  .rmStairs__stack {
    position: relative;
    min-height: 520px;
  }

  /* faint “stage” */
  .rmStairs__stack::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 4%;
    top: 10px;
    height: 20px;
    border-radius: 999px;
    background: radial-gradient(
      closest-side,
      rgba(0, 0, 0, 0.1),
      transparent 70%
    );
    filter: blur(1px);
    opacity: 0.35;
  }

  .rmStep {
    position: absolute;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: var(--numW) 1fr;
    align-items: center;
    gap: 0;
    transform-origin: left center;
    will-change: transform, filter;
    animation: rmFloat 7.5s ease-in-out infinite;
  }

  /* stair positions (match screenshot layout) */
  .rmStep--1 {
    top: 358px;
    left: 0;
    right: 0;
    animation-delay: -1.2s;
  }
  .rmStep--2 {
    top: 248px;
    left: 60px;
    right: 0;
    animation-delay: -2.4s;
  }
  .rmStep--3 {
    top: 140px;
    left: 120px;
    right: 0;
    animation-delay: -3.6s;
  }
  .rmStep--4 {
    top: 32px;
    left: 180px;
    right: 0;
    animation-delay: -4.8s;
  }

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

  .rmStep__num {
    height: var(--cardH);
    border-radius: 10px;
    position: relative;
    display: grid;
    place-items: center;
    box-shadow: var(--shadowB);
    overflow: hidden;
  }

  /* little dark “tab” on top-right like in screenshot */
  .rmStep__num::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 34px;
    border-bottom-left-radius: 9px;
    background: rgba(25, 30, 40, 0.72);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .rmStep__n {
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: 44px;
    line-height: 1;
  }

  .rmStep__card {
    position: relative;
    height: var(--cardH);
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    border-radius: 10px;
    box-shadow: var(--shadowA);
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    padding: 0 22px 0 16px;
    overflow: hidden;
    isolation: isolate;
  }

  /* card subtle bevel */
  .rmStep__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    pointer-events: none;
    z-index: 0;
  }

  /* spotlight that follows cursor (JS updates vars) */
  .rmStep__card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    background: radial-gradient(
      280px 180px at var(--mx, 70%) var(--my, 50%),
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.3) 34%,
      rgba(255, 255, 255, 0) 62%
    );
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
    z-index: 0;
  }

  .rmStep__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: rgba(28, 35, 48, 0.55);
    position: relative;
    z-index: 2;
  }
  .rmStep__icon svg {
    width: 30px;
    height: 30px;
  }

  .rmStep__content {
    position: relative;
    z-index: 2;
  }
  .rmStep__h {
    margin: 0 0 6px;
    letter-spacing: 0.06em;
    font-weight: 900;
    color: var(--textColor2);
  }
  .rmStep__p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(17, 19, 22, 0.78);
  }
  .rmStep__p--muted {
    color: rgba(17, 19, 22, 0.52);
  }

  /* ===== Colors for number blocks (match screenshot palette) ===== */
  .rmStep--1 .rmStep__num {
    background: linear-gradient(180deg, #f08a52 0%, #e67b3b 100%);
  }
  .rmStep--1 .rmStep__n {
    color: #fff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
  }

  .rmStep--2 .rmStep__num {
    background: linear-gradient(180deg, #ffb13a 0%, #ff9a1b 100%);
  }
  .rmStep--2 .rmStep__n {
    color: #111;
  }

  .rmStep--3 .rmStep__num {
    background: linear-gradient(180deg, #b6c0cf 0%, #a8b3c5 100%);
  }
  .rmStep--3 .rmStep__n {
    color: #111;
  }

  .rmStep--4 .rmStep__num {
    background: linear-gradient(180deg, #94a4bc 0%, #7f93b1 100%);
  }
  .rmStep--4 .rmStep__n {
    color: #fff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  }

  /* ===== Modern hover effects ===== */
  .rmStep__card {
    transform: translateZ(0);
    transition:
      transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
      box-shadow 0.28s ease,
      filter 0.28s ease;
  }
  .rmStep__num {
    transition:
      transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
      filter 0.28s ease;
  }

  .rmStep:hover .rmStep__card {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
      0 34px 90px rgba(15, 20, 35, 0.18),
      0 10px 24px rgba(15, 20, 35, 0.12);
    filter: saturate(1.05);
  }
  .rmStep:hover .rmStep__num {
    transform: translateY(-8px) rotate(-0.25deg);
    filter: saturate(1.08) contrast(1.02);
  }
  .rmStep:hover .rmStep__card::after {
    opacity: 1;
  }

  /* “progressive” icon pop */
  .rmStep:hover .rmStep__icon {
    color: rgba(28, 35, 48, 0.78);
    transform: translateY(-1px);
    transition:
      transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
      color 0.28s ease;
  }

  /* ===== Animated tape (“промотка ленты по кругу”) =====
     A looping band around the card (top + bottom) that continuously scrolls.
  */
  .rmTape {
    position: absolute;
    inset: 10px 12px;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.22s ease;
  }
  .rmTape__track {
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.08) 12%,
        rgba(255, 255, 255, 0.85) 18%,
        rgba(0, 0, 0, 0.08) 24%,
        rgba(0, 0, 0, 0) 36%
      )
      0 0 / 240px 100% repeat-x;
    filter: blur(0.1px);
    opacity: 0.85;
    animation: rmTapeMove 1.35s linear infinite;
  }
  .rmTape__track {
    top: 0;
  }
  .rmTape__track--2 {
    bottom: 0;
    top: auto;
    opacity: 0.65;
    animation-duration: 1.65s;
    transform: scaleX(0.92);
  }
  @keyframes rmTapeMove {
    to {
      background-position: 240px 0;
    }
  }

  .rmStep:hover .rmTape {
    opacity: 1;
  }

  /* ===== Accessibility: reduced motion ===== */
  @media (prefers-reduced-motion: reduce) {
    .rmStep {
      animation: none;
    }
    .rmTape__track {
      animation: none;
    }
    .rmStep__card,
    .rmStep__num {
      transition: none;
    }
  }

  /* ===== Responsive ===== */
  @media (max-width: 950px) {
    .rmStairs__stack {
      min-height: 560px;
    }
    .rmStep {
      grid-template-columns: 110px 1fr;
    }
    .rmStep--1 {
      top: 340px;
      left: 0;
    }
    .rmStep--2 {
      top: 240px;
      left: 40px;
    }
    .rmStep--3 {
      top: 140px;
      left: 80px;
    }
    .rmStep--4 {
      top: 40px;
      left: 120px;
    }
    .rmStep__card {
      grid-template-columns: 60px 1fr;
      padding: 0 18px 0 12px;
    }
    .rmStep__n {
      font-size: 38px;
    }
  }

  @media (max-width: 800px) {
    .rmStairs {
      padding: 56px 16px 70px;
    }
    .rmStairs__stack {
      min-height: 520px;
    }
    .rmStep {
      grid-template-columns: 90px 1fr;
    }
    .rmStep--1 {
      top: 320px;
      left: 0;
    }
    .rmStep--2 {
      top: 225px;
      left: 30px;
    }
    .rmStep--3 {
      top: 130px;
      left: 60px;
    }
    .rmStep--4 {
      top: 35px;
      left: 90px;
    }
    .rmStep__num {
      height: 100px;
    }
    .rmStep__card {
      height: 100px;
    }
    .rmStep__n {
      font-size: 34px;
    }
  }

  @media (max-width: 600px) {
    .rmStairs {
      padding: 44px 14px 56px;
    }
    .rmStairs__head {
      margin-bottom: 28px;
    }
    .rmStairs__stack {
      min-height: auto;
    }
    .rmStairs__stack::before {
      display: none;
    }
    .rmStep {
      position: relative;
      left: 0 !important;
      top: auto !important;
      margin: 0 0 var(--gapY);
      grid-template-columns: 72px 1fr;
      animation: none;
    }
    .rmStep__num {
      height: auto;
      min-height: 88px;
      align-self: stretch;
    }
    .rmStep__card {
      height: auto;
      min-height: 88px;
      grid-template-columns: 48px 1fr;
      padding: 14px 16px 14px 10px;
    }
    .rmStep__n {
      font-size: 30px;
    }
    .rmStep__icon {
      width: 32px;
      height: 32px;
    }
    .rmStep__icon svg {
      width: 24px;
      height: 24px;
    }
    .rmStep__num::after {
      width: 20px;
      height: 26px;
    }
  }


/* ===== HOW v10 — Zigzag serpentine layout ===== */

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

  /* Head */
  .hw10__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
  }

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

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

  /* Track — holds SVG + rows */
  .hw10__track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

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

  .hw10__path {
    animation: hw10Dash 25s linear infinite;
  }

  @keyframes hw10Dash {
    to {
      stroke-dashoffset: -360;
    }
  }

  /* Row — alternating sides */
  .hw10__row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
  }

  .hw10__row:last-child {
    margin-bottom: 0;
  }

  .hw10__row--left {
    justify-content: flex-start;
    padding-right: 52%;
  }

  .hw10__row--right {
    justify-content: flex-end;
    padding-left: 52%;
  }

  /* Dot on the path */
  .hw10__dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      0 0 18px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Card — glassmorphism */
  .hw10__card {
    position: relative;
    flex: 1;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
      transform 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .hw10__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  }

  /* Watermark number */
  .hw10__watermark {
    position: absolute;
    top: -18px;
    right: -6px;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondStyleColor);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
  }

  /* Badge */
  .hw10__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hw10__h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* ---- Responsive ---- */

  /* Tablets — zigzag сужается */
  @media (max-width: 950px) {
    .hw10__track {
      max-width: 700px;
    }

    .hw10__row--left {
      padding-right: 46%;
    }

    .hw10__row--right {
      padding-left: 46%;
    }

    .hw10__row {
      margin-bottom: 40px;
      gap: 18px;
    }

    .hw10__card {
      padding: 24px 20px 20px;
    }

    .hw10__watermark {
      font-size: 90px;
      top: -12px;
    }

    .hw10__head {
      margin-bottom: 45px;
    }
  }

  /* Small tablets — zigzag ещё уже */
  @media (max-width: 800px) {
    .hw10__row--left {
      padding-right: 40%;
    }

    .hw10__row--right {
      padding-left: 40%;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 34px;
      height: 34px;
      font-size: 13px;
      margin-bottom: 10px;
    }
  }

  /* Mobile — одна колонка, SVG и точки скрыты */
  @media (max-width: 600px) {
    .hw10__sec {
      padding: 50px 0;
    }

    .hw10__svg {
      display: none;
    }

    .hw10__dot {
      display: none;
    }

    .hw10__row--left,
    .hw10__row--right {
      padding: 0;
      justify-content: stretch;
    }

    .hw10__row {
      margin-bottom: 20px;
      gap: 0;
    }

    .hw10__card {
      width: 100%;
      padding: 22px 18px 18px;
    }

    .hw10__head {
      margin-bottom: 32px;
    }

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

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

    .hw10__watermark {
      font-size: 70px;
      top: -10px;
      right: -4px;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 32px;
      height: 32px;
      font-size: 12px;
      border-radius: 10px;
      margin-bottom: 10px;
    }
  }

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


/*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }


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


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

  .faq h2 {
    text-align: center;
  }

  .faq > div {
    border-radius: var(--borderRadius);
  }

  #faq {
    border-radius: var(--borderRadius);
    padding: var(--sectionPadding);
  }

  .accord__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 32px;
    border: 4px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
  }

  .accord__item h3,
  .accord__item p {
    margin-bottom: 0;
    margin: 0;
    color: var(--textColor1);
  }

  .accord__item > div:first-child > p {
    font-weight: 900;
    color: var(--textColor1) !important;
    font-size: 24px !important;
    margin-bottom: 0;
  }

  .accord__item > div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .accord__item > div:last-child {
    max-height: 0;
    visibility: hidden;
    transition: 0.3s all linear;
  }

  .accord__item > div:last-child p {
    color: var(--textColor1) !important;
    text-align: left;
  }

  .show {
    visibility: visible !important;
  }

  .accord__item div + div {
    transition: max-height 0.3s ease;
    overflow: hidden;
    /* padding: 20px; padding будет учтен в scrollHeight */
    box-sizing: border-box; /* важно! */
  }

  .accord__item div + div p {
    transition: margin-top 0.3s ease;
    visibility: hidden;
    margin: 0;
  }

  .accord__item div + div.show p {
    visibility: visible;
    opacity: 1;
  }

  div.show {
    margin-top: 28px;
  }

  @media (max-width: 768px) {
    .accord__item {
      padding: 32px 16px;
    }
  }


.ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

  .ft5__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ft5__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .ft5__nav a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

    .ft5__nav {
      justify-content: flex-start;
    }
  }

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

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      transition: none;
    }
  }