
:root {
  --bg: #1a1a2e;
  --bg-card: #16213e;
  --text: #eaeaea;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #e94560;
  --accent-rgb: 233,69,96;
  --accent2: #cde945;
  --accent2-rgb: 205,233,69;
  --accent3: #ec5ceb;
  --accent3-rgb: 236,92,235;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bodyBG: #1a1a2e;
  --textColor1: #eaeaea;
  --textColor2: #ffffff;
  --textSecondary: #b6b6bb;
  --textMuted: #82828c;
  --secondStyleColor: #e94560;
  --bgCard: #16213e;
  --bgAlt: #2b2b3d;
  --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;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.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; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


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

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

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

  .nav li {
    list-style: none;
  }

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

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

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

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

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



  .qz1n7 {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 52px) 0;
    min-height: 675px;
    display: flex;
    align-items: center;
  }

  .m9k2p {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px);
    transform: scale(1.06);
    opacity: 0.9;
    z-index: -2;
  }

  .qz1n7::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      60% 80% at 30% 40%,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.7)
    );
    z-index: -1;
  }

  .r4t8x {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(18px, 4vw, 46px);
    align-items: center;
  }

  /* left */
  .h1v3s {
    color: var(--textColor1);
  }

  .u3p0a {
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .t0y7q {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .b8d1c {
    margin: 0 0 16px;
    line-height: 1.55;
  }

  .k7l2e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 20px;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--textColor1);
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    transition: 0.2s;
  }
  .k7l2e:hover {
    transform: translateY(-2px);
  }

  /* card */
  .z2w6d {
    width: 600px;
    justify-self: end;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: var(--bodyBG);
    backdrop-filter: blur(3px);
  }

  .z2w6d__img {
    position: relative;
    height: 390px;

    background: rgba(255, 255, 255, 0.08);
  }

  .z2w6d__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
  }

  .z2w6d__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.55);
  }

  .z2w6d__stats {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .n1c0v {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    padding: 6px 15px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--secondStyleColor);
  }

  .n1c0v__ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .z2w6d__ttl {
    text-align: right;
    min-width: 220px;
  }

  .z2w6d__t1 {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .z2w6d__t2 {
    margin-top: 2px;
    font-size: 20px;
    color: var(--secondStyleColor);
  }

  @media (max-width: 900px) {
    h1 {
      font-size: 36px;
    }
    .h1v3s {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      && h1,
      p {
        text-align: center;
      }
    }
    .r4t8x {
      grid-template-columns: 1fr;
    }
    .z2w6d {
      justify-self: start;
    }
    .z2w6d {
      width: 100%;
    }
    .z2w6d__bar {
      flex-direction: column;
      align-items: flex-start;
    }
    .z2w6d__ttl {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
    }
    .z2w6d__img {
      height: 190px;
    }
  }



  :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: 2px dotted 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: var(--textColor1);
    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);
    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;
    }
  }



  .aboutWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }
  .about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-left a {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    width: fit-content;
    color: var(--textColor2);
    font-weight: 900;
    text-transform: uppercase;
  }
  .about-right {
    display: flex;
    align-items: center;
    gap: 20px;
    .a_img {
      height: 400px;
      object-position: 50% 20%;
      border-radius: var(--borderRadius);
      img {
        border-radius: inherit;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 20%;
      }
    }
  }
  @media (max-width: 800px) {
    .aboutWrapper {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      width: 100%;
    }
    .a_img {
      width: 100%;
    }
  }



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

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

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

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

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

  .gl1__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gl1__item {
    border-radius: var(--borderRadius);
    overflow: hidden;
    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;
  }

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

  .gl1__img {
    aspect-ratio: 16/10;
    overflow: hidden;
  }

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

  .gl1__item:hover .gl1__img img {
    transform: scale(1.06);
  }

  .gl1__info {
    padding: 16px 18px;
  }

  .gl1__info h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
  }

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

  @media (max-width: 900px) {
    .gl1__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .gl1 { padding: 48px 0; }
    .gl1__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .gl1__head { margin-bottom: 32px; }
  }

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



  /*  */
  .plx-tableSection {
    color: var(--textColor1);
  }

  .plx-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .plx-head p {
    opacity: 0.8;
    text-wrap: balance;
  }

  .plx-table {
    display: grid;
    gap: 12px;
  }

  .plx-row {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: rgba(0, 0, 0, 0.12);
  }

  .plx-row--head {
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
  }

  .plx-row--spot {
    border-width: 2px;
    background: rgba(0, 0, 0, 0.22);
  }

  .plx-row div:last-child {
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

    .plx-row--head {
      display: none;
    }

    .plx-row div {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 6px;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }

    .plx-row div:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .plx-row div::before {
      content: attr(data-label);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 11px;
      opacity: 0.7;
    }
  }



  /* центрирование блока по высоте */
  #features {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
  }
  #features .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .hufla {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
  }
  .hufla h2,
  .hufla p {
    text-align: center;
  }
  .hufla > span {
    display: flex;
    width: 30%;
    margin: 0 auto;
    border-radius: var(--borderRadius);
    height: 2px;
    background-color: var(--secondStyleColor);
  }

  .trunox {
    width: 100%;
    height: 50vh;
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .mivra {
    position: relative;
    --x-px: calc(var(--x) * 1px);
    --y-px: calc(var(--y) * 1px);
    --border: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .mivra::before,
  .mivra::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      800px circle at var(--x-px) var(--y-px),
      var(--secondStyleColor),
      transparent 40%
    );
    pointer-events: none;
  }

  .mivra::before {
    z-index: 1;
  }

  .mivra::after {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
  }

  .mivra:hover::after {
    opacity: 1;
  }

  .praxu {
    background: var(--bgCard);
    border-radius: inherit;
    color: var(--textColor1);
    text-decoration: none;
    position: absolute;
    inset: var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 3;
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && h3 {
      text-align: center;
      margin-bottom: 10px;
    }
  }

  .praxu > p {
    opacity: 0.7;
  }
  @media (max-width: 800px) {
    .trunox {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      gap: 12px;
    }

    .mivra {
      min-height: 240px;
    }
    .hufla {
      margin-bottom: 20px;
    }
  }



  /* ===== HOW v12 — Horizontal stepper ===== */

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

  .hw12__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
  }

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

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

  .hw12__stepper {
    position: relative;
  }

  /* Horizontal connecting line */
  .hw12__line {
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    z-index: 0;
  }

  .hw12__progress {
    width: 75%;
    height: 100%;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent)
    );
    border-radius: 2px;
  }

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

  .hw12__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hw12__node {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--bodyBG);
    border: 2px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .hw12__node::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    animation: hw12Spin 12s linear infinite;
  }

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

  .hw12__node span {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .hw12__step:hover .hw12__node {
    transform: scale(1.1);
    box-shadow: 0 0 24px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hw12__content {
    max-width: 260px;
  }

  .hw12__content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

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

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

    .hw12__line {
      display: none;
    }
  }

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

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

    .hw12__node {
      width: 50px;
      height: 50px;
      margin-bottom: 18px;
    }

    .hw12__node span {
      font-size: 14px;
    }
  }

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

    .hw12__head {
      margin-bottom: 36px;
    }

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

    .hw12__steps {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .hw12__node {
      width: 46px;
      height: 46px;
      margin-bottom: 14px;
    }

    .hw12__node span {
      font-size: 13px;
    }

    .hw12__node::after {
      inset: -5px;
    }

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

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

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



  .tst {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 48px 20px;
  }

  .tst .container {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    && p {
      text-align: center;
    }
  }

  .tst__card {
    max-width: var(--maxWidthContainer);
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 48px 32px 28px;
  }

  /* ===== items ===== */
  .tst__item {
    display: none;
    text-align: center;
    color: var(--textColor1);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    margin: 0 auto;
    max-width: var(--maxWidthContainer);
    text-wrap: balance;
  }
  .tst__item.is-active {
    display: block;
  }

  .tst__mark {
    color: var(--secondStyleColor);
  }

  /* ===== avatars ===== */
  .tst__avatars {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
  }

  .tst__avatarBtn {
    width: 62px;
    height: 62px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    outline: none;
  }

  .tst__avatarBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .tst__avatarBtn.is-active {
    border-color: var(--secondStyleColor);
  }

  /* ===== meta ===== */
  .tst__meta {
    text-align: center;
    padding-top: 18px;
  }
  .tst__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }
  .tst__role {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--textColor1);
    text-decoration: none;
  }
  .tst__role:hover {
    text-decoration: underline;
  }

  @media (max-width: 800px) {
    .tst__item {
      min-height: 200px;
    }
    .tst .container {
      margin-bottom: 20px;
    }
    .tst__card {
      width: 100%;
      max-width: 90%;
    }
  }



  /* ===========================
     Extra 16 — Stats Counter
     Animated counters + grid pattern bg + bar chart decoration
     =========================== */

  .sth16 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* Background grid pattern */
  .sth16__bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
      repeating-linear-gradient(
        0deg,
        var(--secondStyleColor) 0,
        var(--secondStyleColor) 1px,
        transparent 1px,
        transparent 60px
      ),
      repeating-linear-gradient(
        90deg,
        var(--secondStyleColor) 0,
        var(--secondStyleColor) 1px,
        transparent 1px,
        transparent 60px
      );
  }

  /* Animated bar chart decoration */
  .sth16__bars {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    pointer-events: none;
    opacity: 0.04;
    z-index: 0;
  }

  .sth16__bar {
    width: 40px;
    border-radius: 4px 4px 0 0;
    background: var(--secondStyleColor);
    animation: sth16-barGrow 3s ease-in-out infinite alternate;
  }

  .sth16__bar--1 { height: 60%; animation-delay: 0s; }
  .sth16__bar--2 { height: 85%; animation-delay: 0.3s; }
  .sth16__bar--3 { height: 45%; animation-delay: 0.6s; }
  .sth16__bar--4 { height: 95%; animation-delay: 0.9s; }
  .sth16__bar--5 { height: 70%; animation-delay: 1.2s; }

  @keyframes sth16-barGrow {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1); }
  }

  /* Container */
  .sth16 .container {
    position: relative;
    z-index: 1;
  }

  /* Header */
  .sth16__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }

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

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

  /* Stats grid */
  .sth16__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  /* Stat block */
  .sth16__stat {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .sth16__stat.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover pulse ring */
  .sth16__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid var(--secondStyleColor);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sth16__stat:hover .sth16__pulse {
    opacity: 0.25;
    animation: sth16-pulseRing 1.2s ease-out infinite;
  }

  @keyframes sth16-pulseRing {
    0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
    }
  }

  /* Icon */
  .sth16__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sth16__stat:hover .sth16__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Number */
  .sth16__number {
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .sth16__counter {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--textColor1);
    font-variant-numeric: tabular-nums;
  }

  .sth16__suffix {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  /* Label */
  .sth16__label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    letter-spacing: 0.02em;
  }

  /* Divider */
  .sth16__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
      to bottom,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent
    );
    flex-shrink: 0;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .sth16__bar {
      animation: none;
    }
    .sth16__pulse {
      animation: none !important;
    }
    .sth16__icon {
      transition: none;
    }
    .sth16__stat {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .sth16__grid {
      gap: 0;
    }
    .sth16__stat {
      min-width: 140px;
      padding: 24px 16px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .sth16__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .sth16__divider {
      display: none;
    }
    .sth16__stat {
      max-width: none;
      padding: 24px 16px;
    }
    .sth16__bars {
      opacity: 0.02;
    }
  }



  /* ===== ROADMAP v10 — Full-width strips + SVG dashed connector + glow ===== */

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

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

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

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

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

  /* Timeline */
  .rm10__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* SVG connector */
  .rm10__connector {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 0;
  }

  .rm10__connector-svg {
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .rm10__connector-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 50px;
    margin-left: -3px;
    background: var(--secondStyleColor);
    border-radius: 6px;
    filter: blur(5px);
    opacity: 0.5;
    animation: rm10Travel 4.5s ease-in-out infinite;
  }

  @keyframes rm10Travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: calc(100% - 50px); opacity: 0; }
  }

  /* Strip */
  .rm10__strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

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

  /* Marker column */
  .rm10__strip-marker {
    display: flex;
    justify-content: center;
    padding-top: 28px;
  }

  .rm10__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm10__dot--pulse {
    animation: rm10DotPulse 2s ease-in-out infinite;
  }

  @keyframes rm10DotPulse {
    0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--secondStyleColor) 0%, transparent); }
  }

  .rm10__dot--empty {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

  /* Content area */
  .rm10__strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 20px 26px 16px;
    transition: background 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-content {
    background: rgba(255, 255, 255, 0.015);
  }

  .rm10__strip--active .rm10__strip-content {
    background: color-mix(in srgb, var(--secondStyleColor) 3%, transparent);
  }

  .rm10__strip-left {
    flex: 1;
  }

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

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

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

  .rm10__strip-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .rm10__strip-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-ico {
    transform: scale(1.1);
  }

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

  .rm10__status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    white-space: nowrap;
  }

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .rm10__strip-left h3 {
      font-size: 17px;
    }
  }

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

    .rm10__strip-right {
      flex-direction: row;
      gap: 12px;
    }

    .rm10__strip-left p {
      font-size: 13px;
    }

    .rm10__strip-ico {
      width: 40px;
      height: 40px;
    }

    .rm10__strip-ico i {
      font-size: 16px;
    }
  }

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

    .rm10__head {
      margin-bottom: 36px;
    }

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

    .rm10__strip {
      grid-template-columns: 40px 1fr;
    }

    .rm10__connector {
      left: 18px;
    }

    .rm10__strip-content {
      padding: 20px 12px 20px 10px;
    }

    .rm10__strip-left h3 {
      font-size: 16px;
    }
  }

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

    .rm10__dot--pulse {
      animation: none;
    }

    .rm10__strip-content,
    .rm10__strip-ico {
      transition: none;
    }
  }



  /*  */
  .faq--builder {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--builder .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }

  .faqContent {
    width: 100%;
  }

  .faqContent h2 {
    margin: 0 0 12px 0;
  }

  .faqLead {
    margin: 0 0 28px 0;
    color: var(--textColor1);
    opacity: 0.9;
    max-width: 70ch;
  }

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

  .accord__item {
    border: 1px dotted
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    border-radius: calc(var(--borderRadius) * 0.75);
    overflow: clip;
    transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
  }

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

  .accord__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
  }

  .accord__trigger:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .accord__title {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.35;
  }

  .accord__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .accord__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
    padding: 0 20px;
  }

  .accord__panel p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .accord__panel.show {
    opacity: 1;
    padding-top: 2px;
  }

  .faqImageWrap {
    display: block;
    height: 100%;
  }

  .faqImagePlaceholder {
    width: 100%;
    height: 785px;
    min-height: 320px;
    border-radius: var(--borderRadius);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 65%, transparent);
    background:
      radial-gradient(
        120% 120% at 100% 0%,
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 0%,
        transparent 55%
      ),
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 12%, transparent),
        transparent 60%
      );
    padding: 12px;
  }

  .faqImagePlaceholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  @media (max-width: 980px) {
    .faq--builder .container {
      grid-template-columns: 1fr;
      && h2 {
        text-align: center;
      }
    }

    .faqImageWrap {
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .accord__trigger {
      padding: 16px 16px;
    }

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }



  .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;
    row-gap: 8px;
  }

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



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