
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #c52693;
  --accent-rgb: 197,38,147;
  --accent2: #c58d26;
  --accent2-rgb: 197,141,38;
  --accent3: #7f2ed7;
  --accent3-rgb: 127,46,215;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Josefin Sans', sans-serif;
  --font-heading: 'Josefin Sans', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #c52693;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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


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



  .hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 130px 0;
    text-align: center;
    background: var(--bodyBG);
    overflow: hidden;
    color: var(--textColor1);
  }
  h1 {
    text-transform: uppercase;
    font-weight: 900;
  }

  /* Фоновая картинка */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.5);
    z-index: 1;
  }

  /* Контейнер поверх */
  .hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Заголовок */
  .hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    text-wrap: balance;
  }

  /* Подзаголовок */
  .hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    color: var(--textColor1);
  }

  /* Кнопка */
  .hero a {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: 0.2s ease;
  }

  .hero a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Адаптив */
  @media (max-width: 700px) {
    .hero {
      padding: 100px 0;
    }

    .hero h1 {
      font-size: 34px;
    }

    .hero p {
      font-size: 16px;
    }
  }



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }

  .swiper {
    padding-bottom: 10px !important;
  }

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

  .toc h2 {
    margin: 0 !important;
    text-align: center;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
  }

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

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

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

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

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

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

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

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

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

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

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

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



  #top { padding: 80px 0; }
  .tp6-head { text-align: center; margin-bottom: 50px; }
  .tp6-head h2 { margin-bottom: 12px; }
  .tp6-list { display: flex; flex-direction: column; gap: 0; }
  .tp6-list .top-card {
    display: flex; align-items: center; gap: 24px;
    padding: 20px 24px; border-bottom: 1px solid var(--borderSubtle);
    transition: background 0.2s;
  }
  .tp6-list .top-card:first-child { border-top: 1px solid var(--borderSubtle); }
  .tp6-list .top-card:hover { background: rgba(var(--accent-rgb), 0.04); }
  .tp6-list .top-card__rank {
    flex-shrink: 0; font-size: 32px; font-weight: 900; color: var(--accentColor);
    width: 48px; text-align: center; line-height: 1;
  }
  .tp6-list .top-card__logo {
    flex-shrink: 0; width: 110px; height: 52px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp6-list .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp6-list .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp6-list .top-card__body { flex: 1; min-width: 0; }
  .tp6-list .top-card__body h3 { margin-bottom: 2px; }
  .tp6-list .top-card__body p { color: var(--textSecondary); font-size: 14px; }
  .tp6-list .top-card__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .tp6-list .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;
  }
  .tp6-list .top-card__badge {
    padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase;
  }
  .tp6-list .top-card__badge:empty { display: none; }
  @media (max-width: 768px) {
    .tp6-list .top-card { flex-wrap: wrap; gap: 12px; padding: 16px; }
    .tp6-list .top-card__rank { font-size: 24px; width: 36px; }
    .tp6-list .top-card__right { width: 100%; }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hw22__head {
      margin-bottom: 40px;
    }

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

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

    .hw22__title {
      font-size: 16px;
    }

    .hw22__desc {
      font-size: 13px;
    }

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

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

    .hw22__image::before {
      animation: none;
    }

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



  /*  */

  #about {
    min-height: 500px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }
  }

  #about .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    && h2 {
      text-transform: uppercase;
      color: var(--textColor1);
    }
  }
  .ab-lllller {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ab-rrrrorjg {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px;
    && p {
      font-style: italic;
      color: var(--textColor1);
    }
    && a {
      text-transform: uppercase;
      padding: 15px 20px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
      width: fit-content;
      font-weight: 900;
      transition: 0.2s all linear;
      color: var(--textColor2);
      &&:hover {
        transform: translateY(-2px);
      }
    }
  }
  .ab-lllller > span:nth-of-type(1) {
    color: var(--secondStyleColor);
    font-style: italic;
  }
  .ab-lllller > span:nth-of-type(2) {
    font-size: 120px;
    font-weight: 900;
    color: var(--secondStyleColor);
    font-style: italic;
  }

  @media (max-width: 800px) {
    #about .container {
      flex-direction: column;
      align-items: center;
    }
    .ab-lllller {
      align-items: center;
      && h2 {
        text-align: center;
      }
    }
    .ab-rrrrorjg {
      align-items: center;
      padding: 20px;
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
    .ab-lllller > span:nth-of-type(2) {
      font-size: 90px;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



  /* ===========================
     Reviews 20 — Masonry Grid
     CSS columns masonry + glassmorphism cards + staggered reveal
     =========================== */

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

  /* Background glows */
  .rev20__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .rev20__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    top: -100px;
    left: -5%;
    animation: rev20-drift1 20s ease-in-out infinite;
  }

  .rev20__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--accent2);
    opacity: 0.04;
    bottom: -80px;
    right: 5%;
    animation: rev20-drift2 24s ease-in-out infinite;
  }

  @keyframes rev20-drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.08); }
  }

  @keyframes rev20-drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, -40px) scale(1.06); }
  }

  /* Header */
  .rev20__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;
  }

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

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

  .rev20__sub {
    margin: 0;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.55;
  }

  /* Masonry layout */
  .rev20__masonry {
    position: relative;
    z-index: 1;
    columns: 2;
    column-gap: 22px;
  }

  /* Card */
  .rev20__card {
    break-inside: avoid;
    margin-bottom: 22px;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 70%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease,
      border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .rev20__card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .rev20__card:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: 0 12px 36px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* Stars */
  .rev20__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
  }

  .rev20__stars .fa-star {
    color: var(--secondStyleColor);
  }

  .rev20__stars .fa-star-half-stroke {
    color: var(--secondStyleColor);
  }

  /* Text */
  .rev20__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
  }

  /* Author */
  .rev20__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
  }

  .rev20__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      color-mix(in srgb, var(--accent2) 20%, transparent)
    );
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

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

  .rev20__role {
    margin: 0;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rev20__glow {
      animation: none !important;
    }
    .rev20__card {
      opacity: 1;
      transform: none;
      transition: none !important;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .rev20__masonry {
      columns: 2;
      column-gap: 16px;
    }
    .rev20__card {
      margin-bottom: 16px;
      padding: 24px 20px 20px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .rev20__masonry {
      columns: 1;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rev20__card {
      margin-bottom: 14px;
      padding: 22px 18px 20px;
    }
  }



  .featuresWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .feaItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    img {
      height: 500px;
      width: 400px;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }
  .feaWrap {
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    .feaWrap {
      margin-bottom: 20px;
    }
    .featuresWrap {
      flex-direction: column;
      gap: 20px;
    }
    .feaItem {
      gap: 20px;
      img {
        width: 100%;
      }
    }
  }



  /* ===== MOBILE v3 — Three phones showcase ===== */

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

  .mob3__bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 80%, rgba(var(--accent-rgb), 0.12), transparent),
      radial-gradient(ellipse 40% 30% at 20% 20%, rgba(var(--accent2-rgb), 0.08), transparent);
    pointer-events: none;
  }

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

  /* Header */
  .mob3__head {
    max-width: 620px;
    margin: 0 auto 50px;
  }

  .mob3__head h2 {
    margin: 0 0 14px;
    font-weight: 700;
  }

  .mob3__head p {
    margin: 0;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  /* Three phones row */
  .mob3__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
  }

  .mob3__phone {
    position: relative;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s;
  }

  .mob3__phone--center {
    width: 260px;
    height: 520px;
    z-index: 2;
  }

  .mob3__phone--side {
    width: 210px;
    height: 420px;
    opacity: 0.7;
    transform: scale(0.9);
  }

  .mob3__phone--side:hover {
    opacity: 0.9;
    transform: scale(0.95);
  }

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

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

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

  /* Store buttons */
  .mob3__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

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

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

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

  .mob3__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
    text-align: left;
  }

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

  /* Responsive */
  @media (max-width: 900px) {
    .mob3__phone--side {
      display: none;
    }

    .mob3__phone--center {
      width: 240px;
      height: 480px;
    }
  }

  @media (max-width: 600px) {
    .mob3__phone--center {
      width: 200px;
      height: 400px;
      border-radius: 28px;
      padding: 8px;
    }

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



  .gl11 {
    padding: 60px 0;
    overflow: hidden;
  }

  .gl11__head {
    text-align: center;
    margin-bottom: 40px;
  }

  .gl11__head p {
    margin: 12px auto 0;
    color: var(--textColor1);
    text-wrap: balance;
    text-align: center;
  }

  .gl11__marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .gl11__row {
    display: flex;
    width: max-content;
  }

  .gl11__track {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }

  .gl11__row--left {
    animation: gl11-scroll-left 70s linear infinite;
  }

  .gl11__row--right {
    animation: gl11-scroll-right 80s linear infinite;
  }

  .gl11__marquee-wrap:hover .gl11__row {
    animation-play-state: paused;
  }

  @keyframes gl11-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes gl11-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .gl11__item {
    flex-shrink: 0;
    width: 340px;
    height: 240px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: border-color 0.3s ease;
  }

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

  .gl11__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }

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

  @media (max-width: 950px) {
    .gl11__item {
      width: 280px;
      height: 200px;
    }
  }

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

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

    .gl11__track {
      gap: 12px;
      padding-right: 12px;
    }

    .gl11__item {
      width: 220px;
      height: 160px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl11__row--left,
    .gl11__row--right {
      animation: none;
    }

    .gl11__item img {
      transition: none;
    }
  }



  /* ===========================
     Extra 17 — Split Banner with Image & Feature List
     2-column grid + diagonal divider + gradient CTA + parallax
     =========================== */

  .sth17 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* Floating geometric shapes */
  .sth17__shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .sth17__shape--1 {
    width: 120px;
    height: 120px;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border-radius: 50%;
    top: 8%;
    left: 5%;
    animation: sth17-float 14s ease-in-out infinite;
  }

  .sth17__shape--2 {
    width: 80px;
    height: 80px;
    border: 2px solid color-mix(in srgb, var(--accent2) 12%, transparent);
    top: 20%;
    right: 8%;
    transform: rotate(45deg);
    animation: sth17-float 16s ease-in-out infinite -4s;
  }

  .sth17__shape--3 {
    width: 60px;
    height: 60px;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-radius: 50%;
    bottom: 15%;
    left: 12%;
    animation: sth17-float 12s ease-in-out infinite -7s;
  }

  .sth17__shape--4 {
    width: 40px;
    height: 40px;
    border: 2px solid color-mix(in srgb, var(--accent2) 10%, transparent);
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation: sth17-float 18s ease-in-out infinite -10s;
  }

  @keyframes sth17-float {
    0%, 100% { transform: translateY(0) rotate(var(--sth17-r, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--sth17-r, 0deg)); }
  }

  .sth17__shape--2,
  .sth17__shape--4 {
    --sth17-r: 45deg;
  }

  /* Container */
  .sth17 .container {
    position: relative;
    z-index: 1;
  }

  /* Grid */
  .sth17__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }

  /* Diagonal divider */
  .sth17__divider {
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 50%;
    width: 1px;
    transform: rotate(4deg);
    background: linear-gradient(
      to bottom,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 30%,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 70%,
      transparent
    );
  }

  /* Left: content */
  .sth17__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* Badge */
  .sth17__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sth17__content h2 {
    margin: 0;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

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

  /* Feature checklist */
  .sth17__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .sth17__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .sth17__list li i {
    font-size: 16px;
    color: var(--secondStyleColor);
    flex-shrink: 0;
  }

  /* CTA button */
  .sth17__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--bodyBG);
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    border: none;
    border-radius: var(--borderRadius);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

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

  .sth17__btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
  }

  .sth17__btn:hover i {
    transform: translateX(4px);
  }

  /* Ripple effect container */
  .sth17__btn .sth17__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: sth17-ripple 0.6s ease-out forwards;
    pointer-events: none;
  }

  @keyframes sth17-ripple {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  /* Right: media */
  .sth17__media {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s 0.2s ease, transform 0.7s 0.2s ease;
  }

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

  /* Image frame with animated gradient border */
  .sth17__img-frame {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
  }

  .sth17__img-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--borderRadius) + 3px);
    background: conic-gradient(
      from var(--sth17-angle, 0deg),
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    z-index: -1;
    animation: sth17-borderSpin 6s linear infinite;
  }

  @keyframes sth17-borderSpin {
    to { --sth17-angle: 360deg; }
  }

  @property --sth17-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  .sth17__img-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--borderRadius);
    transition: transform 0.1s ease-out;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .sth17__shape {
      animation: none;
    }
    .sth17__img-frame::before {
      animation: none;
    }
    .sth17__content,
    .sth17__media {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .sth17__btn {
      transition: none;
    }
    .sth17__btn i {
      transition: none;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .sth17__grid {
      gap: 40px;
    }
    .sth17__img-frame {
      max-width: 400px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .sth17__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .sth17__divider {
      display: none;
    }
    .sth17__media {
      order: -1;
    }
    .sth17__img-frame {
      max-width: 100%;
    }
    .sth17__content {
      align-items: center;
      text-align: center;
    }
    .sth17__list {
      align-items: flex-start;
      text-align: left;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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



  .ft8 {
    position: relative;
    padding: 0 20px 28px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Animated Top Border ── */
  .ft8__border {
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    background-size: 300% 100%;
    animation: ft8BorderFlow 6s linear infinite;
    margin-bottom: 48px;
  }

  @keyframes ft8BorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  /* ── Container ── */
  .ft8 .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .ft8__logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.25s ease;
  }

  .ft8__logo:hover {
    opacity: 0.8;
  }


  /* ── Divider ── */
  .ft8__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 2px;
    margin-bottom: 28px;
    animation: ft8DividerPulse 3s ease-in-out infinite;
  }

  @keyframes ft8DividerPulse {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
  }

  /* ── Navigation ── */
  .ft8__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    max-width: 600px;
    margin-bottom: 28px;
  }

  .ft8__nav a {
    position: relative;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .ft8__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ft8__nav a:hover {
    color: var(--textColor1);
  }

  .ft8__nav a:hover::after {
    transform: scaleX(1);
  }

  /* ── Social ── */
  .ft8__social {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
  }

  .ft8__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ft8__social a:hover {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* ── Bottom ── */
  .ft8__bottom {
    display: flex;
    align-items: center;
  }

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

  /* ── Responsive ── */
  @media (max-width: 800px) {
    .ft8__border {
      margin-bottom: 36px;
    }

    .ft8__nav {
      gap: 20px;
    }
  }

  @media (max-width: 600px) {
    .ft8 {
      padding: 0 16px 20px;
    }

    .ft8__border {
      margin-bottom: 32px;
    }

    .ft8__logo {
      font-size: 22px;
    }

    .ft8__nav {
      gap: 16px;
    }

    .ft8__nav a {
      font-size: 12px;
    }

    .ft8__social a {
      width: 38px;
      height: 38px;
      font-size: 14px;
    }

    .ft8__social {
      gap: 10px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft8__border {
      animation: none;
    }

    .ft8__divider {
      animation: none;
    }

    .ft8__social a,
    .ft8__nav a,
    .ft8__nav a::after,
    .ft8__logo {
      transition: none;
    }
  }



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