
:root {
  --bg: #f4f2f1;
  --bg-card: #ffffff;
  --text: #29221e;
  --text-muted: rgba(0,0,0,0.5);
  --accent: #27ec76;
  --accent-rgb: 39,236,118;
  --accent2: #275bec;
  --accent2-rgb: 39,91,236;
  --accent3: #8aee3e;
  --accent3-rgb: 138,238,62;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;
  --bodyBG: #f4f2f1;
  --textColor1: #29221e;
  --textColor2: #111111;
  --textSecondary: #5c5653;
  --textMuted: #8f8a88;
  --secondStyleColor: #27ec76;
  --bgCard: #ffffff;
  --bgAlt: #e4e1e0;
  --borderSubtle: rgba(0,0,0,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(0,0,0,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: #000; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(0,0,0,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;
    }
  }



  /* ===== HERO v26 — Aurora waves + hex grid + orbiting particles ===== */

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

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

  .hr27__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
  }

  /* Aurora SVG */
  .hr27__aurora {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--secondStyleColor);
    pointer-events: none;
    z-index: 1;
  }

  .hr27__wave1 {
    animation: hr27Drift1 8s ease-in-out infinite alternate;
  }

  .hr27__wave2 {
    animation: hr27Drift2 10s ease-in-out infinite alternate;
  }

  @keyframes hr27Drift1 {
    0% {
      transform: translateY(0) translateX(0);
    }
    100% {
      transform: translateY(-40px) translateX(30px);
    }
  }

  @keyframes hr27Drift2 {
    0% {
      transform: translateY(0) translateX(0);
    }
    100% {
      transform: translateY(30px) translateX(-40px);
    }
  }

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

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

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

  .hr27__live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px var(--secondStyleColor);
    animation: hr27Blink 2s ease-in-out infinite;
  }

  @keyframes hr27Blink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
  }

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

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

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

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

  .hr27__btn--fill {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
  }

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

  .hr27__btn--fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .hr27__btn--fill:hover i {
    transform: translateX(3px);
  }

  .hr27__btn--glass {
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    color: var(--textColor1);
    background: color-mix(in srgb, var(--bodyBG) 30%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

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

  /* Metrics */
  .hr27__metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    padding: 16px 28px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 40%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .hr27__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .hr27__metric strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

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

  .hr27__sep {
    width: 1px;
    height: 28px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

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

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

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

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

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

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

    .hr27__btn {
      justify-content: center;
    }

    .hr27__metrics {
      gap: 16px;
      padding: 14px 20px;
    }

    .hr27__metric strong {
      font-size: 17px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hr27__live,
    .hr27__wave1,
    .hr27__wave2 {
      animation: none;
    }

    .hr27__btn,
    .hr27__btn--fill i {
      transition: none;
    }

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



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

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

  .toc h2 {
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 2px dotted var(--secondStyleColor);
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background-color: rgba(17, 17, 17, 0.2);
  }

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



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

  .rm14 .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
  }

  .rm14__head {
    text-align: center;
    margin-bottom: 60px;
  }

  .rm14__head p {
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    max-width: 480px;
    margin: 14px auto 0;
    line-height: 1.7;
  }

  .rm14__phases {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .rm14__rail {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: color-mix(in srgb, var(--textColor1) 10%, transparent);
    border-radius: 2px;
  }

  .rm14__fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--secondStyleColor), var(--accent2));
    border-radius: 2px;
    transition: height 0.15s linear;
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
  }

  .rm14__block {
    margin-left: 32px;
    background: color-mix(in srgb, var(--bodyBG) 70%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-radius: var(--borderRadius);
    padding: 32px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

  .rm14__block:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.06);
  }

  .rm14__block--current {
    border-color: color-mix(in srgb, var(--accent2) 30%, transparent);
    box-shadow: 0 0 50px rgba(var(--accent2-rgb), 0.08), inset 0 0 40px rgba(var(--accent2-rgb), 0.02);
  }

  .rm14__block--current::before {
    content: 'CURRENT';
    position: absolute;
    top: -10px;
    right: 24px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent2);
    background: var(--bodyBG);
    padding: 2px 12px;
    border: 1px solid color-mix(in srgb, var(--accent2) 30%, transparent);
    border-radius: 4px;
  }

  .rm14__block::after {
    content: '';
    position: absolute;
    left: -32px;
    top: 40px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), transparent);
  }

  .rm14__num {
    font-size: 3.5rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
  }

  .rm14__top {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
  }

  .rm14__info {
    flex: 1;
  }

  .rm14__info h3 {
    color: var(--secondStyleColor);
    margin-bottom: 6px;
  }

  .rm14__block:nth-child(3) .rm14__info h3 {
    color: var(--accent2);
  }

  .rm14__block:nth-child(4) .rm14__info h3 {
    color: var(--textColor1);
  }

  .rm14__date {
    font-size: 0.7rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .rm14__info p {
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  .rm14__gauge {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    position: relative;
  }

  .rm14__gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .rm14__gauge-bg {
    fill: none;
    stroke: color-mix(in srgb, var(--textColor1) 10%, transparent);
    stroke-width: 5;
  }

  .rm14__gauge-fill {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 188.5;
    transition: stroke-dashoffset 1.2s ease;
  }

  .rm14__gauge-fill--alt {
    stroke: var(--accent2);
  }

  .rm14__gauge-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--textColor1);
  }

  .rm14__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
  }

  .rm14__features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  .rm14__features li i {
    color: var(--secondStyleColor);
    width: 20px;
    text-align: center;
  }

  .rm14__block:nth-child(3) .rm14__features li i {
    color: var(--accent2);
  }

  @media (max-width: 768px) {
    .rm14__rail,
    .rm14__fill,
    .rm14__block::after {
      display: none;
    }
    .rm14__block {
      margin-left: 0;
    }
    .rm14__num {
      font-size: 2.5rem;
      top: 12px;
      right: 16px;
    }
    .rm14__top {
      flex-direction: column;
      gap: 16px;
    }
    .rm14__gauge {
      align-self: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm14__block,
    .rm14__fill,
    .rm14__gauge-fill {
      transition: none;
    }
  }



  /* ===== EXPERT REVIEW (ADAPTED TO DARK THEME) ===== */

  .expertreview {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

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

  .expertreview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  /* сетка */
  .expertReview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ссылки внутри цитат — акцент тем же зелёным */
  .expertReview a {
    color: var(--secondStyleColor);
    text-decoration: none;
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .expertReview a:hover {
    border-color: var(--secondStyleColor);
  }

  /* левый штрих у абзаца — градиент от ярко-зелёного к прозрачному */
  .expertReview p {
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--secondStyleColor), transparent)
      1;
    padding-left: 18px;
    margin: 0 0 1rem;
    font-style: italic;
    color: var(--textSecondary);
  }

  /* автор */
  .expertReview span {
    font-style: italic;
    opacity: 0.75;
    display: block;
    text-align: right;
    color: #c4c4c4;
  }

  /* карточки */
  .review-card {
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 2rem 2.2rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
    border-color: var(--secondStyleColor);
  }

  /* 2 колонки на десктопе */
  @media (min-width: 900px) {
    .expertReview {
      grid-template-columns: 1fr 1fr;
    }
  }



.feat21{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.feat21__glow{
  position:absolute;
  width:70vw;height:70vw;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(var(--accent-rgb),.04),transparent 60%);
  pointer-events:none;
  z-index:0;
}

.feat21__container{position:relative;z-index:1;max-width:1100px}

.feat21__header{text-align:center;margin-bottom:4rem}
.feat21__badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem 1.1rem;
  border:1px solid var(--borderSubtle);
  border-radius:100px;
  font-size:.7rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1.5rem;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.02);
}
.feat21 h2{color:var(--textColor1);margin-bottom:1rem}
.feat21 h2 em{font-style:italic;color:var(--secondStyleColor)}
.feat21__subtitle{
  font-size:.95rem;
  color:var(--textMuted);
  max-width:500px;margin:0 auto;
  line-height:1.7;
}

.feat21__bento{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.2rem;
}

.feat21__item{
  background:var(--bgCard);
  border:1px solid var(--borderSubtle);
  border-radius:var(--borderRadius);
  padding:2rem;
  position:relative;
  overflow:hidden;
  opacity:0;transform:scale(.95);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.feat21__item.visible{opacity:1;transform:scale(1)}
.feat21__item:hover{
  border-color:var(--secondStyleColor);
  box-shadow:0 0 40px rgba(0,0,0,.15);
}

.feat21__item--wide{grid-column:span 2}
.feat21__item--tall{grid-row:span 2;display:flex;flex-direction:column;justify-content:space-between}

.feat21__item::after{
  content:'';position:absolute;inset:0;
  border-radius:var(--borderRadius);
  opacity:0;transition:opacity .4s;
  pointer-events:none;
}
.feat21__item:hover::after{opacity:1}
.feat21__item:nth-child(1)::after{background:radial-gradient(circle at 30% 30%,rgba(var(--accent-rgb),.05),transparent 60%)}
.feat21__item:nth-child(2)::after{background:radial-gradient(circle at 50% 50%,rgba(var(--accent2-rgb),.05),transparent 60%)}
.feat21__item:nth-child(3)::after{background:radial-gradient(circle at 70% 30%,rgba(var(--accent3-rgb),.05),transparent 60%)}
.feat21__item:nth-child(4)::after{background:radial-gradient(circle at 30% 70%,rgba(var(--accent-rgb),.05),transparent 60%)}
.feat21__item:nth-child(5)::after{background:radial-gradient(circle at 50% 50%,rgba(var(--accent2-rgb),.05),transparent 60%)}

.feat21__icon{
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  font-size:1.1rem;
  margin-bottom:1.5rem;
  position:relative;z-index:1;
}
.feat21__icon--1{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}
.feat21__icon--2{background:rgba(var(--accent2-rgb),.1);color:var(--accent2)}
.feat21__icon--3{background:rgba(var(--accent3-rgb),.1);color:var(--accent3)}
.feat21__icon--4{background:rgba(var(--accent-rgb),.1);color:var(--secondStyleColor)}

.feat21__item h3{color:var(--textColor1);margin-bottom:.6rem;position:relative;z-index:1}
.feat21__item > p,
.feat21__item > div > p{color:var(--textSecondary);font-size:.85rem;line-height:1.7;position:relative;z-index:1}

.feat21__dots{
  margin-top:2rem;
  display:flex;gap:.5rem;flex-wrap:wrap;
}
.feat21__dot{
  width:8px;height:8px;
  border-radius:50%;
  opacity:.2;
  animation:feat21pulse 3s ease-in-out infinite;
}
.feat21__dot:nth-child(odd){background:var(--secondStyleColor)}
.feat21__dot:nth-child(even){background:var(--accent2)}
.feat21__dot:nth-child(1){animation-delay:0s}
.feat21__dot:nth-child(2){animation-delay:.2s}
.feat21__dot:nth-child(3){animation-delay:.4s}
.feat21__dot:nth-child(4){animation-delay:.6s}
.feat21__dot:nth-child(5){animation-delay:.8s}
.feat21__dot:nth-child(6){animation-delay:1s}
.feat21__dot:nth-child(7){animation-delay:1.2s}
.feat21__dot:nth-child(8){animation-delay:1.4s}
.feat21__dot:nth-child(9){animation-delay:1.6s}

@keyframes feat21pulse{
  0%,100%{opacity:.15;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.5)}
}

.feat21__bars{
  display:flex;align-items:flex-end;gap:6px;
  height:60px;margin-top:1.5rem;
}
.feat21__bar{
  flex:1;
  border-radius:3px 3px 0 0;
  animation:feat21barGrow 1s ease forwards;
  transform-origin:bottom;
  transform:scaleY(0);
}
.feat21__bar:nth-child(odd){background:var(--accent2)}
.feat21__bar:nth-child(even){background:var(--secondStyleColor);opacity:.4}

@keyframes feat21barGrow{to{transform:scaleY(1)}}

@media(max-width:768px){
  .feat21__bento{grid-template-columns:1fr}
  .feat21__item--wide,.feat21__item--tall{grid-column:auto;grid-row:auto}
}

@media(prefers-reduced-motion:reduce){
  .feat21__item,
  .feat21__dot,
  .feat21__bar{animation:none!important;opacity:1;transform:none}
  .feat21__bar{transform:scaleY(1)}
}



  /* ===== HOW v22 — Zigzag blocks with mesh gradient background ===== */

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

  /* Mesh gradient blobs */
  .hw22__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hw22__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.10;
    animation: hw22Mesh 18s ease-in-out infinite;
  }

  .hw22__blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
  }

  .hw22__blob:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--accent2);
    top: 50%;
    right: 10%;
    animation-delay: -6s;
  }

  .hw22__blob:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--accent3);
    bottom: 10%;
    left: 40%;
    animation-delay: -12s;
  }

  @keyframes hw22Mesh {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
  }

  .hw22__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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  }

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

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

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

  /* Zigzag blocks */
  .hw22__blocks {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hw22__block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .hw22__block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .hw22__block:nth-child(odd) {
    transform: translateX(-50px);
  }

  .hw22__block:nth-child(even) {
    transform: translateX(50px);
  }

  .hw22__block.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Watermark step number */
  .hw22__block::before {
    content: attr(data-step);
    position: absolute;
    font-size: 14rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hw22__block:nth-child(odd)::before {
    right: -30px;
  }

  .hw22__block:nth-child(even)::before {
    left: -30px;
  }

  /* Image side */
  .hw22__image {
    flex: 1;
    min-width: 0;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: var(--bgCard);
  }

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

  .hw22__image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--borderRadius) + 2px);
    padding: 2px;
    background: conic-gradient(from 0deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: hw22Border 4s linear infinite;
    z-index: 1;
  }

  @keyframes hw22Border {
    to {
      background: conic-gradient(from 360deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    }
  }

  /* Text side */
  .hw22__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .hw22__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    margin-bottom: 16px;
  }

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

  .hw22__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
  }

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

  .hw22__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent2);
    border: 1px solid color-mix(in srgb, var(--accent2) 15%, transparent);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hw22__block,
    .hw22__block:nth-child(even) {
      flex-direction: column;
      gap: 24px;
    }

    .hw22__block::before {
      font-size: 7rem;
      top: -20px;
      transform: none;
    }

    .hw22__block {
      margin-bottom: 50px;
    }
  }

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

    .hw22__head {
      margin-bottom: 40px;
    }

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

    .hw22__block {
      margin-bottom: 36px;
      gap: 18px;
    }

    .hw22__title {
      font-size: 16px;
    }

    .hw22__desc {
      font-size: 13px;
    }

    .hw22__badge {
      font-size: 12px;
      padding: 4px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw22__block,
    .hw22__blob {
      transition: none;
      animation: none;
    }

    .hw22__image::before {
      animation: none;
    }

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



  /* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

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

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

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

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

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

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

  .ab18__cell--intro h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

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

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

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

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

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

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

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

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

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

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

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .ab18__cell--intro h2 {
      font-size: 22px;
    }

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

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

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      transition: none;
    }
  }



  /* ── Section ── */
  .gl13 {
    position: relative;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

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

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

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

  .gl13__kicker i {
    font-size: 11px;
  }

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

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

  /* ── Filter Tabs (decorative) ── */
  .gl13__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .gl13__tab {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 24px;
    background: transparent;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    cursor: default;
    transition: all 0.3s ease;
  }

  .gl13__tab--active {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 0 16px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* ── Masonry Grid ── */
  .gl13__masonry {
    columns: 3;
    column-gap: 16px;
  }

  .gl13__item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .gl13__item.visible {
    opacity: 1;
    transform: scale(1);
  }

  /* ── Size Variants ── */
  .gl13__item--tall {
    aspect-ratio: 3 / 5;
  }

  .gl13__item--wide {
    aspect-ratio: 4 / 3;
  }

  .gl13__item--square {
    aspect-ratio: 1 / 1;
  }

  /* ── Image ── */
  .gl13__img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gl13__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .gl13__item:hover .gl13__img-wrap img {
    transform: scale(1.06);
  }

  /* ── Hover Overlay ── */
  .gl13__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 40%,
      color-mix(in srgb, var(--bodyBG) 90%, transparent)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl13__item:hover .gl13__overlay {
    opacity: 1;
  }

  .gl13__tag {
    display: inline-block;
    width: fit-content;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    transform: translateY(8px);
    transition: transform 0.4s 0.05s ease;
  }

  .gl13__item:hover .gl13__tag {
    transform: translateY(0);
  }

  .gl13__overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0;
    transform: translateY(8px);
    transition: transform 0.4s 0.1s ease;
  }

  .gl13__item:hover .gl13__overlay h3 {
    transform: translateY(0);
  }

  /* ── Static Border ── */
  .gl13__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.3s ease;
  }

  .gl13__item:hover::after {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .gl13 {
      padding: 80px 20px;
    }

    .gl13__masonry {
      columns: 2;
      column-gap: 10px;
    }

    .gl13__item {
      margin-bottom: 10px;
    }

    .gl13__overlay {
      opacity: 1;
    }

    .gl13__tag,
    .gl13__overlay h3 {
      transform: translateY(0);
    }
  }

  @media (max-width: 480px) {
    .gl13 {
      padding: 64px 16px;
    }

    .gl13__masonry {
      columns: 1;
    }

    .gl13__head {
      margin-bottom: 32px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .gl13__item {
      opacity: 1;
      transform: scale(1);
      transition: none;
    }

    .gl13__img-wrap img {
      transition: none;
    }

    .gl13__overlay,
    .gl13__tag,
    .gl13__overlay h3 {
      transition: none;
    }
  }



  /* ===== FAQ SECTION v2 (two-column layout) ===== */

  .faqSection-cols {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .faqColsWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .faqEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .faqSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* Grid */
  .faqColsGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft5__nav {
      gap: 6px;
    }

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

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

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



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