
:root {
  --bg: #130f1d;
  --bg-card: #1e1730;
  --text: #e0d4f5;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #9b59b6;
  --accent-rgb: 155,89,182;
  --accent2: #b65d59;
  --accent2-rgb: 182,93,89;
  --accent3: #6b75be;
  --accent3-rgb: 107,117,190;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --bodyBG: #130f1d;
  --textColor1: #e0d4f5;
  --textColor2: #ffffff;
  --textSecondary: #ada3bf;
  --textMuted: #7a7289;
  --secondStyleColor: #9b59b6;
  --bgCard: #1e1730;
  --bgAlt: #231f2e;
  --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;
}


  /* HEADER */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }



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

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

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



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

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

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

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--bodyBG);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-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;
    }
  }



  .how7__section {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
  }

  .how7__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.5;
  }
  .how7__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 50px;
    align-items: start;
  }
  .how7__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .how7__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
    font-weight: 600;
    color: var(--textColor1);
  }
  .how7__intro h2 {
    font-family: "Syne", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0;
    color: var(--textColor1);
  }
  .how7__lead {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.7;
    max-width: 480px;
  }
  .how7__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .how7__meta-card {
    border: 1px solid var(--secondStyleColor);
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .how7__meta-card strong {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    color: var(--textColor1);
  }
  .how7__meta-card span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    color: var(--textColor1);
  }

  .how7__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 26px;
    position: relative;
  }
  .how7__steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(var(--secondStyleColor));
  }
  .how7__step {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    border: 1px solid var(--secondStyleColor);
    border-radius: 20px;
    padding: 20px 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    animation: how7Rise 0.6s ease both;
    animation-delay: var(--delay);
  }
  .how7__step-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
  }
  .how7__step-body h3 {
    margin: 0 0 6px 0;
    font-family: "Syne", sans-serif;
    font-size: 20px;
    color: var(--textColor1);
  }
  .how7__step-body p {
    margin: 0 0 14px 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--textColor1);
    line-height: 1.6;
  }
  .how7__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .how7__chips span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--textColor1);
  }

  @keyframes how7Rise {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .how7__step {
      animation: none;
    }
  }
  @media (max-width: 980px) {
    .how7__layout {
      grid-template-columns: 1fr;
    }
    .how7__meta {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .how7__section {
      padding: 70px 0 90px;
    }
    .how7__meta {
      grid-template-columns: 1fr;
    }
    .how7__step {
      grid-template-columns: 1fr;
    }
    .how7__steps::before {
      display: none;
    }
    .how7__step-badge {
      width: 46px;
      height: 46px;
      border-radius: 12px;
    }
  }



.feat23{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.feat23__grid-bg{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;overflow:hidden;
}
.feat23__grid-bg canvas{
  width:100%;height:100%;
  opacity:.08;
}

.feat23__container{position:relative;z-index:1;max-width:1100px}

.feat23__header{
  display:flex;
  align-items:flex-start;
  gap:3rem;
  margin-bottom:5rem;
}
.feat23__count{
  font-size:clamp(4rem,8vw,6rem);
  font-weight:700;
  line-height:1;
  -webkit-text-stroke:1.5px var(--secondStyleColor);
  color:transparent;
  flex-shrink:0;
}
.feat23__header-text{padding-top:.5rem}
.feat23 h2{color:var(--textColor1);margin-bottom:.8rem}
.feat23__subtitle{
  font-style:italic;
  color:var(--textMuted);
  max-width:450px;
}

.feat23__row{
  display:grid;
  grid-template-columns:60px 1fr 1fr;
  gap:0;
  border-top:1px solid var(--borderSubtle);
  opacity:0;
  transform:translateY(20px);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.feat23__row.visible{opacity:1;transform:translateY(0)}
.feat23__row:last-child{border-bottom:1px solid var(--borderSubtle)}
.feat23__row:hover{background:var(--bgCard)}

.feat23__num{
  display:flex;align-items:center;justify-content:center;
  font-size:.7rem;font-weight:600;
  color:var(--textMuted);
  border-right:1px solid var(--borderSubtle);
  transition:color .3s;
}
.feat23__row:hover .feat23__num{color:var(--secondStyleColor)}

.feat23__main{
  padding:2rem 2.5rem;
  display:flex;align-items:center;gap:1.2rem;
  border-right:1px solid var(--borderSubtle);
}
.feat23__icon{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;
  font-size:.95rem;
  flex-shrink:0;
  transition:transform .3s;
}
.feat23__row:hover .feat23__icon{transform:rotate(-10deg) scale(1.1)}

.feat23__icon--1{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}
.feat23__icon--2{background:rgba(var(--accent2-rgb),.1);color:var(--accent2)}
.feat23__icon--3{background:rgba(var(--accent3-rgb),.1);color:var(--accent3)}
.feat23__icon--4{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}

.feat23__main h3{color:var(--textColor1)}

.feat23__detail{
  padding:2rem 2.5rem;
  display:flex;flex-direction:column;justify-content:center;
}
.feat23__detail p{color:var(--textSecondary);font-size:.88rem;line-height:1.75;margin-bottom:.8rem}

.feat23__tag{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.6rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:4px;
  width:fit-content;
}
.feat23__tag--1{background:rgba(var(--accent-rgb),.08);color:var(--secondStyleColor)}
.feat23__tag--2{background:rgba(var(--accent2-rgb),.08);color:var(--accent2)}
.feat23__tag--3{background:rgba(var(--accent3-rgb),.08);color:var(--accent3)}
.feat23__tag--4{background:rgba(var(--accent-rgb),.08);color:var(--secondStyleColor)}

@media(max-width:768px){
  .feat23__header{flex-direction:column;gap:1rem}
  .feat23__row{grid-template-columns:1fr;border:none;border-top:1px solid var(--borderSubtle)}
  .feat23__num{display:none}
  .feat23__main{border-right:none;padding:1.5rem}
  .feat23__detail{padding:0 1.5rem 1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .feat23__row{animation:none!important;opacity:1;transform:none;transition:none}
}



  /* ===========================
     Reviews 18 — Spotlight Mosaic
     Bento grid + CSS hover spotlight (dim others) + holographic shine
     =========================== */

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

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

  .rv18__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    top: -120px;
    left: 10%;
    animation: rv18-drift1 24s ease-in-out infinite;
  }

  .rv18__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    bottom: -100px;
    right: 5%;
    animation: rv18-drift2 28s ease-in-out infinite;
  }

  .rv18__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    opacity: 0.035;
    top: 50%;
    left: 55%;
    animation: rv18-drift3 20s ease-in-out infinite;
  }

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

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

  @keyframes rv18-drift3 {
    0%,
    100% {
      transform: translate(-50%, 0) scale(1);
    }
    50% {
      transform: translate(-50%, -35px) scale(1.12);
    }
  }

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

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

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

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

  /* Bento grid */
  .rv18__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
  }

  /* Featured card spans 2 rows */
  .rv18__card--featured {
    grid-row: 1 / 3;
  }

  /* Card */
  .rv18__card {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 4%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 2%, transparent) 100%
    );
    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;
    overflow: hidden;
    transition:
      opacity 0.45s ease,
      filter 0.45s ease,
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.4s ease;
  }

  /* ── Spotlight effect: hover grid → dim all, un-dim hovered ── */
  .rv18__grid:hover .rv18__card {
    opacity: 0.4;
    filter: blur(2px) saturate(0.6);
  }

  .rv18__grid:hover .rv18__card:hover {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: scale(1.03);
    z-index: 2;
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    box-shadow:
      0 16px 48px color-mix(in srgb, var(--secondStyleColor) 16%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* Holographic shine sweep on hover */
  .rv18__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 30%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 45%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 55%,
      transparent 70%
    );
    background-size: 250% 100%;
    background-position: 200% 0;
    pointer-events: none;
    transition: background-position 0.8s ease;
  }

  .rv18__card:hover .rv18__shine {
    background-position: -50% 0;
  }

  /* Quote icon (featured card) */
  .rv18__quote-icon {
    font-size: 28px;
    color: var(--secondStyleColor);
    opacity: 0.3;
  }

  /* Stars */
  .rv18__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--secondStyleColor);
  }

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

  .rv18__text--large {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
  }

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

  .rv18__avatar {
    flex-shrink: 0;
    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);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  .rv18__avatar--lg {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

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

  .rv18__role {
    margin: 0;
    font-size: 12px;
    color: var(--textColor1);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv18__glow {
      animation: none !important;
    }
    .rv18__card {
      transition: none !important;
    }
    .rv18__shine {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv18__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .rv18__card--featured {
      grid-row: auto;
      grid-column: 1 / -1;
    }
    .rv18__card {
      padding: 24px 20px 20px;
    }
  }

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

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv18__grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv18__card--featured {
      grid-column: auto;
    }
    .rv18__card {
      padding: 22px 18px 20px;
    }
    /* Disable spotlight on mobile (no hover) */
    .rv18__grid:hover .rv18__card {
      opacity: 1;
      filter: none;
    }
    .rv18__grid:hover .rv18__card:hover {
      transform: none;
      box-shadow: none;
    }
  }



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

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

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

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

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

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

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

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

  .gl5__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }

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

  .gl5__card:hover .gl5__img img {
    transform: scale(1.05);
  }

  .gl5__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--secondStyleColor);
    border-radius: 4px;
  }

  .gl5__body {
    padding: 18px 20px;
  }

  .gl5__body h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
  }

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

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

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

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



.about22{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.about22::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23888' stroke-width='.3'/%3E%3C/svg%3E");
  background-size:60px;
  opacity:.08;
  pointer-events:none;
}

.about22__container{max-width:1000px;position:relative;z-index:1}

.about22__header{text-align:center;margin-bottom:5rem}
.about22__eyebrow{
  font-size:.7rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1rem;
}
.about22 h2{color:var(--textColor1);margin-bottom:1rem}
.about22__header > p{
  color:var(--textMuted);
  max-width:550px;margin:0 auto;
}

.about22__timeline{
  position:relative;
  padding-left:3rem;
}
.about22__timeline::before{
  content:'';position:absolute;
  left:7px;top:0;bottom:0;
  width:2px;
  background:var(--borderSubtle);
}
.about22__progress{
  position:absolute;
  left:7px;top:0;
  width:2px;height:0;
  background:linear-gradient(to bottom,var(--secondStyleColor),var(--accent2));
  transition:height .6s ease;
  z-index:1;
}

.about22__item{
  position:relative;
  margin-bottom:3.5rem;
  opacity:0;
  transform:translateX(-20px);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.about22__item.visible{opacity:1;transform:translateX(0)}
.about22__item:last-child{margin-bottom:0}

.about22__dot{
  position:absolute;
  left:-3rem;top:.3rem;
  width:16px;height:16px;
  border-radius:50%;
  border:3px solid var(--borderSubtle);
  background:var(--bodyBG);
  z-index:2;
  transition:all .3s ease;
}
.about22__item.visible .about22__dot{
  border-color:var(--secondStyleColor);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.1);
}

.about22__card{
  background:var(--bgCard);
  border-radius:var(--borderRadius);
  padding:2rem 2.5rem;
  box-shadow:0 2px 20px rgba(0,0,0,.04);
  border:1px solid var(--borderSubtle);
  transition:all .3s ease;
}
.about22__item:hover .about22__card{
  box-shadow:0 8px 35px rgba(0,0,0,.08);
  transform:translateX(4px);
}

.about22__year{
  display:inline-block;
  font-size:.75rem;font-weight:700;
  letter-spacing:.1em;
  color:var(--textColor2);
  padding:.25rem .75rem;
  border-radius:4px;
  margin-bottom:1rem;
}
.about22__year--1{background:var(--secondStyleColor)}
.about22__year--2{background:var(--accent2)}

.about22__card h3{color:var(--textColor1);margin-bottom:.6rem}
.about22__card p{color:var(--textSecondary);margin-bottom:1rem}

.about22__tags{display:flex;gap:.5rem;flex-wrap:wrap}
.about22__tag{
  font-size:.65rem;font-weight:500;
  letter-spacing:.05em;text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:4px;
  border:1px solid var(--borderSubtle);
  color:var(--textMuted);
}

.about22__quote{
  margin-top:5rem;
  text-align:center;
  padding:3rem;
  background:var(--bgCard);
  border-radius:var(--borderRadius);
  border:1px solid var(--borderSubtle);
  opacity:0;transform:translateY(20px);
  transition:all .6s ease;
}
.about22__quote.visible{opacity:1;transform:translateY(0)}
.about22__quote-icon{
  font-size:2rem;
  color:var(--secondStyleColor);
  opacity:.3;
  margin-bottom:1rem;
}
.about22__quote-text{
  font-size:1.15rem;font-weight:400;
  font-style:italic;
  line-height:1.6;
  max-width:600px;margin:0 auto 1rem;
  color:var(--textColor1);
}
.about22__quote-author{
  font-size:.75rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--textMuted);
}

@media(max-width:768px){
  .about22__timeline{padding-left:2.5rem}
  .about22__dot{left:-2.5rem}
  .about22__card{padding:1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .about22__item,
  .about22__quote{animation:none!important;opacity:1;transform:none;transition:none}
}



  /* ===== SOMETHING v14 — Team strip with circular avatars + orbit ring ===== */

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

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

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

  .sm14__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

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

  .sm14__grid {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    flex-wrap: wrap;
  }

  .sm14__member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .sm14__avatar {
    position: relative;
    width: 100px;
    height: 100px;
  }

  .sm14__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    transition: transform 0.3s ease;
  }

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

  .sm14__ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    animation: sm14Spin 20s linear infinite;
  }

  .sm14__member:hover .sm14__ring {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

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

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

  .sm14__role {
    font-size: 12px;
    color: var(--secondStyleColor);
    font-weight: 500;
  }

  @media (max-width: 800px) {
    .sm14__avatar {
      width: 84px;
      height: 84px;
    }

    .sm14__member h3 {
      font-size: 14px;
    }
  }

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

    .sm14__head {
      margin-bottom: 36px;
    }

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

    .sm14__grid {
      gap: 20px;
    }

    .sm14__avatar {
      width: 72px;
      height: 72px;
    }

    .sm14__ring {
      inset: -5px;
    }
  }

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

    .sm14__avatar img {
      transition: none;
    }
  }



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



  /* ===== ROADMAP v7 — Progress bar + accordion phases ===== */

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

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

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

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

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

  /* Progress bar */
  .rm7__progress {
    position: relative;
    max-width: 600px;
    margin: 0 auto 44px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
  }

  .rm7__progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 62%;
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 50%, transparent)
    );
  }

  .rm7__progress-dots {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
  }

  .rm7__pdot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
  }

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

  .rm7__pdot--active {
    background: transparent;
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  /* Accordion list */
  .rm7__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

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

  .rm7__item[open] {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rm7__summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .rm7__summary::-webkit-details-marker {
    display: none;
  }

  .rm7__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    flex-shrink: 0;
  }

  .rm7__label {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
  }

  .rm7__status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    flex-shrink: 0;
  }

  .rm7__status--done {
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

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

  .rm7__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }

  .rm7__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    border-bottom: 2px solid
      color-mix(in srgb, var(--textColor1) 40%, transparent);
    transform: translate(-50%, -70%) rotate(45deg);
    transition: transform 0.25s ease;
  }

  .rm7__item[open] .rm7__arrow::before {
    transform: translate(-50%, -30%) rotate(-135deg);
  }

  /* Body content */
  .rm7__body {
    display: flex;
    gap: 16px;
    padding: 0 22px 22px;
    align-items: flex-start;
  }

  .rm7__ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rm7__ico i {
    font-size: 16px;
    color: var(--secondStyleColor);
  }

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

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

  .rm7__checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }

  .rm7__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
    width: 14px;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm7__progress {
      max-width: 100%;
    }
  }

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

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

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

    .rm7__head {
      margin-bottom: 30px;
    }

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

    .rm7__summary {
      padding: 16px 16px;
      gap: 10px;
    }

    .rm7__body {
      padding: 0 16px 18px;
      flex-direction: column;
    }

    .rm7__status {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm7__item,
    .rm7__arrow::before {
      transition: none;
    }
  }



  /* ===========================
     FAQ 10 — Geometric Pulse
     Rotating conic-gradient borders + SVG background
     =========================== */

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

  .faq10 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background:
      radial-gradient(
        1200px 700px at 20% 15%,
        color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 0%,
        transparent 60%
      ),
      radial-gradient(
        1000px 650px at 80% 85%,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 65%
      ),
      var(--bodyBG);
  }

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

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

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

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

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

  /* List */
  .faq10__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
  }

  /* Card */
  .faq10__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 80%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition:
      border-color 0.5s ease,
      box-shadow 0.5s ease;
  }

  /* Rotating conic-gradient border (active state) */
  .faq10__card::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: var(--borderRadius);
    padding: 1.5px;
    background: conic-gradient(
      from var(--faq10-angle),
      transparent 0%,
      var(--secondStyleColor) 8%,
      color-mix(in srgb, var(--secondStyleColor) 60%, transparent) 16%,
      transparent 28%
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .faq10__card.is-open::before {
    opacity: 1;
    animation: faq10-rotate 4s linear infinite;
  }

  .faq10__card.is-open {
    border-color: transparent;
    box-shadow:
      0 4px 24px color-mix(in srgb, var(--secondStyleColor) 10%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  @keyframes faq10-rotate {
    to {
      --faq10-angle: 360deg;
    }
  }

  /* Trigger button */
  .faq10__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }

  /* Number badge */
  .faq10__num {
    position: relative;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition: background 0.4s ease;
  }

  .faq10__numText {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    position: relative;
    z-index: 1;
  }

  .faq10__card.is-open .faq10__num {
    background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  }

  /* Pulsing ring around number */
  .faq10__pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--secondStyleColor);
    opacity: 0;
    pointer-events: none;
  }

  .faq10__card.is-open .faq10__pulse {
    animation: faq10-pulse 2.2s ease-in-out infinite;
  }

  @keyframes faq10-pulse {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    70% {
      transform: scale(1.6);
      opacity: 0;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }

  /* Question text */
  .faq10__question {
    flex: 1;
    margin: 0;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Plus / Cross icon */
  .faq10__icon {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    transition: transform 0.55s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .faq10__iconLine {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--textColor1);
    transform: translate(-50%, -50%);
    transition: background 0.4s ease;
  }

  .faq10__iconLine:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .faq10__card.is-open .faq10__icon {
    transform: rotate(45deg);
  }

  .faq10__card.is-open .faq10__iconLine {
    background: var(--secondStyleColor);
  }

  /* Panel */
  .faq10__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.65s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .faq10__card.is-open .faq10__panel {
    grid-template-rows: 1fr;
  }

  .faq10__answer {
    overflow: hidden;
  }

  .faq10__answerText {
    padding: 0 22px 22px 80px;
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.5s ease 0.12s,
      transform 0.5s cubic-bezier(0.33, 1, 0.53, 1) 0.12s;
  }

  .faq10__card.is-open .faq10__answerText {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover */
  .faq10__card:not(.is-open):hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq10__bg * {
      animation: none !important;
    }
    .faq10__card::before {
      animation: none !important;
    }
    .faq10__pulse {
      animation: none !important;
    }
    .faq10__panel,
    .faq10__answerText,
    .faq10__icon,
    .faq10__card {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq10__head {
      max-width: 520px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq10__trigger {
      gap: 14px;
      padding: 18px 18px;
    }
    .faq10__answerText {
      padding: 0 18px 20px 74px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq10__num {
      width: 36px;
      height: 36px;
    }
    .faq10__numText {
      font-size: 12px;
    }
    .faq10__trigger {
      gap: 12px;
      padding: 16px 14px;
    }
    .faq10__answerText {
      padding: 0 14px 18px 62px;
    }
    .faq10__icon {
      width: 24px;
      height: 24px;
    }
    .faq10__iconLine {
      width: 14px;
    }
  }



  /* ===== FOOTER ===== */

  .footer {
    background: var(--bgAlt);
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

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

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: var(--textMuted);
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2 140px;
    column-gap: 24px;
  }

  .footerNav li {
    break-inside: avoid;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: var(--textSecondary);
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: var(--textSecondary);
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textSecondary);
    font-size: 14px;
    transition: 0.15s ease;
  }

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

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: var(--textMuted);
  }

  .footerMeta {
    text-align: right;
  }

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

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}