
:root {
  --bg: #1c1410;
  --bg-card: #2a1f17;
  --text: #f0e6d3;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #ff6b35;
  --accent-rgb: 255,107,53;
  --accent2: #86ff35;
  --accent2-rgb: 134,255,53;
  --accent3: #ff4fb2;
  --accent3-rgb: 255,79,178;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --bodyBG: #1c1410;
  --textColor1: #f0e6d3;
  --textColor2: #111111;
  --textSecondary: #bbb2a2;
  --textMuted: #867d72;
  --secondStyleColor: #ff6b35;
  --bgCard: #2a1f17;
  --bgAlt: #2d2520;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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


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

  .headerButton {
    transition: 0.2s all linear;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    background-color: var(--textColor2);
    color: var(--secondStyleColor);
    cursor: pointer;
    border-radius: var(--borderRadius);
  }
  .headerButton:hover {
    transform: translateY(-2px);
  }
  .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 (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .headerButton {
      display: none;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--textColor2);
      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 shell ===== */
  .z9q-heroBox {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 24px);
    background:
      radial-gradient(
        900px 450px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
        transparent 55%
      ),
      radial-gradient(
        700px 380px at 75% 30%,
        color-mix(in srgb, var(--secondStyleColor) 30%, transparent),
        transparent 55%
      ),
      radial-gradient(
        500px 380px at 55% 95%,
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        color-mix(in srgb, var(--textColor2) 10%, transparent) 15%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
      );

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

  .toc {
    background-color: transparent;
  }

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

  .toc a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

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

  .toc a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent 70%
    );
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .toc a:hover::after,
  .toc a:focus::after {
    opacity: 1;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    transform: translateY(-2px);
  }

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

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

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

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

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

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

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

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

    .toc a:hover {
      transform: none;
    }
  }



  /*  */
  .qwfwae {
    padding: 20px 0;
  }
  .sljahvasbkawrgfisacg {
    margin-bottom: 40px;
  }

  .vTrxQn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .vTrxQn + .vTrxQn {
    margin-top: 130px;
  }

  .uLmTtR {
    margin: 0 0 10px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--textColor1);
  }

  .bNmYyU {
    color: var(--textColor1);
    margin-bottom: 16px;
    font-weight: 600;
  }

  .aQpZyX p {
    margin: 0 0 12px;
    line-height: 1.7;
    color: var(--textColor1);
  }

  .pOeRrS {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 2px solid var(--secondStyleColor);
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.2s all linear;
    &&:hover {
      padding: 12px 40px;
    }
  }

  .yYtVvW {
    display: flex;
    justify-content: center;
  }
  .xXrEeD {
    display: flex;
  }

  .mMpQqA {
    position: relative;
    width: 360px;
    height: 250px;
  }

  .mMpQqA::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 350px;
    border: 18px solid var(--secondStyleColor);
    right: -56px;
    bottom: -135px;
    z-index: 0;
  }

  .nNwEeR {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 350px;
    object-fit: cover;
    object-position: 50% 20%;
    border: 5px solid var(--secondStyleColor);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 1;
  }

  /* зеркалим рамку для второго блока */
  .mMpQqA--flip::before {
    left: 38px;
    right: auto;
    bottom: -42px;
  }

  .mMpQqA--flip .nNwEeR {
    left: 0;
    right: auto;
  }

  /* адаптив */
  @media (max-width: 900px) {
    .vTrxQn {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .yYtVvW,
    .xXrEeD {
      justify-content: flex-start;
    }
    .mMpQqA::before {
      display: none;
    }
    .mMpQqA,
    .nNwEeR {
      width: 100%;
    }
    .sljahvasbkawrgfisacg {
      margin-bottom: 20px;
    }
    .nNwEeR {
      height: 270px;
    }
    .vTrxQn + .vTrxQn {
      margin-top: 45px;
    }
  }



  /* ===== PARTNERS v7 — Hexagonal showcase ===== */

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

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

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

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

  .pt7__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  /* Hexagonal container */
  .pt7__hex {
    position: relative;
    width: min(300px, 70vw);
    aspect-ratio: 1 / 1.15;
  }

  .pt7__hex-glow {
    position: absolute;
    inset: -20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--secondStyleColor);
    opacity: 0.08;
    filter: blur(20px);
    animation: pt7Glow 3s ease-in-out infinite alternate;
  }

  @keyframes pt7Glow {
    0% { opacity: 0.06; }
    100% { opacity: 0.14; }
  }

  .pt7__hex-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    border: none;
    transition: transform 0.3s ease;
  }

  .pt7__hex-inner::before {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--bodyBG);
    z-index: 0;
  }

  .pt7__hex-inner:hover {
    transform: scale(1.04);
  }

  .pt7__hex-inner img {
    position: relative;
    z-index: 1;
    max-width: 55%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  }

  /* Connecting lines */
  .pt7__lines {
    display: flex;
    gap: 40px;
  }

  .pt7__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(
      180deg,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
  }

  .pt7__line--1 { animation: pt7Blink 2s ease infinite 0s; }
  .pt7__line--2 { animation: pt7Blink 2s ease infinite 0.4s; }
  .pt7__line--3 { animation: pt7Blink 2s ease infinite 0.8s; }

  @keyframes pt7Blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
  }

  /* Badges */
  .pt7__badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pt7__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
    transition: border-color 0.3s ease;
  }

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

  .pt7__badge i {
    color: var(--secondStyleColor);
    font-size: 14px;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt7__hex {
      width: min(240px, 65vw);
    }

    .pt7__badge {
      padding: 8px 14px;
      font-size: 12px;
    }
  }

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

    .pt7__head {
      margin-bottom: 36px;
    }

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

    .pt7__hex {
      width: min(200px, 60vw);
    }

    .pt7__badges {
      gap: 10px;
    }

    .pt7__badge {
      padding: 7px 12px;
      font-size: 11px;
    }

    .pt7__lines {
      gap: 28px;
    }

    .pt7__line {
      height: 28px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt7__hex-glow,
    .pt7__line {
      animation: none;
    }
    .pt7__hex-inner,
    .pt7__badge {
      transition: none;
    }
  }



  /* ===== FEATURES v14 — Glass grid over background image ===== */

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

  .ft14__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.12;
    filter: blur(3px);
  }

  .ft14__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      var(--bodyBG) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      var(--bodyBG) 100%
    );
    pointer-events: none;
  }

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

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

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

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

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

  /* Card */
  .ft14__card {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

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

  /* Top accent line */
  .ft14__card-line {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .ft14__card:hover .ft14__card-line {
    opacity: 1;
    left: 10%;
    right: 10%;
  }

  .ft14__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondStyleColor);
    opacity: 0.5;
    margin-bottom: 14px;
  }

  .ft14__fa {
    font-size: 24px;
    color: var(--secondStyleColor);
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(
      0 4px 10px color-mix(in srgb, var(--secondStyleColor) 30%, transparent)
    );
    transition: transform 0.3s ease;
  }

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

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

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

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

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

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

    .ft14__fa {
      font-size: 20px;
    }
  }

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

    .ft14__head {
      margin-bottom: 36px;
    }

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

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

    .ft14__card {
      padding: 22px 16px;
    }

    .ft14__fa {
      font-size: 18px;
      margin-bottom: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft14__card,
    .ft14__fa,
    .ft14__card-line {
      transition: none;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

  .gl5__body {
    padding: 18px 20px;
  }

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

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

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

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

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



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

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

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

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

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

  /* ---- Stepper ---- */
  .rm15__stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 20px;
  }

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

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

  .rm15__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .rm15__circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition: all 0.35s ease;
  }

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

  .rm15__step--done .rm15__circle i {
    font-size: 14px;
  }

  .rm15__step--active .rm15__circle {
    border-color: var(--accent2, var(--secondStyleColor));
    color: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 15%, transparent);
    animation: rm15Pulse 2s ease-in-out infinite;
  }

  @keyframes rm15Pulse {
    0%, 100% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 15%, transparent); }
    50% { box-shadow: 0 0 0 12px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 0%, transparent); }
  }

  .rm15__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

  .rm15__step--active .rm15__label {
    color: var(--accent2, var(--secondStyleColor));
  }

  .rm15__step--done .rm15__label {
    color: var(--secondStyleColor);
  }

  /* ---- Cards ---- */
  .rm15__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }

  .rm15__card {
    padding: 28px 22px;
    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.3s ease, border-color 0.3s ease;
  }

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

  .rm15__card--highlight {
    border-color: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 30%, transparent);
    background: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 4%, transparent);
  }

  .rm15__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

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

  .rm15__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
  }

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

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

  @media (max-width: 600px) {
    .rm15 { padding: 50px 0; }
    .rm15__head { margin-bottom: 36px; }

    .rm15__stepper { margin-bottom: 32px; padding: 0; }
    .rm15__circle { width: 36px; height: 36px; font-size: 13px; }
    .rm15__step--done .rm15__circle i { font-size: 12px; }
    .rm15__line { top: 18px; left: 36px; right: 36px; }
    .rm15__label { font-size: 10px; }

    .rm15__cards { grid-template-columns: 1fr; }
    .rm15__card { padding: 22px 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm15__step--active .rm15__circle { animation: none; }
    .rm15__card { transition: none; }
  }



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

  .rv7__head {
    margin-bottom: 40px;
  }

  .rv7__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 14px;
  }

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

  .rv7__head h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  /* Horizontal scroll */
  .rv7__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    cursor: grab;
  }

  .rv7__scroll::-webkit-scrollbar { display: none; }
  .rv7__scroll:active { cursor: grabbing; }

  .rv7__card {
    flex: 0 0 clamp(280px, 34vw, 380px);
    scroll-snap-align: start;
    padding: 28px 24px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

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

  .rv7__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
  }

  .rv7__avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent));
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

  .rv7__stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
    font-size: 12px;
  }

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

  @media (max-width: 600px) {
    .rv7 { padding: 48px 0; }
    .rv7__head { margin-bottom: 28px; }
    .rv7__card { flex: 0 0 85vw; padding: 22px 18px 18px; }
    .rv7__stars { margin-left: 0; margin-top: 4px; }
  }



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

  .qx-shell {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .qx-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

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

  .qx-sub {
    max-width: 420px;
    text-wrap: balance;
    opacity: 0.8;
  }

  .qx-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    position: relative;
  }

  .qx-card {
    position: relative;
    z-index: 1;
    border-radius: var(--borderRadius);
    padding: 26px 26px 28px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: rgba(0, 0, 0, 0.12);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

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

  .qx-card--core {
    background: var(--secondStyleColor);
    color: var(--textColor2);
    border-color: transparent;
    transform: translateY(-10px);
  }

  .qx-card--core .qx-btn {
    border-color: var(--textColor2);
    color: var(--textColor2);
  }

  .qx-flag {
    position: absolute;
    top: 14px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--textColor2);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .qx-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .qx-price {
    font-size: 30px;
    font-weight: 700;
  }

  .qx-note {
    font-size: 13px;
    opacity: 0.85;
  }

  .qx-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .qx-list li {
    padding-left: 18px;
    position: relative;
  }

  .qx-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 2px;
    background: currentColor;
    opacity: 0.7;
  }

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

  .qx-btn--dark {
    background: rgba(0, 0, 0, 0.25);
  }

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

  .qx-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .qx-link {
    padding: 8px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--textColor1);
    transition: transform 0.2s ease;
  }

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

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

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

    .qx-card--core {
      transform: none;
    }
  }



  /* ===== HOW v23 — Flip cards with progress connector ===== */

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

  /* Wave background */
  .hw23__wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hw23__wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    animation: hw23Shift 20s linear infinite;
    opacity: 0.04;
  }

  .hw23__wave-line1 {
    color: var(--secondStyleColor);
  }

  .hw23__wave-line2 {
    color: var(--accent2);
  }

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

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

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

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

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

  /* Cards grid */
  .hw23__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--maxWidthContainer);
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
  }

  /* Flip card */
  .hw23__card {
    perspective: 900px;
    height: 320px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .hw23__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
  }

  .hw23__card:hover .hw23__inner {
    transform: rotateY(180deg);
  }

  .hw23__front,
  .hw23__back {
    position: absolute;
    inset: 0;
    border-radius: var(--borderRadius);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 22px;
  }

  /* Front */
  .hw23__front {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hw23__num {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
    opacity: 0.12;
  }

  .hw23__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--borderRadius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transition: transform 0.3s ease;
  }

  .hw23__card:hover .hw23__icon {
    transform: scale(1.1);
  }

  .hw23__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
  }

  .hw23__subtitle {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    margin: 6px 0 0;
    text-align: center;
  }

  /* Per-card accent colors */
  .hw23__card:nth-child(1) .hw23__num { color: var(--secondStyleColor); }
  .hw23__card:nth-child(1) .hw23__icon {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .hw23__card:nth-child(2) .hw23__num { color: var(--accent2); }
  .hw23__card:nth-child(2) .hw23__icon {
    background: color-mix(in srgb, var(--accent2) 10%, transparent);
    color: var(--accent2);
    border-color: color-mix(in srgb, var(--accent2) 20%, transparent);
  }

  .hw23__card:nth-child(3) .hw23__num { color: var(--accent3); }
  .hw23__card:nth-child(3) .hw23__icon {
    background: color-mix(in srgb, var(--accent3) 10%, transparent);
    color: var(--accent3);
    border-color: color-mix(in srgb, var(--accent3) 20%, transparent);
  }

  .hw23__card:nth-child(4) .hw23__num { color: var(--secondStyleColor); }
  .hw23__card:nth-child(4) .hw23__icon {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Back */
  .hw23__back {
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .hw23__back-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
  }

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

  .hw23__back-detail {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  /* Connector line */
  .hw23__connector {
    position: relative;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    height: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
  }

  .hw23__connector-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    flex: 1;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .hw23__connector-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
  }

  .hw23__connector-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    inset: 0;
    padding: 0 calc(12.5% - 5px);
  }

  .hw23__connector-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-top: -4px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }

  .hw23__connector-dots span.active {
    background: var(--secondStyleColor);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  }

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

    .hw23__card {
      height: 280px;
    }

    .hw23__connector-dots {
      padding: 0 calc(25% - 5px);
    }
  }

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

    .hw23__head {
      margin-bottom: 36px;
    }

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

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

    .hw23__card {
      height: 260px;
    }

    .hw23__num {
      font-size: 3rem;
    }

    .hw23__title {
      font-size: 16px;
    }

    .hw23__back-desc {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw23__card,
    .hw23__inner,
    .hw23__icon,
    .hw23__connector-fill,
    .hw23__connector-dots span {
      transition: none;
    }

    .hw23__wave svg {
      animation: none;
    }

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

    .hw23__card:hover .hw23__inner {
      transform: 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;
    columns: 2 140px;
    column-gap: 24px;
  }

  .footerNav li {
    break-inside: avoid;
  }

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

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

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

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

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

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

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

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

  .footerMeta {
    text-align: right;
  }

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

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

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

    .footerMeta {
      text-align: left;
    }
  }



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