
:root {
  --bg: #131014;
  --bg-card: #241d25;
  --text: #e6dfe7;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #bc8a20;
  --accent-rgb: 188,138,32;
  --accent2: #20bc22;
  --accent2-rgb: 32,188,34;
  --accent3: #d2243e;
  --accent3-rgb: 210,36,62;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bodyBG: #131014;
  --textColor1: #e6dfe7;
  --textColor2: #111111;
  --textSecondary: #b1abb2;
  --textMuted: #7d787e;
  --secondStyleColor: #bc8a20;
  --bgCard: #241d25;
  --bgAlt: #242125;
  --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;
    }
  }



  /* === Random beliberda classes only === */
  .qzT1p9 {
    padding: 40px 18px;
    background:
      radial-gradient(
        520px 520px at 92% 22%,
        color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
        rgba(0, 200, 255, 0.08) 38%,
        rgba(7, 3, 18, 0) 68%
      ),
      radial-gradient(
        760px 420px at 64% 56%,
        rgba(0, 200, 255, 0.16),
        rgba(7, 3, 18, 0) 62%
      ),
      linear-gradient(180deg, #080214, #05010d);
    color: var(--textColor1);
  }

  .v0k3xR {
    margin: 0 auto;
    border-radius: var(--borderRadius);
    padding: 34px 34px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    min-height: 620px;
  }

  .a8Yp2c {
    flex: 1.05;
    padding: 12px 8px 8px 6px;
    position: relative;
    z-index: 2;
  }

  .kL2e7s {
    flex: 0.95;
    position: relative;
    z-index: 2;
  }

  .nN7x0u {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(234, 234, 234, 0.55);
    margin: 0 0 12px;
  }

  .mQ3z1b {
    line-height: 1.02;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 750;
  }

  .cR8d2e {
    margin: 0 0 22px;
    color: var(--textColor1);
    line-height: 1.65;
  }

  .bK2v9s {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
  }

  .pL0a4n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  .pL0a4n--ghost {
    background: transparent;
    color: rgba(234, 234, 234, 0.9);
    border: 1px solid rgba(234, 234, 234, 0.18);
    box-shadow: none;
  }

  .sJ6k1v {
    display: grid;
    gap: 6px;
  }

  .wD1h2y {
    color: rgba(234, 234, 234, 0.92);
    font-weight: 600;
  }

  .kV8p2z {
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(0, 200, 255, 0.95);
    font-size: 12px;
  }

  .gP1d0x {
    transform: translateY(-1px);
    opacity: 0.95;
  }
  .gP1d0x--dim {
    opacity: 0.28;
  }
  .uQ3c7m {
    margin-left: 6px;
    color: rgba(234, 234, 234, 0.75);
    font-weight: 600;
  }

  .zZ0q1p {
    position: absolute;
    left: 178px;
    top: 32px;
    width: 230px;
    height: 60px;
    opacity: 0.95;
    pointer-events: none;
  }

  /* Right side cards */
  .oX9b4m {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
  }

  .yR1c0v {
    position: absolute;
    width: 220px;
    height: 300px;
    border-radius: 14px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    backdrop-filter: blur(6px);
  }

  /* glossy edge like screenshot */
  .yR1c0v::after {
    content: "";
    position: absolute;
    inset: -40% -50%;
    background: linear-gradient(
      60deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 65%
    );
    transform: rotate(12deg);
    pointer-events: none;
  }

  .lW2p8a {
    height: 93%;
    position: absolute;
    inset: 10px 10px 58px 10px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
  }
  .lW2p8a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 50% 20%;
    filter: contrast(1.05) saturate(1.05);
  }

  .xH8u3n {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: rgba(6, 3, 16, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vE4m2k {
    font-size: 12px;
    font-weight: 650;
    color: rgba(234, 234, 234, 0.92);
  }
  .vE4m2k--price {
    color: rgba(0, 200, 255, 0.95);
    font-weight: 750;
  }

  /* Positions / rotations to match screenshot composition */
  .yR1c0v--top {
    left: 140px;
    top: 8px;
    transform: rotate(-8deg);
    z-index: 3;
  }
  .yR1c0v--right {
    left: 260px;
    top: 120px;
    transform: rotate(12deg);
    z-index: 2;
  }
  .yR1c0v--bot {
    left: 108px;
    top: 200px;
    transform: rotate(-18deg);
    z-index: 1;
  }

  /* Responsive */
  @media (max-width: 980px) {
    .v0k3xR {
      flex-direction: column;
      padding: 28px 22px;
      align-items: center;
      min-height: unset;
      && h1,
      p {
        text-align: center;
      }
    }

    .mQ3z1b {
      font-size: 40px;
    }
    .oX9b4m {
      min-height: 420px;
    }
    .yR1c0v--top {
      left: 50%;
      top: 0;
      transform: translateX(-50%) rotate(-8deg);
    }
    .yR1c0v--right {
      left: 58%;
      top: 130px;
      transform: translateX(-50%) rotate(12deg);
    }
    .yR1c0v--bot {
      left: 42%;
      top: 220px;
      transform: translateX(-50%) rotate(-18deg);
    }
    .zZ0q1p {
      left: 168px;
    }
  }

  @media (max-width: 520px) {
    .mQ3z1b {
      font-size: 34px;
    }
    .bK2v9s {
      flex-wrap: wrap;
    }
    .pL0a4n {
      flex: 1;
      min-width: 140px;
    }
    .zZ0q1p {
      display: none;
    }
    .yR1c0v {
      width: 200px;
      height: 280px;
    }
  }



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

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

  .toc h2 {
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

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

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: 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;
    }
  }



  /*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }



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

  .pt2__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.12;
    filter: blur(3px);
  }

  .pt2__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.3)
    );
    pointer-events: none;
  }

  .pt2__shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }

  .pt2__left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .pt2__number {
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 800;
    line-height: 1;
    color: var(--secondStyleColor);
    opacity: 0.15;
    flex-shrink: 0;
    letter-spacing: -0.04em;
  }

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

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

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

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

  .pt2__right {
    display: flex;
    justify-content: center;
  }

  .pt2__card {
    position: relative;
    width: min(320px, 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    border-radius: var(--borderRadius);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s ease;
  }

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

  .pt2__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--secondStyleColor);
    border-style: solid;
    border-width: 0;
    opacity: 0.5;
  }

  .pt2__corner--tl {
    top: -1px;
    left: -1px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-left-radius: var(--borderRadius);
  }

  .pt2__corner--br {
    bottom: -1px;
    right: -1px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-bottom-right-radius: var(--borderRadius);
  }

  .pt2__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

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

  .pt2__logo-link img {
    max-width: min(200px, 65%);
    max-height: 80px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
  }

  @media (max-width: 800px) {
    .pt2__shell {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .pt2__left {
      justify-content: center;
    }
    .pt2__number {
      display: none;
    }
    .pt2__content {
      align-items: center;
    }
    .pt2__desc {
      max-width: 100%;
    }
    .pt2__card {
      width: min(300px, 85vw);
    }
  }

  @media (max-width: 600px) {
    .pt2 {
      padding: 48px 0;
      min-height: auto;
    }
    .pt2__card {
      width: min(260px, 80vw);
    }
    .pt2__logo-link img {
      max-width: 160px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt2__card,
    .pt2__logo-link {
      transition: none;
    }
  }



  /* ===== TESTIMONIALS SECTION STARS (VARIANT 3) ===== */

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

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

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

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

  .testimonialsTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .testimonialsSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* Grid */
  .testimonialsStarsGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  /* Card base */
  .testimonialStarCard {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 22px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.2s ease;
    overflow: hidden;
  }

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

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

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

  /* Highlighted main card */
  .testimonialStarCard--highlight {
    grid-row: span 2;
  }

  /* Stars row */
  .testimonialStarsRow {
    display: flex;
    gap: 4px;
    font-size: 14px;
  }

  .testimonialStarsRow i {
    color: var(--secondStyleColor);
  }

  /* Text + meta */
  .testimonialStarText {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  .testimonialStarMeta {
    margin-top: 4px;
  }

  .testimonialStarName {
    font-size: 15px;
    font-weight: 600;
  }

  .testimonialStarRole {
    font-size: 13px;
    color: var(--textMuted);
  }

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

    .testimonialStarCard--highlight {
      grid-row: auto;
    }
  }



  #top { padding: 80px 0; }
  .tp8-head { text-align: center; margin-bottom: 50px; }
  .tp8-head h2 { margin-bottom: 12px; }
  .tp8-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp8-alt { display: flex; flex-direction: column; gap: 20px; }
  .tp8-alt .top-card {
    display: grid; grid-template-columns: 56px 1fr; gap: 0;
    background: var(--cardBG); border-radius: var(--borderRadius); overflow: hidden;
    border: 1px solid var(--borderSubtle); transition: transform 0.3s, box-shadow 0.3s;
  }
  .tp8-alt .top-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
  .tp8-alt .top-card__rank-col {
    background: var(--accentColor); color: var(--textColor2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900;
  }
  .tp8-alt .top-card__content {
    display: flex; align-items: center; gap: 20px; padding: 18px 24px;
  }
  .tp8-alt .top-card__logo {
    flex-shrink: 0; width: 110px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp8-alt .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp8-alt .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp8-alt .top-card__body { flex: 1; min-width: 0; }
  .tp8-alt .top-card__body h3 { margin-bottom: 2px; }
  .tp8-alt .top-card__body p { color: var(--textSecondary); font-size: 14px; }
  .tp8-alt .top-card__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .tp8-alt .top-card__rating {
    padding: 6px 14px; border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor);
    font-weight: 700; font-size: 15px;
  }
  .tp8-alt .top-card__badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: rgba(var(--accent-rgb), 0.2); color: var(--accentColor); text-transform: uppercase;
  }
  .tp8-alt .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp8-alt .top-card__content { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
    .tp8-alt .top-card__right { width: 100%; }
  }



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

.about21__mesh{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;
  filter:blur(100px);
  opacity:.35;
}
.about21__mesh span{
  position:absolute;border-radius:50%;
  animation:about21drift 20s ease-in-out infinite alternate;
}
.about21__mesh span:nth-child(1){
  width:45vw;height:45vw;top:-10%;left:-5%;
  background:radial-gradient(circle,var(--secondStyleColor),transparent 70%);
}
.about21__mesh span:nth-child(2){
  width:35vw;height:35vw;bottom:-5%;right:5%;
  background:radial-gradient(circle,var(--accent2),transparent 70%);
  animation-delay:-7s;animation-duration:25s;
}
.about21__mesh span:nth-child(3){
  width:25vw;height:25vw;top:40%;right:25%;
  background:radial-gradient(circle,var(--accent3),transparent 70%);
  animation-delay:-14s;animation-duration:22s;
}
@keyframes about21drift{
  0%{transform:translate(0,0) scale(1)}
  50%{transform:translate(5vw,-5vh) scale(1.2)}
  100%{transform:translate(-3vw,4vh) scale(.95)}
}

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

.about21__header{text-align:center;margin-bottom:5rem}
.about21__tag{
  display:inline-block;
  padding:.35rem 1rem;
  border:1px solid var(--secondStyleColor);
  border-radius:4px;
  font-size:.65rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1.5rem;
  opacity:.7;
}
.about21 h2{color:var(--textColor1);margin-bottom:1.2rem}
.about21 h2 em{font-style:italic;color:var(--secondStyleColor)}
.about21__subtitle{
  font-size:.85rem;
  color:var(--textMuted);
  max-width:500px;margin:0 auto;
  line-height:1.7;
}

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

.about21__card{
  position:relative;
  background:rgba(255,255,255,.03);
  backdrop-filter:blur(20px);
  border:1px solid var(--borderSubtle);
  border-radius:var(--borderRadius);
  padding:2.5rem 2rem;
  overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  opacity:0;transform:translateY(30px);
}
.about21__card.visible{opacity:1;transform:translateY(0)}
.about21__card:hover{
  transform:translateY(-6px);
  border-color:var(--secondStyleColor);
  box-shadow:0 20px 60px rgba(0,0,0,.15);
}
.about21__card::before{
  content:'';position:absolute;
  top:0;left:0;right:0;height:2px;
  opacity:0;transition:opacity .3s;
}
.about21__card:hover::before{opacity:1}
.about21__card:nth-child(1)::before{background:linear-gradient(90deg,var(--secondStyleColor),transparent)}
.about21__card:nth-child(2)::before{background:linear-gradient(90deg,var(--accent2),transparent)}
.about21__card:nth-child(3)::before{background:linear-gradient(90deg,var(--accent3),transparent)}

.about21__card-icon{
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  font-size:1.2rem;
  margin-bottom:1.5rem;
}
.about21__card-icon--1{background:rgba(var(--accent-rgb),.12);color:var(--secondStyleColor)}
.about21__card-icon--2{background:rgba(var(--accent2-rgb),.12);color:var(--accent2)}
.about21__card-icon--3{background:rgba(var(--accent3-rgb),.12);color:var(--accent3)}

.about21__card h3{color:var(--textColor1);margin-bottom:.8rem}
.about21__card > p{
  font-size:.85rem;
  line-height:1.8;
  color:var(--textSecondary);
  margin-bottom:1.5rem;
}

.about21__card-stat{
  display:flex;align-items:baseline;gap:.5rem;
  padding-top:1rem;
  border-top:1px solid var(--borderSubtle);
}
.about21__card-stat-value{
  font-size:1.8rem;font-weight:700;
  color:var(--textColor1);
}
.about21__card-stat-label{
  font-size:.65rem;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--textMuted);
}

.about21__bottom{
  text-align:center;
  margin-top:4rem;
}
.about21__bottom > p{
  font-size:.85rem;
  color:var(--textMuted);
  margin-bottom:1.5rem;
}
.about21__cta-btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.8rem 2rem;
  font-size:.8rem;font-weight:700;
  text-decoration:none;cursor:pointer;border:none;
  background:var(--secondStyleColor);color:var(--textColor2);
  border-radius:8px;
  transition:all .3s ease;
}
.about21__cta-btn:hover{
  box-shadow:0 8px 30px rgba(0,0,0,.2);
  transform:translateY(-2px);
  filter:brightness(1.1);
}

@media(max-width:768px){
  .about21__grid{grid-template-columns:1fr}
  .about21{padding:5rem 1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .about21__mesh span,
  .about21__card{animation:none!important;opacity:1;transform:none}
}



  /* ===== HOW v10 — Zigzag serpentine layout ===== */

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

  /* Head */
  .hw10__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
  }

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

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

  /* Track — holds SVG + rows */
  .hw10__track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Central SVG serpentine */
  .hw10__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .hw10__path {
    animation: hw10Dash 25s linear infinite;
  }

  @keyframes hw10Dash {
    to {
      stroke-dashoffset: -360;
    }
  }

  /* Row — alternating sides */
  .hw10__row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
  }

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

  .hw10__row--left {
    justify-content: flex-start;
    padding-right: 52%;
  }

  .hw10__row--right {
    justify-content: flex-end;
    padding-left: 52%;
  }

  /* Dot on the path */
  .hw10__dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      0 0 18px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Card — glassmorphism */
  .hw10__card {
    position: relative;
    flex: 1;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
      transform 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .hw10__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  }

  /* Watermark number */
  .hw10__watermark {
    position: absolute;
    top: -18px;
    right: -6px;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondStyleColor);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
  }

  /* Badge */
  .hw10__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hw10__h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* ---- Responsive ---- */

  /* Tablets — zigzag сужается */
  @media (max-width: 950px) {
    .hw10__track {
      max-width: 700px;
    }

    .hw10__row--left {
      padding-right: 46%;
    }

    .hw10__row--right {
      padding-left: 46%;
    }

    .hw10__row {
      margin-bottom: 40px;
      gap: 18px;
    }

    .hw10__card {
      padding: 24px 20px 20px;
    }

    .hw10__watermark {
      font-size: 90px;
      top: -12px;
    }

    .hw10__head {
      margin-bottom: 45px;
    }
  }

  /* Small tablets — zigzag ещё уже */
  @media (max-width: 800px) {
    .hw10__row--left {
      padding-right: 40%;
    }

    .hw10__row--right {
      padding-left: 40%;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 34px;
      height: 34px;
      font-size: 13px;
      margin-bottom: 10px;
    }
  }

  /* Mobile — одна колонка, SVG и точки скрыты */
  @media (max-width: 600px) {
    .hw10__sec {
      padding: 50px 0;
    }

    .hw10__svg {
      display: none;
    }

    .hw10__dot {
      display: none;
    }

    .hw10__row--left,
    .hw10__row--right {
      padding: 0;
      justify-content: stretch;
    }

    .hw10__row {
      margin-bottom: 20px;
      gap: 0;
    }

    .hw10__card {
      width: 100%;
      padding: 22px 18px 18px;
    }

    .hw10__head {
      margin-bottom: 32px;
    }

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

    .hw10__head p {
      font-size: 14px;
    }

    .hw10__watermark {
      font-size: 70px;
      top: -10px;
      right: -4px;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 32px;
      height: 32px;
      font-size: 12px;
      border-radius: 10px;
      margin-bottom: 10px;
    }
  }

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



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

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

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

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

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

  .featuresSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

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

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

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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



  #slots { padding: 80px 0; }
  .sl16-head { text-align: center; margin-bottom: 50px; }
  .sl16-head h2 { margin-bottom: 12px; }
  .sl16-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .sl16-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .sl16-grid .slot-card {
    background: var(--cardBG);
    border-radius: var(--borderRadius);
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.4s;
  }
  .sl16-grid .slot-card:hover { border-color: var(--accentColor); }
  .sl16-grid .slot-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }
  .sl16-grid .slot-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s;
  }
  .sl16-grid .slot-card:hover .slot-card__img img {
    transform: scale(1.12);
    filter: brightness(0.7);
  }
  .sl16-grid .slot-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .sl16-grid .slot-card:hover .slot-card__body {
    transform: translateY(0);
    opacity: 1;
  }
  .sl16-grid .slot-card__body h3 { font-size: 17px; color: #fff; margin-bottom: 4px; }
  .sl16-grid .slot-card__body p { font-size: 13px; color: rgba(255,255,255,0.7); }
  .sl16-grid .slot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    background: radial-gradient(circle at 50% 50%, var(--accentColor), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  .sl16-grid .slot-card:hover::after { opacity: 0.3; }
  @media (max-width: 900px) { .sl16-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .sl16-grid { grid-template-columns: 1fr; } }



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

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

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

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

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

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

  .rm11__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .rm11__num {
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .rm11__item:hover .rm11__num {
    transform: translateY(-3px);
  }

  .rm11__num span {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .rm11__num--outline {
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm11__body {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 20px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  .rm11__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 18px;
    flex-shrink: 0;
  }

  .rm11__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
  }

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

  @media (max-width: 700px) {
    .rm11__item { grid-template-columns: 60px 1fr; }
    .rm11__num span { font-size: 24px; }
    .rm11__body { grid-template-columns: 1fr; gap: 10px; }
    .rm11__icon { width: 36px; height: 36px; font-size: 16px; }
  }

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

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



.faq19{
  padding:clamp(64px,7vw,110px) 20px;
  background:var(--bodyBG);
  color:var(--textColor1);
}
.faq19 .container{max-width:700px;margin:0 auto}

.faq19__head{text-align:center;margin-bottom:40px}
.faq19__kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 16px;font-size:13px;font-weight:600;letter-spacing:.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;
}
.faq19__kicker i{font-size:12px}
.faq19__head h2{font-size:clamp(28px,4vw,44px);font-weight:800;margin:0;letter-spacing:-.02em;line-height:1.15}

.faq19__chat{
  display:flex;flex-direction:column;gap:6px;
  padding:28px;
  border-radius:20px;
  background:color-mix(in srgb,var(--textColor1) 3%,transparent);
  border:1px solid color-mix(in srgb,var(--textColor1) 6%,transparent);
}

.faq19__msg{
  display:flex;gap:10px;
  max-width:85%;
  animation:faq19fadeIn .5s ease both;
}
.faq19__msg--q{
  align-self:flex-end;
  flex-direction:column;align-items:flex-end;
}
.faq19__msg--a{
  align-self:flex-start;
  align-items:flex-end;
}

.faq19__bubble{
  padding:14px 18px;
  border-radius:16px;
  line-height:1.6;
}
.faq19__bubble--q{
  background:var(--secondStyleColor);
  color:var(--textColor2);
  border-bottom-right-radius:4px;
}
.faq19__bubble--q h3{
  margin:0;font-size:clamp(14px,1.3vw,16px);font-weight:600;line-height:1.4;
}
.faq19__bubble--a{
  background:color-mix(in srgb,var(--textColor1) 6%,transparent);
  border:1px solid color-mix(in srgb,var(--textColor1) 8%,transparent);
  border-bottom-left-radius:4px;
}
.faq19__bubble--a p{
  margin:0;font-size:14px;line-height:1.7;
  color:color-mix(in srgb,var(--textColor1) 75%,transparent);
}

.faq19__avatar{
  flex-shrink:0;
  width:32px;height:32px;
  border-radius:50%;
  background:color-mix(in srgb,var(--secondStyleColor) 15%,transparent);
  border:1px solid color-mix(in srgb,var(--secondStyleColor) 25%,transparent);
  display:flex;align-items:center;justify-content:center;
  color:var(--secondStyleColor);
  font-size:.75rem;
}

.faq19__time{
  font-size:.65rem;
  color:var(--textMuted);
  padding:0 4px;
}

@keyframes faq19fadeIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}
.faq19__msg:nth-child(1){animation-delay:0s}
.faq19__msg:nth-child(2){animation-delay:.1s}
.faq19__msg:nth-child(3){animation-delay:.2s}
.faq19__msg:nth-child(4){animation-delay:.3s}
.faq19__msg:nth-child(5){animation-delay:.4s}
.faq19__msg:nth-child(6){animation-delay:.5s}
.faq19__msg:nth-child(7){animation-delay:.6s}
.faq19__msg:nth-child(8){animation-delay:.7s}
.faq19__msg:nth-child(9){animation-delay:.8s}
.faq19__msg:nth-child(10){animation-delay:.9s}
.faq19__msg:nth-child(11){animation-delay:1s}
.faq19__msg:nth-child(12){animation-delay:1.1s}

@media(max-width:600px){
  .faq19__chat{padding:16px}
  .faq19__msg{max-width:92%}
}

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



  /* ===== FOOTER ===== */

  .footer {
    background: var(--bgAlt);
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

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

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

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: var(--textMuted);
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2 140px;
    column-gap: 24px;
  }

  .footerNav li {
    break-inside: avoid;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: var(--textSecondary);
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: var(--textSecondary);
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textSecondary);
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: var(--textMuted);
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }



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