
: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: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', 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;
}
.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;
}


.hd9 {
  background: var(--bodyBG);
  border-bottom: 1px solid rgba(128,128,128,.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.hd9__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.hd9__logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--textColor1);
  text-decoration: none;
}

/* Nav anchors */
.hd9__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd9__link {
  color: var(--textColor1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color .2s ease;
}
.hd9__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--secondStyleColor);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.hd9__link:hover {
  color: var(--secondStyleColor);
}
.hd9__link:hover::after {
  transform: scaleX(1);
}

/* CTA button */
.hd9__cta {
  display: inline-block;
  padding: 8px 22px;
  background: var(--secondStyleColor);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  transition: filter .2s ease;
  white-space: nowrap;
}
.hd9__cta:hover {
  filter: brightness(1.15);
}

/* Toggle */
.hd9__toggle {
  display: flex;
  background: none;
  border: 1px solid rgba(128,128,128,.25);
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  color: var(--textColor1);
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s ease;
}
.hd9__toggle:hover {
  border-color: var(--secondStyleColor);
}

/* Panel */
.hd9__panel {
  position: absolute;
  top: 100%;
  right: 20px;
  background: var(--bodyBG);
  border: 1px solid rgba(128,128,128,.12);
  border-top: 2px solid var(--secondStyleColor);
  border-radius: 0 0 var(--borderRadius) var(--borderRadius);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .25s ease;
  opacity: 0;
  z-index: 99;
  min-width: 220px;
}
.hd9__panel.active {
  max-height: 500px;
  opacity: 1;
}
.hd9__panel ul {
  list-style: none;
  padding: 6px 0;
  margin: 0;
}
.hd9__panel li + li {
  border-top: 1px solid rgba(128,128,128,.06);
}
.hd9__panel a {
  display: block;
  padding: 11px 22px;
  color: var(--textColor1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
  white-space: nowrap;
}
.hd9__panel a:hover {
  background: rgba(128,128,128,.07);
  color: var(--secondStyleColor);
  padding-left: 26px;
}

@media (max-width: 600px) {
  .hd9__nav { display: none; }
  .hd9__cta { display: none; }
}



  .vfdsdc {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px) 0;
    min-height: 700px;
    display: flex;
    align-items: center;
  }
  .kmndzI {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: center;
    filter: blur(5px);
    opacity: 0.2;
  }

  /* Белый “треугольник” снизу (диагональный срез) */
  .vfdsdc::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: var(--bodyBG);
    clip-path: polygon(
      0 40%,
      33% 40%,
      33% 20%,
      66% 20%,
      66% 5%,
      100% 5%,
      100% 100%,
      0 100%
    );

    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    && h1 {
      text-transform: uppercase;
      text-wrap: balance;
      font-weight: 900;
    }
    && p {
      text-wrap: balance;
    }
  }

  .hero__content {
    margin: 0 0 14px;
    color: var(--textColor1);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 20px;
    && p {
      max-width: 700px;
    }
  }

  .hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    width: fit-content;
    transition: 0.2s all linear;
  }

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

  .hero__phone a {
    color: inherit;
    text-decoration: none;
  }

  .hero__phoneIcon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero__art {
    display: flex;
    width: 720px;
    height: 550px;
    align-items: center;
    justify-content: center;
    && img {
      width: 100%;
      height: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  .hero__svg {
    width: min(440px, 100%);
    height: auto;
  }

  /* Адаптив */
  @media (max-width: 860px) {
    .vfdsdc {
      min-height: 500px;
    }
    .hero__art {
      display: none;
    }

    .vfdsdc::after {
      height: 40%;
      clip-path: polygon(0 55%, 50% 55%, 50% 35%, 100% 35%, 100% 100%, 0 100%);
    }
  }



  :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: 12px;
    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 18px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: var(--itemBgColor);
    border-left: 3px solid var(--secondStyleColor);
    border-top: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    border-right: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    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 .swiper-slide:nth-child(3n+2) a {
    border-left-color: color-mix(in srgb, var(--secondStyleColor) 70%, var(--textColor1));
  }

  .toc .swiper-slide:nth-child(3n+3) a {
    border-left-color: color-mix(in srgb, var(--secondStyleColor) 50%, var(--textColor1));
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -moz-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -ms-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .toc .swiper-slide:nth-child(3n+2) a::before {
    color: color-mix(in srgb, var(--secondStyleColor) 70%, var(--textColor1));
    background: color-mix(in srgb, var(--secondStyleColor) 8%, color-mix(in srgb, var(--textColor1) 4%, transparent));
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, color-mix(in srgb, var(--textColor1) 10%, transparent));
  }

  .toc .swiper-slide:nth-child(3n+3) a::before {
    color: color-mix(in srgb, var(--secondStyleColor) 50%, var(--textColor1));
    background: color-mix(in srgb, var(--secondStyleColor) 6%, color-mix(in srgb, var(--textColor1) 6%, transparent));
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, color-mix(in srgb, var(--textColor1) 12%, transparent));
  }

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

  .toc a:hover::before,
  .toc a:focus::before {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
    border-color: var(--secondStyleColor);
  }

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

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

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

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

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto;
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }

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



  /* ===== MOBILE v6 — Phone left, checklist right ===== */

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

  .mob6 > .container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Phone */
  .mob6__left {
    flex-shrink: 0;
  }

  .mob6__phone {
    position: relative;
    width: 270px;
    height: 540px;
    background: linear-gradient(160deg, #2a2a3e, #1a1a2e);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
      0 0 0 1.5px rgba(255, 255, 255, 0.06),
      0 30px 60px rgba(0, 0, 0, 0.5);
  }

  .mob6__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 3;
  }

  .mob6__screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bgCard);
  }

  .mob6__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Right side */
  .mob6__right {
    flex: 1;
    min-width: 0;
  }

  .mob6__right h2 {
    margin: 0 0 16px;
    font-weight: 700;
  }

  .mob6__right > p {
    margin: 0 0 28px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  /* Checklist */
  .mob6__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .mob6__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .mob6__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

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

  .mob6__item h3 {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 600;
  }

  .mob6__item p {
    margin: 0;
    font-size: 13px;
    color: var(--textSecondary);
    line-height: 1.5;
  }

  /* Store buttons */
  .mob6__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .mob6__store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-radius: var(--borderRadius);
    text-decoration: none;
    font-weight: 600;
    transition:
      transform 0.2s,
      opacity 0.2s;
  }

  .mob6__store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .mob6__store i {
    font-size: 28px;
  }

  .mob6__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
  }

  .mob6__store small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .mob6 > .container {
      flex-direction: column;
      text-align: center;
    }

    .mob6__item {
      text-align: left;
    }

    .mob6__buttons {
      justify-content: center;
    }

    .mob6__phone {
      width: 220px;
      height: 440px;
      border-radius: 32px;
      padding: 10px;
    }

    .mob6__screen {
      border-radius: 24px;
    }

    .mob6__notch {
      width: 90px;
      height: 22px;
      top: 10px;
    }
  }

  @media (max-width: 600px) {
    .mob6__phone {
      width: 200px;
      height: 400px;
    }
  }



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



  /* ===== HOW v22 — Zigzag blocks with mesh gradient background ===== */

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

  /* Mesh gradient blobs */
  .hw22__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hw22__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.10;
    animation: hw22Mesh 18s ease-in-out infinite;
  }

  .hw22__blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
  }

  .hw22__blob:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--accent2);
    top: 50%;
    right: 10%;
    animation-delay: -6s;
  }

  .hw22__blob:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--accent3);
    bottom: 10%;
    left: 40%;
    animation-delay: -12s;
  }

  @keyframes hw22Mesh {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
  }

  .hw22__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  }

  /* Header */
  .hw22__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 65px;
    position: relative;
    z-index: 2;
  }

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

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

  /* Zigzag blocks */
  .hw22__blocks {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hw22__block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .hw22__block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .hw22__block:nth-child(odd) {
    transform: translateX(-50px);
  }

  .hw22__block:nth-child(even) {
    transform: translateX(50px);
  }

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

  /* Watermark step number */
  .hw22__block::before {
    content: attr(data-step);
    position: absolute;
    font-size: 14rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hw22__block:nth-child(odd)::before {
    right: -30px;
  }

  .hw22__block:nth-child(even)::before {
    left: -30px;
  }

  /* Image side */
  .hw22__image {
    flex: 1;
    min-width: 0;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: var(--bgCard);
  }

  .hw22__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hw22__image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--borderRadius) + 2px);
    padding: 2px;
    background: conic-gradient(from 0deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: hw22Border 4s linear infinite;
    z-index: 1;
  }

  @keyframes hw22Border {
    to {
      background: conic-gradient(from 360deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    }
  }

  /* Text side */
  .hw22__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .hw22__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    margin-bottom: 16px;
  }

  .hw22__badge i {
    font-size: 14px;
  }

  .hw22__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
  }

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

  .hw22__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent2);
    border: 1px solid color-mix(in srgb, var(--accent2) 15%, transparent);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hw22__block,
    .hw22__block:nth-child(even) {
      flex-direction: column;
      gap: 24px;
    }

    .hw22__block::before {
      font-size: 7rem;
      top: -20px;
      transform: none;
    }

    .hw22__block {
      margin-bottom: 50px;
    }
  }

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

    .hw22__head {
      margin-bottom: 40px;
    }

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

    .hw22__block {
      margin-bottom: 36px;
      gap: 18px;
    }

    .hw22__title {
      font-size: 16px;
    }

    .hw22__desc {
      font-size: 13px;
    }

    .hw22__badge {
      font-size: 12px;
      padding: 4px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw22__block,
    .hw22__blob {
      transition: none;
      animation: none;
    }

    .hw22__image::before {
      animation: none;
    }

    .hw22__block {
      opacity: 1;
      transform: none;
    }
  }



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

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

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

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

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

  .pl2__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .pl2__card--featured {
    border-color: var(--secondStyleColor);
    background: linear-gradient(170deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
    box-shadow: 0 0 60px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transform: scale(1.04);
  }

  .pl2__card--featured:hover {
    transform: scale(1.04) translateY(-4px);
  }

  .pl2__label {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    color: var(--secondStyleColor);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

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

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

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

  .pl2__amount {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

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

  .pl2__divider {
    height: 1px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

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

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

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

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

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

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

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

  @media (max-width: 900px) {
    .pl2__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pl2__card--featured { transform: none; }
    .pl2__card--featured:hover { transform: translateY(-4px); }
    .pl2__card--featured { order: -1; }
  }

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

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



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

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

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

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

  .gl7__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gl7__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
  }

  .gl7__item--tall {
    grid-row: span 2;
  }

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

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

  .gl7__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 0%,
      transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .gl7__item:hover .gl7__overlay {
    opacity: 1;
  }

  .gl7__overlay h3 {
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 600;
  }

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

  @media (max-width: 800px) {
    .gl7__mosaic {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
    }
    .gl7__overlay { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl7 { padding: 48px 0; }
    .gl7__head { margin-bottom: 32px; }
    .gl7__mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: 200px;
    }
    .gl7__item--tall { grid-row: span 1; }
  }

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



  #top { padding: 80px 0; }
  .tp3-head { text-align: center; margin-bottom: 50px; }
  .tp3-head h2 { margin-bottom: 12px; }
  .tp3-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp3-table { border-radius: var(--borderRadius); overflow: hidden; border: 1px solid var(--borderSubtle); }
  .tp3-row {
    display: grid; grid-template-columns: 60px 1fr 1.2fr 100px;
    align-items: center; padding: 16px 20px; gap: 16px;
    border-bottom: 1px solid var(--borderSubtle); transition: background 0.2s;
  }
  .tp3-row:last-child { border-bottom: none; }
  .tp3-row:not(.tp3-row--header):hover { background: rgba(var(--accent-rgb), 0.04); }
  .tp3-row--header {
    background: var(--cardBG); font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.5px; color: var(--textMuted);
  }
  .tp3-col--rank { text-align: center; font-weight: 800; font-size: 18px; color: var(--accentColor); }
  .tp3-row--header .tp3-col--rank { font-size: 13px; font-weight: 600; color: var(--textMuted); }
  .tp3-col--name { display: flex; align-items: center; gap: 12px; }
  .tp3-col--name .top-card__logo {
    width: 80px; height: 40px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
  }
  .tp3-col--name .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp3-col--name .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp3-col--name h3 { font-size: 15px; }
  .tp3-col--bonus { color: var(--textSecondary); font-size: 14px; }
  .tp3-col--rating {
    text-align: center; font-weight: 700; color: var(--accentColor); font-size: 15px;
  }
  .tp3-row .top-card__badge {
    display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase; margin-left: 8px;
    vertical-align: middle;
  }
  .tp3-row .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp3-row { grid-template-columns: 40px 1fr; gap: 8px; padding: 12px 16px; }
    .tp3-col--bonus, .tp3-col--rating { display: none; }
    .tp3-row--header { display: none; }
  }



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

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

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

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

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



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



  /* ===== FEATURES v18 — Isometric cards with SVG diamond-grid bg ===== */

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

  .ft18__grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

  .ft18 .container {
    position: relative;
    z-index: 1;
  }

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

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

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

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

  /* Card with isometric tilt */
  .ft18__card {
    perspective: 800px;
  }

  .ft18__card-inner {
    position: relative;
    padding: 30px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: rotateX(4deg) rotateY(-3deg);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
  }

  .ft18__card:hover .ft18__card-inner {
    transform: rotateX(0deg) rotateY(0deg) translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

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

  .ft18__card:hover .ft18__icon {
    transform: scale(1.1) rotate(-4deg);
  }

  .ft18__icon i {
    font-size: 20px;
    color: var(--secondStyleColor);
  }

  .ft18__card-inner h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

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

  .ft18__num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 32px;
    font-weight: 800;
    color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
  }

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

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

    .ft18__card-inner {
      transform: rotateX(3deg) rotateY(-2deg);
    }
  }

  @media (max-width: 800px) {
    .ft18__card-inner {
      padding: 24px 20px;
    }

    .ft18__card-inner h3 {
      font-size: 16px;
    }

    .ft18__card-inner p {
      font-size: 13px;
    }

    .ft18__icon {
      width: 42px;
      height: 42px;
    }

    .ft18__icon i {
      font-size: 18px;
    }
  }

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

    .ft18__head {
      margin-bottom: 36px;
    }

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

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

    .ft18__card-inner {
      transform: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft18__card-inner,
    .ft18__icon,
    .ft18__num {
      transition: none;
    }
  }



  #slots { padding: 80px 0; }
  .sl12-head { text-align: center; margin-bottom: 50px; }
  .sl12-head p { color: var(--textSecondary); margin-top: 12px; }
  .sl12-masonry {
    columns: 4;
    column-gap: 16px;
  }
  .sl12-masonry .slot-card {
    break-inside: avoid;
    margin-bottom: 16px;
    background: var(--cardBG);
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid var(--secondStyleColor);
    transition: transform 0.3s;
  }
  .sl12-masonry .slot-card:hover { transform: scale(1.03); }
  .sl12-masonry .slot-card__img { overflow: hidden; }
  .sl12-masonry .slot-card__img img { width: 100%; height: auto; display: block; transition: transform 0.4s; }
  .sl12-masonry .slot-card:hover .slot-card__img img { transform: scale(1.06); }
  .sl12-masonry .slot-card__body { padding: 12px 14px; }
  .sl12-masonry .slot-card__body h3 { font-size: 15px; margin-bottom: 2px; }
  .sl12-masonry .slot-card__body p { font-size: 12px; color: var(--textSecondary); }
  @media (max-width: 900px) { .sl12-masonry { columns: 3; } }
  @media (max-width: 600px) { .sl12-masonry { columns: 2; column-gap: 10px; } }



  /* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

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

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

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

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

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

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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



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