
:root {
  --bg: #0d1b2a;
  --bg-card: #1b2838;
  --text: #e0fbfc;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #00b4d8;
  --accent-rgb: 0,180,216;
  --accent2: #6c00d8;
  --accent2-rgb: 108,0,216;
  --accent3: #00f251;
  --accent3-rgb: 0,242,81;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #0d1b2a;
  --textColor1: #e0fbfc;
  --textColor2: #111111;
  --textSecondary: #abc3c8;
  --textMuted: #778b93;
  --secondStyleColor: #00b4d8;
  --bgCard: #1b2838;
  --bgAlt: #1e2d3b;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 100vw; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100vw; }
::-webkit-scrollbar-thumb:hover { background: var(--secondStyleColor); filter: brightness(1.2); }
::-webkit-scrollbar-thumb:active { background: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.05); }

body {
  font-family: var(--font);
  background: var(--bodyBG);
  color: var(--textColor1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; object-position: 50% 20%; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* Standardized typography */
section h1 {
  font-size: 48px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
section h2 {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
section h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section h4 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section p,
section li {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
footer p,
footer li,
footer a {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h3 {
  font-size: 16px !important;
}
@media (max-width: 900px) {
  section h1 {
    font-size: 36px !important;
  }
  section h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 600px) {
  section h1 {
    font-size: 30px !important;
  }
  section h2 {
    font-size: 24px !important;
  }
  section h3 {
    font-size: 18px !important;
  }
  section p,
  section li {
    font-size: 15px !important;
  }
}

/* Heading font */
section h1, section h2, section h3, section h4,
header h1, header h2, header h3, header h4,
footer h3 {
  font-family: var(--font-heading) !important;
}

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


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

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

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

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

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

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



  /* ===== hero shell ===== */
  .z9q-heroBox {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 24px);
    background:
      radial-gradient(
        900px 450px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
        transparent 55%
      ),
      radial-gradient(
        700px 380px at 75% 30%,
        color-mix(in srgb, var(--secondStyleColor) 30%, transparent),
        transparent 55%
      ),
      radial-gradient(
        500px 380px at 55% 95%,
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        color-mix(in srgb, var(--textColor2) 10%, transparent) 15%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
      );

    display: flex;
    align-items: center;
    width: 100%;
    isolation: isolate;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      opacity: 0.1;
      z-index: -1;
      inset: 0;
    }
  }

  .z9q-heroBox::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--borderRadius);
    pointer-events: none;
  }

  /* left/right striped “curtains” */
  .k2p-curtain,
  .k2p-curtain2 {
    position: absolute;
    top: -40px;
    bottom: -60px;
    width: 34%;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
  }

  .k2p-curtain {
    left: -8%;
    transform: skewX(-12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(60% 70% at 65% 50%, #000 60%, transparent 100%);
  }

  .k2p-curtain2 {
    right: -10%;
    transform: skewX(12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(65% 70% at 35% 55%, #000 60%, transparent 100%);
  }

  /* subtle diagonal lines behind */
  .p7x-gridwash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 45%),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0 1px,
        transparent 1px 18px
      );
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }

  /* ===== main layout ===== */
  .n0v-stage {
    position: relative;
    z-index: 2;
  }

  .t5q-centerCopy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .x8h-title {
    color: var(--textColor1);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .g7p-sub {
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto;
  }

  .j3c-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--textColor1);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.2s all linear;
    width: fit-content;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  /* ===== responsive rules ===== */
  @media (max-width: 780px) {
    .z9q-heroBox {
      min-height: 550px;
    }
    .t5q-centerCopy {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin: 10px auto 12px;
      padding: 0 6px;
    }

    .k2p-curtain,
    .k2p-curtain2 {
      opacity: 0.55;
      width: 46%;
    }
  }



  :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: color-mix(in srgb, var(--textColor1) 65%, transparent);
    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: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

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

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

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

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

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

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

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

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

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



  /* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

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

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

  .ab18__cell--hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .ab18__cell--hero:hover img {
    transform: scale(1.04);
  }

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .ab18__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab18__cell--intro h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab18__cell--stat span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    font-weight: 500;
  }

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ab18__feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

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

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .ab18__cell--img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .ab18__cell--img2:hover img {
    transform: scale(1.04);
  }

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

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

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .ab18__cell--intro h2 {
      font-size: 22px;
    }

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

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

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      transition: none;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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



  /* ===== HOW IT WORKS SECTION ALT (VARIANT 2) ===== */

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

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

  /* Header */
  .howAltHeader {
    max-width: 700px;
    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: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

  /* Timeline */
  .howAltTimeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 28px;
  }

  .howAltLine {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      rgba(2, 255, 57, 0.05)
    );
  }

  /* Step */
  .howAltStep {
    position: relative;
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
  }

  .howAltDot {
    position: relative;
    flex: 0 0 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    z-index: 1;
    margin-left: -2px;
  }

  .howAltStepBody {
    border-radius: var(--borderRadius);
    padding: 18px 20px 18px 20px;
    border: 4px dotted var(--secondStyleColor);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

  .howAltStepTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

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

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

  /* Responsive */
  @media (max-width: 700px) {
    .howAltTimeline {
      padding-left: 18px;
    }

    .howAltLine {
      left: 10px;
    }

    .howAltStep {
      gap: 12px;
    }

    .howAltStepBody {
      padding: 16px 16px;
    }
  }



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

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

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

  .gl13__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 100px;
    margin-bottom: 20px;
  }

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

  .gl13__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .gl13__item {
      margin-bottom: 10px;
    }

    .gl13__overlay {
      opacity: 1;
    }

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

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

    .gl13__masonry {
      columns: 1;
    }

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

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

    .gl13__img-wrap img {
      transition: none;
    }

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



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



  #bonuses { padding: 80px 0; }
  .bn5-head { text-align: center; margin-bottom: 50px; }
  .bn5-head h2 { margin-bottom: 12px; }
  .bn5-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .bn5-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .bn5-grid .bonus-card {
    background: var(--cardBG); border-radius: var(--borderRadius); padding: 0;
    border: 1px solid var(--secondStyleColor); overflow: hidden; position: relative;
    transition: border-color 0.4s;
  }
  .bn5-grid .bonus-card:hover { border-color: var(--accentColor); }
  .bn5-grid .bonus-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--accentColor); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .bn5-grid .bonus-card:hover::before { transform: scaleX(1); }
  .bn5-grid .bonus-card__inner { padding: 28px 24px; }
  .bn5-grid .bonus-card__badge {
    display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: #fff; text-transform: uppercase; margin-bottom: 14px;
  }
  .bn5-grid .bonus-card__badge:empty { display: none; }
  .bn5-grid .bonus-card h3 { font-size: 18px; margin-bottom: 10px; }
  .bn5-grid .bonus-card p { color: var(--textSecondary); font-size: 14px; line-height: 1.6; }
  .bn5-grid .bonus-card__footer {
    padding: 14px 24px; border-top: 1px solid var(--secondStyleColor);
    display: flex; justify-content: space-between; align-items: center;
  }
  .bn5-grid .bonus-card__cat { font-size: 12px; color: var(--accentColor); font-weight: 500; }
  .bn5-grid .bonus-card__arrow { color: var(--accentColor); font-size: 18px; transition: transform 0.3s; }
  .bn5-grid .bonus-card:hover .bonus-card__arrow { transform: translateX(4px); }
  @media (max-width: 900px) { .bn5-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .bn5-grid { grid-template-columns: 1fr; } }



  .x9p {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;

    overflow: hidden;
    position: relative;

    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      opacity: 0.1;
      filter: blur(15px);
    }
  }

  .i7a {
    font-size: 70px;
    color: var(--secondStyleColor);
    text-transform: uppercase;
    font-weight: 900;
  }

  .l3k {
    color: var(--textColor1);
    text-decoration: none;
    transition: text-shadow 300ms ease-in;
    text-shadow:
      0 2ex color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
      0 -2ex color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
      0 4ex color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
      0 -4ex color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
      0 6ex color-mix(in srgb, var(--secondStyleColor) 7.5%, transparent),
      0 -6ex color-mix(in srgb, var(--secondStyleColor) 7.5%, transparent);
  }

  @media (max-width: 800px) {
    .i7a {
      font-size: 24px;
    }
    .x9p {
      min-height: 200px;
    }
  }



  #top { padding: 80px 0; }
  .tp4-head { text-align: center; margin-bottom: 50px; }
  .tp4-head h2 { margin-bottom: 12px; }
  .tp4-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp4-podium { display: flex; flex-direction: column; gap: 12px; }
  .tp4-podium .top-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--cardBG); border-radius: var(--borderRadius); padding: 18px 24px;
    border: 1px solid var(--borderSubtle); transition: transform 0.3s;
  }
  .tp4-podium .top-card:hover { transform: translateX(6px); }
  .tp4-podium .top-card--gold { border-left: 4px solid #FFD700; background: linear-gradient(90deg, rgba(255,215,0,0.06), var(--cardBG) 40%); }
  .tp4-podium .top-card--silver { border-left: 4px solid #C0C0C0; background: linear-gradient(90deg, rgba(192,192,192,0.06), var(--cardBG) 40%); }
  .tp4-podium .top-card--bronze { border-left: 4px solid #CD7F32; background: linear-gradient(90deg, rgba(205,127,50,0.06), var(--cardBG) 40%); }
  .tp4-podium .top-card__rank {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: var(--borderSubtle); color: var(--textColor1);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
  }
  .tp4-podium .top-card--gold .top-card__rank { background: #FFD700; color: #1a1a1a; }
  .tp4-podium .top-card--silver .top-card__rank { background: #C0C0C0; color: #1a1a1a; }
  .tp4-podium .top-card--bronze .top-card__rank { background: #CD7F32; color: #fff; }
  .tp4-podium .top-card__logo {
    flex-shrink: 0; width: 110px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp4-podium .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp4-podium .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp4-podium .top-card__body { flex: 1; min-width: 0; }
  .tp4-podium .top-card__body h3 { margin-bottom: 2px; font-size: 17px; }
  .tp4-podium .top-card__body p { color: var(--textSecondary); font-size: 14px; }
  .tp4-podium .top-card__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .tp4-podium .top-card__rating {
    padding: 6px 14px; border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor);
    font-weight: 700; font-size: 15px;
  }
  .tp4-podium .top-card__badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase;
  }
  .tp4-podium .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp4-podium .top-card { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
    .tp4-podium .top-card__right { width: 100%; justify-content: flex-start; }
  }



  /* ===== MOBILE v4 — Card layout with stats ===== */

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

  .mob4 > .container {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .mob4__card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bgCard);
    border-radius: calc(var(--borderRadius) * 2);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }

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

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

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

  /* Stats */
  .mob4__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }

  .mob4__stat {
    text-align: center;
  }

  .mob4__stat h3 {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

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

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

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

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

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

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

  .mob4__phone {
    position: relative;
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 38px;
    padding: 11px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

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

  .mob4__screen {
    width: 100%;
    height: 100%;
    border-radius: 29px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
  }

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

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

    .mob4__stats {
      justify-content: center;
    }

    .mob4__buttons {
      justify-content: center;
    }

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

    .mob4__screen {
      border-radius: 24px;
    }

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

  @media (max-width: 600px) {
    .mob4__card {
      padding: 30px 20px;
    }

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .testimonialStarMeta {
    margin-top: 4px;
  }

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

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

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

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



  /* ===========================
     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 {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

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

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--textSecondary);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

  .footer-links li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

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

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      columns: 1;
      text-align: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }



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