
:root {
  --bg: #1c1410;
  --bg-card: #2a1f17;
  --text: #f0e6d3;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #ff6b35;
  --accent-rgb: 255,107,53;
  --accent2: #86ff35;
  --accent2-rgb: 134,255,53;
  --accent3: #ff4fb2;
  --accent3-rgb: 255,79,178;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Roboto', sans-serif;
  --font-heading: 'Roboto', sans-serif;
  --bodyBG: #1c1410;
  --textColor1: #f0e6d3;
  --textColor2: #111111;
  --textSecondary: #bbb2a2;
  --textMuted: #867d72;
  --secondStyleColor: #ff6b35;
  --bgCard: #2a1f17;
  --bgAlt: #2d2520;
  --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 */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .headerButton {
    transition: 0.2s all linear;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    background-color: var(--textColor2);
    color: var(--textColor1);
    cursor: pointer;
    border-radius: var(--borderRadius);
  }
  .headerButton:hover {
    transform: translateY(-2px);
  }
  .ham {
    display: none;
  }

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

  .nav li {
    list-style: none;
  }

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

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

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

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

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



  /*  */
  .homeuyydgb {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }

    && h1 {
      text-transform: uppercase;
      max-width: 900px;
    }

    && a {
      font-size: 18px;
      padding: 15px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--textColor1);
      width: fit-content;
      color: var(--bodyBG);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        background-color: var(--secondStyleColor);
      }
    }
  }

  .homeuyydgb .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    && .hrr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .hll {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      background-color: rgba(17, 17, 17, 0.4);
      position: relative;
      max-width: 500px;
      border-radius: var(--borderRadius);
      && span:first-child {
        font-size: 144px;
        font-weight: 900;
        color: var(--secondStyleColor);
      }
      && p {
        font-style: italic;
        color: var(--textColor1);
      }

      && .khvaejklj {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .homeuyydgb .container {
      flex-direction: column;
      && .hrr {
        align-items: center;
        && h1 {
          text-align: center;
        }
        && p {
          text-align: center;
        }
      }
      && .hll {
        gap: 10px;
        padding: 10px;
        && span:first-child {
          font-size: 75px;
        }
      }
    }
  }



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

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

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

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

  .toc {
    background-color: transparent;
    counter-reset: toc-counter;
  }

  .toc a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 10px 22px 10px 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 40%, var(--textColor1)));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    border-color: var(--secondStyleColor);
    background-color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: scale(1.1);
  }

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

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

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

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

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

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
    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;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::before,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }



  /*  */
  .absssss {
    position: relative;
    &&::after {
      position: absolute;
      content: "";
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      top: 7%;
      left: -15%;
      z-index: -1;
      opacity: 0.1;
    }
  }

  .absssss .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .abllllllll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    && a {
      padding: 12px 40px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-size: 20px;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-2px);
      }
    }
    && p {
      text-wrap: balance;
    }
  }
  .abrrrrrrrrr {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    &&::before {
      position: absolute;
      content: "";
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      bottom: -15%;
      left: -18%;
      opacity: 0.1;
      z-index: -1;
    }
  }
  .abelrrr {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px;
    background-color: var(--bodyBG);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: var(--borderRadius);

    && .abiiimgw {
      min-width: 140px;
      max-width: 140px;
      border-radius: 50%;
      width: 140px;
      height: 140px;
      && img {
        width: 100%;
        border-radius: inherit;
        height: 100%;
        object-fit: cover;
      }
    }

    && svg {
      fill: var(--secondStyleColor);
    }
    && p {
      max-width: 90%;
    }
  }
  .abelrrr div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    && p:last-child {
      font-style: italic;
    }
  }

  @media (max-width: 800px) {
    .absssss {
      &&::after {
        display: none;
      }
    }
    .absssss .container {
      flex-direction: column;
    }
    .abelrrr {
      flex-direction: column-reverse;
      && .abiiimgw {
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
      }
    }
    .abelrrr div {
      justify-content: center;
      align-items: center;
      && p {
        text-align: center;
      }
    }
    .abrrrrrrrrr {
      &&::before {
        left: -26%;
        bottom: 12%;
      }
    }
    .abllllllll {
      align-items: center;
      && h2,
      p {
        text-align: center;
      }
    }
  }



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



.feat22{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.feat22__circle{
  position:absolute;
  border-radius:50%;
  border:1px solid var(--borderSubtle);
  pointer-events:none;
  opacity:.4;
}
.feat22__circle--1{
  width:600px;height:600px;
  top:-15%;right:-10%;
  animation:feat22rotate 60s linear infinite;
}
.feat22__circle--2{
  width:400px;height:400px;
  bottom:-10%;left:-5%;
  animation:feat22rotate 45s linear infinite reverse;
}
@keyframes feat22rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}

.feat22__container{position:relative;z-index:1;max-width:1100px}

.feat22__header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:2rem;
  margin-bottom:4rem;
  flex-wrap:wrap;
}
.feat22__header-left{max-width:550px}
.feat22__label{
  font-size:.65rem;font-weight:800;
  letter-spacing:.25em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1rem;
}
.feat22 h2{color:var(--textColor1)}
.feat22__header-right{max-width:350px}
.feat22__header-right p{
  color:var(--textSecondary);
  font-style:italic;
}

.feat22__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  perspective:1200px;
}

.feat22__card{
  position:relative;
  background:var(--bgCard);
  border:1px solid var(--borderSubtle);
  border-radius:var(--borderRadius);
  padding:2.5rem 2rem;
  transform-style:preserve-3d;
  transition:transform .4s cubic-bezier(.4,0,.2,1),box-shadow .4s ease;
  cursor:default;
  opacity:0;transform:translateY(30px) rotateX(5deg);
}
.feat22__card.visible{opacity:1;transform:translateY(0) rotateX(0)}
.feat22__card:hover{
  transform:translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.feat22__card::before{
  content:'';position:absolute;
  top:0;left:1.5rem;right:1.5rem;
  height:3px;border-radius:0 0 3px 3px;
  transform:scaleX(0);
  transition:transform .3s ease;
  transform-origin:left;
}
.feat22__card:hover::before{transform:scaleX(1)}
.feat22__card:nth-child(1)::before,.feat22__card:nth-child(5)::before{background:var(--secondStyleColor)}
.feat22__card:nth-child(2)::before,.feat22__card:nth-child(4)::before{background:var(--accent2)}
.feat22__card:nth-child(3)::before,.feat22__card:nth-child(6)::before{background:var(--accent3)}

.feat22__card-number{
  font-size:4rem;font-weight:800;
  line-height:1;
  color:var(--bgAlt);
  margin-bottom:1.5rem;
  transition:color .3s;
}
.feat22__card:nth-child(1):hover .feat22__card-number,
.feat22__card:nth-child(5):hover .feat22__card-number{color:var(--secondStyleColor);opacity:.15}
.feat22__card:nth-child(2):hover .feat22__card-number,
.feat22__card:nth-child(4):hover .feat22__card-number{color:var(--accent2);opacity:.15}
.feat22__card:nth-child(3):hover .feat22__card-number,
.feat22__card:nth-child(6):hover .feat22__card-number{color:var(--accent3);opacity:.15}

.feat22__card-icon{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;
  border-radius:10px;
  font-size:1rem;
  margin-bottom:1.2rem;
  transition:transform .3s;
}
.feat22__card:hover .feat22__card-icon{transform:scale(1.1) rotate(-5deg)}
.feat22__card-icon--1{background:rgba(var(--accent-rgb),.08);color:var(--secondStyleColor)}
.feat22__card-icon--2{background:rgba(var(--accent2-rgb),.08);color:var(--accent2)}
.feat22__card-icon--3{background:rgba(var(--accent3-rgb),.08);color:var(--accent3)}

.feat22__card h3{color:var(--textColor1);margin-bottom:.6rem}
.feat22__card > p{color:var(--textSecondary);font-size:.88rem;line-height:1.75}

@media(max-width:900px){.feat22__grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){.feat22__grid{grid-template-columns:1fr}.feat22__header{flex-direction:column}}

@media(prefers-reduced-motion:reduce){
  .feat22__circle,
  .feat22__card{animation:none!important;opacity:1;transform:none;transition:none}
}



  /* ===== ROADMAP v8 — Metro-style horizontal line with nodes + cards ===== */

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

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

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

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

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

  /* Metro container */
  .rm8__metro {
    max-width: 960px;
    margin: 0 auto;
  }

  /* SVG line */
  .rm8__line {
    width: 100%;
    height: 80px;
    display: block;
    margin-bottom: 24px;
  }

  .rm8__rail {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 3;
    stroke-linecap: round;
  }

  .rm8__rail--active {
    stroke: var(--secondStyleColor);
    stroke-dasharray: 580;
    stroke-dashoffset: 0;
    opacity: 0.3;
  }

  .rm8__node {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
  }

  .rm8__node--done {
    fill: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    stroke: var(--secondStyleColor);
  }

  .rm8__node--current {
    fill: transparent;
    stroke: var(--secondStyleColor);
    stroke-width: 2.5;
  }

  .rm8__inner {
    fill: var(--secondStyleColor);
  }

  .rm8__inner--pulse {
    fill: var(--secondStyleColor);
    animation: rm8Pulse 2s ease-in-out infinite;
  }

  @keyframes rm8Pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.5; }
  }

  /* Cards grid */
  .rm8__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .rm8__card {
    position: relative;
    padding: 22px 20px;
    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;
    overflow: hidden;
  }

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

  .rm8__card--active {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent),
      transparent
    );
  }

  .rm8__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    margin-bottom: 14px;
  }

  .rm8__tag--done {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

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

  .rm8__card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
  }

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

  .rm8__card-ico {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 28px;
    color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    transition: color 0.3s ease;
    pointer-events: none;
  }

  .rm8__card:hover .rm8__card-ico {
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

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

    .rm8__line {
      display: none;
    }
  }

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

    .rm8__card p {
      font-size: 12px;
    }
  }

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

    .rm8__head {
      margin-bottom: 36px;
    }

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

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

    .rm8__card {
      padding: 18px 16px;
    }
  }

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

    .rm8__card,
    .rm8__card-ico {
      transition: none;
    }
  }



  /* ── Section ── */
  .faq14 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 20px;
    overflow: hidden;
    color: var(--textColor1);
  }

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

  /* ── Gradient Overlay ── */
  .faq14__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 20%,
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 92%, transparent) 0%,
        color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
        color-mix(in srgb, var(--bodyBG) 95%, transparent) 100%
      );
  }

  /* ── Circuit-board pattern ── */
  .faq14::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image:
      linear-gradient(
        90deg,
        var(--secondStyleColor) 1px,
        transparent 1px
      ),
      linear-gradient(
        0deg,
        var(--secondStyleColor) 1px,
        transparent 1px
      );
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* ── Container ── */
  .faq14 .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* ── Header ── */
  .faq14__head {
    text-align: center;
    margin-bottom: 56px;
  }

  .faq14__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .faq14__kicker i {
    font-size: 12px;
  }

  .faq14__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .faq14__head p {
    font-size: clamp(14px, 1.4vw, 16px);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.7;
    margin: 0 auto;
  }

  /* ── List ── */
  .faq14__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* ── Item ── */
  .faq14__item {
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .faq14__item--open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    box-shadow: 0 8px 32px
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* ── Trigger Button ── */
  .faq14__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    position: relative;
    transition:
      background 0.2s ease,
      color 0.3s ease;
  }

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

  .faq14__item--open .faq14__trigger {
    color: var(--secondStyleColor);
  }

  /* ── Neon Glow Left Border ── */
  .faq14__glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--secondStyleColor);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow:
      0 0 12px var(--secondStyleColor),
      0 0 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .faq14__item--open .faq14__glow {
    opacity: 1;
  }

  /* ── Number ── */
  .faq14__num {
    flex-shrink: 0;
    min-width: 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    transition: color 0.35s ease;
  }

  .faq14__item--open .faq14__num {
    color: var(--secondStyleColor);
  }

  /* ── Question Text ── */
  .faq14__question {
    flex: 1;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  /* ── Toggle Icon ── */
  .faq14__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    border-radius: 6px;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    transition:
      transform 0.35s ease,
      border-color 0.3s ease,
      background 0.3s ease,
      color 0.3s ease;
  }

  .faq14__item--open .faq14__toggle {
    transform: rotate(45deg);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
  }

  /* ── Body (collapsible) ── */
  .faq14__body {
    overflow: hidden;
    height: 0;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* ── Answer ── */
  .faq14__answer {
    padding: 0 24px 24px 68px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.35s 0.1s ease,
      transform 0.35s 0.1s ease;
  }

  .faq14__item--open .faq14__answer {
    opacity: 1;
    transform: translateY(0);
  }

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

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .faq14 {
      padding: clamp(48px, 6vw, 80px) 20px;
    }
  }

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

    .faq14__trigger {
      padding: 18px 20px;
      gap: 12px;
    }
  }

  @media (max-width: 600px) {
    .faq14 {
      padding: 48px 16px;
    }

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

    .faq14__answer {
      padding: 0 16px 20px 16px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq14__body,
    .faq14__answer,
    .faq14__toggle,
    .faq14__glow,
    .faq14__item,
    .faq14__trigger,
    .faq14__num {
      transition: none;
    }
  }



  .site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--textSecondary);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

  .footer-links a:hover {
    color: var(--secondStyleColor);
  }

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      align-items: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }



[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}