
: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: 'Karla', sans-serif;
  --font-heading: 'Karla', 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 v7 — Split header + marquee topbar + sliding indicator ===== */

  .hd7 {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  /* Top marquee bar */
  .hd7__topbar {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    overflow: hidden;
    height: 32px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease, opacity 0.3s ease;
  }

  .hd7.scrolled .hd7__topbar {
    height: 0;
    opacity: 0;
    border-bottom: none;
  }

  .hd7__marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .hd7__marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: hd7-marquee 20s linear infinite;
  }

  .hd7__marquee-item {
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hd7__marquee-sep {
    color: var(--secondStyleColor);
    font-size: 10px;
  }

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

  /* Main header bar */
  .hd7__main {
    position: relative;
    background: color-mix(in srgb, var(--bodyBG) 88%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .hd7__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 24px;
  }

  /* Animated gradient border */
  .hd7__border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2)
    );
    background-size: 300% 100%;
    animation: hd7-border-shift 4s linear infinite;
  }

  @keyframes hd7-border-shift {
    0% { background-position: 0% 0; }
    100% { background-position: 300% 0; }
  }

  /* Logo */
  .hd7__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 with indicator */
  .hd7__nav {
    position: relative;
    display: flex;
    align-items: center;
  }

  .hd7__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hd7__nav .hd7__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
  }

  .hd7__nav .hd7__link:hover {
    color: var(--textColor1);
  }

  /* Sliding indicator line */
  .hd7__indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: left 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 0;
    pointer-events: none;
  }

  /* CTA button — outline + ripple */
  .hd7__cta {
    position: relative;
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    border: 1.5px solid var(--secondStyleColor);
    background: transparent;
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    overflow: hidden;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .hd7__cta-text {
    position: relative;
    z-index: 2;
  }

  .hd7__cta-ripple {
    position: absolute;
    inset: 0;
    background: var(--secondStyleColor);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
  }

  .hd7__cta:hover {
    color: var(--bodyBG);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .hd7__cta:hover .hd7__cta-ripple {
    transform: scaleX(1);
  }

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

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

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

  .hd7__burger.active .hd7__burger-line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .hd7__burger.active .hd7__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

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

  /* Mobile overlay — clip-path circle */
  .hd7__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;
    clip-path: circle(0% at calc(100% - 40px) 60px);
    transition: clip-path 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
  }

  .hd7__mobile.active {
    clip-path: circle(150% at calc(100% - 40px) 60px);
    pointer-events: auto;
  }

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

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

  .hd7__mobile .hd7__link:hover {
    color: var(--secondStyleColor);
  }

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

  .stopScroll {
    overflow: hidden;
  }

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

    .hd7__cta {
      display: none;
    }

    .hd7__burger {
      display: flex;
    }

    .hd7__topbar {
      height: 28px;
    }

    .hd7__marquee-item {
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd7__topbar,
    .hd7__mobile,
    .hd7__burger-line,
    .hd7__burger,
    .hd7__cta,
    .hd7__cta-ripple,
    .hd7__nav .hd7__link,
    .hd7__indicator {
      transition: none;
    }

    .hd7__marquee-track {
      animation: none;
    }

    .hd7__border {
      animation: none;
    }
  }



  /* === Random beliberda classes only === */
  .qzT1p9 {
    padding: 40px 18px;
    background:
      radial-gradient(
        520px 520px at 92% 22%,
        color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
        rgba(0, 200, 255, 0.08) 38%,
        rgba(7, 3, 18, 0) 68%
      ),
      radial-gradient(
        760px 420px at 64% 56%,
        rgba(0, 200, 255, 0.16),
        rgba(7, 3, 18, 0) 62%
      ),
      linear-gradient(180deg, #080214, #05010d);
    color: var(--textColor1);
  }

  .v0k3xR {
    margin: 0 auto;
    border-radius: var(--borderRadius);
    padding: 34px 34px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    min-height: 620px;
  }

  .a8Yp2c {
    flex: 1.05;
    padding: 12px 8px 8px 6px;
    position: relative;
    z-index: 2;
  }

  .kL2e7s {
    flex: 0.95;
    position: relative;
    z-index: 2;
  }

  .nN7x0u {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(234, 234, 234, 0.55);
    margin: 0 0 12px;
  }

  .mQ3z1b {
    line-height: 1.02;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 750;
  }

  .cR8d2e {
    margin: 0 0 22px;
    color: var(--textColor1);
    line-height: 1.65;
  }

  .bK2v9s {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
  }

  .pL0a4n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  .pL0a4n--ghost {
    background: transparent;
    color: rgba(234, 234, 234, 0.9);
    border: 1px solid rgba(234, 234, 234, 0.18);
    box-shadow: none;
  }

  .sJ6k1v {
    display: grid;
    gap: 6px;
  }

  .wD1h2y {
    color: rgba(234, 234, 234, 0.92);
    font-weight: 600;
  }

  .kV8p2z {
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(0, 200, 255, 0.95);
    font-size: 12px;
  }

  .gP1d0x {
    transform: translateY(-1px);
    opacity: 0.95;
  }
  .gP1d0x--dim {
    opacity: 0.28;
  }
  .uQ3c7m {
    margin-left: 6px;
    color: rgba(234, 234, 234, 0.75);
    font-weight: 600;
  }

  .zZ0q1p {
    position: absolute;
    left: 178px;
    top: 32px;
    width: 230px;
    height: 60px;
    opacity: 0.95;
    pointer-events: none;
  }

  /* Right side cards */
  .oX9b4m {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
  }

  .yR1c0v {
    position: absolute;
    width: 220px;
    height: 300px;
    border-radius: 14px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    backdrop-filter: blur(6px);
  }

  /* glossy edge like screenshot */
  .yR1c0v::after {
    content: "";
    position: absolute;
    inset: -40% -50%;
    background: linear-gradient(
      60deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 65%
    );
    transform: rotate(12deg);
    pointer-events: none;
  }

  .lW2p8a {
    height: 93%;
    position: absolute;
    inset: 10px 10px 58px 10px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
  }
  .lW2p8a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 50% 20%;
    filter: contrast(1.05) saturate(1.05);
  }

  .xH8u3n {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: rgba(6, 3, 16, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vE4m2k {
    font-size: 12px;
    font-weight: 650;
    color: rgba(234, 234, 234, 0.92);
  }
  .vE4m2k--price {
    color: rgba(0, 200, 255, 0.95);
    font-weight: 750;
  }

  /* Positions / rotations to match screenshot composition */
  .yR1c0v--top {
    left: 140px;
    top: 8px;
    transform: rotate(-8deg);
    z-index: 3;
  }
  .yR1c0v--right {
    left: 260px;
    top: 120px;
    transform: rotate(12deg);
    z-index: 2;
  }
  .yR1c0v--bot {
    left: 108px;
    top: 200px;
    transform: rotate(-18deg);
    z-index: 1;
  }

  /* Responsive */
  @media (max-width: 980px) {
    .v0k3xR {
      flex-direction: column;
      padding: 28px 22px;
      align-items: center;
      min-height: unset;
      && h1,
      p {
        text-align: center;
      }
    }

    .mQ3z1b {
      font-size: 40px;
    }
    .oX9b4m {
      min-height: 420px;
    }
    .yR1c0v--top {
      left: 50%;
      top: 0;
      transform: translateX(-50%) rotate(-8deg);
    }
    .yR1c0v--right {
      left: 58%;
      top: 130px;
      transform: translateX(-50%) rotate(12deg);
    }
    .yR1c0v--bot {
      left: 42%;
      top: 220px;
      transform: translateX(-50%) rotate(-18deg);
    }
    .zZ0q1p {
      left: 168px;
    }
  }

  @media (max-width: 520px) {
    .mQ3z1b {
      font-size: 34px;
    }
    .bK2v9s {
      flex-wrap: wrap;
    }
    .pL0a4n {
      flex: 1;
      min-width: 140px;
    }
    .zZ0q1p {
      display: none;
    }
    .yR1c0v {
      width: 200px;
      height: 280px;
    }
  }



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



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

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

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

  .rv9__head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
  }

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

  /* Bento grid */
  .rv9__bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .rv9__card--featured { grid-row: 1 / 3; }

  .rv9__card {
    padding: clamp(22px, 3vw, 32px);
    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: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  .rv9__card--featured {
    background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01));
    border-color: color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
  }

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

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

  .rv9__stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
  }

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

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

  .rv9__text--lg {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 500;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 88%, transparent);
  }

  .rv9__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
  }

  .rv9__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    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: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

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

  @media (max-width: 900px) {
    .rv9__bento {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .rv9__card--featured { grid-row: auto; }
  }

  @media (max-width: 600px) {
    .rv9 { padding: 48px 0; }
    .rv9__head { margin-bottom: 32px; }
    .rv9__card { padding: 22px 18px 20px; }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ab19__visual {
      width: 240px;
    }

    .ab19__text {
      align-items: center;
    }

    .ab19__row {
      justify-content: center;
    }

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

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

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

    .ab19__wave {
      height: 32px;
    }

    .ab19__visual {
      width: 200px;
    }

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

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

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

    .ab19__glow {
      animation: none;
    }

    .ab19__portrait img {
      transition: none;
    }
  }



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



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

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

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

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

  .pt9__text {
    flex: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



  /* ===== ROADMAP v6 — SVG curve path + glass cards + travelling light ===== */

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

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

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

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

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

  /* Track container */
  .rm6__track {
    position: relative;
  }

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

  .rm6__path {
    stroke: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    stroke-width: 2;
  }

  .rm6__path--dash {
    stroke: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    stroke-width: 2;
    stroke-dasharray: 8 12;
  }

  .rm6__light {
    fill: var(--secondStyleColor);
    filter: drop-shadow(0 0 8px var(--secondStyleColor));
    opacity: 0.7;
  }

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

  /* Stagger vertically to follow curve */
  .rm6__phase--1 {
    padding-top: 0;
  }
  .rm6__phase--2 {
    padding-top: 50px;
  }
  .rm6__phase--3 {
    padding-top: 100px;
  }
  .rm6__phase--4 {
    padding-top: 150px;
  }

  /* Number circle */
  .rm6__num {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .rm6__num span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    box-shadow: 0 0 0 0
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    animation: rm6Pulse 2.5s ease-in-out infinite;
  }

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

  /* Card */
  .rm6__card {
    padding: 24px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

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

  .rm6__ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
  }

  .rm6__card:hover .rm6__ico {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .rm6__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

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

  /* Badges */
  .rm6__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

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

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

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

    .rm6__phase--1 {
      padding-top: 0;
    }
    .rm6__phase--2 {
      padding-top: 0;
    }
    .rm6__phase--3 {
      padding-top: 0;
    }
    .rm6__phase--4 {
      padding-top: 0;
    }

    .rm6__svg {
      display: none;
    }
  }

  @media (max-width: 800px) {
    .rm6__card h3 {
      font-size: 16px;
    }

    .rm6__card p {
      font-size: 12px;
    }
  }

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

    .rm6__head {
      margin-bottom: 36px;
    }

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

    .rm6__phases {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .rm6__card {
      padding: 20px 16px;
    }
  }

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

    .rm6__light animateMotion {
      dur: 0s;
    }

    .rm6__card,
    .rm6__ico {
      transition: none;
    }
  }



  /* ===== HOW v13 — Bento grid ===== */

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

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

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

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

  /* Bento grid */
  .hw13__bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
  }

  .hw13__card--lg {
    grid-row: 1 / 3;
  }

  .hw13__card--wide {
    grid-column: 1 / -1;
  }

  /* Card */
  .hw13__card {
    position: relative;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    padding: 30px 26px;
    overflow: hidden;
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  /* Left accent stripe */
  .hw13__stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
      180deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 15%, transparent)
    );
    border-radius: 0 2px 2px 0;
  }

  .hw13__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .hw13__card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
  }

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

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

    .hw13__card {
      padding: 26px 22px;
    }

    .hw13__card h3 {
      font-size: 18px;
    }
  }

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

    .hw13__card--lg {
      grid-row: auto;
    }

    .hw13__card--wide {
      grid-column: auto;
    }

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

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

    .hw13__head {
      margin-bottom: 32px;
    }

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

    .hw13__card {
      padding: 20px 18px;
    }

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

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

    .hw13__tag {
      font-size: 11px;
      padding: 4px 10px;
      margin-bottom: 12px;
    }
  }

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



  :root {
    --images-amount: 6;
    --highlight: var(--secondStyleColor);
    --border-a: rgba(247, 176, 91, 0.16);
    --border-b: rgba(247, 147, 76, 0.16);
    --transition-duration: 620ms;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
  }

  .gallery {
    position: relative;
    width: 80%;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5em;
    padding: 10px;
    overflow: hidden;
    user-select: none;
  }

  #gallery .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .gallery-header {
    text-align: center;
    margin-bottom: 40px;
    && p {
      text-align: center;
      margin: 0 auto;
      text-wrap: balance;
    }
  }

  .gallery__image-wrapper {
    position: relative;
    cursor: pointer;
    padding-top: 75%;
    width: 100%;
    height: 0;
    transform-origin: 0 0;
    overflow: hidden;
    grid-row: span 2;
    grid-column: span 2;
    box-sizing: content-box;
    backface-visibility: hidden;
    perspective: 1px;
    transform: translate3d(0, 0, 1px);
    border-radius: var(--borderRadius);

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

  .gallery__image-wrapper::before,
  .gallery__image-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .gallery__image-wrapper::after {
    background: #000;
    opacity: 0.33;
    z-index: 1;
    transform: translate(0, 0);
    transition: all 500ms ease-out;
  }

  .gallery__image-wrapper::before {
    opacity: 0;
    z-index: 2;
    background: var(--secondStyleColor);
    transition: all 160ms ease-in;
    mix-blend-mode: hard-light;
  }

  .gallery__image-wrapper:hover:not(.gallery__image-wrapper--selected)::before {
    opacity: 0.32;
  }

  .gallery__image-wrapper:nth-child(1) {
    order: 2;
  }
  .gallery__image-wrapper:nth-child(2) {
    order: 4;
  }
  .gallery__image-wrapper:nth-child(3) {
    order: 6;
  }
  .gallery__image-wrapper:nth-child(4) {
    order: 8;
  }
  .gallery__image-wrapper:nth-child(5) {
    order: 10;
  }
  .gallery__image-wrapper:nth-child(6) {
    order: 12;
  }

  .gallery__image {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    border-radius: var(--borderRadius);
    width: auto;
    transform: translate(-50%, -50%);
    transition: all 320ms ease;
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected {
    grid-row: span 4;
    grid-column: span 4;
    z-index: 1;
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(
      odd
    )::after {
    transform: translate(0, 100%);
  }

  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(
      even
    )::after {
    transform: translate(100%, 0);
  }

  /* SCSS: &:nth-child(images-amount / 2) => 3 */
  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(3) {
    order: 3;
  }

  /* SCSS: &:nth-child(images-amount) => 6 */
  .gallery__image-wrapper.gallery__image-wrapper--selected:nth-child(6) {
    order: 9;
  }

  /* ===== Mobile adaptive (paste at the end of your CSS) ===== */
  @media (max-width: 640px) {
    .gallery {
      width: 100%;
      max-width: 560px;
      gap: 0.35em;
      padding: 0.35em;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: none;
      grid-auto-rows: 1fr;
    }
    .gallery-header {
      margin-bottom: 20px;
    }

    .gallery__image-wrapper {
      grid-column: span 1;
      pointer-events: none;
      grid-row: span 1;
      padding-top: 78%;
    }

    /* выбранный элемент — на всю ширину */
    .gallery__image-wrapper.gallery__image-wrapper--selected {
      grid-column: 1 / -1;
      grid-row: span 2;
    }

    /* На мобиле лучше не мудрить с order — стабильно и предсказуемо */
    .gallery__image-wrapper {
      order: initial !important;
    }
    .gallery__image-wrapper.gallery__image-wrapper--selected {
      order: -1 !important; /* выбранная уедет вверх */
    }
  }

  /* Extra-small phones: 1 колонка */
  @media (max-width: 420px) {
    .gallery {
      grid-template-columns: 1fr;
    }

    .gallery__image-wrapper {
      grid-column: span 1;
      grid-row: span 1;
      padding-top: 75%;
    }

    .gallery__image-wrapper.gallery__image-wrapper--selected {
      grid-column: span 1;
      grid-row: span 1; /* чтобы не занимала слишком много */
    }
  }



  /*  */
  .faq--builder {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--builder .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 1.2fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: stretch;
  }

  .faqContent {
    width: 100%;
  }

  .faqContent h2 {
    margin: 0 0 12px 0;
  }

  .faqLead {
    margin: 0 0 28px 0;
    color: var(--textColor1);
    opacity: 0.9;
    max-width: 70ch;
  }

  .containerFAQ {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accord__item {
    border: 1px dotted
      color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
    border-radius: calc(var(--borderRadius) * 0.75);
    overflow: clip;
    transition:
      border-color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
  }

  .accord__item:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-1px);
  }

  .accord__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
  }

  .accord__trigger:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .accord__title {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.35;
  }

  .accord__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
    font-size: 20px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .accord__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
    padding: 0 20px;
  }

  .accord__panel p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .accord__panel.show {
    opacity: 1;
    padding-top: 2px;
  }

  .faqImageWrap {
    display: block;
    height: 100%;
  }

  .faqImagePlaceholder {
    width: 100%;
    height: 785px;
    min-height: 320px;
    border-radius: var(--borderRadius);
    border: 1px dashed
      color-mix(in srgb, var(--secondStyleColor) 65%, transparent);
    background:
      radial-gradient(
        120% 120% at 100% 0%,
        color-mix(in srgb, var(--secondStyleColor) 18%, transparent) 0%,
        transparent 55%
      ),
      linear-gradient(
        135deg,
        color-mix(in srgb, var(--mainStyleColor) 12%, transparent),
        transparent 60%
      );
    padding: 12px;
  }

  .faqImagePlaceholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  @media (max-width: 980px) {
    .faq--builder .container {
      grid-template-columns: 1fr;
      && h2 {
        text-align: center;
      }
    }

    .faqImageWrap {
      order: -1;
    }
  }

  @media (max-width: 640px) {
    .accord__trigger {
      padding: 16px 16px;
    }

    .accord__panel {
      padding: 0 16px;
    }

    .faqLead {
      margin-bottom: 22px;
    }

    .faqImageWrap {
      display: none;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft5__nav {
      gap: 6px;
    }

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

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

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



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