
:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #6c5ce7;
  --accent-rgb: 108,92,231;
  --accent2: #e75ca9;
  --accent2-rgb: 231,92,169;
  --accent3: #72c8ea;
  --accent3-rgb: 114,200,234;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #6c5ce7;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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


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

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



  .xR9cF_sec {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 56px 18px 46px;
    color: var(--textColor1);
    background: radial-gradient(
        1200px 420px at 50% -30%,
        color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
        transparent 60%
      ),
      radial-gradient(
        900px 520px at 50% 30%,
        color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
        transparent 55%
      ),
      linear-gradient(180deg, #0b0b12 0%, #07070c 60%, #050508 100%);
    overflow: hidden;
  }
  .xR9cF_sec .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    a {
      margin-top: 40px;
      padding: 15px 60px;
      color: var(--textColor1);
      text-transform: uppercase;
      border-radius: var(--borderRadius);
      border: 1px solid var(--secondStyleColor);
      font-weight: 500;
      transition: 0.2s all linear;
    }
    a:hover {
      padding: 15px 80px;
    }
  }
  .xR9cF_head {
    text-align: center;
    user-select: none;
  }
  .xR9cF_title {
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.3px;
  }
  .xR9cF_sub {
    margin: 8px 0 0;
    opacity: 0.8;
  }

  .xR9cF_stage {
    position: relative;
    width: min(1240px, 100%);
    margin: 0 auto;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    outline: none;
    touch-action: pan-y;
  }

  .xR9cF_flow {
    position: relative;
    width: 100%;
    height: 420px;
    transform-style: preserve-3d;
  }

  /* FIXED geometry -> perfect symmetry */
  .xR9cF_item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 450px;
    transform-style: preserve-3d;
    transform-origin: center center;
    margin-left: -170px;
    margin-top: -195px;
    will-change: transform, opacity;
    transition: transform 560ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 560ms,
      filter 560ms;
    cursor: pointer;
    user-select: none;
  }

  .xR9cF_card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
    transform: translateZ(0);
  }

  .xR9cF_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    display: block;
    border-radius: var(--borderRadius);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    pointer-events: auto;
  }

  .xR9cF_ref {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 16px);
    height: 170px;
    overflow: hidden;
    border-radius: 16px;
    opacity: 0.1;
    pointer-events: none;

    /* фон = картинка, ставится из JS */
    background-image: var(--xR9cF_refimg);
    background-size: cover;
    background-position: center;

    /* переворачиваем как отражение */
    transform: scaleY(-1) translateZ(0);
    /* filter: blur(2px); */
  }

  .xR9cF_ref::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 8, 0) 0%,
      rgba(5, 5, 8, 0.35) 40%,
      rgba(5, 5, 8, 0.85) 75%,
      rgba(5, 5, 8, 1) 100%
    );
  }
  .xR9cF_imgRef {
    transform: scaleY(-1);
    filter: blur(0.2px);
  }
  .xR9cF_ref::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 8, 0) 0%,
      rgba(5, 5, 8, 0.35) 40%,
      rgba(5, 5, 8, 0.85) 75%,
      rgba(5, 5, 8, 1) 100%
    );
  }

  /* dots */
  .xR9cF_dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 60;
  }
  .xR9cF_dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 220ms, background 220ms, opacity 220ms;
    opacity: 0.9;
  }
  .xR9cF_dot.isOn {
    background: rgba(255, 255, 255, 0.92);
    transform: scale(1.15);
  }

  @media (max-width: 920px) {
    .xR9cF_item {
      width: 280px;
      height: 330px;
      margin-left: -140px;
      margin-top: -165px;
    }
    .xR9cF_stage {
      height: 320px;
    }
    .xR9cF_flow {
      height: 380px;
    }
  }
  @media (max-width: 520px) {
    .xR9cF_item {
      width: 250px;
      height: 320px;
      margin-left: -115px;
      margin-top: -135px;
    }

    .xR9cF_ref {
      height: 140px;
    }
  }



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



  .steps-dheader {
    margin-bottom: 40px;
  }
  .steps--diagonal {
    position: relative;
    overflow: hidden;
    h2,
    h2 + p {
      text-align: center;
    }
  }

  .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
  }

  .step--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .step--outline:hover {
    transform: translateY(-5px);
  }

  .step__number {
    font-size: 4rem;
    color: var(--secondStyleColor);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
  }

  .step__content {
    position: relative;
    z-index: 2;
  }

  .step__content h3 {
    margin-bottom: 1rem;
    color: var(--textColor1);
  }

  .step__content p {
    color: var(--textColor1);
    line-height: 1.6;
  }

  .step-arc {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--secondStyleColor);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    bottom: -10px;
    left: -10px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .step--outline:hover .step-arc {
    opacity: 1;
  }

  .steps-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 200px;
    opacity: 0.5;
  }

  .plane-trajectory {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .plane-trajectory svg {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 1024px) {
    .steps-visual {
      display: none;
    }
    .steps-dheader {
      margin-bottom: 20px;
    }
  }



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

  .pl18__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .pl18__dot {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    opacity: 0.2;
    animation: pl18Drift var(--d) ease-in-out infinite;
  }

  .pl18__dot:nth-child(3n) { background: var(--accent2); }
  .pl18__dot:nth-child(5n) { background: var(--accent3); }

  @keyframes pl18Drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.15; }
    50% { transform: translate(var(--mx), var(--my)); opacity: 0.4; }
  }

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

  .pl18__head {
    text-align: center;
    margin-bottom: 56px;
  }

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

  .pl18__table-wrap {
    overflow-x: auto;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    background: color-mix(in srgb, var(--bodyBG) 95%, transparent);
  }

  .pl18__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
  }

  .pl18__table thead {
    position: sticky;
    top: 0;
    z-index: 3;
  }

  .pl18__table th {
    padding: 24px 20px;
    font-weight: 700;
    background: color-mix(in srgb, var(--bodyBG) 98%, transparent);
    border-bottom: 2px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    text-align: center;
    vertical-align: bottom;
  }

  .pl18__table th:first-child {
    text-align: left;
  }

  .pl18__table th.pl18__featured {
    background: rgba(var(--accent2-rgb), 0.06);
    border-bottom-color: var(--accent2);
    position: relative;
  }

  .pl18__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .pl18__plan-name {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .pl18__plan-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--secondStyleColor);
  }

  .pl18__plan-price--accent2 { color: var(--accent2); }
  .pl18__plan-price--accent3 { color: var(--accent3); }

  .pl18__plan-period {
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    font-weight: 400;
  }

  .pl18__table td {
    padding: 16px 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    text-align: center;
    transition: background 0.2s;
  }

  .pl18__table td:first-child {
    text-align: left;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

  .pl18__table td.pl18__featured {
    background: rgba(var(--accent2-rgb), 0.03);
  }

  .pl18__table tbody tr:hover td {
    background: color-mix(in srgb, var(--textColor1) 2%, transparent);
  }

  .pl18__table tbody tr:hover td.pl18__featured {
    background: rgba(var(--accent2-rgb), 0.06);
  }

  .pl18__check, .pl18__cross {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
  }

  .pl18__check circle {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 2;
  }

  .pl18__check path {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 14;
    stroke-dashoffset: 14;
    transition: stroke-dashoffset 0.5s ease;
  }

  .pl18__check.drawn path {
    stroke-dashoffset: 0;
  }

  .pl18__cross line {
    stroke: color-mix(in srgb, var(--textColor1) 15%, transparent);
    stroke-width: 2;
    stroke-linecap: round;
  }

  .pl18__table tfoot td {
    padding: 28px 20px;
    border-bottom: none;
    background: color-mix(in srgb, var(--bodyBG) 50%, transparent);
  }

  .pl18__cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    border: 2px solid var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: transparent;
    transition: all 0.3s;
  }

  .pl18__cta:hover {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.25);
  }

  .pl18__cta--accent2 {
    border-color: var(--accent2);
    color: var(--accent2);
  }

  .pl18__cta--accent2:hover {
    background: var(--accent2);
    color: var(--bodyBG);
    box-shadow: 0 0 25px rgba(var(--accent2-rgb), 0.25);
  }

  .pl18__cta--accent3 {
    border-color: var(--accent3);
    color: var(--accent3);
  }

  .pl18__cta--accent3:hover {
    background: var(--accent3);
    color: var(--bodyBG);
    box-shadow: 0 0 25px rgba(var(--accent3-rgb), 0.25);
  }

  @media (max-width: 768px) {
    .pl18__table th,
    .pl18__table td {
      padding: 12px 10px;
      font-size: 0.85rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl18__dot,
    .pl18__check path,
    .pl18__cta {
      transition: none;
      animation: none;
    }
  }



  /* ===== PARTNERS v8 — Glassmorphism card + info ===== */

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

  .pt8__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  /* Glass card */
  .pt8__card {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    border-radius: calc(var(--borderRadius) * 1.3);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pt8__card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 40px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  /* Shimmer */
  .pt8__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    );
    pointer-events: none;
  }

  .pt8__card:hover .pt8__shimmer {
    animation: pt8Sweep 0.9s ease forwards;
  }

  @keyframes pt8Sweep {
    to { left: 140%; }
  }

  .pt8__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt8__logo-wrap:hover {
    transform: scale(1.05);
  }

  .pt8__logo-wrap img {
    max-width: min(200px, 60%);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

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

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

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

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

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

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

  .pt8__bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

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

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

    .pt8__info {
      align-items: center;
    }

    .pt8__card {
      max-width: 300px;
    }

    .pt8__list li {
      justify-content: center;
    }
  }

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

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

    .pt8__desc {
      font-size: 14px;
    }

    .pt8__card {
      max-width: 260px;
    }

    .pt8__list li {
      font-size: 13px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt8__card:hover .pt8__shimmer {
      animation: none;
    }
    .pt8__card,
    .pt8__logo-wrap {
      transition: none;
    }
  }



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



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



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

  /* ── Background Glows ── */
  .gl12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.12;
    will-change: transform;
  }

  .gl12__glow--a {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    top: -120px;
    left: -100px;
    animation: gl12-float-a 16s ease-in-out infinite;
  }

  .gl12__glow--b {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    bottom: -80px;
    right: -60px;
    animation: gl12-float-b 20s ease-in-out infinite;
  }

  @keyframes gl12-float-a {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(60px, 40px);
    }
  }

  @keyframes gl12-float-b {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(-50px, -30px);
    }
  }

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

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

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

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

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

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

  /* ── Grid ── */
  .gl12__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
  }

  .gl12__item--tall {
    grid-row: span 2;
  }

  .gl12__item--wide {
    grid-column: span 2;
  }

  /* ── Item ── */
  .gl12__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
  }

  /* ── Animated Border ── */
  .gl12__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 3;
    pointer-events: none;
    padding: 1.5px;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background: conic-gradient(
      from var(--gl12-border-angle, 0deg),
      transparent 0%,
      transparent 25%,
      var(--secondStyleColor) 50%,
      transparent 75%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gl12-spin 4s linear infinite;
  }

  .gl12__item:hover .gl12__border {
    opacity: 1;
  }

  @keyframes gl12-spin {
    to {
      --gl12-border-angle: 360deg;
    }
  }

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

  /* ── Image ── */
  .gl12__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

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

  .gl12__item:hover .gl12__img-wrap img {
    transform: scale(1.08);
  }

  /* ── Overlay ── */
  .gl12__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
      to top,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 40%, transparent) 40%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl12__item:hover .gl12__overlay {
    opacity: 1;
  }

  .gl12__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 100px;
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: transform 0.4s 0.05s ease;
  }

  .gl12__item:hover .gl12__tag {
    transform: translateY(0);
  }

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

  .gl12__item:hover .gl12__overlay h3 {
    transform: translateY(0);
  }

  .gl12__overlay p {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.4s 0.15s ease;
  }

  .gl12__item:hover .gl12__overlay p {
    transform: translateY(0);
  }

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

  .gl12__item:hover::after {
    border-color: transparent;
  }

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

    .gl12__grid {
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 200px;
    }

    .gl12__item--wide {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .gl12__grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 200px;
      gap: 12px;
    }

    .gl12__item--tall {
      grid-row: span 2;
    }

    .gl12__item--wide {
      grid-column: span 2;
    }
  }

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

    .gl12__grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
    }

    .gl12__item--tall,
    .gl12__item--wide {
      grid-row: span 1;
      grid-column: span 1;
    }

    .gl12__overlay {
      opacity: 1;
    }

    .gl12__tag,
    .gl12__overlay h3,
    .gl12__overlay p {
      transform: translateY(0);
    }

    .gl12__head {
      margin-bottom: 40px;
    }

    .gl12__glow {
      display: none;
    }
  }

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

    .gl12__glow {
      animation: none;
    }

    .gl12__img-wrap img {
      transition: none;
    }

    .gl12__overlay,
    .gl12__tag,
    .gl12__overlay h3,
    .gl12__overlay p {
      transition: none;
    }
  }



  /* ===== SOMETHING v11 — Spotlight quote with SVG wave + avatar ===== */

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

  .sm11__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: color-mix(in srgb, var(--secondStyleColor) 4%, transparent);
    pointer-events: none;
  }

  .sm11__block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sm11__quote-mark {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.5;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .sm11__quote {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 85%, transparent);
  }

  .sm11__author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

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

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

  .sm11__author-info {
    text-align: left;
  }

  .sm11__author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
  }

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

  .sm11__stars {
    display: flex;
    gap: 4px;
  }

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

  @media (max-width: 800px) {
    .sm11__quote {
      font-size: 18px;
    }

    .sm11__quote-mark {
      font-size: 60px;
    }
  }

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

    .sm11__quote {
      font-size: 16px;
    }

    .sm11__avatar {
      width: 44px;
      height: 44px;
    }
  }



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



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

  .faq h2 {
    text-align: center;
  }

  .faq > div {
    border-radius: var(--borderRadius);
  }

  #faq {
    border-radius: var(--borderRadius);
    padding: var(--sectionPadding);
  }

  .accord__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 32px;
    border: 4px solid var(--secondStyleColor);
    border-radius: var(--borderRadius);
  }

  .accord__item h3,
  .accord__item p {
    margin-bottom: 0;
    margin: 0;
    color: var(--textColor1);
  }

  .accord__item > div:first-child > p {
    font-weight: 900;
    color: var(--textColor1) !important;
    font-size: 24px !important;
    margin-bottom: 0;
  }

  .accord__item > div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .accord__item > div:last-child {
    max-height: 0;
    visibility: hidden;
    transition: 0.3s all linear;
  }

  .accord__item > div:last-child p {
    color: var(--textColor1) !important;
    text-align: left;
  }

  .show {
    visibility: visible !important;
  }

  .accord__item div + div {
    transition: max-height 0.3s ease;
    overflow: hidden;
    /* padding: 20px; padding будет учтен в scrollHeight */
    box-sizing: border-box; /* важно! */
  }

  .accord__item div + div p {
    transition: margin-top 0.3s ease;
    visibility: hidden;
    margin: 0;
  }

  .accord__item div + div.show p {
    visibility: visible;
    opacity: 1;
  }

  div.show {
    margin-top: 28px;
  }

  @media (max-width: 768px) {
    .accord__item {
      padding: 32px 16px;
    }
  }



  /* ===== FOOTER ===== */

  .footer {
    background: var(--bgAlt);
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

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

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

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: var(--textMuted);
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2 140px;
    column-gap: 24px;
  }

  .footerNav li {
    break-inside: avoid;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: var(--textSecondary);
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: var(--textSecondary);
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textSecondary);
    font-size: 14px;
    transition: 0.15s ease;
  }

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

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: var(--textMuted);
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

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

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }



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