
:root {
  --bg: #0d1b2a;
  --bg-card: #1b2838;
  --text: #e0fbfc;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #00b4d8;
  --accent-rgb: 0,180,216;
  --accent2: #6c00d8;
  --accent2-rgb: 108,0,216;
  --accent3: #00f251;
  --accent3-rgb: 0,242,81;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Sora', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --bodyBG: #0d1b2a;
  --textColor1: #e0fbfc;
  --textColor2: #111111;
  --textSecondary: #abc3c8;
  --textMuted: #778b93;
  --secondStyleColor: #00b4d8;
  --bgCard: #1b2838;
  --bgAlt: #1e2d3b;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 100vw; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100vw; }
::-webkit-scrollbar-thumb:hover { background: var(--secondStyleColor); filter: brightness(1.2); }
::-webkit-scrollbar-thumb:active { background: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.05); }

body {
  font-family: var(--font);
  background: var(--bodyBG);
  color: var(--textColor1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; object-position: 50% 20%; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* Standardized typography */
section h1 {
  font-size: 48px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
section h2 {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
section h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section h4 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section p,
section li {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
footer p,
footer li,
footer a {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h3 {
  font-size: 16px !important;
}
@media (max-width: 900px) {
  section h1 {
    font-size: 36px !important;
  }
  section h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 600px) {
  section h1 {
    font-size: 30px !important;
  }
  section h2 {
    font-size: 24px !important;
  }
  section h3 {
    font-size: 18px !important;
  }
  section p,
  section li {
    font-size: 15px !important;
  }
}

/* Heading font */
section h1, section h2, section h3, section h4,
header h1, header h2, header h3, header h4,
footer h3 {
  font-family: var(--font-heading) !important;
}

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }


  /* ===== HEADER v5 — Glass floating bar + centered nav pill ===== */

  .hd5 {
    position: relative;
    z-index: 100;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bodyBG) 85%, transparent),
      color-mix(in srgb, var(--bodyBG) 70%, transparent)
    );

    border-bottom: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hd5__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
  }

  /* Logo */
  .hd5__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--textColor1);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Desktop nav — centered pill */
  .hd5__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hd5__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 5px 6px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .hd5__nav .hd5__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    border-radius: 100px;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  .hd5__nav .hd5__link:hover {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* CTA button */
  .hd5__cta {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .hd5__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Burger — hidden on desktop */
  .hd5__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 10px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

  .hd5__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--textColor1);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transform-origin: center;
  }

  /* Burger active state */
  .hd5__burger.active .hd5__burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .hd5__burger.active .hd5__burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* Mobile overlay — hidden by default */
  .hd5__mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

  .hd5__mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hd5__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hd5__mobile .hd5__link {
    font-size: 22px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .hd5__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .stopScroll {
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hd5__nav {
      display: none;
    }

    .hd5__cta {
      display: none;
    }

    .hd5__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd5__mobile,
    .hd5__burger-line,
    .hd5__burger,
    .hd5__cta,
    .hd5__nav .hd5__link {
      transition: none;
    }
  }



  .hero {
    position: relative;
    padding: 130px 0;
    text-align: center;
    background: var(--bodyBG);
    overflow: hidden;
    color: var(--textColor1);
  }
  h1 {
    text-transform: uppercase;
    font-weight: 900;
  }

  /* Фоновая картинка */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.5);
    z-index: 1;
  }

  /* Контейнер поверх */
  .hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Заголовок */
  .hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    text-wrap: balance;
  }

  /* Подзаголовок */
  .hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    color: var(--textColor1);
  }

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

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

  /* Адаптив */
  @media (max-width: 700px) {
    .hero {
      padding: 100px 0;
    }

    .hero h1 {
      font-size: 34px;
    }

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



  :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);
    margin: 0 auto;
  }

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



  /* ===== PARTNERS v5 — Cinematic split with spotlight card ===== */

  .pt5 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
  }

  /* Background image */
  .pt5__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.15;
    filter: blur(4px);
  }

  /* Dark gradient overlay */
  .pt5__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
  }

  /* Dot pattern */
  .pt5__dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(
      ellipse 70% 60% at 50% 50%,
      #000 20%,
      transparent 70%
    );
  }

  /* Layout */
  .pt5__shell {
    position: relative;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }

  /* Left — text */
  .pt5__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pt5__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

  /* Stats */
  .pt5__stats {
    display: flex;
    gap: 24px;
    margin-top: 10px;
  }

  .pt5__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s ease;
  }

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

  .pt5__stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt5__stat-lbl {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    letter-spacing: 0.04em;
  }

  /* Right — logo card */
  .pt5__right {
    display: flex;
    justify-content: center;
  }

  .pt5__card {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--borderRadius) * 1.2);
    padding: 3px;
    overflow: hidden;
  }

  /* Animated conic border */
  .pt5__border-anim {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 10%,
      transparent 20%,
      transparent 50%,
      var(--secondStyleColor) 60%,
      transparent 70%,
      transparent 100%
    );
    animation: pt5Rotate 6s linear infinite;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .pt5__card:hover .pt5__border-anim {
    opacity: 1;
  }

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

  .pt5__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2 - 3px);
    background: var(--bodyBG);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Spotlight effect */
  .pt5__spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(
      ellipse 40% 50% at 50% 0%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      transparent 70%
    );
    pointer-events: none;
    animation: pt5Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes pt5Breathe {
    0% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  .pt5__logo-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt5__logo-link:hover {
    transform: scale(1.06);
  }

  .pt5__logo-link img {
    max-width: min(220px, 65%);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
  }

  /* ---- Responsive ---- */
  @media (max-width: 950px) {
    .pt5__shell {
      gap: 40px;
    }

    .pt5__card {
      width: min(300px, 100%);
    }

    .pt5__desc {
      font-size: 14px;
    }
  }

  @media (max-width: 800px) {
    .pt5__shell {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .pt5__left {
      align-items: center;
    }

    .pt5__desc {
      max-width: 100%;
    }

    .pt5__stats {
      justify-content: center;
    }

    .pt5__card {
      width: min(320px, 85vw);
    }
  }

  @media (max-width: 600px) {
    .pt5 {
      padding: 50px 0;
      min-height: auto;
    }

    .pt5__left h2 {
      font-size: 26px;
    }

    .pt5__stats {
      gap: 12px;
      flex-wrap: wrap;
    }

    .pt5__stat {
      padding: 10px 14px;
    }

    .pt5__stat-val {
      font-size: 18px;
    }

    .pt5__card {
      width: min(280px, 80vw);
    }

    .pt5__logo-link img {
      max-width: min(180px, 60%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt5__border-anim {
      animation: none;
      opacity: 0.3;
    }
    .pt5__spotlight {
      animation: none;
    }
    .pt5__stat,
    .pt5__logo-link {
      transition: none;
    }
  }



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

  .gl4__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 44px;
  }

  .gl4__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
  }

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

  .gl4__panels {
    display: flex;
    gap: 8px;
    height: clamp(340px, 45vw, 520px);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .gl4__panel {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--borderRadius);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gl4__panel--active { flex: 5; }

  .gl4__panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gl4__panel--active img { transform: scale(1.03); }

  .gl4__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 80%, transparent),
      transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl4__panel--active .gl4__label { opacity: 1; }

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

  @media (max-width: 800px) {
    .gl4__panels { flex-direction: column; height: auto; }
    .gl4__panel { height: 80px; flex: none; }
    .gl4__panel--active { height: 280px; }
    .gl4__label { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl4 { padding: 48px 0; }
    .gl4__head { margin-bottom: 32px; }
    .gl4__panel--active { height: 220px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl4__panel, .gl4__panel img, .gl4__label { transition: none; }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft13__num {
      font-size: 22px;
    }

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

  @media (prefers-reduced-motion: reduce) {
    .ft13__btn,
    .ft13__num,
    .ft13__fill {
      transition: none;
    }
  }



  /* ===== ABOUT v16 — Diagonal split with floating stat badges ===== */

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

  .ab16__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
  }

  /* Image side */
  .ab16__img-wrap {
    position: relative;
  }

  .ab16__img {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  }

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

  .ab16__img:hover img {
    transform: scale(1.04);
  }

  /* SVG diagonal */
  .ab16__diag {
    position: absolute;
    top: 0;
    right: -30px;
    width: 80px;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

  /* Floating badges */
  .ab16__badge {
    position: absolute;
    z-index: 3;
    padding: 14px 20px;
    border-radius: var(--borderRadius);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: ab16Float 3s ease-in-out infinite alternate;
  }

  .ab16__badge--top {
    top: 12%;
    right: -24px;
  }

  .ab16__badge--bot {
    bottom: 12%;
    right: -24px;
    animation-delay: 1.5s;
  }

  @keyframes ab16Float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
  }

  .ab16__badge strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab16__badge span {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    font-weight: 500;
  }

  /* Text side */
  .ab16__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

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

  .ab16__text h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

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

  .ab16__highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  .ab16__hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }

  .ab16__hl i {
    color: var(--secondStyleColor);
    font-size: 14px;
  }

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .ab16__badge--top,
    .ab16__badge--bot {
      right: -12px;
    }

    .ab16__diag {
      right: -16px;
      width: 50px;
    }
  }

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

    .ab16__img-wrap {
      max-width: 400px;
      margin: 0 auto;
    }

    .ab16__img {
      aspect-ratio: 4 / 3;
    }

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

    .ab16__text > p {
      font-size: 14px;
    }
  }

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

    .ab16__badge {
      padding: 10px 14px;
    }

    .ab16__badge strong {
      font-size: 20px;
    }

    .ab16__diag {
      display: none;
    }

    .ab16__text h2 {
      font-size: 22px;
    }

    .ab16__hl {
      font-size: 13px;
    }
  }

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

    .ab16__img img,
    .ab16__btn {
      transition: none;
    }
  }



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

  .rm4__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
  }

  .rm4__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
  }

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

  .rm4__zigzag {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
  }

  .rm4__row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
  }

  .rm4__row--alt {
    direction: rtl;
  }

  .rm4__row--alt .rm4__card {
    direction: ltr;
  }

  .rm4__row--alt .rm4__num {
    direction: ltr;
  }

  .rm4__num {
    width: 56px;
    height: 56px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .rm4__num span {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

  .rm4__card {
    padding: 18px 22px;
    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;
  }

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

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

  .rm4__card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
  }

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

  @media (max-width: 700px) {
    .rm4__row,
    .rm4__row--alt {
      direction: ltr;
      grid-template-columns: 48px 1fr;
    }
    .rm4__num { width: 48px; height: 48px; }
    .rm4__num span { font-size: 18px; }
  }

  @media (max-width: 600px) {
    .rm4 { padding: 48px 0; }
    .rm4__head { margin-bottom: 36px; }
  }

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



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

  .pl3__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
  }

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

  .pl3__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
  }

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

  .pl3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
  }

  .pl3__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 3vw, 32px);
    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;
  }

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

  .pl3__card--featured {
    grid-row: span 2;
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    box-shadow: 0 0 50px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl3__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .pl3__card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }

  .pl3__desc {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .pl3__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .pl3__amount {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl3__period {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
  }

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

  .pl3__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

  .pl3__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    flex-shrink: 0;
  }

  .pl3__btn {
    display: block;
    text-align: center;
    padding: 11px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease;
    margin-top: auto;
  }

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

  .pl3__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

  .pl3__btn--primary:hover {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  @media (max-width: 700px) {
    .pl3__grid { grid-template-columns: 1fr; max-width: 400px; }
    .pl3__card--featured { grid-row: span 1; order: -1; }
  }

  @media (max-width: 600px) {
    .pl3 { padding: 48px 0; }
    .pl3__head { margin-bottom: 36px; }
  }

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



  /* ===========================
   FAQ 2026 — glass + neon + motion
   =========================== */

  .faq26 {
    position: relative;
    padding: clamp(56px, 6vw, 96px) 0;
    background:
      radial-gradient(
        1300px 760px at 18% 12%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 0%,
        transparent 62%
      ),
      radial-gradient(
        1050px 720px at 82% 18%,
        color-mix(in srgb, var(--bodyBG) 16%, transparent) 0%,
        transparent 68%
      ),
      radial-gradient(
        1100px 820px at 60% 92%,
        color-mix(in srgb, var(--bodyBG) 12%, transparent) 0%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        var(--bodyBG) 0%,
        color-mix(in srgb, var(--bodyBG) 92%, var(--secondStyleColor) 8%) 100%
      );

    overflow: hidden;
    color: var(--textColor1);
  }

  .faq26__head {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }

  .faq26__title {
    line-height: 1.05;
    margin: 0;
  }

  .faq26__sub {
    margin: 0;
    color: var(--textColor1);
    max-width: 62ch;
  }

  .faq26__grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  /* Card */
  .faq26__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 16px 18px;
    transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  /* gradient “neon edge” */
  .faq26__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: var(--borderRadius);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
  }

  .faq26__shine {
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 120%;
    background: radial-gradient(
      closest-side,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    );
    transform: translate3d(-20%, -20%, 0) rotate(12deg);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .faq26__card:hover .faq26__shine {
    opacity: 0.38;
  }

  /* Content */
  .faq26__content {
    position: relative;
    min-height: 76px;
    display: grid;
    align-content: center;
    padding-right: 8px;
  }

  /* Question / Answer layers */
  .faq26__q,
  .faq26__a {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    padding-right: 4px;
    will-change: transform, opacity, filter;
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.45s ease,
      filter 0.55s ease;
  }
  .faq26__q {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0px);
  }

  .faq26__a {
    opacity: 0;
    transform: translate3d(14px, 10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__step {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq26__qText {
    margin: 0;
    line-height: 1.2;
  }

  .faq26__hint {
    margin: 0;
    color: var(--textColor1);
  }

  .faq26__aTitle {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .faq26__aText {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.45;
  }

  .faq26__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  .faq26__chip {
    color: var(--textColor1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* Toggle button */
  .faq26__toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

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

  .faq26__arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    border-top: 2px solid rgba(255, 255, 255, 0.86);
    transform: rotate(134deg);
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.3s ease;
  }

  /* OPEN STATE (answer visible) */
  .faq26__card.is-open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .faq26__card.is-open .faq26__q {
    opacity: 0;
    transform: translate3d(-18px, -10px, 0) scale(0.985);
    filter: blur(10px);
  }

  .faq26__card.is-open .faq26__a {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0px);
  }

  .faq26__card.is-open .faq26__arrow {
    transform: rotate(312deg);
  }

  /* height animation via JS measured height */
  .faq26__content {
    transition: height 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
    height: 76px; /* will be overridden by JS */
  }
  /* по умолчанию (карточка закрыта): кликаем по вопросу */
  .faq26__q {
    pointer-events: auto;
  }
  .faq26__a {
    pointer-events: none;
  }

  /* когда открыто: кликаем по ответу, вопрос клики не ловит */
  .faq26__card.is-open .faq26__q {
    pointer-events: none;
  }
  .faq26__card.is-open .faq26__a {
    pointer-events: auto;
  }

  /* опционально, чтобы было понятно что кликабельно */
  .faq26__q,
  .faq26__a {
    cursor: pointer;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq26__bg {
      animation: none;
    }
    .faq26__q,
    .faq26__a,
    .faq26__toggle,
    .faq26__content {
      transition: none !important;
    }
  }

  /* Responsive */
  @media (max-width: 720px) {
    .faq26__card {
      grid-template-columns: 1fr;
    }
    .faq26__toggle {
      width: 100%;
      height: 44px;
      border-radius: 16px;
    }
  }



  .ft8 {
    position: relative;
    padding: 0 20px 28px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Animated Top Border ── */
  .ft8__border {
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    background-size: 300% 100%;
    animation: ft8BorderFlow 6s linear infinite;
    margin-bottom: 48px;
  }

  @keyframes ft8BorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  /* ── Container ── */
  .ft8 .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 ── */
  .ft8__logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.25s ease;
  }

  .ft8__logo:hover {
    opacity: 0.8;
  }

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

  /* ── Divider ── */
  .ft8__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 2px;
    margin-bottom: 28px;
    animation: ft8DividerPulse 3s ease-in-out infinite;
  }

  @keyframes ft8DividerPulse {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
  }

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

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

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

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

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

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

  .ft8__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ft8__social a:hover {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* ── Bottom ── */
  .ft8__bottom {
    display: flex;
    align-items: center;
  }

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

  /* ── Responsive ── */
  @media (max-width: 800px) {
    .ft8__border {
      margin-bottom: 36px;
    }

    .ft8__nav {
      gap: 20px;
    }
  }

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

    .ft8__border {
      margin-bottom: 32px;
    }

    .ft8__logo {
      font-size: 22px;
    }

    .ft8__desc {
      font-size: 13px;
    }

    .ft8__nav {
      gap: 16px;
    }

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

    .ft8__social a {
      width: 38px;
      height: 38px;
      font-size: 14px;
    }

    .ft8__social {
      gap: 10px;
    }
  }

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

    .ft8__divider {
      animation: none;
    }

    .ft8__social a,
    .ft8__nav a,
    .ft8__nav a::after,
    .ft8__logo {
      transition: none;
    }
  }



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}