
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #6c5ce7;
  --accent-rgb: 108,92,231;
  --accent2: #e75ca9;
  --accent2-rgb: 231,92,169;
  --accent3: #72c8ea;
  --accent3-rgb: 114,200,234;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #6c5ce7;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --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;
    }
  }



  /* ===== HERO v1 ===== */
  .hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
  }

  /* Фоновое изображение */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.55);
    transform: scale(1.1);
    z-index: 1;
  }

  /* Контент */
  .hero > .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  /* Левая колонка */
  .hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 15px 0;
    line-height: 1.15;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textSecondary);
    margin-bottom: 28px;
    max-width: 520px;
  }

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

  .hero a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  /* Справа — второе изображение */
  .hero > .container > img {
    width: 380px;
    height: auto;
    max-height: 70%;
    border-radius: var(--borderRadius);
    object-fit: contain;
  }

  /* ===== Адаптив ===== */
  @media (max-width: 950px) {
    .hero > .container {
      flex-direction: column;
      text-align: center;
    }

    .hero p {
      margin-left: auto;
      margin-right: auto;
    }

    .hero > .container > img {
      width: 300px;
      margin-top: 25px;
    }
  }

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

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

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

    .hero > .container > img {
      display: none;
    }
  }



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



  /* ── Section ── */
  .gl13 {
    position: relative;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

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

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

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

  .gl13__kicker i {
    font-size: 11px;
  }

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

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

  /* ── Filter Tabs (decorative) ── */
  .gl13__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .gl13__tab {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 24px;
    background: transparent;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    cursor: default;
    transition: all 0.3s ease;
  }

  .gl13__tab--active {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 0 16px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* ── Masonry Grid ── */
  .gl13__masonry {
    columns: 3;
    column-gap: 16px;
  }

  .gl13__item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .gl13__item.visible {
    opacity: 1;
    transform: scale(1);
  }

  /* ── Size Variants ── */
  .gl13__item--tall {
    aspect-ratio: 3 / 5;
  }

  .gl13__item--wide {
    aspect-ratio: 4 / 3;
  }

  .gl13__item--square {
    aspect-ratio: 1 / 1;
  }

  /* ── Image ── */
  .gl13__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gl13__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .gl13__item:hover .gl13__img-wrap img {
    transform: scale(1.06);
  }

  /* ── Hover Overlay ── */
  .gl13__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 40%,
      color-mix(in srgb, var(--bodyBG) 90%, transparent)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl13__item:hover .gl13__overlay {
    opacity: 1;
  }

  .gl13__tag {
    display: inline-block;
    width: fit-content;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    transform: translateY(8px);
    transition: transform 0.4s 0.05s ease;
  }

  .gl13__item:hover .gl13__tag {
    transform: translateY(0);
  }

  .gl13__overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0;
    transform: translateY(8px);
    transition: transform 0.4s 0.1s ease;
  }

  .gl13__item:hover .gl13__overlay h3 {
    transform: translateY(0);
  }

  /* ── Static Border ── */
  .gl13__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.3s ease;
  }

  .gl13__item:hover::after {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .gl13 {
      padding: 80px 20px;
    }

    .gl13__masonry {
      columns: 2;
      column-gap: 10px;
    }

    .gl13__item {
      margin-bottom: 10px;
    }

    .gl13__overlay {
      opacity: 1;
    }

    .gl13__tag,
    .gl13__overlay h3 {
      transform: translateY(0);
    }
  }

  @media (max-width: 480px) {
    .gl13 {
      padding: 64px 16px;
    }

    .gl13__masonry {
      columns: 1;
    }

    .gl13__head {
      margin-bottom: 32px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .gl13__item {
      opacity: 1;
      transform: scale(1);
      transition: none;
    }

    .gl13__img-wrap img {
      transition: none;
    }

    .gl13__overlay,
    .gl13__tag,
    .gl13__overlay h3 {
      transition: none;
    }
  }



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

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

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

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

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

  /* Timeline */
  .rm13__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* Central vertical line */
  .rm13__rail {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .rm13__rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      var(--accent2)
    );
    border-radius: 2px;
    transition: height 0.1s linear;
    z-index: 1;
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Milestone row */
  .rm13__milestone {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
  }

  .rm13__milestone:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .rm13__milestone:last-child {
    margin-bottom: 0;
  }

  /* Dot on rail */
  .rm13__dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--secondStyleColor);
    z-index: 3;
    transition: all 0.5s ease;
  }

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

  .rm13__dot--active {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent);
    animation: rm13DotPulse 2s ease-in-out infinite;
  }

  .rm13__dot--empty {
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: color-mix(in srgb, var(--textColor1) 35%, transparent);
  }

  @keyframes rm13DotPulse {
    0%, 100% { box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 30px color-mix(in srgb, var(--accent2) 50%, transparent); }
  }

  /* Branch line from dot to card */
  .rm13__branch {
    position: absolute;
    top: 30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2)
    );
    z-index: 2;
  }

  .rm13__milestone:nth-child(odd) .rm13__branch {
    right: calc(50% + 22px);
  }

  .rm13__milestone:nth-child(even) .rm13__branch {
    left: calc(50% + 22px);
  }

  /* Card */
  .rm13__card {
    width: calc(50% - 60px);
    background: var(--bgCard);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    padding: 26px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .rm13__milestone:nth-child(odd) .rm13__card {
    margin-right: auto;
    transform: translateX(-30px);
  }

  .rm13__milestone:nth-child(even) .rm13__card {
    margin-left: auto;
    transform: translateX(30px);
  }

  .rm13__card.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .rm13__card:hover {
    border-color: color-mix(in srgb, var(--accent2) 30%, transparent);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .rm13__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .rm13__date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 12px;
  }

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

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

  .rm13__list li {
    font-size: 13px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding-left: 20px;
    position: relative;
  }

  .rm13__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--secondStyleColor),
      var(--accent2)
    );
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm13__card {
      width: calc(50% - 50px);
      padding: 22px;
    }
  }

  @media (max-width: 768px) {
    .rm13__rail,
    .rm13__rail-fill {
      left: 24px;
      transform: none;
    }

    .rm13__milestone,
    .rm13__milestone:nth-child(odd) {
      flex-direction: column;
      padding-left: 60px;
    }

    .rm13__dot {
      left: 24px;
      top: 0;
    }

    .rm13__branch {
      display: none;
    }

    .rm13__card,
    .rm13__milestone:nth-child(odd) .rm13__card,
    .rm13__milestone:nth-child(even) .rm13__card {
      width: 100%;
      margin: 20px 0 0;
      transform: translateY(20px);
    }

    .rm13__card.visible {
      transform: translateY(0);
    }
  }

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

    .rm13__head {
      margin-bottom: 40px;
    }

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

    .rm13__milestone {
      margin-bottom: 40px;
    }

    .rm13__card {
      padding: 18px;
    }

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

  @media (prefers-reduced-motion: reduce) {
    .rm13__card {
      transition: none;
      opacity: 1;
      transform: none;
    }

    .rm13__dot--active {
      animation: none;
    }

    .rm13__rail-fill {
      transition: none;
    }

    .rm13__dot {
      transition: none;
    }
  }



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

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

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

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

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

  .pl10__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    align-items: start;
  }

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

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

  .pl10__card--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 0 50px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* Visual top area */
  .pl10__visual {
    position: relative;
    height: 200px;
    overflow: hidden;
  }

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

  .pl10__card:hover .pl10__visual img {
    transform: scale(1.06);
  }

  .pl10__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 95%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 40%, transparent) 50%,
      transparent 100%);
    pointer-events: none;
  }

  .pl10__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .pl10__tier {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px clamp(20px, 2.5vw, 28px);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .pl10__tier h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
  }

  .pl10__price {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl10__price small {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
  }

  /* Content bottom */
  .pl10__content {
    padding: clamp(18px, 2.5vw, 24px) clamp(20px, 2.5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

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

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

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

  .pl10__list li i {
    font-size: 11px;
    color: var(--secondStyleColor);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

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

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

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

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

  @media (max-width: 900px) {
    .pl10__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pl10__card--featured { order: -1; }
  }

  @media (max-width: 600px) {
    .pl10 { padding: 48px 0; }
    .pl10__head { margin-bottom: 36px; }
    .pl10__visual { height: 160px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl10__card, .pl10__visual img, .pl10__btn { transition: none; }
  }



  /* ===========================
     Reviews 17 — Constellation Network
     Animated SVG mesh background + rotating gradient card borders
     =========================== */

  @property --rv17-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  .rv17 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background:
      radial-gradient(
        1200px 700px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 60%
      ),
      radial-gradient(
        1000px 600px at 80% 80%,
        color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
        transparent 65%
      ),
      var(--bodyBG);
  }

  /* SVG constellation background */
  .rv17__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Header */
  .rv17__head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 48px;
    text-align: center;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .rv17__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .rv17__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
  }

  .rv17__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

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

  /* Card — wrapper for rotating border */
  .rv17__card {
    position: relative;
    border-radius: var(--borderRadius);
  }

  /* Rotating conic-gradient border */
  .rv17__border {
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    padding: 1.5px;
    background: conic-gradient(
      from var(--rv17-angle),
      transparent 0%,
      var(--secondStyleColor) 6%,
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent) 14%,
      transparent 26%
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .rv17__card:hover .rv17__border {
    opacity: 1;
    animation: rv17-rotate 4s linear infinite;
  }

  @keyframes rv17-rotate {
    to {
      --rv17-angle: 360deg;
    }
  }

  /* Card inner content */
  .rv17__inner {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 78%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    transition:
      border-color 0.4s ease,
      box-shadow 0.4s ease,
      transform 0.4s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .rv17__card:hover .rv17__inner {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow:
      0 10px 36px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  /* Stars */
  .rv17__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  /* Text */
  .rv17__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
  }

  /* Author */
  .rv17__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
  }

  .rv17__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  .rv17__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .rv17__role {
    margin: 0;
    font-size: 12px;
    color: var(--textColor1);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv17__bg * {
      animation: none !important;
    }
    .rv17__border {
      animation: none !important;
    }
    .rv17__inner {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv17__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .rv17__inner {
      padding: 24px 20px 20px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .rv17__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv17__grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv17__inner {
      padding: 22px 18px 20px;
    }
  }



  /* ===== FEATURES v11 — Central image with floating pills ===== */

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

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

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

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

  .ft11__showcase {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Central image */
  .ft11__center {
    position: relative;
    z-index: 1;
    width: min(380px, 50%);
  }

  .ft11__frame {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 3 / 4;
  }

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

  .ft11__glow {
    position: absolute;
    inset: -30px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(60px);
    z-index: -1;
    animation: ft11Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes ft11Breathe {
    0% { opacity: 0.04; transform: scale(0.95); }
    100% { opacity: 0.1; transform: scale(1.05); }
  }

  /* Floating pills */
  .ft11__pills {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .ft11__pill {
    position: absolute;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    max-width: 260px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .ft11__pill--tl { top: 5%; left: 0; }
  .ft11__pill--tr { top: 10%; right: 0; }
  .ft11__pill--bl { bottom: 10%; left: 0; }
  .ft11__pill--br { bottom: 5%; right: 0; }

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

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

  .ft11__pill h3 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft11__pill {
      max-width: 220px;
      padding: 14px 16px;
    }

    .ft11__center {
      width: min(320px, 45%);
    }
  }

  @media (max-width: 800px) {
    .ft11__showcase {
      flex-direction: column;
      min-height: auto;
      gap: 24px;
    }

    .ft11__pills {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ft11__pill {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      max-width: 100%;
    }

    .ft11__center {
      width: min(340px, 80%);
    }
  }

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

    .ft11__head {
      margin-bottom: 36px;
    }

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

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

    .ft11__pill {
      padding: 14px 16px;
      gap: 12px;
    }

    .ft11__pill h3 {
      font-size: 14px;
    }

    .ft11__pill-icon {
      width: 36px;
      height: 36px;
    }

    .ft11__pill-icon i {
      font-size: 14px;
    }

    .ft11__center {
      width: min(280px, 85%);
    }
  }

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



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



  .jaifsdlliweif .container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    align-items: stretch;
  }
  .jaifsdlliweifContainer {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .about-left {
    flex: 0 0 60%;
    height: 600px;
    img {
      height: 100%;
      width: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  .about-right {
    display: flex;
    flex-direction: column;
    flex: 0 0 40%;
  }
  .about-righr-img {
    height: 300px;
    img {
      height: 100%;
      width: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }
  .iiyyru {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    && a {
      padding: 12px 20px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-weight: 800;
      cursor: pointer;
      border: 1px solid transparent;
      transition: 0.2s all linear;
      &&:hover {
        color: var(--textColor1);
        background-color: transparent;
        border: 1px solid var(--secondStyleColor);
      }
    }
  }

  @media (max-width: 800px) {
    .jaifsdlliweif .container {
      flex-direction: column;
    }
    .about-right {
      flex-direction: column-reverse;
    }
  }



  .hkuawrfbhkskawdvchk {
    width: 90%;
  }

  #faq .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    && h2 {
      width: 100%;
      text-align: flex-start;
      margin-bottom: 40px;
    }
  }
  .faqImageWrap {
    width: 1000px;
    height: 700px;
    && img {
      width: 100%;
      border-radius: var(--borderRadius);
      height: 100%;
      object-fit: cover;
    }
  }
  /*  */
  .containerFAQ {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq > div {
    border-radius: var(--borderRadius);
  }

  #faq {
    border-radius: var(--borderRadius);
    padding: var(--sectionPadding);
  }

  .accord__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 20px 20px 20px 0;
    border-bottom: 1px solid var(--secondStyleColor);
  }

  .accord__item h3,
  .accord__item p {
    margin-bottom: 0;
    margin: 0;
    color: var(--textColor1);
  }

  .accord__item > div:first-child > p {
    font-weight: 900;
    color: var(--secondStyleColor) !important;
    font-size: 24px !important;
    margin-bottom: 0;
  }

  .accord__item > div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .accord__item > div:last-child {
    max-height: 0;
    visibility: hidden;
    transition: 0.3s all linear;
  }

  .accord__item > div:last-child p {
    color: var(--textColor1) !important;
    text-align: left;
  }

  .show {
    visibility: visible !important;
  }

  .accord__item div + div {
    transition: max-height 0.3s ease;
    overflow: hidden;
    /* padding: 20px; padding будет учтен в scrollHeight */
    box-sizing: border-box; /* важно! */
  }

  .accord__item div + div p {
    transition: margin-top 0.3s ease;
    visibility: hidden;
    margin: 0;
  }

  .accord__item div + div.show p {
    visibility: visible;
    opacity: 1;
  }

  div.show {
    margin-top: 28px;
  }

  @media (max-width: 768px) {
    .accord__item {
      padding: 32px 16px;
    }
    .faqImageWrap {
      display: none;
    }
    .hkuawrfbhkskawdvchk {
      width: 100%;
    }
    #faq .container h2 {
      text-align: center;
    }
  }



  .ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

  .ft5__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

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

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

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

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

    .ft5__nav {
      justify-content: flex-start;
    }
  }

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

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      transition: none;
    }
  }



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