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


/* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* border-bottom: 1px solid var(--secondStyleColor); */
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

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

  /* layout */

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

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

  .logo {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

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

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

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

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

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile__menu {
    display: none;
  }

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

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

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

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

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

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

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

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

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

    header .btn {
      display: none;
    }
  }

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

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

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


/* ── Section ── */
  .hr30 {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 120px 20px 80px;
  }

  /* ── Background Image ── */
  .hr30__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ── Dimmer ── */
  .hr30__dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 30%,
        color-mix(in srgb, var(--bodyBG) 55%, transparent),
        transparent 60%
      ),
      color-mix(in srgb, var(--bodyBG) 72%, transparent);
  }

  /* ── Broken Glass SVG ── */
  .hr30__glass {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr30__crack {
    fill: none;
    stroke: color-mix(in srgb, var(--textColor1) 18%, transparent);
    stroke-width: 1.5;
    stroke-linecap: round;
  }

  .hr30__crack--fine {
    stroke: color-mix(in srgb, var(--textColor1) 11%, transparent);
    stroke-width: 1;
  }

  .hr30__shard {
    fill: var(--textColor1);
    stroke: none;
  }

  .hr30__spark {
    fill: var(--textColor1);
  }

  .hr30__impact-ring {
    fill: none;
    stroke: var(--textColor1);
    stroke-width: 1;
  }

  /* ── Content ── */
  .hr30 .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .hr30__body {
    text-align: center;
  }

  .hr30__body h1 {
    font-size: clamp(32px, 5.2vw, 58px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hr30__sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: color-mix(in srgb, var(--textColor1) 62%, transparent);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
  }

  /* ── Button ── */
  .hr30__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
  }

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

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

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

  /* ── Cards ── */
  .hr30__cards {
    display: flex;
    gap: 24px;
    max-width: 820px;
    margin: 56px auto 0;
    text-align: left;
  }

  .hr30__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 32px 28px;
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    border-radius: var(--borderRadius);
    transition: all 0.3s ease;
  }

  .hr30__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    box-shadow: 0 16px 48px color-mix(in srgb, var(--bodyBG) 50%, transparent);
  }

  .hr30__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 20px;
    margin-bottom: 18px;
  }

  .hr30__card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0 0 10px;
  }

  .hr30__card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.65;
    margin: 0;
    text-align: center;
  }

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

  @media (max-width: 800px) {
    .hr30__cards {
      flex-direction: column;
      max-width: 420px;
    }
  }

  @media (max-width: 600px) {
    .hr30 {
      padding: 80px 16px 48px;
      min-height: 100svh;
    }
    .hr30__body h1 {
      font-size: clamp(28px, 7vw, 40px);
    }
    .hr30__cta {
      width: 100%;
      justify-content: center;
    }
    .hr30__card {
      padding: 24px 20px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hr30__spark {
      animation: none;
    }
    .hr30__shimmer-g {
      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;
  }

  .toc {
    background-color: transparent;
  }

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

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

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

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

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

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

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

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

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


/*  */
  .qwfwae {
    padding: 20px 0;
  }
  .sljahvasbkawrgfisacg {
    margin-bottom: 40px;
  }

  .vTrxQn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .vTrxQn + .vTrxQn {
    margin-top: 130px;
  }

  .uLmTtR {
    margin: 0 0 10px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--textColor1);
  }

  .bNmYyU {
    color: var(--textColor1);
    margin-bottom: 16px;
    font-weight: 600;
  }

  .aQpZyX p {
    margin: 0 0 12px;
    line-height: 1.7;
    color: var(--textColor1);
  }

  .pOeRrS {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 2px solid var(--secondStyleColor);
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.2s all linear;
    &&:hover {
      padding: 12px 40px;
    }
  }

  .yYtVvW {
    display: flex;
    justify-content: center;
  }
  .xXrEeD {
    display: flex;
  }

  .mMpQqA {
    position: relative;
    width: 360px;
    height: 250px;
  }

  .mMpQqA::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 350px;
    border: 18px solid var(--secondStyleColor);
    right: -56px;
    bottom: -135px;
    z-index: 0;
  }

  .nNwEeR {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border: 5px solid var(--secondStyleColor);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
  }

  /* зеркалим рамку для второго блока */
  .mMpQqA--flip::before {
    left: 38px;
    right: auto;
    bottom: -42px;
  }

  .mMpQqA--flip .nNwEeR {
    left: 0;
    right: auto;
  }

  /* адаптив */
  @media (max-width: 900px) {
    .vTrxQn {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .yYtVvW,
    .xXrEeD {
      justify-content: flex-start;
    }
    .mMpQqA::before {
      display: none;
    }
    .mMpQqA,
    .nNwEeR {
      width: 100%;
    }
    .sljahvasbkawrgfisacg {
      margin-bottom: 20px;
    }
    .nNwEeR {
      height: 270px;
    }
    .vTrxQn + .vTrxQn {
      margin-top: 45px;
    }
  }


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


/* ===== PARTNERS v10 — 3D perspective tilt card ===== */

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

  .pt10__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    z-index: 0;
    opacity: 0.1;
    filter: blur(6px);
  }

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

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

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

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

  /* Scene */
  .pt10__scene {
    display: flex;
    justify-content: center;
    perspective: 800px;
  }

  .pt10__card {
    width: min(340px, 80vw);
    aspect-ratio: 1 / 1.1;
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
  }

  .pt10__card-face {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 30px;
    overflow: hidden;
  }

  /* Orbiting rings */
  .pt10__ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

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

  .pt10__ring span:nth-child(1) {
    inset: 8%;
    animation: pt10Orbit 12s linear infinite;
  }

  .pt10__ring span:nth-child(2) {
    inset: 18%;
    animation: pt10Orbit 18s linear infinite reverse;
  }

  .pt10__ring span:nth-child(3) {
    inset: 28%;
    animation: pt10Orbit 24s linear infinite;
  }

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

  /* Logo */
  .pt10__logo-area {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt10__logo-area:hover {
    transform: scale(1.06);
  }

  .pt10__logo-area img {
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

  .pt10__label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6px 18px;
    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);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt10__card {
      width: min(300px, 75vw);
    }
  }

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

    .pt10__head {
      margin-bottom: 36px;
    }

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

    .pt10__card {
      width: min(260px, 75vw);
    }

    .pt10__card-face {
      padding: 24px;
      gap: 18px;
    }

    .pt10__logo-area img {
      max-width: min(160px, 50%);
    }

    .pt10__label {
      font-size: 11px;
      padding: 5px 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt10__ring span {
      animation: none;
    }
    .pt10__card,
    .pt10__logo-area {
      transition: none;
    }
  }


/* ===== ROADMAP v7 — Progress bar + accordion phases ===== */

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

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

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

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

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

  /* Progress bar */
  .rm7__progress {
    position: relative;
    max-width: 600px;
    margin: 0 auto 44px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
  }

  .rm7__progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 62%;
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 50%, transparent)
    );
  }

  .rm7__progress-dots {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
  }

  .rm7__pdot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
  }

  .rm7__pdot--done {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
  }

  .rm7__pdot--active {
    background: transparent;
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  /* Accordion list */
  .rm7__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

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

  .rm7__item[open] {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rm7__summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .rm7__summary::-webkit-details-marker {
    display: none;
  }

  .rm7__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    flex-shrink: 0;
  }

  .rm7__label {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
  }

  .rm7__status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    flex-shrink: 0;
  }

  .rm7__status--done {
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

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

  .rm7__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }

  .rm7__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    border-bottom: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.25s ease;
  }

  .rm7__item[open] .rm7__arrow::before {
    transform: translate(-50%, -30%) rotate(-135deg);
  }

  /* Body content */
  .rm7__body {
    display: flex;
    gap: 16px;
    padding: 0 22px 22px;
    align-items: flex-start;
  }

  .rm7__ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .rm7__checks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .rm7__checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .rm7__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
    width: 14px;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm7__progress {
      max-width: 100%;
    }
  }

  @media (max-width: 800px) {
    .rm7__label {
      font-size: 15px;
    }

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

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

    .rm7__head {
      margin-bottom: 30px;
    }

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

    .rm7__summary {
      padding: 16px 16px;
      gap: 10px;
    }

    .rm7__body {
      padding: 0 16px 18px;
      flex-direction: column;
    }

    .rm7__status {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm7__item,
    .rm7__arrow::before {
      transition: none;
    }
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .sm15__timer {
      gap: 4px;
    }

    .sm15__sep {
      font-size: 24px;
    }

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

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

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

    .sm15__btn,
    .sm15__link,
    .sm15__link i {
      transition: none;
    }
  }


/* ===== HOW IT WORKS SECTION ===== */

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

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

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

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

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

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

  /* Steps */
  .howSteps {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .howStepItem {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 20px 22px 20px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: 0.2s ease;
  }

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

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

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

  /* Badge + text */
  .howStepBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--secondStyleColor);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    margin-bottom: 14px;
  }

  .howStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .howStepText {
    font-size: 14px;
    line-height: 1.6;
    color: #d5d5d5;
  }

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

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


.real-gallery {
    padding: 60px 0;
  }

  .real-gallery__inner {
    position: relative;
  }

  .real-gallery__swiper {
    width: 100%;
    position: relative;
    padding: 0 80px;
  }
  .galeryhead {
    margin-bottom: 45px;
  }

  /* слайд-лента */
  .real-gallery__wrapper {
    align-items: center;
  }

  /* отдельный слайд */
  .real-gallery__slide {
    display: flex;
    justify-content: center;
    cursor: grab;
    &&:active {
      cursor: grabbing;
    }
  }

  .real-gallery__slide img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
    user-select: none;
  }

  .gallery-naw-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
  }
  /* стрелки */
  .real-gallery__nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    line-height: 1;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .real-gallery__nav span {
    /* если внутри стрелка в span */
    transform: translate(-1px, -2px); /* или translateY(-1px); по вкусу */
  }

  .real-gallery__nav--next span {
    transform: translate(1px, -2px);
  }

  /* адаптивно */
  @media (max-width: 992px) {
    .real-gallery__slide img {
      height: 420px;
    }
    .galeryhead {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 640px) {
    .real-gallery__slide img {
      height: 360px;
    }
  }


#reviews .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .revierhweaul-head {
    margin-bottom: 40px;
    && h2,
    p {
      text-align: center;
    }
  }

  #reviews ul {
    position: relative;
    transform-style: preserve-3d;
    perspective: 500px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: 500ms;
  }

  #reviews ul:hover {
    gap: 20px;
  }

  #reviews ul li {
    position: relative;
    list-style: none;
    width: 80%;
    margin: 0 auto;
    min-height: 120px;
    padding: 16px;
    background: var(--textColor1);
    border-radius: var(--borderRadius);
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
    transition: 500ms;
    transition-delay: calc(var(--i) * 50ms);
    cursor: pointer;
  }

  #reviews ul li:nth-child(1) {
    transform: translateZ(-75px) translateY(20px);
    opacity: 0.6;
    filter: blur(4px);
  }

  #reviews ul li:nth-child(2) {
    opacity: 0.8;
    filter: blur(2px);
  }

  #reviews ul li:nth-child(3) {
    transform: translateZ(65px) translateY(-30px);
  }

  #reviews ul li:nth-child(4) {
    transform: translateZ(125px) translateY(-68px);
    filter: blur(1px);
  }

  #reviews ul:hover li {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0) translateY(0);
  }

  #reviews ul li img {
    max-width: 64px;
    border-radius: 8px;
  }

  #reviews ul li .content {
    width: 100%;
  }

  #reviews ul li .content h3 {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1;
    color: var(--textColor2);
  }

  #reviews ul li .content p {
    color: var(--textColor2);
    opacity: 0.6;
    line-height: 1;
  }

  @media (max-width: 800px) {
    #reviews ul {
      perspective: none;
      gap: 20px;
    }
    #reviews ul li:nth-child(1),
    #reviews ul li:nth-child(2),
    #reviews ul li:nth-child(3),
    #reviews ul li:nth-child(4) {
      transform: translateZ(0) translateY(0);
      opacity: 1;
      filter: blur(0px);
      width: 100%;
    }
  }


/* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 40px 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;
  }

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

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    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: 800px) {
    .faqColsGrid {
      grid-template-columns: 1fr;
    }
  }


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