
:root {
  --bg: #1a1a2e;
  --bg-card: #16213e;
  --text: #eaeaea;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #e94560;
  --accent-rgb: 233,69,96;
  --accent2: #cde945;
  --accent2-rgb: 205,233,69;
  --accent3: #ec5ceb;
  --accent3-rgb: 236,92,235;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #1a1a2e;
  --textColor1: #eaeaea;
  --textColor2: #ffffff;
  --textSecondary: #b6b6bb;
  --textMuted: #82828c;
  --secondStyleColor: #e94560;
  --bgCard: #16213e;
  --bgAlt: #2b2b3d;
  --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
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* border-bottom: 1px solid var(--secondStyleColor); */
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

  .nav {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

  @media (max-width: 1024px) {
    .header-cta {
      display: none;
    }
    .nav {
      display: none;
    }

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
      border: none;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: var(--textColor2) !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }



  /* ===== 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;
    counter-increment: toc-counter;
  }

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

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

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

  .toc .swiper-slide:nth-child(3n+2) a {
    border-left-color: color-mix(in srgb, var(--secondStyleColor) 70%, var(--textColor1));
  }

  .toc .swiper-slide:nth-child(3n+3) a {
    border-left-color: color-mix(in srgb, var(--secondStyleColor) 50%, var(--textColor1));
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -moz-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -ms-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .toc .swiper-slide:nth-child(3n+2) a::before {
    color: color-mix(in srgb, var(--secondStyleColor) 70%, var(--textColor1));
    background: color-mix(in srgb, var(--secondStyleColor) 8%, color-mix(in srgb, var(--textColor1) 4%, transparent));
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, color-mix(in srgb, var(--textColor1) 10%, transparent));
  }

  .toc .swiper-slide:nth-child(3n+3) a::before {
    color: color-mix(in srgb, var(--secondStyleColor) 50%, var(--textColor1));
    background: color-mix(in srgb, var(--secondStyleColor) 6%, color-mix(in srgb, var(--textColor1) 6%, transparent));
    border-color: color-mix(in srgb, var(--secondStyleColor) 20%, color-mix(in srgb, var(--textColor1) 12%, transparent));
  }

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

  .toc a:hover::before,
  .toc a:focus::before {
    background-color: var(--secondStyleColor);
    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;
    }
  }



  /* ===== ABOUT v20 — Magazine 3-col: quote + image + text/stats + SVG dots ===== */

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

  .ab20__deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

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

  /* 3-column layout */
  .ab20__cols {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  /* Quote column */
  .ab20__col--quote {
    padding: 30px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.025);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ab20__quote-mark {
    font-size: 64px;
    font-weight: 800;
    line-height: 0.6;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab20__col--quote blockquote {
    margin: 0;
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 82%, transparent);
  }

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

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

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

  .ab20__author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
  }

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

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

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

  .ab20__img-frame:hover img {
    transform: scale(1.04);
  }

  .ab20__img-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    transform: translateX(-100%);
    animation: ab20Shine 4s ease-in-out infinite;
  }

  @keyframes ab20Shine {
    0%,
    70% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  /* Info column */
  .ab20__col--info {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

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

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

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

  /* Stats bars */
  .ab20__stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
  }

  .ab20__stat-bar {
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .ab20__stat-fill {
    height: 100%;
    width: var(--w, 0%);
    border-radius: 4px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent)
    );
    transition: width 0.6s ease;
  }

  .ab20__stat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
  }

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

  .ab20__stat-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

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

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

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

    .ab20__col--quote {
      grid-column: span 2;
      order: 3;
    }
  }

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

    .ab20__col--quote {
      grid-column: span 1;
      order: 0;
    }

    .ab20__img-frame {
      aspect-ratio: 16 / 9;
      max-width: 500px;
      margin: 0 auto;
      width: 100%;
    }

    .ab20__col--info h2 {
      font-size: 24px;
    }

    .ab20__col--quote blockquote {
      font-size: 15px;
    }
  }

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

    .ab20__col--quote {
      padding: 24px 18px;
    }

    .ab20__quote-mark {
      font-size: 48px;
    }

    .ab20__col--quote blockquote {
      font-size: 14px;
    }

    .ab20__stat-info span {
      font-size: 12px;
    }
  }

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

    .ab20__img-frame img,
    .ab20__btn,
    .ab20__stat-fill {
      transition: none;
    }
  }



  /* ===========================
     Reviews 21 — Spotlight Quote with Diamond Ratings
     Large centered review + diamond indicators + radial glow
     =========================== */

  .rev21 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* Radial glow background */
  .rev21__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
      circle,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 0%,
      transparent 70%
    );
    pointer-events: none;
    animation: rev21-pulse 10s ease-in-out infinite;
  }

  @keyframes rev21-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
  }

  /* Header */
  .rev21__head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
    display: grid;
    gap: 10px;
  }

  .rev21__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .rev21__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
  }

  /* Spotlight card */
  .rev21__spotlight {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 40px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 70%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* Quote icon */
  .rev21__quote-icon {
    font-size: 36px;
    color: var(--secondStyleColor);
    opacity: 0.2;
  }

  /* Quote text */
  .rev21__text {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.8;
    color: var(--textColor1);
    opacity: 0.88;
    font-style: italic;
    max-width: 580px;
  }

  /* Diamond rating */
  .rev21__diamonds {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .rev21__diamond {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    border-radius: 2px;
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    transition: background 0.3s ease, border-color 0.3s ease;
  }

  .rev21__diamond--filled {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Author */
  .rev21__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
  }

  .rev21__avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--accent2) 25%, transparent)
    );
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

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

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

  /* Decorative dots */
  .rev21__dots {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }

  .rev21__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: all 0.3s ease;
  }

  .rev21__dot--active {
    background: var(--secondStyleColor);
    width: 24px;
    border-radius: 4px;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rev21__glow {
      animation: none !important;
    }
    .rev21__spotlight {
      opacity: 1;
      transform: none;
      transition: none !important;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .rev21__spotlight {
      padding: 40px 32px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .rev21__spotlight {
      padding: 32px 22px;
      gap: 20px;
    }
    .rev21__quote-icon {
      font-size: 28px;
    }
    .rev21__avatar {
      width: 44px;
      height: 44px;
      font-size: 13px;
    }
  }



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

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

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

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

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

  .rm3__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .rm3__rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    height: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    z-index: 0;
  }

  .rm3__stage {
    position: relative;
    z-index: 1;
    padding: 28px 18px 20px;
    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.25s ease, border-color 0.25s ease;
  }

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

  .rm3__dot {
    position: absolute;
    top: -6px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm3__dot--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
  }

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

  .rm3__stage h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
  }

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

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

  @media (max-width: 600px) {
    .rm3 { padding: 48px 0; }
    .rm3__head { margin-bottom: 36px; }
    .rm3__track { grid-template-columns: 1fr; }
    .rm3__rail { display: none; }
  }

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



  /* ===== HOW v14 — Alternating full-width strips ===== */

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

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

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

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

  .hw14__strips {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hw14__strip {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 40px;
    border-radius: var(--borderRadius);
    transition: background 0.3s ease;
  }

  .hw14__strip:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .hw14__strip--alt {
    flex-direction: row-reverse;
    text-align: right;
  }

  .hw14__left {
    flex-shrink: 0;
  }

  .hw14__ring {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(
      circle at center,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent),
      transparent 70%
    );
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .hw14__strip:hover .hw14__ring {
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 30px color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .hw14__ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

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

  .hw14__right {
    flex: 1;
    max-width: 600px;
  }

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

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

  /* Divider between strips */
  .hw14__strip + .hw14__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

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

    .hw14__ring {
      width: 62px;
      height: 62px;
    }

    .hw14__ring span {
      font-size: 20px;
    }

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

  @media (max-width: 800px) {
    .hw14__strip,
    .hw14__strip--alt {
      flex-direction: column;
      text-align: center;
      gap: 18px;
      padding: 28px 20px;
    }

    .hw14__right {
      max-width: 100%;
    }

    .hw14__ring {
      width: 56px;
      height: 56px;
    }

    .hw14__ring::before {
      inset: -8px;
    }

    .hw14__ring span {
      font-size: 18px;
    }
  }

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

    .hw14__head {
      margin-bottom: 32px;
    }

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

    .hw14__strip {
      padding: 22px 16px;
      gap: 14px;
    }

    .hw14__ring {
      width: 50px;
      height: 50px;
    }

    .hw14__ring span {
      font-size: 16px;
    }

    .hw14__ring::before {
      inset: -6px;
    }

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

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

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



  /* ===== FEATURES v18 — Isometric cards with SVG diamond-grid bg ===== */

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

  .ft18__grid-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
    z-index: 0;
    pointer-events: none;
  }

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

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

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

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

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

  /* Card with isometric tilt */
  .ft18__card {
    perspective: 800px;
  }

  .ft18__card-inner {
    position: relative;
    padding: 30px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: rotateX(4deg) rotateY(-3deg);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
  }

  .ft18__card:hover .ft18__card-inner {
    transform: rotateX(0deg) rotateY(0deg) translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

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

  .ft18__card:hover .ft18__icon {
    transform: scale(1.1) rotate(-4deg);
  }

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

  .ft18__card-inner h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

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

  .ft18__num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 32px;
    font-weight: 800;
    color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
  }

  .ft18__card:hover .ft18__num {
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

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

    .ft18__card-inner {
      transform: rotateX(3deg) rotateY(-2deg);
    }
  }

  @media (max-width: 800px) {
    .ft18__card-inner {
      padding: 24px 20px;
    }

    .ft18__card-inner h3 {
      font-size: 16px;
    }

    .ft18__card-inner p {
      font-size: 13px;
    }

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

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

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

    .ft18__head {
      margin-bottom: 36px;
    }

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

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

    .ft18__card-inner {
      transform: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft18__card-inner,
    .ft18__icon,
    .ft18__num {
      transition: none;
    }
  }



  /*  */

  #gallery {
    padding: 20px 0;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 15%,
      transparent
    );
    position: relative;
    overflow: hidden;

    &&::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -20%;
      width: 450px;
      height: 450px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }

    &&::before {
      content: "";
      position: absolute;
      right: -10%;
      top: -25%;
      width: 350px;
      height: 350px;
      background-color: var(--bodyBG);
      border-radius: 50%;
      z-index: 1;
    }
  }

  #gallery > * {
    position: relative;
    z-index: 2;
  }

  .gallery-title {
    position: relative;
    text-transform: uppercase;
    color: var(--textColor1);
    letter-spacing: 0.5px;
  }

  .gallery-wrap {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 10px;
    overflow: hidden;
  }

  .gallery-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    transition: flex 0.8s ease-out;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 20%;
    border-radius: var(--borderRadius);
  }

  .gallery-item:hover {
    flex: 7;
  }

  /* optional: smoother behavior when hovering one item */
  .gallery-wrap:hover .gallery-item {
    flex: 1;
  }

  .gallery-wrap:hover .gallery-item:hover {
    flex: 7;
  }

  /* Responsive */
  @media (max-width: 1200px) {
    #gallery {
      &&::after,
      &&::before {
        display: none;
      }
    }

    .gallery-container {
      width: 100%;
      padding: 60px 16px;
    }
  }

  @media (max-width: 768px) {
    .gallery-title {
      margin-bottom: 24px;
    }

    .gallery-wrap {
      height: 60vh;
    }
  }

  @media (max-width: 480px) {
    .gallery-wrap {
      flex-direction: column;
      height: auto;
    }

    .gallery-item {
      height: 220px;
      transition:
        height 0.35s ease,
        flex 0.35s ease;
    }

    .gallery-item:hover {
      flex: 1;
      height: 320px;
    }
  }



  .pt1 {
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    text-align: center;
  }

  .pt1__head {
    max-width: 560px;
    margin: 0 auto 44px;
  }

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

  .pt1__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
  }

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

  /* Logo frame */
  .pt1__frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(36px, 5vw, 56px) clamp(48px, 7vw, 80px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 36px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

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

  .pt1__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    opacity: 0.06;
    filter: blur(80px);
    pointer-events: none;
  }

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

  .pt1__logo-link:hover { transform: scale(1.05); }

  .pt1__logo-link img {
    max-width: 220px;
    max-height: 80px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
  }

  /* Trust badges */
  .pt1__badges {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 28px);
    flex-wrap: wrap;
  }

  .pt1__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: rgba(255, 255, 255, 0.02);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    transition: border-color 0.25s ease;
  }

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

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

  @media (max-width: 600px) {
    .pt1 { padding: 48px 0; }
    .pt1__head { margin-bottom: 32px; }
    .pt1__frame { padding: 28px 36px; margin-bottom: 28px; }
    .pt1__logo-link img { max-width: 160px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt1__frame, .pt1__logo-link, .pt1__badge { transition: none; }
  }



  /* ===========================
   FAQ 2026 — glass + neon + motion
   =========================== */

  .faq26 {
    position: relative;
    padding: clamp(56px, 6vw, 96px) 0;
    background:
      radial-gradient(
        1300px 760px at 18% 12%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent) 0%,
        transparent 62%
      ),
      radial-gradient(
        1050px 720px at 82% 18%,
        color-mix(in srgb, var(--bodyBG) 16%, transparent) 0%,
        transparent 68%
      ),
      radial-gradient(
        1100px 820px at 60% 92%,
        color-mix(in srgb, var(--bodyBG) 12%, transparent) 0%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        var(--bodyBG) 0%,
        color-mix(in srgb, var(--bodyBG) 92%, var(--secondStyleColor) 8%) 100%
      );

    overflow: hidden;
    color: var(--textColor1);
  }

  .faq26__head {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }

  .faq26__title {
    line-height: 1.05;
    margin: 0;
  }

  .faq26__sub {
    margin: 0;
    color: var(--textColor1);
    max-width: 62ch;
  }

  .faq26__grid {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  /* Card */
  .faq26__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 16px 18px;
    transform: translateZ(0);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  }

  /* gradient “neon edge” */
  .faq26__card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: var(--borderRadius);
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
  }

  .faq26__shine {
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 120%;
    background: radial-gradient(
      closest-side,
      rgba(255, 255, 255, 0.22),
      transparent 60%
    );
    transform: translate3d(-20%, -20%, 0) rotate(12deg);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .faq26__card:hover .faq26__shine {
    opacity: 0.38;
  }

  /* Content */
  .faq26__content {
    position: relative;
    min-height: 76px;
    display: grid;
    align-content: center;
    padding-right: 8px;
  }

  /* Question / Answer layers */
  .faq26__q,
  .faq26__a {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    padding-right: 4px;
    will-change: transform, opacity;
    transition:
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .faq26__q {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .faq26__a {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  .faq26__step {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq26__qText {
    margin: 0;
    line-height: 1.2;
  }

  .faq26__hint {
    margin: 0;
    color: var(--textColor1);
  }

  .faq26__aTitle {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
  }

  .faq26__aText {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.45;
  }

  .faq26__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  .faq26__chip {
    color: var(--textColor1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 10px;
    border-radius: 999px;
  }

  /* Toggle button */
  .faq26__toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.28s ease,
      border-color 0.28s ease,
      background 0.28s ease;
  }

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

  .faq26__arrow {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255, 255, 255, 0.86);
    border-top: 2px solid rgba(255, 255, 255, 0.86);
    transform: rotate(134deg);
    transition:
      transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 0.3s ease;
  }

  /* OPEN STATE (answer visible) */
  .faq26__card.is-open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .faq26__card.is-open .faq26__q {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }

  .faq26__card.is-open .faq26__a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .faq26__card.is-open .faq26__arrow {
    transform: rotate(312deg);
  }

  /* height animation via JS measured height */
  .faq26__content {
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    height: 76px; /* will be overridden by JS */
    contain: layout style;
  }
  /* по умолчанию (карточка закрыта): кликаем по вопросу */
  .faq26__q {
    pointer-events: auto;
  }
  .faq26__a {
    pointer-events: none;
  }

  /* когда открыто: кликаем по ответу, вопрос клики не ловит */
  .faq26__card.is-open .faq26__q {
    pointer-events: none;
  }
  .faq26__card.is-open .faq26__a {
    pointer-events: auto;
  }

  /* опционально, чтобы было понятно что кликабельно */
  .faq26__q,
  .faq26__a {
    cursor: pointer;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq26__bg {
      animation: none;
    }
    .faq26__q,
    .faq26__a,
    .faq26__toggle,
    .faq26__content {
      transition: none !important;
    }
  }

  /* Responsive */
  @media (max-width: 720px) {
    .faq26__card {
      grid-template-columns: 1fr;
    }
    .faq26__toggle {
      width: 100%;
      height: 44px;
      border-radius: 16px;
    }
  }



  .ft6 {
    position: relative;
    padding: 56px 20px 24px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Top Glow ── */
  .ft6__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
  }

  /* ── Container ── */
  .ft6 .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 ── */
  .ft6__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.2s ease;
  }

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

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

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

  .ft6__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 7%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .ft6__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  /* ── Divider ── */
  .ft6__divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 30%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 50%,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 70%,
      transparent
    );
    position: relative;
    margin-bottom: 28px;
  }

  .ft6__diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--secondStyleColor);
    border-radius: 1px;
  }

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

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

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

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

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

  /* ── Bottom ── */
  .ft6__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
  }

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

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

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .ft6 {
      padding: 48px 20px 20px;
    }
  }

  @media (max-width: 800px) {
    .ft6__nav {
      gap: 20px;
    }

    .ft6__bottom {
      flex-direction: column;
      gap: 6px;
    }
  }

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

    .ft6__desc {
      font-size: 13px;
    }

    .ft6__nav {
      gap: 16px;
    }

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

    .ft6__social a {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }

    .ft6__glow {
      width: 300px;
      opacity: 0.06;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft6__social a,
    .ft6__nav a,
    .ft6__nav a::after,
    .ft6__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}