
:root {
  --bg: #1a1a2e;
  --bg-card: #16213e;
  --text: #eaeaea;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #e94560;
  --accent-rgb: 233,69,96;
  --accent2: #cde945;
  --accent2-rgb: 205,233,69;
  --accent3: #ec5ceb;
  --accent3-rgb: 236,92,235;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --bodyBG: #1a1a2e;
  --textColor1: #eaeaea;
  --textColor2: #ffffff;
  --textSecondary: #b6b6bb;
  --textMuted: #82828c;
  --secondStyleColor: #e94560;
  --bgCard: #16213e;
  --bgAlt: #2b2b3d;
  --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;
}
.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; }


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



  .hero-11 {
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  .hero-11 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .hero-lerft {
    display: flex;
    flex-direction: column;
    gap: 20px;
    img {
      height: 500px;
      width: 100%;
      object-fit: cover;
      border-radius: var(--borderRadius);
      object-position: 50% 20%;
    }
  }

  .hero-gight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: auto;
    gap: 20px;
    img {
      height: 500px;
      width: 500px;
      object-position: 50% 20%;
      border-radius: var(--borderRadius);
      object-fit: cover;
    }
    a {
      padding: 12px 20px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-weight: 900;
      font-size: 24px;
      transition: 0.2s all linear;
    }
    a:hover {
      transform: translateY(-5px);
    }
  }

  @media (max-width: 800px) {
    .hero-lerft img {
      display: none;
    }
    .hero-lerft {
      justify-content: center;
      h1,
      p {
        text-align: center;
      }
    }
    .hero-11 .container {
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .hero-gight img {
      width: 100%;
    }
    .hero-gight a {
      margin: 0 auto;
    }
  }



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



  /* ===========================
     Reviews 17 — Constellation Network
     Animated SVG mesh background + rotating gradient card borders
     =========================== */

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

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

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

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

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

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

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

  /* Grid */
  .rv17__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Card — wrapper for rotating border */
  .rv17__card {
    position: relative;
    border-radius: var(--borderRadius);
  }

  /* Rotating conic-gradient border */
  .rv17__border {
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    padding: 1.5px;
    background: conic-gradient(
      from var(--rv17-angle),
      transparent 0%,
      var(--secondStyleColor) 6%,
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent) 14%,
      transparent 26%
    );
    -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;
  }

  .rv17__card:hover .rv17__border {
    opacity: 1;
    animation: rv17-rotate 4s linear infinite;
  }

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

  /* Card inner content */
  .rv17__inner {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 78%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    transition:
      border-color 0.4s ease,
      box-shadow 0.4s ease,
      transform 0.4s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .rv17__card:hover .rv17__inner {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow:
      0 10px 36px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

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

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

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

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

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

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

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv17__bg * {
      animation: none !important;
    }
    .rv17__border {
      animation: none !important;
    }
    .rv17__inner {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv17__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .rv17__inner {
      padding: 24px 20px 20px;
    }
  }

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

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv17__grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv17__inner {
      padding: 22px 18px 20px;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .planTitle {
    font-weight: 700;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .planSpacer {
      display: none;
    }
  }



  /* ===== FEATURES v11 — Central image with floating pills ===== */

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

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

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

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

  .ft11__showcase {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Central image */
  .ft11__center {
    position: relative;
    z-index: 1;
    width: min(380px, 50%);
  }

  .ft11__frame {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 3 / 4;
  }

  .ft11__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
  }

  .ft11__glow {
    position: absolute;
    inset: -30px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(60px);
    z-index: -1;
    animation: ft11Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes ft11Breathe {
    0% { opacity: 0.04; transform: scale(0.95); }
    100% { opacity: 0.1; transform: scale(1.05); }
  }

  /* Floating pills */
  .ft11__pills {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .ft11__pill {
    position: absolute;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    max-width: 260px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .ft11__pill--tl { top: 5%; left: 0; }
  .ft11__pill--tr { top: 10%; right: 0; }
  .ft11__pill--bl { bottom: 10%; left: 0; }
  .ft11__pill--br { bottom: 5%; right: 0; }

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

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

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft11__pill {
      max-width: 220px;
      padding: 14px 16px;
    }

    .ft11__center {
      width: min(320px, 45%);
    }
  }

  @media (max-width: 800px) {
    .ft11__showcase {
      flex-direction: column;
      min-height: auto;
      gap: 24px;
    }

    .ft11__pills {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .ft11__pill {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      max-width: 100%;
    }

    .ft11__center {
      width: min(340px, 80%);
    }
  }

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

    .ft11__head {
      margin-bottom: 36px;
    }

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

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

    .ft11__pill {
      padding: 14px 16px;
      gap: 12px;
    }

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

    .ft11__pill-icon {
      width: 36px;
      height: 36px;
    }

    .ft11__pill-icon i {
      font-size: 14px;
    }

    .ft11__center {
      width: min(280px, 85%);
    }
  }

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



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

  /* ── Background Glows ── */
  .gl12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.12;
    will-change: transform;
  }

  .gl12__glow--a {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    top: -120px;
    left: -100px;
    animation: gl12-float-a 16s ease-in-out infinite;
  }

  .gl12__glow--b {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    bottom: -80px;
    right: -60px;
    animation: gl12-float-b 20s ease-in-out infinite;
  }

  @keyframes gl12-float-a {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(60px, 40px);
    }
  }

  @keyframes gl12-float-b {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(-50px, -30px);
    }
  }

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

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

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

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

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

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

  /* ── Grid ── */
  .gl12__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }

  .gl12__item--tall {
    grid-row: span 2;
  }

  .gl12__item--wide {
    grid-column: span 2;
  }

  /* ── Item ── */
  .gl12__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
  }

  /* ── Animated Border ── */
  .gl12__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 3;
    pointer-events: none;
    padding: 1.5px;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background: conic-gradient(
      from var(--gl12-border-angle, 0deg),
      transparent 0%,
      transparent 25%,
      var(--secondStyleColor) 50%,
      transparent 75%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gl12-spin 4s linear infinite;
  }

  .gl12__item:hover .gl12__border {
    opacity: 1;
  }

  @keyframes gl12-spin {
    to {
      --gl12-border-angle: 360deg;
    }
  }

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

  /* ── Image ── */
  .gl12__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

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

  .gl12__item:hover .gl12__img-wrap img {
    transform: scale(1.08);
  }

  /* ── Overlay ── */
  .gl12__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
      to top,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 40%, transparent) 40%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl12__item:hover .gl12__overlay {
    opacity: 1;
  }

  .gl12__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 100px;
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: transform 0.4s 0.05s ease;
  }

  .gl12__item:hover .gl12__tag {
    transform: translateY(0);
  }

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

  .gl12__item:hover .gl12__overlay h3 {
    transform: translateY(0);
  }

  .gl12__overlay p {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.4s 0.15s ease;
  }

  .gl12__item:hover .gl12__overlay p {
    transform: translateY(0);
  }

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

  .gl12__item:hover::after {
    border-color: transparent;
  }

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

    .gl12__grid {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 200px;
    }

    .gl12__item--wide {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .gl12__grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 200px;
      gap: 12px;
    }

    .gl12__item--tall {
      grid-row: span 2;
    }

    .gl12__item--wide {
      grid-column: span 2;
    }
  }

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

    .gl12__grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }

    .gl12__item--tall,
    .gl12__item--wide {
      grid-row: span 1;
      grid-column: span 1;
    }

    .gl12__overlay {
      opacity: 1;
    }

    .gl12__tag,
    .gl12__overlay h3,
    .gl12__overlay p {
      transform: translateY(0);
    }

    .gl12__head {
      margin-bottom: 40px;
    }

    .gl12__glow {
      display: none;
    }
  }

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

    .gl12__glow {
      animation: none;
    }

    .gl12__img-wrap img {
      transition: none;
    }

    .gl12__overlay,
    .gl12__tag,
    .gl12__overlay h3,
    .gl12__overlay p {
      transition: none;
    }
  }



  /* ===== HOW v15 — Glow cards with progress bars ===== */

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

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

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

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

  .hw15__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  /* Card */
  .hw15__card {
    position: relative;
    padding: 28px 22px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  /* Corner glow on hover */
  .hw15__glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0;
    filter: blur(50px);
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .hw15__card:hover .hw15__glow {
    opacity: 0.15;
  }

  .hw15__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .hw15__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondStyleColor);
    opacity: 0.7;
    line-height: 1;
  }

  .hw15__arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .hw15__card:hover .hw15__arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .hw15__card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Progress bar */
  .hw15__bar {
    height: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .hw15__fill {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 50%, transparent)
    );
  }

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

  @media (max-width: 800px) {
    .hw15__card {
      padding: 24px 18px 18px;
    }

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

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

    .hw15__num {
      font-size: 28px;
    }
  }

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

    .hw15__head {
      margin-bottom: 32px;
    }

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

    .hw15__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .hw15__card {
      padding: 22px 16px 16px;
    }

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

    .hw15__card p {
      font-size: 13px;
      margin-bottom: 16px;
    }

    .hw15__num {
      font-size: 24px;
    }

    .hw15__top {
      margin-bottom: 14px;
    }

    .hw15__arrow {
      width: 30px;
      height: 30px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw15__card,
    .hw15__arrow,
    .hw15__glow {
      transition: none;
    }
  }



  /* ===== PARTNERS v11 — Showcase band with marquee ===== */

  .prt11 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Radial glow pulse */
  .prt11__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
      circle at 50% 50%,
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent),
      transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    animation: prt11Pulse 6s ease-in-out infinite alternate;
  }

  @keyframes prt11Pulse {
    0% {
      opacity: 0.4;
      transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
      opacity: 0.8;
      transform: translate(-50%, -50%) scale(1.1);
    }
  }

  /* Marquee band */
  .prt11__marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 18px 0;
    margin-bottom: 50px;
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.02);
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  }

  .prt11__marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: prt11Scroll 20s linear infinite;
  }

  .prt11__marquee-img {
    height: 36px;
    width: auto;
    opacity: 0.3;
    filter: grayscale(1);
    flex-shrink: 0;
  }

  @keyframes prt11Scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Body */
  .prt11__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  /* Circular logo orb */
  .prt11__orb {
    position: relative;
    width: min(200px, 50vw);
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
  }

  .prt11__orb-border {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      transparent,
      var(--secondStyleColor)
    );
    animation: prt11Spin 5s linear infinite;
    opacity: 0.6;
  }

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

  .prt11__orb-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bodyBG);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }

  .prt11__orb-inner:hover {
    transform: scale(1.05);
  }

  .prt11__orb-inner img {
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  }

  /* Name */
  .prt11__name {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.02em;
  }

  /* Description */
  .prt11__desc {
    margin: 0;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  /* Badges */
  .prt11__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4px 0;
  }

  .prt11__badge {
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  /* CTA */
  .prt11__cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: transparent;
    color: var(--secondStyleColor);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
      box-shadow 0.3s ease;
  }

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

  /* Staggered reveal classes */
  .prt11__reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .prt11__reveal.prt11--visible {
    opacity: 1;
    transform: translateY(0);
  }

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

    .prt11__marquee-img {
      height: 28px;
      gap: 40px;
    }

    .prt11__orb {
      width: min(170px, 45vw);
    }
  }

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

    .prt11__marquee {
      margin-bottom: 28px;
      padding: 14px 0;
    }

    .prt11__marquee-img {
      height: 24px;
    }

    .prt11__name {
      font-size: 26px;
    }

    .prt11__desc {
      font-size: 14px;
    }

    .prt11__orb {
      width: min(150px, 42vw);
    }

    .prt11__badges {
      gap: 8px;
    }

    .prt11__badge {
      padding: 5px 14px;
      font-size: 11px;
    }

    .prt11__cta {
      padding: 12px 26px;
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .prt11__glow {
      animation: none;
      opacity: 0.5;
    }
    .prt11__marquee-track {
      animation: none;
    }
    .prt11__orb-border {
      animation: none;
      opacity: 0.3;
    }
    .prt11__orb-inner,
    .prt11__cta {
      transition: none;
    }
    .prt11__reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }



  /* ── Section ── */
  .faq16 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 20px;
    overflow: hidden;
    color: var(--textColor1);
  }

  /* ── Background Image ── */
  .faq16__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ── Gradient Overlay ── */
  .faq16__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse 50% 50% at 20% 30%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent),
        transparent
      ),
      radial-gradient(
        ellipse 40% 40% at 80% 70%,
        color-mix(in srgb, var(--accent2) 8%, transparent),
        transparent
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 92%, transparent) 0%,
        color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
        color-mix(in srgb, var(--bodyBG) 95%, transparent) 100%
      );
  }

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

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

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

  .faq16__kicker i {
    font-size: 12px;
  }

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

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

  /* ── Card Grid ── */
  .faq16__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
  }

  /* ── Item (Card) ── */
  .faq16__item {
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .faq16__item:hover {
    border-color: color-mix(in srgb, var(--textColor1) 14%, transparent);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--bodyBG) 50%, transparent);
  }

  .faq16__item--open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    box-shadow: 0 8px 32px
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* ── Accent top border glow ── */
  .faq16__item:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .faq16__item:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--accent2),
      transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .faq16__item--open::before {
    opacity: 1;
  }

  /* ── Trigger Button ── */
  .faq16__trigger {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    position: relative;
    transition: background 0.2s ease;
  }

  .faq16__trigger:hover {
    background: color-mix(in srgb, var(--textColor1) 3%, transparent);
  }

  .faq16__trigger-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* ── Number ── */
  .faq16__num {
    font-size: 12px;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition: color 0.35s ease;
  }

  .faq16__item--open .faq16__num {
    color: var(--secondStyleColor);
  }

  /* ── Icon ── */
  .faq16__icon {
    font-size: 18px;
  }

  .faq16__icon--accent {
    color: var(--secondStyleColor);
  }

  .faq16__icon--accent2 {
    color: var(--accent2);
  }

  /* ── Question Text ── */
  .faq16__question {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 600;
    margin: 0;
    line-height: 1.45;
    flex: 1;
  }

  /* ── Chevron ── */
  .faq16__chevron {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition:
      transform 0.35s ease,
      color 0.3s ease;
    align-self: flex-end;
  }

  .faq16__item--open .faq16__chevron {
    transform: rotate(180deg);
    color: var(--secondStyleColor);
  }

  /* ── Body (collapsible) ── */
  .faq16__body {
    overflow: hidden;
    height: 0;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* ── Answer ── */
  .faq16__answer {
    padding: 0 22px 22px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.35s 0.1s ease,
      transform 0.35s 0.1s ease;
  }

  .faq16__item--open .faq16__answer {
    opacity: 1;
    transform: translateY(0);
  }

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

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .faq16 {
      padding: clamp(48px, 6vw, 80px) 20px;
    }

    .faq16__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .faq16 {
      padding: 48px 16px;
    }

    .faq16__grid {
      grid-template-columns: 1fr;
      max-width: 440px;
    }

    .faq16__trigger {
      padding: 20px 18px;
    }

    .faq16__answer {
      padding: 0 18px 18px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq16__body,
    .faq16__answer,
    .faq16__chevron,
    .faq16__item,
    .faq16__num {
      transition: none;
    }

    .faq16__item:nth-child(odd)::before,
    .faq16__item:nth-child(even)::before {
      transition: none;
    }
  }



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

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