
:root {
  --bg: #1b2d1b;
  --bg-card: #243524;
  --text: #d4e7d4;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #4caf50;
  --accent-rgb: 76,175,80;
  --accent2: #4c8aaf;
  --accent2-rgb: 76,138,175;
  --accent3: #a5b85c;
  --accent3-rgb: 165,184,92;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Space Grotesk', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bodyBG: #1b2d1b;
  --textColor1: #d4e7d4;
  --textColor2: #111111;
  --textSecondary: #a6b9a6;
  --textMuted: #788a78;
  --secondStyleColor: #4caf50;
  --bgCard: #243524;
  --bgAlt: #2a3c2a;
  --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;
}


.hd8 {
  background: var(--secondStyleColor);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.hd8__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.hd8__logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--textColor2);
  text-decoration: none;
  letter-spacing: .02em;
}

/* Nav anchors */
.hd8__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd8__link {
  color: var(--textColor2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: .85;
  transition: opacity .2s ease;
}
.hd8__link:hover {
  opacity: 1;
}

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

/* Burger */
.hd8__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hd8__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--textColor2);
  border-radius: 2px;
  transition: all .3s ease;
  margin: 0 auto;
}
.hd8__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hd8__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hd8__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown */
.hd8__dropdown {
  position: absolute;
  top: 100%;
  right: 20px;
  background: var(--bodyBG);
  border: 1px solid rgba(128,128,128,.15);
  border-radius: var(--borderRadius);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  z-index: 99;
  min-width: 200px;
}
.hd8__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hd8__dropdown ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}
.hd8__dropdown li + li {
  border-top: 1px solid rgba(128,128,128,.08);
}
.hd8__dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--textColor1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
  white-space: nowrap;
}
.hd8__dropdown a:hover {
  background: rgba(128,128,128,.08);
  color: var(--secondStyleColor);
}

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



  .home {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .heroContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    h1 {
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    p {
      text-align: center;
    }
  }
  .imageWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
  .image {
    width: 400px;
    height: 300px;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      object-position: 50% 20%;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .main__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .btn {
    display: inline-block;
    width: 100%;
    border-radius: 100px;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 16px 20px;
    width: fit-content;
    color: var(--textColor2);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .btn__fill {
    background-color: var(--secondStyleColor);
  }

  @media (max-width: 800px) {
    .home {
      height: fit-content;
    }
    .imageWrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
    .image {
      width: 300px;
      height: 200px;
    }
  }



  :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;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--textColor1) 12%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease;
    -webkit-transition: color 0.35s ease, border-color 0.35s ease;
    -moz-transition: color 0.35s ease, border-color 0.35s ease;
    -ms-transition: color 0.35s ease, border-color 0.35s ease;
    -o-transition: color 0.35s ease, border-color 0.35s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--secondStyleColor);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

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



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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

  /* ---- Timeline ---- */
  .rm19__timeline {
    max-width: 960px;
    margin: 0 auto;
  }

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

  .rm19__row--top .rm19__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .rm19__row--bottom .rm19__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .rm19__cell--empty {
    visibility: hidden;
    pointer-events: none;
  }

  /* ---- Stem ---- */
  .rm19__stem {
    width: 2px;
    height: 24px;
    background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    flex-shrink: 0;
  }

  .rm19__stem--active {
    background: linear-gradient(
      to bottom,
      var(--accent2, var(--secondStyleColor)),
      color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 18%, transparent)
    );
  }

  /* ---- Rail row ---- */
  .rm19__rail-row {
    position: relative;
    height: 52px;
    display: flex;
    align-items: center;
  }

  .rm19__rail {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: 2px;
  }

  .rm19__rail-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2, var(--secondStyleColor)));
    border-radius: 2px;
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm19__dots {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* ---- Dot ---- */
  .rm19__dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    font-size: 13px;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition: transform 0.3s ease;
  }

  .rm19__dot:hover {
    transform: scale(1.15);
  }

  .rm19__dot i { font-size: 13px; }

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

  .rm19__dot--glow {
    border-color: var(--accent2, var(--secondStyleColor));
    color: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 35%, transparent);
    animation: rm19Pulse 2s ease-in-out infinite;
  }

  @keyframes rm19Pulse {
    0%, 100% { box-shadow: 0 0 20px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 35%, transparent); }
    50% { box-shadow: 0 0 32px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 10%, transparent); }
  }

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

  /* ---- Card ---- */
  .rm19__card {
    padding: 22px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .rm19__row--top .rm19__card:hover {
    transform: translateY(-4px);
  }

  .rm19__row--bottom .rm19__card:hover {
    transform: translateY(4px);
  }

  .rm19__card--active {
    border-color: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 28%, transparent);
    background: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 4%, transparent);
  }

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

  .rm19__card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
  }

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

  /* ---- Responsive ---- */
  @media (max-width: 850px) {
    .rm19__row { grid-template-columns: 1fr 1fr; }
    .rm19__dots { grid-template-columns: 1fr 1fr; }
    .rm19__rail { display: none; }

    /* Stack: all cards above, all dots, all cards below */
    .rm19__row--top .rm19__cell:nth-child(1) { order: 1; }
    .rm19__row--top .rm19__cell:nth-child(2) { display: none; }
    .rm19__row--top .rm19__cell:nth-child(3) { order: 2; }
    .rm19__row--top .rm19__cell:nth-child(4) { display: none; }

    .rm19__row--bottom .rm19__cell:nth-child(1) { display: none; }
    .rm19__row--bottom .rm19__cell:nth-child(2) { order: 1; }
    .rm19__row--bottom .rm19__cell:nth-child(3) { display: none; }
    .rm19__row--bottom .rm19__cell:nth-child(4) { order: 2; }

    .rm19__cell--empty { display: none; }
    .rm19__rail-row { height: 44px; }
  }

  @media (max-width: 600px) {
    .rm19 { padding: 50px 0; }
    .rm19__head { margin-bottom: 36px; }
    .rm19__head h2 { font-size: 24px; }

    /* Collapse to vertical list */
    .rm19__timeline { display: flex; flex-direction: column; gap: 16px; }
    .rm19__row { display: flex; flex-direction: column; gap: 14px; }
    .rm19__row--top .rm19__cell,
    .rm19__row--bottom .rm19__cell { flex-direction: row; gap: 14px; }
    .rm19__cell--empty,
    .rm19__row--top .rm19__cell:nth-child(2),
    .rm19__row--top .rm19__cell:nth-child(4),
    .rm19__row--bottom .rm19__cell:nth-child(1),
    .rm19__row--bottom .rm19__cell:nth-child(3) { display: none; }
    .rm19__stem { display: none; }
    .rm19__rail-row { display: none; }
    .rm19__card { text-align: left; padding: 18px 16px; }
    .rm19__card h3 { font-size: 15px; }
    .rm19__card p { font-size: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm19__dot--glow { animation: none; }
    .rm19__card, .rm19__dot { transition: none; }
  }



  #slots { padding: 80px 0; }
  .sl9-head { text-align: center; margin-bottom: 40px; }
  .sl9-table { border: 1px solid var(--secondStyleColor); border-radius: var(--borderRadius); overflow: hidden; }
  .sl9-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    padding: 14px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
  }
  .sl9-row:last-child { border-bottom: none; }
  .sl9-row:not(.sl9-row--header):hover { background: rgba(255,255,255,0.03); }
  .sl9-row--header {
    background: var(--cardBG);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--textSecondary);
  }
  .sl9-row .slot-card {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .sl9-row .slot-card__img { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
  .sl9-row .slot-card__img img { width: 100%; height: 100%; object-fit: cover; }
  .sl9-row .slot-card__body h3 { font-size: 15px; margin: 0; }
  .sl9-row .slot-card__body p { display: none; }
  .sl9-row .slot-provider { font-size: 14px; color: var(--textSecondary); }
  @media (max-width: 600px) {
    .sl9-row { grid-template-columns: 1fr; gap: 4px; }
    .sl9-row--header span:nth-child(2) { display: none; }
  }



  /* ---------- Spotlight Reels (Mosaic + Lightbox) ---------- */
  .fxl-reels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
  }
  .fxl-head {
    margin-bottom: 45px;
    text-align: center;
  }

  .fxl-reel {
    position: relative;
    display: block;
    padding: 0;
    border: 1px solid var(--secondStyleColor);
    border-radius: calc(var(--borderRadius) + 2px);
    overflow: hidden;
    background: #0c221a;
    box-shadow: var(--fxl-shadow);
    transition: transform 0.3s ease;
  }
  .fxl-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transform: scale(1.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* органичная маска */
    mask-image: radial-gradient(
      120% 80% at 80% 20%,
      #000 60%,
      transparent 100%
    );
  }
  .fxl-reel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  .fxl-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  .fxl-reel:hover img {
    transform: scale(1.06);
  }

  .fxl-reel__cap {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 42, 31, 0.75);
    border: 1px solid var(--secondStyleColor);
    font-size: 12px;
    color: var(--textColor1);
  }

  /* Layout variants */
  .fxl-reel--wide {
    grid-column: span 4;
    grid-row: span 2;
  }
  .fxl-reel--tall {
    grid-column: span 2;
    grid-row: span 3;
  }
  .fxl-reels > .fxl-reel:not(.fxl-reel--wide):not(.fxl-reel--tall) {
    grid-column: span 2;
    grid-row: span 2;
  }

  @media (max-width: 1200px) {
    .fxl-reels {
      grid-template-columns: repeat(4, 1fr);
    }
    .fxl-reel--wide {
      grid-column: span 4;
    }
  }
  @media (max-width: 800px) {
    .fxl-reels {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .fxl-reel--wide,
    .fxl-reel--tall {
      grid-column: span 2;
      grid-row: span 2;
    }
  }



  /* ===== MOBILE v7 — Two overlapping phones, mesh bg ===== */

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

  .mob7__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mob7__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
  }

  .mob7__blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: 20%;
    right: 10%;
  }

  .mob7__blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--accent2);
    bottom: 10%;
    left: 20%;
  }

  .mob7 > .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .mob7__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
  }

  /* Info */
  .mob7__info {
    text-align: left;
  }

  .mob7__tag {
    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 rgba(var(--accent-rgb), 0.15);
    margin: 0 0 16px;
  }

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

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

  .mob7__rating {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mob7__stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 16px;
  }

  .mob7__rating p {
    margin: 0;
    font-size: 13px;
    color: var(--textSecondary);
  }

  /* Phones */
  .mob7__phones {
    position: relative;
    width: 300px;
    height: 520px;
  }

  .mob7__phone {
    position: absolute;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 30px 60px rgba(0,0,0,0.5);
  }

  .mob7__phone--front {
    width: 240px;
    height: 480px;
    bottom: 0;
    left: 0;
    z-index: 2;
  }

  .mob7__phone--back {
    width: 210px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.7;
  }

  .mob7__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    z-index: 3;
  }

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

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

  /* Actions */
  .mob7__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

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

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

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

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

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

  .mob7__note {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--textSecondary);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .mob7__grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }

    .mob7__info {
      text-align: center;
    }

    .mob7__rating {
      justify-content: center;
    }

    .mob7__phones {
      margin: 0 auto;
      width: 260px;
      height: 450px;
    }

    .mob7__phone--front {
      width: 210px;
      height: 420px;
    }

    .mob7__phone--back {
      width: 180px;
      height: 360px;
    }

    .mob7__actions {
      align-items: center;
    }

    .mob7__store {
      width: auto;
    }
  }

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

    .mob7__phones {
      width: 200px;
      height: 400px;
    }

    .mob7__phone--front {
      width: 200px;
      height: 400px;
      position: relative;
      border-radius: 28px;
      padding: 8px;
    }

    .mob7__screen {
      border-radius: 22px;
    }
  }



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

  .rv10__accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--secondStyleColor));
  }

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

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

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

  /* Timeline */
  .rv10__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .rv10__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transform: translateX(-50%);
  }

  .rv10__item {
    position: relative;
    display: flex;
    width: 50%;
  }

  .rv10__item--left {
    align-self: flex-start;
    justify-content: flex-end;
    padding-right: 36px;
  }

  .rv10__item--right {
    align-self: flex-end;
    padding-left: 36px;
  }

  .rv10__dot {
    position: absolute;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    border: 2px solid var(--bodyBG);
    z-index: 1;
  }

  .rv10__item--left .rv10__dot { right: -5px; }
  .rv10__item--right .rv10__dot { left: -5px; }

  .rv10__card {
    padding: 24px 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
    width: 100%;
  }

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

  .rv10__stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
  }

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

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

  .rv10__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
  }

  .rv10__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent));
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

  @media (max-width: 800px) {
    .rv10__timeline::before { left: 16px; }
    .rv10__item { width: 100%; padding-left: 44px !important; padding-right: 0 !important; }
    .rv10__item--left { align-self: auto; justify-content: flex-start; }
    .rv10__dot { left: 11px !important; right: auto !important; }
  }

  @media (max-width: 600px) {
    .rv10 { padding: 48px 0; }
    .rv10__head { margin-bottom: 40px; }
    .rv10__card { padding: 20px 16px 18px; }
    .rv10__timeline { gap: 20px; }
    .rv10__accent-line { display: none; }
  }



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

  .plansIntro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
  }

  .plansKicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
  }

  .plansLead {
    max-width: 420px;
    text-wrap: balance;
    opacity: 0.85;
  }

  .plansTimeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 10px 0;
  }

  .plansTimeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondStyleColor);
    opacity: 0.4;
    transform: translateX(-50%);
  }

  .planStep {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
  }

  .planAxis {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .planDot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2);
  }

  .planCard {
    position: relative;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .planCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .planCard--featured {
    background: var(--secondStyleColor);
    color: var(--textColor2);
    border-color: transparent;
  }

  .planCard--featured .planMeta li {
    border-color: var(--textColor2);
  }

  .planCard--featured .planCta {
    background: var(--textColor2);
    color: var(--secondStyleColor);
    border-color: var(--textColor2);
  }

  .planBadge {
    position: absolute;
    top: 8px;
    right: 18px;
    border-radius: 999px;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--textColor2);
  }

  .planTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .planTitle {
    font-weight: 700;
  }

  .planNote {
    margin-top: 6px;
    opacity: 0.8;
  }

  .planPrice {
    font-size: 32px;
    font-weight: 700;
  }

  .planMeta {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
  }

  .planMeta li {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px dashed var(--secondStyleColor);
  }

  .planCta {
    align-self: flex-start;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: inherit;
    transition: transform 0.2s ease;
  }

  .planCta:hover {
    transform: translateY(-2px);
  }

  .plansFooter {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .plansFooterLink {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: var(--textColor1);
    transition: transform 0.2s ease;
  }

  .plansFooterLink:hover {
    transform: translateY(-2px);
  }

  @media (max-width: 900px) {
    .plansIntro {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 800px) {
    .plansTimeline::before {
      left: 10px;
      transform: none;
    }

    .planStep {
      grid-template-columns: 1fr;
      padding-left: 22px;
    }

    .planAxis {
      position: absolute;
      left: 4px;
      top: 32px;
      height: auto;
    }

    .planDot {
      box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
    }

    .planSpacer {
      display: none;
    }
  }



  /*  */
  #about {
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 80%,
      var(--bodyBG) 100%
    );
  }

  #about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    && h2 {
      text-align: center;
    }

    && p {
      text-align: center;
      text-wrap: balance;
    }
    && a {
      padding: 15px 40px;
      background-color: var(--secondStyleColor);
      border-radius: var(--borderRadius);
      color: var(--textColor2);
      font-size: 20px;
      font-weight: 700;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-4px);
      }
    }
  }
  .ab-i-wr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    position: relative;
  }
  .ab-i-wr div:nth-of-type(1) {
    height: 400px;
    width: 300px;
    overflow: hidden;
    border-radius: 999px;
    && img {
      border-radius: inherit;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: 50% 20%;
      transition: 0.2s all linear;
      &&:hover {
        transform: scale(1.1);
      }
    }
  }

  .ab-i-wr div:nth-of-type(2) {
    position: absolute;
    height: 300px;
    left: 10%;
    top: 10%;
    overflow: hidden;
    width: 300px;
    border-radius: 50%;
    && img {
      border-radius: inherit;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: 50% 20%;
      transition: 0.2s all linear;
      &&:hover {
        transform: scale(1.1);
      }
    }
  }

  .ab-i-wr div:nth-of-type(3) {
    position: absolute;
    height: 300px;
    right: 10%;
    top: 10%;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;

    && img {
      border-radius: inherit;
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: 50% 20%;
      transition: 0.2s all linear;
      &&:hover {
        transform: scale(1.1);
      }
    }
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
    }
    .ab-i-wr div:nth-of-type(2),
    .ab-i-wr div:nth-of-type(3) {
      display: 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; }
  }



  /* ===== HOW v18 — Rotating border + spark icons ===== */

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

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

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

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

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

  /* Card wrapper with animated border */
  .hw18__card {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 2px;
    overflow: hidden;
  }

  .hw18__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 12%,
      transparent 24%,
      transparent 100%
    );
    animation: hw18Rotate 5s linear infinite;
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .hw18__card:hover .hw18__border {
    opacity: 0.8;
  }

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

  .hw18__inner {
    position: relative;
    background: var(--bodyBG);
    border-radius: calc(var(--borderRadius) - 2px);
    padding: 32px 24px 28px;
    text-align: center;
    height: 100%;
  }

  /* Icon box with sparks */
  .hw18__icon-box {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hw18__icon-box i {
    font-size: 24px;
    color: var(--secondStyleColor);
    transition: transform 0.3s ease;
  }

  .hw18__card:hover .hw18__icon-box i {
    transform: rotate(-10deg) scale(1.15);
  }

  /* Sparks */
  .hw18__spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0;
  }

  .hw18__card:hover .hw18__spark {
    animation: hw18Spark 0.8s ease forwards;
  }

  .hw18__spark--1 {
    top: 4px;
    right: 8px;
    animation-delay: 0s;
  }

  .hw18__spark--2 {
    top: -2px;
    left: 14px;
    animation-delay: 0.15s;
  }

  .hw18__spark--3 {
    bottom: 2px;
    right: 2px;
    animation-delay: 0.3s;
  }

  .hw18__card:hover .hw18__spark--2 {
    animation-delay: 0.15s;
  }

  .hw18__card:hover .hw18__spark--3 {
    animation-delay: 0.3s;
  }

  @keyframes hw18Spark {
    0% {
      opacity: 0;
      transform: scale(0) translate(0, 0);
    }
    50% {
      opacity: 1;
      transform: scale(1.2) translate(-4px, -8px);
    }
    100% {
      opacity: 0;
      transform: scale(0.6) translate(-8px, -16px);
    }
  }

  .hw18__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hw18__inner h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw18__grid {
      gap: 18px;
    }

    .hw18__inner {
      padding: 26px 20px 24px;
    }

    .hw18__inner h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 800px) {
    .hw18__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
      margin: 0 auto;
    }
  }

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

    .hw18__head {
      margin-bottom: 36px;
    }

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

    .hw18__inner {
      padding: 24px 18px 20px;
    }

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

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

    .hw18__icon-box {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw18__icon-box i {
      font-size: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw18__border {
      animation: none;
      opacity: 0.2;
      background: var(--secondStyleColor);
    }
    .hw18__card:hover .hw18__spark {
      animation: none;
    }
    .hw18__icon-box i {
      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}
}



  .site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .intoLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    text-align: center;
    span {
      width: 8px;
      height: 8px;
      background-color: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }



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