
:root {
  --bg: #121212;
  --bg-card: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #f1c40f;
  --accent-rgb: 241,196,15;
  --accent2: #0ff12d;
  --accent2-rgb: 15,241,45;
  --accent3: #f2272e;
  --accent3-rgb: 242,39,46;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #121212;
  --textColor1: #e0e0e0;
  --textColor2: #111111;
  --textSecondary: #adadad;
  --textMuted: #797979;
  --secondStyleColor: #f1c40f;
  --bgCard: #1e1e1e;
  --bgAlt: #222222;
  --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; }
}



  /*  */
  .homeuyydgb {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }

    && h1 {
      text-transform: uppercase;
      max-width: 900px;
    }

    && a {
      font-size: 18px;
      padding: 15px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      color: var(--textColor2);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        filter: brightness(1.15);
      }
    }
  }

  .homeuyydgb .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    && .hrr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .hll {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      background-color: rgba(17, 17, 17, 0.4);
      position: relative;
      max-width: 500px;
      border-radius: var(--borderRadius);
      && span:first-child {
        font-size: clamp(64px, 8vw, 96px);
        font-weight: 900;
        line-height: 1;
        color: var(--secondStyleColor);
      }
      && p {
        font-style: italic;
        color: var(--textColor1);
      }

      && .khvaejklj {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .homeuyydgb .container {
      flex-direction: column;
      && .hrr {
        align-items: center;
        && h1 {
          text-align: center;
        }
        && p {
          text-align: center;
        }
      }
      && .hll {
        gap: 10px;
        padding: 10px;
        && span:first-child {
          font-size: 56px;
        }
      }
    }
  }



  :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-mix(in srgb, var(--textColor1) 6%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    overflow: hidden;
  }

  .toc a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

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

  .toc a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent 70%
    );
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .toc a:hover::after,
  .toc a:focus::after {
    opacity: 1;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    transform: translateY(-2px);
  }

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

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

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

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

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

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

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

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

    .toc a:hover {
      transform: none;
    }
  }



  /* ===== ROADMAP v8 — Metro-style horizontal line with nodes + cards ===== */

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

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

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

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

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

  /* Metro container */
  .rm8__metro {
    max-width: 960px;
    margin: 0 auto;
  }

  /* SVG line */
  .rm8__line {
    width: 100%;
    height: 80px;
    display: block;
    margin-bottom: 24px;
  }

  .rm8__rail {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 3;
    stroke-linecap: round;
  }

  .rm8__rail--active {
    stroke: var(--secondStyleColor);
    stroke-dasharray: 580;
    stroke-dashoffset: 0;
    opacity: 0.3;
  }

  .rm8__node {
    fill: transparent;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
  }

  .rm8__node--done {
    fill: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    stroke: var(--secondStyleColor);
  }

  .rm8__node--current {
    fill: transparent;
    stroke: var(--secondStyleColor);
    stroke-width: 2.5;
  }

  .rm8__inner {
    fill: var(--secondStyleColor);
  }

  .rm8__inner--pulse {
    fill: var(--secondStyleColor);
    animation: rm8Pulse 2s ease-in-out infinite;
  }

  @keyframes rm8Pulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.5; }
  }

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

  .rm8__card {
    position: relative;
    padding: 22px 20px;
    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;
    overflow: hidden;
  }

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

  .rm8__card--active {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent),
      transparent
    );
  }

  .rm8__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    margin-bottom: 14px;
  }

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

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

  .rm8__card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
  }

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

  .rm8__card-ico {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 28px;
    color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    transition: color 0.3s ease;
    pointer-events: none;
  }

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

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

    .rm8__line {
      display: none;
    }
  }

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

    .rm8__card p {
      font-size: 12px;
    }
  }

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

    .rm8__head {
      margin-bottom: 36px;
    }

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

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

    .rm8__card {
      padding: 18px 16px;
    }
  }

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

    .rm8__card,
    .rm8__card-ico {
      transition: none;
    }
  }



  /* ===== MOBILE v8 — Floating phone with ring accents ===== */

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

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

  .mob8__ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.08);
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
  }

  .mob8__ring--2 {
    width: 700px;
    height: 700px;
    border-color: rgba(var(--accent-rgb), 0.04);
  }

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

  .mob8__wrap {
    display: flex;
    align-items: center;
    gap: 70px;
  }

  /* Phone */
  .mob8__phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 40px;
    padding: 12px;
    flex-shrink: 0;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 40px 80px rgba(0,0,0,0.5),
      0 0 100px rgba(var(--accent-rgb), 0.06);
    animation: mob8Float 6s ease-in-out infinite;
  }

  @keyframes mob8Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

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

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

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

  /* Content */
  .mob8__content {
    flex: 1;
    min-width: 0;
  }

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

  .mob8__content > p {
    margin: 0 0 30px;
    line-height: 1.7;
    color: var(--textSecondary);
    max-width: 480px;
  }

  /* Perks */
  .mob8__perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
  }

  .mob8__perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--borderRadius);
    background: var(--bgCard);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .mob8__perk i {
    font-size: 20px;
    color: var(--secondStyleColor);
    flex-shrink: 0;
  }

  .mob8__perk p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
  }

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

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

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

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

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

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

  /* Responsive */
  @media (max-width: 900px) {
    .mob8__wrap {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

    .mob8__buttons {
      justify-content: center;
    }

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

    .mob8__screen {
      border-radius: 24px;
    }

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

    .mob8__ring {
      left: 50%;
    }
  }

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

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

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



  #top { padding: 80px 0; }
  .tp2-head { text-align: center; margin-bottom: 50px; }
  .tp2-head__tag {
    display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 16px;
  }
  .tp2-head h2 { margin-bottom: 12px; }
  .tp2-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tp2-grid .top-card {
    background: var(--cardBG); border-radius: var(--borderRadius); padding: 24px;
    border: 1px solid var(--borderSubtle); position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .tp2-grid .top-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
  .tp2-grid .top-card__rank {
    position: absolute; top: -6px; left: -6px; width: 52px; height: 52px;
    background: var(--accentColor); color: var(--textColor2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800; border-radius: 0 0 16px 0;
  }
  .tp2-grid .top-card__top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; padding-left: 48px; }
  .tp2-grid .top-card__logo {
    width: 100px; height: 48px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
  }
  .tp2-grid .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp2-grid .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp2-grid .top-card__top h3 { flex: 1; }
  .tp2-grid .top-card__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .tp2-grid .top-card__rating {
    padding: 4px 12px; border-radius: 6px;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor);
    font-weight: 700; font-size: 14px;
  }
  .tp2-grid .top-card__bonus { color: var(--textSecondary); font-size: 14px; }
  .tp2-grid .top-card__badge {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase; letter-spacing: 0.5px;
  }
  .tp2-grid .top-card__badge:empty { display: none; }
  .tp2-grid .top-card__features { margin-top: 12px; color: var(--textMuted); font-size: 13px; }
  @media (max-width: 768px) { .tp2-grid { grid-template-columns: 1fr; } }



  /* ===== HOW IT WORKS SECTION ===== */

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

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

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

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

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

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

  /* Steps */
  .howSteps {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .howStepItem {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 20px 22px 20px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: 0.2s ease;
  }

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

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

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

  /* Badge + text */
  .howStepBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--secondStyleColor);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    margin-bottom: 14px;
  }

  .howStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

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

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

    .howStepItem {
      padding: 22px 18px;
    }
  }



  /* ===== FEATURES v13 — Split layout with progress bars ===== */

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

  .ft13__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
  }

  /* Left */
  .ft13__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
  }

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

  .ft13__left h2 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

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

  .ft13__btn {
    display: inline-block;
    margin-top: 6px;
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .ft13__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Right — list */
  .ft13__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ft13__item {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
  }

  .ft13__item:first-child {
    padding-top: 0;
  }

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

  .ft13__num {
    grid-row: 1 / 3;
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.25;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
  }

  .ft13__item:hover .ft13__num {
    opacity: 0.6;
  }

  .ft13__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
  }

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

  /* Progress bar */
  .ft13__bar {
    grid-column: 2;
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 12px;
    overflow: hidden;
  }

  .ft13__fill {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent)
    );
    transition: width 0.6s ease;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft13__left {
      position: static;
    }
  }

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

    .ft13__left {
      text-align: center;
      align-items: center;
    }

    .ft13__left p {
      max-width: 100%;
    }

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

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

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

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

    .ft13__item {
      grid-template-columns: 40px 1fr;
      padding: 18px 0;
    }

    .ft13__num {
      font-size: 22px;
    }

    .ft13__text h3 {
      font-size: 15px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft13__btn,
    .ft13__num,
    .ft13__fill {
      transition: none;
    }
  }



  /* ===== TESTIMONIALS SECTION ALT (VARIANT 2) ===== */

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

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

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

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

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

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

  /* List */
  .testimonialsAltList {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Row card */
  .testimonialRow {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;

    border-radius: var(--borderRadius);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

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

  /* Avatar */
  .testimonialAvatar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .testimonialAvatarCircle {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondStyleColor);
  }

  /* Body */
  .testimonialRowBody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .testimonialRowHead {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
  }

  .testimonialName {
    font-size: 16px;
    font-weight: 600;
  }

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

  .testimonialTag {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    white-space: nowrap;
  }

  .testimonialRowText {
    font-size: 14px;
    line-height: 1.7;
    color: #dfdfdf;
  }

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

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



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



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

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

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

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

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

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

  .gl1__item {
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

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

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

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

  .gl1__info {
    padding: 16px 18px;
  }

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

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

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

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

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



  /*  */
  .qwfwae {
    padding: 20px 0;
  }
  .sljahvasbkawrgfisacg {
    margin-bottom: 40px;
  }

  .vTrxQn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .vTrxQn + .vTrxQn {
    margin-top: 130px;
  }

  .uLmTtR {
    margin: 0 0 10px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--textColor1);
  }

  .bNmYyU {
    color: var(--textColor1);
    margin-bottom: 16px;
    font-weight: 600;
  }

  .aQpZyX p {
    margin: 0 0 12px;
    line-height: 1.7;
    color: var(--textColor1);
  }

  .pOeRrS {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 2px solid var(--secondStyleColor);
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.2s all linear;
    &&:hover {
      padding: 12px 40px;
    }
  }

  .yYtVvW {
    display: flex;
    justify-content: center;
  }
  .xXrEeD {
    display: flex;
  }

  .mMpQqA {
    position: relative;
    width: 360px;
    height: 250px;
  }

  .mMpQqA::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 350px;
    border: 18px solid var(--secondStyleColor);
    right: -56px;
    bottom: -135px;
    z-index: 0;
  }

  .nNwEeR {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 350px;
    object-fit: cover;
    object-position: 50% 20%;
    border: 5px solid var(--secondStyleColor);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
  }

  /* зеркалим рамку для второго блока */
  .mMpQqA--flip::before {
    left: 38px;
    right: auto;
    bottom: -42px;
  }

  .mMpQqA--flip .nNwEeR {
    left: 0;
    right: auto;
  }

  /* адаптив */
  @media (max-width: 900px) {
    .vTrxQn {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .yYtVvW,
    .xXrEeD {
      justify-content: flex-start;
    }
    .mMpQqA::before {
      display: none;
    }
    .mMpQqA,
    .nNwEeR {
      width: 100%;
    }
    .sljahvasbkawrgfisacg {
      margin-bottom: 20px;
    }
    .nNwEeR {
      height: 270px;
    }
    .vTrxQn + .vTrxQn {
      margin-top: 45px;
    }
  }



  .unitLuma {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .unitLumaShell {
    max-width: var(--maxWidthContainer);
    padding: 0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 32px;
    align-items: center;
  }

  /* Левая колонка */
  .unitLumaLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .unitLumaTitle {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 14px 0;
  }

  .unitLumaLead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textColor1);
    max-width: 420px;
  }

  /* Правая колонка: карточки */
  .unitLumaGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .unitLumaCard {
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
    padding: 18px 18px 20px 18px;
    transition: 0.18s ease;
  }

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

  .unitLumaCardAccent {
    background: radial-gradient(
      circle at top left,
      rgba(2, 255, 57, 0.16),
      #262626 55%
    );
  }

  .unitLumaCardTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
  }

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

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

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

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



  /* ===========================
     FAQ 12 — Aurora Cascade
     Staggered glass grid + animated SVG waves + shimmer accents
     =========================== */

  .faq12 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

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

  /* Floating glow blobs */
  .faq12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .faq12__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -100px;
    right: -80px;
    animation: faq12-drift1 28s ease-in-out infinite;
  }

  .faq12__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
    animation: faq12-drift2 33s ease-in-out infinite;
  }

  @keyframes faq12-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, 60px) scale(1.1);
    }
    66% {
      transform: translate(30px, -40px) scale(0.95);
    }
  }

  @keyframes faq12-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(40px, -30px) scale(1.08);
    }
    66% {
      transform: translate(-60px, 50px) scale(0.93);
    }
  }

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

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

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

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

  /* Grid — two columns, right column offset for cascade effect */
  .faq12__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq12__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .faq12__col--offset {
    padding-top: 52px;
  }

  /* Card */
  .faq12__card {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    overflow: hidden;
    transition:
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.45s ease;
    animation: faq12-float 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq12__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow:
      0 12px 40px color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    animation-play-state: paused;
  }

  @keyframes faq12-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  /* Shimmer accent line at top of card */
  .faq12__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 30%,
      var(--secondStyleColor) 50%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: faq12-shimmer 4s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }

  .faq12__card:hover .faq12__accent {
    opacity: 1;
  }

  @keyframes faq12-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Number badge */
  .faq12__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    margin-bottom: 18px;
    animation: faq12-breathe 3.5s ease-in-out infinite;
  }

  @keyframes faq12-breathe {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 18px 4px
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    }
  }

  /* Question */
  .faq12__question {
    margin: 0 0 10px;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Answer */
  .faq12__answer {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0.78;
    transition: opacity 0.3s ease;
  }

  .faq12__card:hover .faq12__answer {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq12__bg * {
      animation: none !important;
    }
    .faq12__glow {
      animation: none !important;
    }
    .faq12__card {
      animation: none !important;
    }
    .faq12__accent {
      animation: none !important;
    }
    .faq12__num {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq12__grid {
      gap: 18px;
    }
    .faq12__col--offset {
      padding-top: 36px;
    }
    .faq12__card {
      padding: 24px 22px 22px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq12__grid {
      grid-template-columns: 1fr;
      max-width: 560px;
    }
    .faq12__col--offset {
      padding-top: 0;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq12__card {
      padding: 22px 18px 20px;
    }
    .faq12__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      margin-bottom: 14px;
    }
  }



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