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

  .headerButton {
    transition: 0.2s all linear;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    background-color: var(--textColor2);
    color: var(--textColor1);
    cursor: pointer;
    border-radius: var(--borderRadius);
  }
  .headerButton:hover {
    transform: translateY(-2px);
  }
  .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 (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .headerButton {
      display: none;
    }
    .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;
    }
  }


.hero {
    position: relative;
    padding: 140px 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.45);
    z-index: -1;
  }

  /* Layout */
  .hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
  }

  /* Left image */
  .hero-img {
    max-width: 520px;
    border-radius: var(--borderRadius);
    object-fit: contain;
    max-height: 500px;
  }

  /* Right text */
  .hero-content {
    width: 50%;
    max-width: 560px;
  }

  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textColor1);
    margin-bottom: 30px;
  }

  .hero-content a {
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--borderRadius);
    text-decoration: none;
    transition: 0.2s ease;
  }

  .hero-content a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-flex {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    .hero-img {
      width: 80%;
    }

    .hero-content {
      width: 100%;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-content p {
      font-size: 16px;
    }
  }

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

    .hero-img {
      display: none;
    }

    .hero-content h1 {
      font-size: 30px;
    }
  }


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


.b7x-wrap {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .b7x-inner {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  .b7x-head {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .b7x-label {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .b7x-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
  }

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

  /* Grid */
  .b7x-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  /* Cards */
  .b7x-card {
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 20px 18px;
    transition: 0.2s ease;
  }

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

  .b7x-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .b7x-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #dedede;
  }

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

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

    .b7x-head {
      margin-bottom: 30px;
    }
  }


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


.statsheader {
    margin-bottom: 40px;
  }

  .stats-curve {
    position: relative;
    width: 100%;
    overflow: hidden;
    h2 {
      color: var(--textColor1);
    }
  }
  .featureText {
    color: var(--textColor1);
  }

  .stats-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 320px; /* высота блока как на скрине */
  }

  /* SVG кривая */
  .curve-svg {
    position: absolute;
    left: -2%;
    right: -2%;
    top: 8px;
    width: 104%;
    height: 210px;
    pointer-events: none;
  }

  /* точки на кривой */
  .node {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(38, 183, 255, 0.08);
    border: 1px solid rgba(38, 183, 255, 0.28);
    display: grid;
    place-items: center;
  }

  .node::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(38, 183, 255, 0.55);
    background: rgba(38, 183, 255, 0.06);
    display: block;
  }

  .node::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  }

  /* блоки метрик */
  .metric {
    position: absolute;
    transform: translateX(-50%);
    text-align: left;
  }

  .metric .value {
    font-size: clamp(54px, 6.6vw, 92px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--secondStyleColor);
    margin: 0;
  }

  .metric .label {
    margin: 14px 0 0;
    font-size: 13px;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--textColor1);
    text-transform: uppercase;
  }

  /* Позиции как на макете (проценты по ширине + px по высоте) */
  .m1 {
    left: 14%;
    top: 169px;
  }
  .m2 {
    left: 36%;
    top: 134px;
  }
  .m3 {
    left: 58%;
    top: 86px;
  }
  .m4 {
    left: 78%;
    top: 54px;
  }

  /* узлы на кривой (примерно над метриками) */
  .n1 {
    left: 6%;
    top: 152px;
  }
  .n2 {
    left: 30%;
    top: 120px;
  }
  .n3 {
    left: 52%;
    top: 74px;
  }
  .n4 {
    left: 72%;
    top: 44px;
  }

  /* аккуратная адаптация */
  @media (max-width: 900px) {
    .statsheader {
      margin-bottom: 20px;
    }
    .stats-inner {
      padding: 0;
      height: auto;
    }
    .metric {
      position: relative;
    }
    .node {
      display: none;
    }
    .curve-svg {
      display: none;
    }

    .curve-svg {
      top: 0;
      height: 220px;
    }

    .metric {
      transform: none;
      left: 0 !important;
      right: 0;
    }

    .m1 {
      top: 0;
    }
    .m2 {
      top: 0;
    }
    .m3 {
      top: 0;
    }
    .m4 {
      top: 0;
    }

    .node {
      transform: translate(0, -50%);
      left: 18px !important;
    }

    .n1 {
      top: 0;
    }
    .n2 {
      top: 0;
    }
    .n3 {
      top: 0;
    }
    .n4 {
      top: 0;
    }
  }


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


/*  */

  #about {
    min-height: 500px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }
  }

  #about .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    && h2 {
      text-transform: uppercase;
      color: var(--textColor1);
    }
  }
  .ab-lllller {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ab-rrrrorjg {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px;
    && p {
      font-style: italic;
      color: var(--textColor1);
    }
    && a {
      text-transform: uppercase;
      padding: 15px 20px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      font-weight: 900;
      transition: 0.2s all linear;
      color: var(--textColor2);
      &&:hover {
        transform: translateY(-2px);
      }
    }
  }
  .ab-lllller > span:nth-of-type(1) {
    color: var(--secondStyleColor);
    font-style: italic;
  }
  .ab-lllller > span:nth-of-type(2) {
    font-size: 120px;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-style: italic;
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
      align-items: center;
    }
    .ab-lllller {
      align-items: center;
      && h2 {
        text-align: center;
      }
    }
    .ab-rrrrorjg {
      align-items: center;
      padding: 20px;
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
    .ab-lllller > span:nth-of-type(2) {
      font-size: 90px;
    }
  }


/* ===== HOW v16 — Animated glow cards + AOS + FontAwesome ===== */

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

  /* ---- Floating background orbs ---- */
  .hw16__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .hw16__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.12;
    animation: hw16Float 14s ease-in-out infinite alternate;
  }

  .hw16__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: -10%;
    left: -5%;
    animation-duration: 14s;
  }

  .hw16__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    bottom: -8%;
    right: -3%;
    animation-duration: 18s;
    animation-delay: -4s;
  }

  .hw16__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--secondStyleColor);
    top: 40%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -8s;
  }

  @keyframes hw16Float {
    0% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(30px, -20px) scale(1.1);
    }
    100% {
      transform: translate(-20px, 15px) scale(0.95);
    }
  }

  /* ---- Head ---- */
  .hw16__head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 65px;
  }

  .hw16__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    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.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

  .hw16__eyebrow i {
    font-size: 12px;
    animation: hw16Pulse 2s ease-in-out infinite;
  }

  @keyframes hw16Pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.2);
    }
  }

  .hw16__head h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }

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

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

  /* ---- Card ---- */
  .hw16__card {
    position: relative;
    padding: 34px 24px 28px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    text-align: center;
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .hw16__card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.3),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* Shimmer sweep */
  .hw16__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    pointer-events: none;
    transition: none;
  }

  .hw16__card:hover .hw16__shimmer {
    animation: hw16Shimmer 0.8s ease forwards;
  }

  @keyframes hw16Shimmer {
    to {
      left: 130%;
    }
  }

  /* Icon */
  .hw16__icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
  }

  .hw16__icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px dashed
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    animation: hw16Ring 10s linear infinite;
  }

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

  .hw16__icon {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(
      145deg,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hw16__card:hover .hw16__icon {
    transform: scale(1.1) rotate(-5deg);
  }

  .hw16__icon i {
    font-size: 26px;
    color: var(--secondStyleColor);
    filter: drop-shadow(
      0 4px 10px color-mix(in srgb, var(--secondStyleColor) 40%, transparent)
    );
    transition: transform 0.35s ease;
  }

  .hw16__card:hover .hw16__icon i {
    transform: scale(1.15);
  }

  /* Watermark number */
  .hw16__number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 64px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity 0.3s ease;
  }

  .hw16__card:hover .hw16__number {
    opacity: 0.1;
  }

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

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

  /* Arrow connector between cards */
  .hw16__connector {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--bodyBG);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .hw16__connector i {
    font-size: 11px;
    color: var(--secondStyleColor);
    animation: hw16Arrow 1.5s ease-in-out infinite;
  }

  @keyframes hw16Arrow {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(3px);
    }
  }

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

    /* Hide horizontal connectors in 2-col */
    .hw16__card:nth-child(2) .hw16__connector,
    .hw16__card:nth-child(4) .hw16__connector {
      display: none;
    }

    .hw16__card {
      padding: 28px 20px 24px;
    }

    .hw16__icon-wrap {
      width: 64px;
      height: 64px;
    }

    .hw16__icon i {
      font-size: 22px;
    }
  }

  @media (max-width: 800px) {
    .hw16__head {
      margin-bottom: 45px;
    }

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

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

    .hw16__number {
      font-size: 52px;
    }

    .hw16__orb--1 {
      width: 250px;
      height: 250px;
    }
    .hw16__orb--2 {
      width: 200px;
      height: 200px;
    }
    .hw16__orb--3 {
      display: none;
    }
  }

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

    .hw16__head {
      margin-bottom: 36px;
    }

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

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

    .hw16__eyebrow {
      font-size: 11px;
      padding: 6px 14px;
      margin-bottom: 16px;
    }

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

    /* Hide all connectors on mobile */
    .hw16__connector {
      display: none;
    }

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

    .hw16__icon-wrap {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw16__icon i {
      font-size: 20px;
    }

    .hw16__icon-ring {
      inset: -3px;
    }

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

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

    .hw16__number {
      font-size: 44px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw16__orb,
    .hw16__icon-ring,
    .hw16__eyebrow i,
    .hw16__connector i {
      animation: none;
    }
    .hw16__card,
    .hw16__icon,
    .hw16__icon i,
    .hw16__number {
      transition: none;
    }
    .hw16__card:hover .hw16__shimmer {
      animation: none;
    }
  }


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


/* ===== FAQ SECTION ===== */

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

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

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

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

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

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

  /* List */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

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

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

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

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

  /* Responsive */
  @media (max-width: 700px) {
    .faqItem {
      padding: 20px 18px;
    }
  }


.ft6 {
    position: relative;
    padding: 56px 20px 24px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Top Glow ── */
  .ft6__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
  }

  /* ── Container ── */
  .ft6 .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .ft6__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.2s ease;
  }

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

  /* ── Description ── */
  .ft6__desc {
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    max-width: 400px;
    margin: 0 0 28px;
  }

  /* ── Social ── */
  .ft6__social {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
  }

  .ft6__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 7%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .ft6__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  /* ── Divider ── */
  .ft6__divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 30%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 50%,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 70%,
      transparent
    );
    position: relative;
    margin-bottom: 28px;
  }

  .ft6__diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--secondStyleColor);
    border-radius: 1px;
  }

  /* ── Navigation ── */
  .ft6__nav {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
  }

  .ft6__nav a {
    position: relative;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .ft6__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--secondStyleColor);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ft6__nav a:hover {
    color: var(--textColor1);
  }

  .ft6__nav a:hover::after {
    transform: scaleX(1);
  }

  /* ── Bottom ── */
  .ft6__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .ft6__copy {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    margin: 0;
  }

  .ft6__email {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    margin: 0;
  }

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

  @media (max-width: 800px) {
    .ft6__nav {
      gap: 20px;
    }

    .ft6__bottom {
      flex-direction: column;
      gap: 6px;
    }
  }

  @media (max-width: 600px) {
    .ft6 {
      padding: 40px 16px 20px;
    }

    .ft6__desc {
      font-size: 13px;
    }

    .ft6__nav {
      gap: 16px;
    }

    .ft6__nav a {
      font-size: 12px;
    }

    .ft6__social a {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }

    .ft6__glow {
      width: 300px;
      opacity: 0.06;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft6__social a,
    .ft6__nav a,
    .ft6__nav a::after,
    .ft6__logo {
      transition: none;
    }
  }