
:root {
  --bg: #121212;
  --bg-card: #1e1e1e;
  --text: #e0e0e0;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #f1c40f;
  --accent-rgb: 241,196,15;
  --accent2: #0ff12d;
  --accent2-rgb: 15,241,45;
  --accent3: #f2272e;
  --accent3-rgb: 242,39,46;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --bodyBG: #121212;
  --textColor1: #e0e0e0;
  --textColor2: #111111;
  --textSecondary: #adadad;
  --textMuted: #797979;
  --secondStyleColor: #f1c40f;
  --bgCard: #1e1e1e;
  --bgAlt: #222222;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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


  /* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    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-family:
      system-ui,
      -apple-system,
      "SF Pro Text",
      "Segoe UI",
      sans-serif;
    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: 0;
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 6px 4px;
    text-transform: uppercase;
    transition:
      color 0.2s ease,
      transform 0.15s ease,
      opacity 0.2s ease;
  }

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

  .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 {
    color: var(--text-main);
    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;
    }

    .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 v1 ===== */
  .hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
  }

  /* Фоновое изображение */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.55);
    transform: scale(1.1);
    z-index: 1;
  }

  /* Контент */
  .hero > .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  /* Левая колонка */
  .hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 15px 0;
    line-height: 1.15;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textSecondary);
    margin-bottom: 28px;
    max-width: 520px;
  }

  .hero a {
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
  }

  .hero a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  /* Справа — второе изображение */
  .hero > .container > img {
    width: 380px;
    height: auto;
    max-height: 70%;
    border-radius: var(--borderRadius);
    object-fit: contain;
  }

  /* ===== Адаптив ===== */
  @media (max-width: 950px) {
    .hero > .container {
      flex-direction: column;
      text-align: center;
    }

    .hero p {
      margin-left: auto;
      margin-right: auto;
    }

    .hero > .container > img {
      width: 300px;
      margin-top: 25px;
    }
  }

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

    .hero h1 {
      font-size: 32px;
    }

    .hero p {
      font-size: 15px;
    }

    .hero > .container > img {
      display: none;
    }
  }



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

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

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

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

  .toc {
    background-color: transparent;
  }

  .toc a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
    border: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

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

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

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

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

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

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

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

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

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: 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;
    }
  }



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

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

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

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

  .pt9__text {
    flex: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ft20__line {
      left: 20px;
    }
  }

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

    .ft20__head {
      margin-bottom: 40px;
    }

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

    .ft20__timeline {
      gap: 24px;
    }

    .ft20__content {
      padding: 20px 16px;
    }

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

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

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

    .ft20__line {
      left: 18px;
    }
  }

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

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



  .gl11 {
    padding: 60px 0;
    overflow: hidden;
  }

  .gl11__head {
    text-align: center;
    margin-bottom: 40px;
  }

  .gl11__head p {
    margin: 12px auto 0;
    color: var(--textColor1);
    text-wrap: balance;
    text-align: center;
  }

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

  .gl11__row {
    display: flex;
    width: max-content;
  }

  .gl11__track {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }

  .gl11__row--left {
    animation: gl11-scroll-left 70s linear infinite;
  }

  .gl11__row--right {
    animation: gl11-scroll-right 80s linear infinite;
  }

  .gl11__marquee-wrap:hover .gl11__row {
    animation-play-state: paused;
  }

  @keyframes gl11-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes gl11-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .gl11__item {
    flex-shrink: 0;
    width: 340px;
    height: 240px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: border-color 0.3s ease;
  }

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

  .gl11__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }

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

  @media (max-width: 950px) {
    .gl11__item {
      width: 280px;
      height: 200px;
    }
  }

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

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

    .gl11__track {
      gap: 12px;
      padding-right: 12px;
    }

    .gl11__item {
      width: 220px;
      height: 160px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl11__row--left,
    .gl11__row--right {
      animation: none;
    }

    .gl11__item img {
      transition: none;
    }
  }



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

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

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

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

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

  .rm11__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
  }

  .rm11__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .rm11__num {
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

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

  .rm11__num span {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .rm11__num--outline {
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm11__body {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 20px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

  .rm11__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 18px;
    flex-shrink: 0;
  }

  .rm11__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
  }

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

  @media (max-width: 700px) {
    .rm11__item { grid-template-columns: 60px 1fr; }
    .rm11__num span { font-size: 24px; }
    .rm11__body { grid-template-columns: 1fr; gap: 10px; }
    .rm11__icon { width: 36px; height: 36px; font-size: 16px; }
  }

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

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



  .tst {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 48px 20px;
  }

  .tst .container {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    && p {
      text-align: center;
    }
  }

  .tst__card {
    max-width: var(--maxWidthContainer);
    border: 1px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 48px 32px 28px;
  }

  /* ===== items ===== */
  .tst__item {
    display: none;
    text-align: center;
    color: var(--textColor1);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    margin: 0 auto;
    max-width: var(--maxWidthContainer);
    text-wrap: balance;
  }
  .tst__item.is-active {
    display: block;
  }

  .tst__mark {
    color: var(--secondStyleColor);
  }

  /* ===== avatars ===== */
  .tst__avatars {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
  }

  .tst__avatarBtn {
    width: 62px;
    height: 62px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    outline: none;
  }

  .tst__avatarBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .tst__avatarBtn.is-active {
    border-color: var(--secondStyleColor);
  }

  /* ===== meta ===== */
  .tst__meta {
    text-align: center;
    padding-top: 18px;
  }
  .tst__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }
  .tst__role {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--textColor1);
    text-decoration: none;
  }
  .tst__role:hover {
    text-decoration: underline;
  }

  @media (max-width: 800px) {
    .tst__item {
      min-height: 200px;
    }
    .tst .container {
      margin-bottom: 20px;
    }
    .tst__card {
      width: 100%;
      max-width: 90%;
    }
  }



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

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

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

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

  .pl6__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
  }

  .pl6__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.25s ease;
  }

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

  .pl6__item--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .pl6__badge {
    position: absolute;
    top: -10px;
    left: 24px;
    padding: 3px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .pl6__name {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }

  .pl6__name h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }

  .pl6__price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
    flex-shrink: 0;
  }

  .pl6__price small {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
  }

  .pl6__desc {
    margin: 4px 0 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    line-height: 1.5;
  }

  .pl6__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pl6__feat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  .pl6__feat i {
    font-size: 10px;
    color: var(--secondStyleColor);
  }

  .pl6__btn {
    display: inline-block;
    width: fit-content;
    padding: 10px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

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

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

  .pl6__btn--primary:hover {
    box-shadow: 0 6px 18px color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  @media (max-width: 600px) {
    .pl6 { padding: 48px 0; }
    .pl6__head { margin-bottom: 36px; }
    .pl6__name { flex-direction: column; gap: 4px; }
  }

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



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



  /* ===========================
     FAQ 10 — Geometric Pulse
     Rotating conic-gradient borders + SVG background
     =========================== */

  @property --faq10-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  .faq10 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background:
      radial-gradient(
        1200px 700px at 20% 15%,
        color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 0%,
        transparent 60%
      ),
      radial-gradient(
        1000px 650px at 80% 85%,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 65%
      ),
      var(--bodyBG);
  }

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

  /* Header */
  .faq10__head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 44px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .faq10__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

  /* List */
  .faq10__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto;
  }

  /* Card */
  .faq10__card {
    position: relative;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 80%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition:
      border-color 0.5s ease,
      box-shadow 0.5s ease;
  }

  /* Rotating conic-gradient border (active state) */
  .faq10__card::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: var(--borderRadius);
    padding: 1.5px;
    background: conic-gradient(
      from var(--faq10-angle),
      transparent 0%,
      var(--secondStyleColor) 8%,
      color-mix(in srgb, var(--secondStyleColor) 60%, transparent) 16%,
      transparent 28%
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .faq10__card.is-open::before {
    opacity: 1;
    animation: faq10-rotate 4s linear infinite;
  }

  .faq10__card.is-open {
    border-color: transparent;
    box-shadow:
      0 4px 24px color-mix(in srgb, var(--secondStyleColor) 10%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  @keyframes faq10-rotate {
    to {
      --faq10-angle: 360deg;
    }
  }

  /* Trigger button */
  .faq10__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }

  /* Number badge */
  .faq10__num {
    position: relative;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition: background 0.4s ease;
  }

  .faq10__numText {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    position: relative;
    z-index: 1;
  }

  .faq10__card.is-open .faq10__num {
    background: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  }

  /* Pulsing ring around number */
  .faq10__pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--secondStyleColor);
    opacity: 0;
    pointer-events: none;
  }

  .faq10__card.is-open .faq10__pulse {
    animation: faq10-pulse 2.2s ease-in-out infinite;
  }

  @keyframes faq10-pulse {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    70% {
      transform: scale(1.6);
      opacity: 0;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }

  /* Question text */
  .faq10__question {
    flex: 1;
    margin: 0;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Plus / Cross icon */
  .faq10__icon {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    transition: transform 0.55s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .faq10__iconLine {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--textColor1);
    transform: translate(-50%, -50%);
    transition: background 0.4s ease;
  }

  .faq10__iconLine:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .faq10__card.is-open .faq10__icon {
    transform: rotate(45deg);
  }

  .faq10__card.is-open .faq10__iconLine {
    background: var(--secondStyleColor);
  }

  /* Panel */
  .faq10__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.65s cubic-bezier(0.33, 1, 0.53, 1);
  }

  .faq10__card.is-open .faq10__panel {
    grid-template-rows: 1fr;
  }

  .faq10__answer {
    overflow: hidden;
  }

  .faq10__answerText {
    padding: 0 22px 22px 80px;
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.5s ease 0.12s,
      transform 0.5s cubic-bezier(0.33, 1, 0.53, 1) 0.12s;
  }

  .faq10__card.is-open .faq10__answerText {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover */
  .faq10__card:not(.is-open):hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq10__bg * {
      animation: none !important;
    }
    .faq10__card::before {
      animation: none !important;
    }
    .faq10__pulse {
      animation: none !important;
    }
    .faq10__panel,
    .faq10__answerText,
    .faq10__icon,
    .faq10__card {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq10__head {
      max-width: 520px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq10__trigger {
      gap: 14px;
      padding: 18px 18px;
    }
    .faq10__answerText {
      padding: 0 18px 20px 74px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq10__num {
      width: 36px;
      height: 36px;
    }
    .faq10__numText {
      font-size: 12px;
    }
    .faq10__trigger {
      gap: 12px;
      padding: 16px 14px;
    }
    .faq10__answerText {
      padding: 0 14px 18px 62px;
    }
    .faq10__icon {
      width: 24px;
      height: 24px;
    }
    .faq10__iconLine {
      width: 14px;
    }
  }



  .site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

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

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--textSecondary);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

  .footer-links li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

  .footer-links a:hover {
    color: var(--secondStyleColor);
  }

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      columns: 1;
      text-align: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }



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