
:root {
  --bg: #131014;
  --bg-card: #241d25;
  --text: #e6dfe7;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #bc8a20;
  --accent-rgb: 188,138,32;
  --accent2: #20bc22;
  --accent2-rgb: 32,188,34;
  --accent3: #d2243e;
  --accent3-rgb: 210,36,62;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --bodyBG: #131014;
  --textColor1: #e6dfe7;
  --textColor2: #111111;
  --textSecondary: #b1abb2;
  --textMuted: #7d787e;
  --secondStyleColor: #bc8a20;
  --bgCard: #241d25;
  --bgAlt: #242125;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

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


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



  .vfdsdc {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px) 0;
    min-height: 700px;
    display: flex;
    align-items: center;
  }
  .kmndzI {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: center;
    filter: blur(5px);
    opacity: 0.2;
  }

  /* Белый “треугольник” снизу (диагональный срез) */
  .vfdsdc::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: var(--bodyBG);
    clip-path: polygon(
      0 40%,
      33% 40%,
      33% 20%,
      66% 20%,
      66% 5%,
      100% 5%,
      100% 100%,
      0 100%
    );

    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    && h1 {
      text-transform: uppercase;
      text-wrap: balance;
      font-weight: 900;
    }
    && p {
      text-wrap: balance;
    }
  }

  .hero__content {
    margin: 0 0 14px;
    color: var(--textColor1);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 20px;
    && p {
      max-width: 700px;
    }
  }

  .hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: var(--borderRadius);
    background: var(--textColor1);
    color: var(--textColor2);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    width: fit-content;
    transition: 0.2s all linear;
  }

  .hero__btn:hover {
    transform: translateY(-3px);
  }

  .hero__phone a {
    color: inherit;
    text-decoration: none;
  }

  .hero__phoneIcon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero__art {
    display: flex;
    width: 720px;
    height: 550px;
    align-items: center;
    justify-content: center;
    && img {
      width: 100%;
      height: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  .hero__svg {
    width: min(440px, 100%);
    height: auto;
  }

  /* Адаптив */
  @media (max-width: 860px) {
    .vfdsdc {
      min-height: 500px;
    }
    .hero__art {
      display: none;
    }

    .vfdsdc::after {
      height: 40%;
      clip-path: polygon(0 55%, 50% 55%, 50% 35%, 100% 35%, 100% 100%, 0 100%);
    }
  }



  :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: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--textColor1) 12%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease;
    -webkit-transition: color 0.35s ease, border-color 0.35s ease;
    -moz-transition: color 0.35s ease, border-color 0.35s ease;
    -ms-transition: color 0.35s ease, border-color 0.35s ease;
    -o-transition: color 0.35s ease, border-color 0.35s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--secondStyleColor);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor2);
    border-color: var(--secondStyleColor);
  }

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

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

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

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

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

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

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

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



  /* ===== FEATURES v20 — Vertical timeline with SVG connector + mixed cards ===== */

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

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

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

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

  /* Timeline */
  .ft20__timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

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

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

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

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

  /* Items */
  .ft20__item {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    z-index: 1;
  }

  .ft20__marker {
    display: flex;
    justify-content: center;
    padding-top: 22px;
  }

  .ft20__dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ft20__item:hover .ft20__dot {
    transform: scale(1.12);
    border-color: var(--secondStyleColor);
  }

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

  /* Content cards */
  .ft20__content {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    padding: 24px 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* Image variant */
  .ft20__content--img {
    padding: 0;
    overflow: hidden;
  }

  .ft20__thumb {
    aspect-ratio: 16 / 8;
    overflow: hidden;
  }

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

  .ft20__item:hover .ft20__thumb img {
    transform: scale(1.04);
  }

  .ft20__body {
    padding: 20px 22px 24px;
  }

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

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

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

  .ft20__checks {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ft20__checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }

  .ft20__checks i {
    font-size: 11px;
    color: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft20__timeline {
      max-width: 600px;
    }
  }

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

    .ft20__content > p,
    .ft20__body p {
      font-size: 13px;
    }

    .ft20__dot {
      width: 42px;
      height: 42px;
    }

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

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

    .ft20__line {
      left: 20px;
    }
  }

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

    .ft20__head {
      margin-bottom: 40px;
    }

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

    .ft20__timeline {
      gap: 24px;
    }

    .ft20__content {
      padding: 20px 16px;
    }

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

    .ft20__dot {
      width: 38px;
      height: 38px;
    }

    .ft20__item {
      grid-template-columns: 40px 1fr;
      gap: 12px;
    }

    .ft20__line {
      left: 18px;
    }
  }

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

    .ft20__content,
    .ft20__dot,
    .ft20__thumb img {
      transition: none;
    }
  }



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

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

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

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

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

  .pl1__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    align-items: start;
  }

  .pl1__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(24px, 3vw, 36px);
    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;
  }

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

  .pl1__card--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    box-shadow: 0 0 50px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl1__badge {
    position: absolute;
    top: 16px;
    right: -1px;
    padding: 5px 14px 5px 18px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--borderRadius) 0 0 var(--borderRadius);
  }

  .pl1__card-top i {
    font-size: 24px;
    color: var(--secondStyleColor);
    margin-bottom: 4px;
  }

  .pl1__card-top h3 {
    margin: 8px 0 4px;
    font-size: 20px;
    font-weight: 700;
  }

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

  .pl1__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .pl1__amount {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

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

  .pl1__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pl1__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 78%, transparent);
  }

  .pl1__list li i {
    font-size: 12px;
    color: var(--secondStyleColor);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

  .pl1__list--off { opacity: 0.4; }
  .pl1__list--off i { color: color-mix(in srgb, var(--textColor1) 35%, transparent) !important; }

  .pl1__btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
    margin-top: auto;
  }

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

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

  .pl1__btn--primary:hover {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  @media (max-width: 900px) {
    .pl1__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pl1__card--featured { order: -1; }
  }

  @media (max-width: 600px) {
    .pl1 { padding: 48px 0; }
    .pl1__head { margin-bottom: 36px; }
  }

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



  /* ===== ABOUT v16 — Diagonal split with floating stat badges ===== */

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

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

  /* Image side */
  .ab16__img-wrap {
    position: relative;
  }

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

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

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

  /* SVG diagonal */
  .ab16__diag {
    position: absolute;
    top: 0;
    right: -30px;
    width: 80px;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

  /* Floating badges */
  .ab16__badge {
    position: absolute;
    z-index: 3;
    padding: 14px 20px;
    border-radius: var(--borderRadius);
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: ab16Float 3s ease-in-out infinite alternate;
  }

  .ab16__badge--top {
    top: 12%;
    right: -24px;
  }

  .ab16__badge--bot {
    bottom: 12%;
    right: -24px;
    animation-delay: 1.5s;
  }

  @keyframes ab16Float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
  }

  .ab16__badge strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab16__badge span {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    font-weight: 500;
  }

  /* Text side */
  .ab16__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ab16__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab16__text h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

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

  .ab16__highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }

  .ab16__hl {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }

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

  .ab16__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    width: fit-content;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ab16__badge--top,
    .ab16__badge--bot {
      right: -12px;
    }

    .ab16__diag {
      right: -16px;
      width: 50px;
    }
  }

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

    .ab16__img-wrap {
      max-width: 400px;
      margin: 0 auto;
    }

    .ab16__img {
      aspect-ratio: 4 / 3;
    }

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

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

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

    .ab16__badge {
      padding: 10px 14px;
    }

    .ab16__badge strong {
      font-size: 20px;
    }

    .ab16__diag {
      display: none;
    }

    .ab16__text h2 {
      font-size: 22px;
    }

    .ab16__hl {
      font-size: 13px;
    }
  }

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

    .ab16__img img,
    .ab16__btn {
      transition: none;
    }
  }



  /* ===== PARTNERS v5 — Cinematic split with spotlight card ===== */

  .pt5 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
  }

  /* Background image */
  .pt5__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.15;
    filter: blur(4px);
  }

  /* Dark gradient overlay */
  .pt5__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
  }

  /* Dot pattern */
  .pt5__dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(
      ellipse 70% 60% at 50% 50%,
      #000 20%,
      transparent 70%
    );
  }

  /* Layout */
  .pt5__shell {
    position: relative;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }

  /* Left — text */
  .pt5__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pt5__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt5__left h2 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .pt5__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
    max-width: 440px;
  }

  /* Stats */
  .pt5__stats {
    display: flex;
    gap: 24px;
    margin-top: 10px;
  }

  .pt5__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s ease;
  }

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

  .pt5__stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt5__stat-lbl {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    letter-spacing: 0.04em;
  }

  /* Right — logo card */
  .pt5__right {
    display: flex;
    justify-content: center;
  }

  .pt5__card {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--borderRadius) * 1.2);
    padding: 3px;
    overflow: hidden;
  }

  /* Animated conic border */
  .pt5__border-anim {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 10%,
      transparent 20%,
      transparent 50%,
      var(--secondStyleColor) 60%,
      transparent 70%,
      transparent 100%
    );
    animation: pt5Rotate 6s linear infinite;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .pt5__card:hover .pt5__border-anim {
    opacity: 1;
  }

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

  .pt5__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2 - 3px);
    background: var(--bodyBG);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Spotlight effect */
  .pt5__spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(
      ellipse 40% 50% at 50% 0%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      transparent 70%
    );
    pointer-events: none;
    animation: pt5Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes pt5Breathe {
    0% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  .pt5__logo-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt5__logo-link:hover {
    transform: scale(1.06);
  }

  .pt5__logo-link img {
    max-width: min(220px, 65%);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
  }

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

    .pt5__card {
      width: min(300px, 100%);
    }

    .pt5__desc {
      font-size: 14px;
    }
  }

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

    .pt5__left {
      align-items: center;
    }

    .pt5__desc {
      max-width: 100%;
    }

    .pt5__stats {
      justify-content: center;
    }

    .pt5__card {
      width: min(320px, 85vw);
    }
  }

  @media (max-width: 600px) {
    .pt5 {
      padding: 50px 0;
      min-height: auto;
    }

    .pt5__left h2 {
      font-size: 26px;
    }

    .pt5__stats {
      gap: 12px;
      flex-wrap: wrap;
    }

    .pt5__stat {
      padding: 10px 14px;
    }

    .pt5__stat-val {
      font-size: 18px;
    }

    .pt5__card {
      width: min(280px, 80vw);
    }

    .pt5__logo-link img {
      max-width: min(180px, 60%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt5__border-anim {
      animation: none;
      opacity: 0.3;
    }
    .pt5__spotlight {
      animation: none;
    }
    .pt5__stat,
    .pt5__logo-link {
      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;
    }
  }



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

  .rv14__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
  }

  .rv14__head { flex: 1; }

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

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

  .rv14__sub {
    margin: 0;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    text-align: right;
  }

  /* Masonry columns */
  .rv14__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }

  .rv14__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .rv14__card {
    padding: 26px 22px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

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

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

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

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

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

  @media (max-width: 900px) {
    .rv14__top { flex-direction: column; align-items: flex-start; }
    .rv14__sub { text-align: left; max-width: none; }
    .rv14__cols { grid-template-columns: repeat(2, 1fr); }
    .rv14__col:last-child { grid-column: 1 / -1; flex-direction: row; }
    .rv14__col:last-child .rv14__card { flex: 1; }
  }

  @media (max-width: 600px) {
    .rv14 { padding: 48px 0; }
    .rv14__top { margin-bottom: 32px; }
    .rv14__cols { grid-template-columns: 1fr; }
    .rv14__col:last-child { flex-direction: column; grid-column: auto; }
    .rv14__card { padding: 22px 18px 20px; }
  }



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

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

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

  /* ── Diagonal Lines Pattern ── */
  .faq15::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: repeating-linear-gradient(
      135deg,
      var(--secondStyleColor) 0 1px,
      transparent 1px 40px
    );
    pointer-events: none;
  }

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

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

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

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

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

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

  /* ── Two-Column Grid ── */
  .faq15__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }

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

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

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

  /* ── Trigger Button ── */
  .faq15__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    transition:
      background 0.2s ease,
      color 0.3s ease;
  }

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

  .faq15__item--open .faq15__trigger {
    color: var(--secondStyleColor);
  }

  /* ── Number ── */
  .faq15__num {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    min-width: 28px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    transition: color 0.35s ease;
  }

  .faq15__item--open .faq15__num {
    color: var(--secondStyleColor);
  }

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

  /* ── Active Indicator Dot ── */
  .faq15__indicator {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
    transition:
      background 0.3s ease,
      box-shadow 0.3s ease;
  }

  .faq15__item--open .faq15__indicator {
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px var(--secondStyleColor);
  }

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

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

  .faq15__item--open .faq15__answer {
    opacity: 1;
    transform: translateY(0);
  }

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

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

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

    .faq15__answer {
      padding-left: 20px;
    }
  }

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

    .faq15__trigger {
      padding: 16px;
      gap: 10px;
    }

    .faq15__answer {
      padding: 0 16px 18px 16px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq15__body,
    .faq15__answer,
    .faq15__indicator,
    .faq15__item,
    .faq15__trigger,
    .faq15__num {
      transition: none;
    }
  }



  .ft8 {
    position: relative;
    padding: 0 20px 28px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Animated Top Border ── */
  .ft8__border {
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    background-size: 300% 100%;
    animation: ft8BorderFlow 6s linear infinite;
    margin-bottom: 48px;
  }

  @keyframes ft8BorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  /* ── Container ── */
  .ft8 .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .ft8__logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.25s ease;
  }

  .ft8__logo:hover {
    opacity: 0.8;
  }

  /* ── Description ── */
  .ft8__desc {
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    max-width: 380px;
    margin: 0 0 28px;
  }

  /* ── Divider ── */
  .ft8__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 2px;
    margin-bottom: 28px;
    animation: ft8DividerPulse 3s ease-in-out infinite;
  }

  @keyframes ft8DividerPulse {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
  }

  /* ── Navigation ── */
  .ft8__nav {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
  }

  .ft8__nav a {
    position: relative;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .ft8__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ft8__nav a:hover {
    color: var(--textColor1);
  }

  .ft8__nav a:hover::after {
    transform: scaleX(1);
  }

  /* ── Social ── */
  .ft8__social {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
  }

  .ft8__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ft8__social a:hover {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* ── Bottom ── */
  .ft8__bottom {
    display: flex;
    align-items: center;
  }

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

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

    .ft8__nav {
      gap: 20px;
    }
  }

  @media (max-width: 600px) {
    .ft8 {
      padding: 0 16px 20px;
    }

    .ft8__border {
      margin-bottom: 32px;
    }

    .ft8__logo {
      font-size: 22px;
    }

    .ft8__desc {
      font-size: 13px;
    }

    .ft8__nav {
      gap: 16px;
    }

    .ft8__nav a {
      font-size: 12px;
    }

    .ft8__social a {
      width: 38px;
      height: 38px;
      font-size: 14px;
    }

    .ft8__social {
      gap: 10px;
    }
  }

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

    .ft8__divider {
      animation: none;
    }

    .ft8__social a,
    .ft8__nav a,
    .ft8__nav a::after,
    .ft8__logo {
      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}