
:root {
  --bg: #161a14;
  --bg-card: #23291e;
  --text: #e2e7df;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #cdd00b;
  --accent-rgb: 205,208,11;
  --accent2: #0bd050;
  --accent2-rgb: 11,208,80;
  --accent3: #e8340c;
  --accent3-rgb: 232,52,12;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #161a14;
  --textColor1: #e2e7df;
  --textColor2: #111111;
  --textSecondary: #afb4ac;
  --textMuted: #7c817a;
  --secondStyleColor: #cdd00b;
  --bgCard: #23291e;
  --bgAlt: #262a24;
  --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;
    }
  }



  /* === Random beliberda classes only === */
  .qzT1p9 {
    padding: 40px 18px;
    background:
      radial-gradient(
        520px 520px at 92% 22%,
        color-mix(in srgb, var(--secondStyleColor) 28%, transparent),
        rgba(0, 200, 255, 0.08) 38%,
        rgba(7, 3, 18, 0) 68%
      ),
      radial-gradient(
        760px 420px at 64% 56%,
        rgba(0, 200, 255, 0.16),
        rgba(7, 3, 18, 0) 62%
      ),
      linear-gradient(180deg, #080214, #05010d);
    color: var(--textColor1);
  }

  .v0k3xR {
    margin: 0 auto;
    border-radius: var(--borderRadius);
    padding: 34px 34px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    min-height: 620px;
  }

  .a8Yp2c {
    flex: 1.05;
    padding: 12px 8px 8px 6px;
    position: relative;
    z-index: 2;
  }

  .kL2e7s {
    flex: 0.95;
    position: relative;
    z-index: 2;
  }

  .nN7x0u {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(234, 234, 234, 0.55);
    margin: 0 0 12px;
  }

  .mQ3z1b {
    line-height: 1.02;
    text-transform: uppercase;
    margin: 0 0 14px;
    font-weight: 750;
  }

  .cR8d2e {
    margin: 0 0 22px;
    color: var(--textColor1);
    line-height: 1.65;
  }

  .bK2v9s {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
  }

  .pL0a4n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: 0.2s all linear;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  .pL0a4n--ghost {
    background: transparent;
    color: rgba(234, 234, 234, 0.9);
    border: 1px solid rgba(234, 234, 234, 0.18);
    box-shadow: none;
  }

  .sJ6k1v {
    display: grid;
    gap: 6px;
  }

  .wD1h2y {
    color: rgba(234, 234, 234, 0.92);
    font-weight: 600;
  }

  .kV8p2z {
    display: flex;
    align-items: center;
    gap: 3px;
    color: rgba(0, 200, 255, 0.95);
    font-size: 12px;
  }

  .gP1d0x {
    transform: translateY(-1px);
    opacity: 0.95;
  }
  .gP1d0x--dim {
    opacity: 0.28;
  }
  .uQ3c7m {
    margin-left: 6px;
    color: rgba(234, 234, 234, 0.75);
    font-weight: 600;
  }

  .zZ0q1p {
    position: absolute;
    left: 178px;
    top: 32px;
    width: 230px;
    height: 60px;
    opacity: 0.95;
    pointer-events: none;
  }

  /* Right side cards */
  .oX9b4m {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 18px;
  }

  .yR1c0v {
    position: absolute;
    width: 220px;
    height: 300px;
    border-radius: 14px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    backdrop-filter: blur(6px);
  }

  /* glossy edge like screenshot */
  .yR1c0v::after {
    content: "";
    position: absolute;
    inset: -40% -50%;
    background: linear-gradient(
      60deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 65%
    );
    transform: rotate(12deg);
    pointer-events: none;
  }

  .lW2p8a {
    height: 93%;
    position: absolute;
    inset: 10px 10px 58px 10px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
  }
  .lW2p8a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 50% 20%;
    filter: contrast(1.05) saturate(1.05);
  }

  .xH8u3n {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: rgba(6, 3, 16, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vE4m2k {
    font-size: 12px;
    font-weight: 650;
    color: rgba(234, 234, 234, 0.92);
  }
  .vE4m2k--price {
    color: rgba(0, 200, 255, 0.95);
    font-weight: 750;
  }

  /* Positions / rotations to match screenshot composition */
  .yR1c0v--top {
    left: 140px;
    top: 8px;
    transform: rotate(-8deg);
    z-index: 3;
  }
  .yR1c0v--right {
    left: 260px;
    top: 120px;
    transform: rotate(12deg);
    z-index: 2;
  }
  .yR1c0v--bot {
    left: 108px;
    top: 200px;
    transform: rotate(-18deg);
    z-index: 1;
  }

  /* Responsive */
  @media (max-width: 980px) {
    .v0k3xR {
      flex-direction: column;
      padding: 28px 22px;
      align-items: center;
      min-height: unset;
      && h1,
      p {
        text-align: center;
      }
    }

    .mQ3z1b {
      font-size: 40px;
    }
    .oX9b4m {
      min-height: 420px;
    }
    .yR1c0v--top {
      left: 50%;
      top: 0;
      transform: translateX(-50%) rotate(-8deg);
    }
    .yR1c0v--right {
      left: 58%;
      top: 130px;
      transform: translateX(-50%) rotate(12deg);
    }
    .yR1c0v--bot {
      left: 42%;
      top: 220px;
      transform: translateX(-50%) rotate(-18deg);
    }
    .zZ0q1p {
      left: 168px;
    }
  }

  @media (max-width: 520px) {
    .mQ3z1b {
      font-size: 34px;
    }
    .bK2v9s {
      flex-wrap: wrap;
    }
    .pL0a4n {
      flex: 1;
      min-width: 140px;
    }
    .zZ0q1p {
      display: none;
    }
    .yR1c0v {
      width: 200px;
      height: 280px;
    }
  }



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

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

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

  .toc {
    background-color: transparent;
  }

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

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

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

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

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

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

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

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

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



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

  .rv10__accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--secondStyleColor));
  }

  .rv10__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
  }

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

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

  /* Timeline */
  .rv10__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .rv10__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transform: translateX(-50%);
  }

  .rv10__item {
    position: relative;
    display: flex;
    width: 50%;
  }

  .rv10__item--left {
    align-self: flex-start;
    justify-content: flex-end;
    padding-right: 36px;
  }

  .rv10__item--right {
    align-self: flex-end;
    padding-left: 36px;
  }

  .rv10__dot {
    position: absolute;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    border: 2px solid var(--bodyBG);
    z-index: 1;
  }

  .rv10__item--left .rv10__dot { right: -5px; }
  .rv10__item--right .rv10__dot { left: -5px; }

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

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

  .rv10__stars {
    display: flex;
    gap: 3px;
    font-size: 13px;
  }

  .rv10__stars i { color: var(--secondStyleColor); }

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

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

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

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

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

  @media (max-width: 800px) {
    .rv10__timeline::before { left: 16px; }
    .rv10__item { width: 100%; padding-left: 44px !important; padding-right: 0 !important; }
    .rv10__item--left { align-self: auto; justify-content: flex-start; }
    .rv10__dot { left: 11px !important; right: auto !important; }
  }

  @media (max-width: 600px) {
    .rv10 { padding: 48px 0; }
    .rv10__head { margin-bottom: 40px; }
    .rv10__card { padding: 20px 16px 18px; }
    .rv10__timeline { gap: 20px; }
    .rv10__accent-line { display: none; }
  }



  /* ===== FEATURES v12 — Mixed grid: image cards + icon cards ===== */

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

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

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

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

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

  /* Card base */
  .ft12__card {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: rgba(255, 255, 255, 0.03);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* Image card */
  .ft12__card--img {
    padding: 0;
    overflow: hidden;
  }

  .ft12__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

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

  .ft12__card--img:hover .ft12__thumb img {
    transform: scale(1.05);
  }

  .ft12__body {
    padding: 22px 22px 24px;
  }

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

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

  /* Icon */
  .ft12__ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
  }

  .ft12__card:hover .ft12__ico {
    transform: rotate(-6deg) scale(1.1);
  }

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

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

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

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

  @media (max-width: 800px) {
    .ft12__card {
      padding: 24px 18px;
    }

    .ft12__card h3,
    .ft12__body h3 {
      font-size: 16px;
    }

    .ft12__card p,
    .ft12__body p {
      font-size: 13px;
    }
  }

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

    .ft12__head {
      margin-bottom: 36px;
    }

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

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

    .ft12__body {
      padding: 18px 18px 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft12__card,
    .ft12__ico,
    .ft12__thumb img {
      transition: none;
    }
  }



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

.ab25::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23888' stroke-width='.3'/%3E%3C/svg%3E");
  background-size:60px;
  opacity:.08;
  pointer-events:none;
}

.ab25__container{max-width:1000px;position:relative;z-index:1}

.ab25__header{text-align:center;margin-bottom:5rem}
.ab25__eyebrow{
  font-size:.7rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1rem;
}
.ab25 h2{color:var(--textColor1);margin-bottom:1rem}
.ab25__lead{
  font-size:1rem;font-weight:300;
  line-height:1.8;
  color:var(--textMuted);
  max-width:550px;margin:0 auto;
}

.ab25__timeline{
  position:relative;
  padding-left:3rem;
}
.ab25__timeline::before{
  content:'';position:absolute;
  left:7px;top:0;bottom:0;
  width:2px;
  background:var(--borderSubtle);
}
.ab25__progress{
  position:absolute;
  left:7px;top:0;
  width:2px;height:0;
  background:linear-gradient(to bottom,var(--secondStyleColor),var(--accent2));
  transition:height .6s ease;
  z-index:1;
}

.ab25__item{
  position:relative;
  margin-bottom:3.5rem;
  opacity:0;
  transform:translateX(-20px);
  transition:all .5s cubic-bezier(.4,0,.2,1);
}
.ab25__item.visible{opacity:1;transform:translateX(0)}
.ab25__item:last-child{margin-bottom:0}

.ab25__dot{
  position:absolute;
  left:-3rem;top:.3rem;
  width:16px;height:16px;
  border-radius:50%;
  border:3px solid var(--borderSubtle);
  background:var(--bodyBG);
  z-index:2;
  transition:all .3s ease;
}
.ab25__item.visible .ab25__dot{
  border-color:var(--secondStyleColor);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.1);
}

.ab25__card{
  background:var(--bgCard);
  border-radius:var(--borderRadius);
  padding:2rem 2.5rem;
  box-shadow:0 2px 20px rgba(0,0,0,.04);
  border:1px solid var(--borderSubtle);
  transition:all .3s ease;
}
.ab25__item:hover .ab25__card{
  box-shadow:0 8px 35px rgba(0,0,0,.08);
  transform:translateX(4px);
}

.ab25__year{
  display:inline-block;
  font-size:.75rem;font-weight:700;
  letter-spacing:.1em;
  color:var(--textColor2);
  padding:.25rem .75rem;
  border-radius:4px;
  margin-bottom:1rem;
}
.ab25__year--1{background:var(--secondStyleColor)}
.ab25__year--2{background:var(--accent2)}

.ab25__card h3{color:var(--textColor1);margin-bottom:.6rem}
.ab25__card p{color:var(--textSecondary);margin-bottom:1rem}

.ab25__tags{display:flex;gap:.5rem;flex-wrap:wrap}
.ab25__tag{
  font-size:.65rem;font-weight:500;
  letter-spacing:.05em;text-transform:uppercase;
  padding:.3rem .7rem;
  border-radius:4px;
  border:1px solid var(--borderSubtle);
  color:var(--textMuted);
}

.ab25__quote{
  margin-top:5rem;
  text-align:center;
  padding:3rem;
  background:var(--bgCard);
  border-radius:var(--borderRadius);
  border:1px solid var(--borderSubtle);
  opacity:0;transform:translateY(20px);
  transition:all .6s ease;
}
.ab25__quote.visible{opacity:1;transform:translateY(0)}
.ab25__quote-icon{
  font-size:2rem;
  color:var(--secondStyleColor);
  opacity:.3;
  margin-bottom:1rem;
}
.ab25__quote-text{
  font-size:1.15rem;font-weight:400;
  font-style:italic;
  line-height:1.6;
  max-width:600px;margin:0 auto 1rem;
  color:var(--textColor1);
}
.ab25__quote-author{
  font-size:.75rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--textMuted);
}

@media(max-width:768px){
  .ab25__timeline{padding-left:2.5rem}
  .ab25__dot{left:-2.5rem}
  .ab25__card{padding:1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .ab25__item,
  .ab25__quote{animation:none!important;opacity:1;transform:none;transition:none}
}



  /*  */
  .jfwauhcjbbAJKShjdbkhkb {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    && h3 {
      text-transform: uppercase;
    }
    && h4 {
      color: var(--secondStyleColor);
    }
  }
  .jfwauhcjbbAJKShjdbkhkb .container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 100%;
  }

  .jfwauhcjbbAJKShjdbkhkbBg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: 50% 20%;
    z-index: -1;
    opacity: 0.1;
  }

  .col-title {
    font-weight: 700;
    margin: 0 0 22px 0;
    letter-spacing: 0.2px;
  }

  /* Timeline */
  .timeline {
    position: relative;
    padding-left: 90px;
    margin: 0;
    list-style: none;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--secondStyleColor);
    border-radius: 999px;
  }

  .timeline__item {
    position: relative;
    padding: 0 0 34px 0;
  }

  .timeline__item:last-child {
    padding-bottom: 0;
  }

  .timeline__year {
    position: absolute;
    left: -90px;
    top: 0;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.3px;
  }

  .timeline__content h3 {
    margin: 2px 0 8px 0;
    font-weight: 800;
    line-height: 1.2;
  }

  .timeline__content h3 span {
    font-weight: 700;
    color: var(--textColor1);
    margin-left: 8px;
  }

  .timeline__content p {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 520px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .jfwauhcjbbAJKShjdbkhkb .container {
      flex-direction: column;
      gap: 40px;
    }
    .jfwauhcjbbAJKShjdbkhkbBg {
      object-position: 20% 50%;
    }
  }



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

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

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

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

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

  /* Timeline */
  .rm13__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* Central vertical line */
  .rm13__rail {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .rm13__rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      var(--accent2)
    );
    border-radius: 2px;
    transition: height 0.1s linear;
    z-index: 1;
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Milestone row */
  .rm13__milestone {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
  }

  .rm13__milestone:nth-child(odd) {
    flex-direction: row-reverse;
  }

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

  /* Dot on rail */
  .rm13__dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--secondStyleColor);
    z-index: 3;
    transition: all 0.5s ease;
  }

  .rm13__dot--done {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: var(--bodyBG);
  }

  .rm13__dot--active {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent);
    animation: rm13DotPulse 2s ease-in-out infinite;
  }

  .rm13__dot--empty {
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: color-mix(in srgb, var(--textColor1) 35%, transparent);
  }

  @keyframes rm13DotPulse {
    0%, 100% { box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 30px color-mix(in srgb, var(--accent2) 50%, transparent); }
  }

  /* Branch line from dot to card */
  .rm13__branch {
    position: absolute;
    top: 30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2)
    );
    z-index: 2;
  }

  .rm13__milestone:nth-child(odd) .rm13__branch {
    right: calc(50% + 22px);
  }

  .rm13__milestone:nth-child(even) .rm13__branch {
    left: calc(50% + 22px);
  }

  /* Card */
  .rm13__card {
    width: calc(50% - 60px);
    background: var(--bgCard);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    padding: 26px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .rm13__milestone:nth-child(odd) .rm13__card {
    margin-right: auto;
    transform: translateX(-30px);
  }

  .rm13__milestone:nth-child(even) .rm13__card {
    margin-left: auto;
    transform: translateX(30px);
  }

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

  .rm13__card:hover {
    border-color: color-mix(in srgb, var(--accent2) 30%, transparent);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .rm13__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .rm13__date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 12px;
  }

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

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

  .rm13__list li {
    font-size: 13px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding-left: 20px;
    position: relative;
  }

  .rm13__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--secondStyleColor),
      var(--accent2)
    );
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm13__card {
      width: calc(50% - 50px);
      padding: 22px;
    }
  }

  @media (max-width: 768px) {
    .rm13__rail,
    .rm13__rail-fill {
      left: 24px;
      transform: none;
    }

    .rm13__milestone,
    .rm13__milestone:nth-child(odd) {
      flex-direction: column;
      padding-left: 60px;
    }

    .rm13__dot {
      left: 24px;
      top: 0;
    }

    .rm13__branch {
      display: none;
    }

    .rm13__card,
    .rm13__milestone:nth-child(odd) .rm13__card,
    .rm13__milestone:nth-child(even) .rm13__card {
      width: 100%;
      margin: 20px 0 0;
      transform: translateY(20px);
    }

    .rm13__card.visible {
      transform: translateY(0);
    }
  }

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

    .rm13__head {
      margin-bottom: 40px;
    }

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

    .rm13__milestone {
      margin-bottom: 40px;
    }

    .rm13__card {
      padding: 18px;
    }

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

  @media (prefers-reduced-motion: reduce) {
    .rm13__card {
      transition: none;
      opacity: 1;
      transform: none;
    }

    .rm13__dot--active {
      animation: none;
    }

    .rm13__rail-fill {
      transition: none;
    }

    .rm13__dot {
      transition: none;
    }
  }



  /* ===== SOMETHING v9 — Stats with SVG ring progress + dot grid bg ===== */

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

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

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

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

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

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

  /* Grid */
  .sm9__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .sm9__item {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* SVG ring */
  .sm9__ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
  }

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

  .sm9__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 6;
  }

  .sm9__ring-fill {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: calc(2 * 3.14159 * 52);
    stroke-dashoffset: calc(2 * 3.14159 * 52 * (1 - var(--p, 0) / 100));
    transition: stroke-dashoffset 0.8s ease;
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--secondStyleColor) 30%, transparent));
  }

  .sm9__value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondStyleColor);
  }

  .sm9__item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
  }

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

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

  @media (max-width: 800px) {
    .sm9__ring {
      width: 90px;
      height: 90px;
    }

    .sm9__value {
      font-size: 20px;
    }

    .sm9__item h3 {
      font-size: 15px;
    }
  }

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

    .sm9__head {
      margin-bottom: 36px;
    }

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

    .sm9__grid {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .sm9__item {
      padding: 22px 12px;
    }

    .sm9__ring {
      width: 80px;
      height: 80px;
      margin-bottom: 14px;
    }

    .sm9__value {
      font-size: 18px;
    }
  }

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

    .sm9__item {
      transition: none;
    }
  }



  /* ===========================
     FAQ 12 — Aurora Cascade
     Staggered glass grid + animated SVG waves + shimmer accents
     =========================== */

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

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

  /* Floating glow blobs */
  .faq12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .faq12__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -100px;
    right: -80px;
    animation: faq12-drift1 28s ease-in-out infinite;
  }

  .faq12__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
    animation: faq12-drift2 33s ease-in-out infinite;
  }

  @keyframes faq12-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, 60px) scale(1.1);
    }
    66% {
      transform: translate(30px, -40px) scale(0.95);
    }
  }

  @keyframes faq12-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(40px, -30px) scale(1.08);
    }
    66% {
      transform: translate(-60px, 50px) scale(0.93);
    }
  }

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

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

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

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

  /* Grid — two columns, right column offset for cascade effect */
  .faq12__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq12__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .faq12__col--offset {
    padding-top: 52px;
  }

  /* Card */
  .faq12__card {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    overflow: hidden;
    transition:
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.45s ease;
    animation: faq12-float 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq12__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow:
      0 12px 40px color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    animation-play-state: paused;
  }

  @keyframes faq12-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  /* Shimmer accent line at top of card */
  .faq12__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 30%,
      var(--secondStyleColor) 50%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: faq12-shimmer 4s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }

  .faq12__card:hover .faq12__accent {
    opacity: 1;
  }

  @keyframes faq12-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Number badge */
  .faq12__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    margin-bottom: 18px;
    animation: faq12-breathe 3.5s ease-in-out infinite;
  }

  @keyframes faq12-breathe {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 18px 4px
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    }
  }

  /* Question */
  .faq12__question {
    margin: 0 0 10px;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Answer */
  .faq12__answer {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0.78;
    transition: opacity 0.3s ease;
  }

  .faq12__card:hover .faq12__answer {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq12__bg * {
      animation: none !important;
    }
    .faq12__glow {
      animation: none !important;
    }
    .faq12__card {
      animation: none !important;
    }
    .faq12__accent {
      animation: none !important;
    }
    .faq12__num {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq12__grid {
      gap: 18px;
    }
    .faq12__col--offset {
      padding-top: 36px;
    }
    .faq12__card {
      padding: 24px 22px 22px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq12__grid {
      grid-template-columns: 1fr;
      max-width: 560px;
    }
    .faq12__col--offset {
      padding-top: 0;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq12__card {
      padding: 22px 18px 20px;
    }
    .faq12__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      margin-bottom: 14px;
    }
  }



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

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

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

  /* ── Logo ── */
  .ft6__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.2s ease;
  }

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

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

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

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

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

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

  /* ── Navigation ── */
  .ft6__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-bottom: 32px;
  }

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

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

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

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

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

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

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

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

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

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

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

    .ft6__nav {
      gap: 16px;
    }

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

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

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

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft6__social a,
    .ft6__nav a,
    .ft6__nav a::after,
    .ft6__logo {
      transition: none;
    }
  }



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}