
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #6c5ce7;
  --accent-rgb: 108,92,231;
  --accent2: #e75ca9;
  --accent2-rgb: 231,92,169;
  --accent3: #72c8ea;
  --accent3-rgb: 114,200,234;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #6c5ce7;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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


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



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

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

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



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

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

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

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

  .toc {
    background-color: transparent;
    counter-reset: toc-counter;
  }

  .toc a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 10px 22px 10px 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    flex-shrink: 0;
    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::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 40%, var(--textColor1)));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    border-color: var(--secondStyleColor);
    background-color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: scale(1.1);
  }

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

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



  /* ===== FEATURES v16 — Magazine editorial with SVG wave dividers ===== */

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

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

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

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

  /* Blocks */
  .ft16__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  .ft16__block--rev {
    direction: rtl;
  }

  .ft16__block--rev > * {
    direction: ltr;
  }

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

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

  .ft16__block:hover .ft16__media img {
    transform: scale(1.04);
  }

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

  .ft16__label {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .ft16__text h3 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
  }

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

  .ft16__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }

  .ft16__tags span {
    padding: 6px 14px;
    border-radius: var(--borderRadius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
    transition: border-color 0.25s ease, color 0.25s ease;
  }

  .ft16__block:hover .ft16__tags span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
  }

  /* SVG wave divider */
  .ft16__wave {
    display: block;
    width: 100%;
    height: 40px;
    margin: 50px 0;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft16__block {
      gap: 30px;
    }

    .ft16__text h3 {
      font-size: 20px;
    }
  }

  @media (max-width: 800px) {
    .ft16__block,
    .ft16__block--rev {
      grid-template-columns: 1fr;
      direction: ltr;
    }

    .ft16__media {
      aspect-ratio: 16 / 9;
    }

    .ft16__wave {
      margin: 36px 0;
    }

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

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

    .ft16__head {
      margin-bottom: 40px;
    }

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

    .ft16__wave {
      margin: 28px 0;
      height: 30px;
    }

    .ft16__tags span {
      font-size: 11px;
      padding: 5px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft16__media img,
    .ft16__tags span {
      transition: 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;
    }
  }



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



  #bonuses { padding: 80px 0; }
  .bn2-head { text-align: center; margin-bottom: 50px; }
  .bn2-head h2 { margin-bottom: 12px; }
  .bn2-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .bn2-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
  .bn2-list .bonus-card {
    display: flex; align-items: center; gap: 24px; padding: 24px 28px;
    background: var(--cardBG); border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor); position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }
  .bn2-list .bonus-card:hover { transform: translateX(8px); border-color: var(--accentColor); }
  .bn2-list .bonus-card__icon {
    width: 60px; height: 60px; border-radius: 50%; background: var(--accentColor);
    display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; flex-shrink: 0;
  }
  .bn2-list .bonus-card__body { flex: 1; }
  .bn2-list .bonus-card h3 { font-size: 18px; margin-bottom: 6px; }
  .bn2-list .bonus-card p { color: var(--textSecondary); font-size: 14px; }
  .bn2-list .bonus-card__badge {
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
    background: var(--accentColor); color: #fff; flex-shrink: 0;
  }
  .bn2-list .bonus-card__badge:empty { display: none; }
  .bn2-list .bonus-card__cat { display: inline-block; margin-top: 8px; font-size: 12px; color: var(--accentColor); font-weight: 500; }
  @media (max-width: 600px) {
    .bn2-list .bonus-card { flex-direction: column; text-align: center; gap: 14px; }
    .bn2-list .bonus-card__icon { margin: 0 auto; }
  }



  .reviewHeader {
    color: var(--textColor1);
    margin-bottom: 40px;
  }

  /* Masonry как на скрине */
  .masonry {
    column-count: 3;
    column-gap: 28px;
  }

  .masonry-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    border-radius: var(--borderRadius);
    padding: 34px 32px 26px;
    margin: 0 0 28px;
    position: relative;
    border: 1px solid var(--secondStyleColor);
  }

  .quoteMark {
    width: 42px;
    height: 28px;
    display: inline-block;
    margin: 2px 0 18px;
  }

  /* две красные “галочки” */
  .quoteMark::before,
  .quoteMark::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 20px;
    height: 20px;
    background: var(--secondStyleColor);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .quoteMark::before {
    left: 32px;
  }
  .quoteMark::after {
    left: 56px;
    transform: scaleX(-1);
  }

  .text {
    margin: 0;
    color: var(--textColor1);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
  }

  .urevj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 30% 30%,
        rgba(255, 59, 48, 0.35),
        transparent 55%
      ),
      radial-gradient(
        circle at 70% 70%,
        rgba(30, 136, 255, 0.35),
        transparent 55%
      ),
      #f3f4f7;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bhkasjh {
    min-width: 0;
  }

  .name {
    margin: 0;
    font-weight: 800;
    font-size: 15px;
    color: var(--textColor1);
    line-height: 1.25;
  }

  .role {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--textColor1);
    font-weight: 600;
  }

  /* Точный “воздух” как в макете */
  .masonry-card.tight .text {
    line-height: 1.85;
  }

  /* Адаптив */
  @media (max-width: 1100px) {
    .masonry {
      column-count: 2;
    }
  }
  @media (max-width: 700px) {
    .masonry {
      column-count: 1;
    }
    .masonry-card {
      padding: 28px 22px 22px;
    }
    .quoteMark::before,
    .quoteMark::after {
      top: 28px;
    }
    .quoteMark::before {
      left: 22px;
    }
    .quoteMark::after {
      left: 46px;
    }
    .reviewHeader {
      margin-bottom: 20px;
    }
  }



  /* ===== MOBILE v5 — Centered phone with features on both sides ===== */

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

  .mob5__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 70%, rgba(var(--accent-rgb), 0.1), transparent);
    pointer-events: none;
  }

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

  /* Top */
  .mob5__top {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .mob5__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    margin: 0 0 16px;
  }

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

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

  /* Showcase */
  .mob5__showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
  }

  /* Features columns */
  .mob5__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 220px;
  }

  .mob5__feat {
    padding: 16px;
    border-radius: var(--borderRadius);
    background: var(--bgCard);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .mob5__feat--left {
    text-align: right;
  }

  .mob5__feat--right {
    text-align: left;
  }

  .mob5__feat i {
    font-size: 20px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
    display: block;
  }

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

  .mob5__feat p {
    margin: 0;
    font-size: 12px;
    color: var(--textSecondary);
  }

  /* Phone */
  .mob5__phone {
    position: relative;
    width: 270px;
    height: 540px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 40px;
    padding: 12px;
    flex-shrink: 0;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 40px 80px rgba(0,0,0,0.5),
      0 0 80px rgba(var(--accent-rgb), 0.08);
  }

  .mob5__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 3;
  }

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

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

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

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

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

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

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

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

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

    .mob5__phone {
      width: 240px;
      height: 480px;
    }
  }

  @media (max-width: 600px) {
    .mob5__phone {
      width: 200px;
      height: 400px;
      border-radius: 30px;
      padding: 10px;
    }

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



  /* ===== PARTNERS v10 — 3D perspective tilt card ===== */

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

  .pt10__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    z-index: 0;
    opacity: 0.1;
    filter: blur(6px);
  }

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

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

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

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

  /* Scene */
  .pt10__scene {
    display: flex;
    justify-content: center;
    perspective: 800px;
  }

  .pt10__card {
    width: min(340px, 80vw);
    aspect-ratio: 1 / 1.1;
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
  }

  .pt10__card-face {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 30px;
    overflow: hidden;
  }

  /* Orbiting rings */
  .pt10__ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .pt10__ring span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

  .pt10__ring span:nth-child(1) {
    inset: 8%;
    animation: pt10Orbit 12s linear infinite;
  }

  .pt10__ring span:nth-child(2) {
    inset: 18%;
    animation: pt10Orbit 18s linear infinite reverse;
  }

  .pt10__ring span:nth-child(3) {
    inset: 28%;
    animation: pt10Orbit 24s linear infinite;
  }

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

  /* Logo */
  .pt10__logo-area {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt10__logo-area:hover {
    transform: scale(1.06);
  }

  .pt10__logo-area img {
    max-width: min(200px, 55%);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

  .pt10__label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt10__card {
      width: min(300px, 75vw);
    }
  }

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

    .pt10__head {
      margin-bottom: 36px;
    }

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

    .pt10__card {
      width: min(260px, 75vw);
    }

    .pt10__card-face {
      padding: 24px;
      gap: 18px;
    }

    .pt10__logo-area img {
      max-width: min(160px, 50%);
    }

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

  @media (prefers-reduced-motion: reduce) {
    .pt10__ring span {
      animation: none;
    }
    .pt10__card,
    .pt10__logo-area {
      transition: none;
    }
  }



  /* ===== SOMETHING v11 — Spotlight quote with SVG wave + avatar ===== */

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

  .sm11__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: color-mix(in srgb, var(--secondStyleColor) 4%, transparent);
    pointer-events: none;
  }

  .sm11__block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sm11__quote-mark {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.5;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .sm11__quote {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 85%, transparent);
  }

  .sm11__author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

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

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

  .sm11__author-info {
    text-align: left;
  }

  .sm11__author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
  }

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

  .sm11__stars {
    display: flex;
    gap: 4px;
  }

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

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

    .sm11__quote-mark {
      font-size: 60px;
    }
  }

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

    .sm11__quote {
      font-size: 16px;
    }

    .sm11__avatar {
      width: 44px;
      height: 44px;
    }
  }



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

  /* Внутренняя секция */
  .faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: var(--bgAlt);
    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;
    }
  }



  .site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .intoLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    span {
      width: 8px;
      height: 8px;
      background-color: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }



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