:root{--font-sans:'DM Sans', sans-serif;}


/* ===== HEADER v5 — Glass floating bar + centered nav pill ===== */

  .hd5 {
    position: relative;
    z-index: 100;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bodyBG) 85%, transparent),
      color-mix(in srgb, var(--bodyBG) 70%, transparent)
    );

    border-bottom: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hd5__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
  }

  /* Logo */
  .hd5__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--textColor1);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Desktop nav — centered pill */
  .hd5__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hd5__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 5px 6px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .hd5__nav .hd5__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    border-radius: 100px;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  .hd5__nav .hd5__link:hover {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* CTA button */
  .hd5__cta {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .hd5__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Burger — hidden on desktop */
  .hd5__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 10px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

  .hd5__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--textColor1);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transform-origin: center;
  }

  /* Burger active state */
  .hd5__burger.active .hd5__burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .hd5__burger.active .hd5__burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* Mobile overlay — hidden by default */
  .hd5__mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

  .hd5__mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hd5__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hd5__mobile .hd5__link {
    font-size: 22px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .hd5__mobile .hd5__link:hover {
    color: var(--secondStyleColor);
  }

  .hd5__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .stopScroll {
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hd5__nav {
      display: none;
    }

    .hd5__cta {
      display: none;
    }

    .hd5__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd5__mobile,
    .hd5__burger-line,
    .hd5__burger,
    .hd5__cta,
    .hd5__nav .hd5__link {
      transition: none;
    }
  }


/* ===== HERO v25 — Constellation SVG + background image behind text ===== */

  .hr26 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vw, 160px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background image layer */
  .hr26__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hr26__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
  }

  /* Constellation SVG — above image, below content */
  .hr26__constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--secondStyleColor);
    pointer-events: none;
    z-index: 1;
  }

  .hr26 .container {
    position: relative;
    z-index: 2;
  }

  /* Content */
  .hr26__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .hr26__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hr26__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    animation: hr26Pulse 1.5s ease-in-out infinite;
  }

  @keyframes hr26Pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.4;
      transform: scale(0.7);
    }
  }

  .hr26__content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  }

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

  /* Actions */
  .hr26__actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
  }

  .hr26__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--borderRadius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
  }

  .hr26__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .hr26__btn--primary i {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .hr26__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .hr26__btn--primary:hover i {
    transform: translateX(3px);
  }

  .hr26__btn--ghost {
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    color: var(--textColor1);
    background: color-mix(in srgb, var(--bodyBG) 40%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hr26__btn--ghost:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hr26 {
      min-height: 480px;
    }

    .hr26__content h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 600px) {
    .hr26 {
      padding: 80px 0;
      min-height: 400px;
    }

    .hr26__content h1 {
      font-size: 28px;
    }

    .hr26__content > p {
      font-size: 15px;
    }

    .hr26__actions {
      flex-direction: column;
      width: 100%;
    }

    .hr26__btn {
      justify-content: center;
    }
  }

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

    .hr26__btn,
    .hr26__btn--primary i {
      transition: none;
    }

    .hr26__constellation * {
      animation: none !important;
    }
  }


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

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


/* ===== ABOUT v19 — SVG waves + circular portrait with orbit ring ===== */

  .ab19 {
    position: relative;
    color: var(--textColor1);
  }

  /* SVG waves */
  .ab19__wave {
    display: block;
    width: 100%;
    height: 50px;
    color: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .ab19__wave--top {
    margin-bottom: -1px;
  }

  .ab19__wave--bot {
    margin-top: -1px;
  }

  .ab19__inner {
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    padding: clamp(50px, 6vw, 80px) 0;
  }

  .ab19__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
  }

  /* Visual — portrait + orbit */
  .ab19__visual {
    position: relative;
    width: clamp(220px, 28vw, 320px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ab19__orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    animation: ab19Rotate 25s linear infinite;
  }

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

  .ab19__portrait {
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

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

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

  .ab19__glow {
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(40px);
    z-index: 0;
    animation: ab19Breathe 3.5s ease-in-out infinite alternate;
  }

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

  /* Text */
  .ab19__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ab19__tag {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab19__text h2 {
    margin: 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  .ab19__row {
    display: flex;
    gap: 24px;
    margin-top: 8px;
  }

  .ab19__mini {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ab19__mini i {
    font-size: 20px;
    color: var(--secondStyleColor);
  }

  .ab19__mini strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ab19__visual {
      width: clamp(200px, 26vw, 280px);
    }
  }

  @media (max-width: 800px) {
    .ab19__layout {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }

    .ab19__visual {
      width: 240px;
    }

    .ab19__text {
      align-items: center;
    }

    .ab19__row {
      justify-content: center;
    }

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

    .ab19__text > p {
      font-size: 14px;
    }
  }

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

    .ab19__wave {
      height: 32px;
    }

    .ab19__visual {
      width: 200px;
    }

    .ab19__row {
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    .ab19__mini i {
      font-size: 18px;
    }
  }

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

    .ab19__glow {
      animation: none;
    }

    .ab19__portrait img {
      transition: none;
    }
  }


/* ===== HOW v10 — Zigzag serpentine layout ===== */

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

  /* Head */
  .hw10__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
  }

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

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

  /* Track — holds SVG + rows */
  .hw10__track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Central SVG serpentine */
  .hw10__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .hw10__path {
    animation: hw10Dash 25s linear infinite;
  }

  @keyframes hw10Dash {
    to {
      stroke-dashoffset: -360;
    }
  }

  /* Row — alternating sides */
  .hw10__row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
  }

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

  .hw10__row--left {
    justify-content: flex-start;
    padding-right: 52%;
  }

  .hw10__row--right {
    justify-content: flex-end;
    padding-left: 52%;
  }

  /* Dot on the path */
  .hw10__dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      0 0 18px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Card — glassmorphism */
  .hw10__card {
    position: relative;
    flex: 1;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
      transform 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .hw10__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  }

  /* Watermark number */
  .hw10__watermark {
    position: absolute;
    top: -18px;
    right: -6px;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondStyleColor);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
  }

  /* Badge */
  .hw10__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

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

  .hw10__p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

  /* ---- Responsive ---- */

  /* Tablets — zigzag сужается */
  @media (max-width: 950px) {
    .hw10__track {
      max-width: 700px;
    }

    .hw10__row--left {
      padding-right: 46%;
    }

    .hw10__row--right {
      padding-left: 46%;
    }

    .hw10__row {
      margin-bottom: 40px;
      gap: 18px;
    }

    .hw10__card {
      padding: 24px 20px 20px;
    }

    .hw10__watermark {
      font-size: 90px;
      top: -12px;
    }

    .hw10__head {
      margin-bottom: 45px;
    }
  }

  /* Small tablets — zigzag ещё уже */
  @media (max-width: 800px) {
    .hw10__row--left {
      padding-right: 40%;
    }

    .hw10__row--right {
      padding-left: 40%;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 34px;
      height: 34px;
      font-size: 13px;
      margin-bottom: 10px;
    }
  }

  /* Mobile — одна колонка, SVG и точки скрыты */
  @media (max-width: 600px) {
    .hw10__sec {
      padding: 50px 0;
    }

    .hw10__svg {
      display: none;
    }

    .hw10__dot {
      display: none;
    }

    .hw10__row--left,
    .hw10__row--right {
      padding: 0;
      justify-content: stretch;
    }

    .hw10__row {
      margin-bottom: 20px;
      gap: 0;
    }

    .hw10__card {
      width: 100%;
      padding: 22px 18px 18px;
    }

    .hw10__head {
      margin-bottom: 32px;
    }

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

    .hw10__head p {
      font-size: 14px;
    }

    .hw10__watermark {
      font-size: 70px;
      top: -10px;
      right: -4px;
    }

    .hw10__h3 {
      font-size: 16px;
    }

    .hw10__p {
      font-size: 13px;
    }

    .hw10__badge {
      width: 32px;
      height: 32px;
      font-size: 12px;
      border-radius: 10px;
      margin-bottom: 10px;
    }
  }

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


/* ===== SOMETHING v12 — Comparison table Basic vs Pro ===== */

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

  .sm12__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 44px;
  }

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

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

  .sm12__table {
    max-width: 700px;
    margin: 0 auto;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
  }

  .sm12__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
  }

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

  .sm12__row:not(.sm12__row--head):hover {
    background: rgba(255, 255, 255, 0.02);
  }

  .sm12__row--head {
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .sm12__cell {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .sm12__cell--label {
    justify-content: flex-start;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .sm12__row--head .sm12__cell--label {
    font-weight: 600;
    color: var(--textColor1);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .sm12__cell--plan {
    font-weight: 700;
    font-size: 15px;
  }

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

  .sm12__yes {
    color: var(--secondStyleColor);
    font-size: 15px;
  }

  .sm12__no {
    color: color-mix(in srgb, var(--textColor1) 25%, transparent);
    font-size: 14px;
  }

  .sm12__txt {
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

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

  @media (max-width: 800px) {
    .sm12__cell {
      padding: 12px 14px;
      font-size: 13px;
    }
  }

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

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

    .sm12__row {
      grid-template-columns: 1.2fr 0.9fr 0.9fr;
    }

    .sm12__cell {
      padding: 11px 10px;
      font-size: 12px;
    }

    .sm12__cell--plan {
      font-size: 13px;
    }
  }

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


/* ===== FEATURES v19 — Spotlight hero with SVG light rays + side cards ===== */

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

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

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

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

  .ft19__layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
    align-items: start;
  }

  /* Hero spotlight card */
  .ft19__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* SVG rays */
  .ft19__rays {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 70%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
  }

  .ft19__ray {
    stroke: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    stroke-width: 1;
    animation: ft19Pulse 3s ease-in-out infinite alternate;
  }

  .ft19__ray:nth-child(2n) {
    animation-delay: 0.5s;
    stroke: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .ft19__ray:nth-child(3n) {
    animation-delay: 1s;
  }

  @keyframes ft19Pulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
  }

  .ft19__hero-img {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

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

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

  .ft19__hero-body {
    position: relative;
    z-index: 1;
    padding: 24px 26px 28px;
  }

  .ft19__kicker {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .ft19__hero-body h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
  }

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

  /* Side cards */
  .ft19__side {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft19__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .ft19__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;
    transition: transform 0.3s ease;
  }

  .ft19__card:hover .ft19__ico {
    transform: scale(1.1);
  }

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

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

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

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

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

    .ft19__side {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .ft19__hero-body h3 {
      font-size: 20px;
    }
  }

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

    .ft19__head {
      margin-bottom: 36px;
    }

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

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

    .ft19__card {
      padding: 18px 16px;
    }

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

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

    .ft19__hero-img img,
    .ft19__card,
    .ft19__ico {
      transition: none;
    }
  }


/* ===== ROADMAP v10 — Full-width strips + SVG dashed connector + glow ===== */

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

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

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

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

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

  /* Timeline */
  .rm10__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* SVG connector */
  .rm10__connector {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 0;
  }

  .rm10__connector-svg {
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .rm10__connector-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 50px;
    margin-left: -3px;
    background: var(--secondStyleColor);
    border-radius: 6px;
    filter: blur(5px);
    opacity: 0.5;
    animation: rm10Travel 4.5s ease-in-out infinite;
  }

  @keyframes rm10Travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: calc(100% - 50px); opacity: 0; }
  }

  /* Strip */
  .rm10__strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

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

  /* Marker column */
  .rm10__strip-marker {
    display: flex;
    justify-content: center;
    padding-top: 28px;
  }

  .rm10__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm10__dot--pulse {
    animation: rm10DotPulse 2s ease-in-out infinite;
  }

  @keyframes rm10DotPulse {
    0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--secondStyleColor) 0%, transparent); }
  }

  .rm10__dot--empty {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

  /* Content area */
  .rm10__strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 20px 26px 16px;
    transition: background 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-content {
    background: rgba(255, 255, 255, 0.015);
  }

  .rm10__strip--active .rm10__strip-content {
    background: color-mix(in srgb, var(--secondStyleColor) 3%, transparent);
  }

  .rm10__strip-left {
    flex: 1;
  }

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

  .rm10__strip-left h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  .rm10__strip-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .rm10__strip-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-ico {
    transform: scale(1.1);
  }

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

  .rm10__status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    white-space: nowrap;
  }

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .rm10__strip-left h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 800px) {
    .rm10__strip-content {
      flex-direction: column;
      align-items: flex-start;
    }

    .rm10__strip-right {
      flex-direction: row;
      gap: 12px;
    }

    .rm10__strip-left p {
      font-size: 13px;
    }

    .rm10__strip-ico {
      width: 40px;
      height: 40px;
    }

    .rm10__strip-ico i {
      font-size: 16px;
    }
  }

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

    .rm10__head {
      margin-bottom: 36px;
    }

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

    .rm10__strip {
      grid-template-columns: 40px 1fr;
    }

    .rm10__connector {
      left: 18px;
    }

    .rm10__strip-content {
      padding: 20px 12px 20px 10px;
    }

    .rm10__strip-left h3 {
      font-size: 16px;
    }
  }

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

    .rm10__dot--pulse {
      animation: none;
    }

    .rm10__strip-content,
    .rm10__strip-ico {
      transition: none;
    }
  }


/* ===== REVIEWS v15 — Featured spotlight + stacked side cards ===== */

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

  .rv15__dots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    pointer-events: none;
    z-index: 0;
  }

  .rv15 .container {
    position: relative;
    z-index: 1;
  }

  /* Head */
  .rv15__head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 50px;
  }

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

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

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

  /* Layout */
  .rv15__layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
  }

  /* Featured */
  .rv15__featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease;
  }

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

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

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

  .rv15__quote {
    margin: 0;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 500;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 88%, transparent);
  }

  .rv15__stars {
    display: flex;
    gap: 3px;
  }

  .rv15__stars i {
    font-size: 15px;
    color: var(--secondStyleColor);
  }

  .rv15__stars--sm i {
    font-size: 12px;
  }

  .rv15__author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .rv15__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    flex-shrink: 0;
  }

  .rv15__avatar--lg {
    width: 54px;
    height: 54px;
  }

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

  .rv15__author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
  }

  .rv15__author span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

  /* Side cards */
  .rv15__stack {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 16px);
  }

  .rv15__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(18px, 2.5vw, 24px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    transition:
      transform 0.25s ease,
      border-color 0.25s ease;
  }

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

  .rv15__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

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

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

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

    .rv15__head {
      margin-bottom: 36px;
    }

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

    .rv15__featured {
      padding: 24px;
    }

    .rv15__quote {
      font-size: 16px;
    }

    .rv15__card-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rv15__featured,
    .rv15__card {
      transition: none;
    }
  }


/* ===== PARTNERS v9 — Minimal full-width strip ===== */

  .pt9 {
    color: var(--textColor1);
  }

  .pt9__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    padding: clamp(40px, 5vw, 70px) 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  }

  .pt9__inner {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
  }

  .pt9__text {
    flex: 1;
  }

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

  .pt9__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 480px;
  }

  /* Vertical divider */
  .pt9__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
      180deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
    flex-shrink: 0;
  }

  /* Logo */
  .pt9__logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 36px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

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

  .pt9__logo-box img {
    max-width: 200px;
    max-height: 70px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt9__inner {
      flex-direction: column;
      text-align: center;
    }

    .pt9__divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        var(--secondStyleColor),
        transparent
      );
    }

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

    .pt9__logo-box {
      padding: 20px 30px;
    }

    .pt9__logo-box img {
      max-width: 170px;
    }
  }

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

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

    .pt9__text p {
      font-size: 14px;
    }

    .pt9__logo-box {
      padding: 18px 24px;
    }

    .pt9__logo-box img {
      max-width: 140px;
      max-height: 50px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt9__logo-box {
      transition: none;
    }
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

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

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

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

    .gl11__item img {
      transition: none;
    }
  }


.faq {
    margin-bottom: 100px;
    color: var(--textColor1);
  }

  /* Внутренняя секция */
  .faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #262626;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  }

  .faq-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--textColor1);
  }

  /* Элементы FAQ */
  .faq-item {
    border-bottom: 2px solid var(--secondStyleColor);
    padding: 12px 0;
  }

  .faq h3 {
    margin: 10px 0;
  }

  /* Кнопка-вопрос */
  .faq-question {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    background: none;
    border: none;
    color: var(--textColor1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
  }

  .faq-question::after {
    content: "+";
    font-size: 32px;
    transition: transform 0.2s ease;
    color: var(--secondStyleColor);
  }

  .faq-question.active::after {
    content: "-";
    transform: rotate(180deg);
  }

  /* Ответ */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    color: var(--textColor1);
    padding-top: 0;
  }

  .faq-answer p {
    margin-top: 0;
  }

  /* Открытый ответ (по классу из твоего JS) */
  .faq-answer.open {
    max-height: 200px; /* можно увеличить, если текст длиннее */
    /* padding-top: 10px; */
  }

  /* Если используешь .reviewsWrapper рядом — оставил хук */
  .reviewsWrapper h2 {
    margin-bottom: 20px;
  }

  /* Мобилка */
  @media screen and (max-width: 750px) {
    .faq {
      margin-bottom: 60px;
    }

    .faq-section {
      padding: 30px 16px;
    }
  }


.ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

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

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ft5__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .ft5__nav a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

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

  @media (max-width: 800px) {
    .ft5__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      transition: none;
    }
  }