
:root {
  --bg: #1b2d1b;
  --bg-card: #243524;
  --text: #d4e7d4;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #4caf50;
  --accent-rgb: 76,175,80;
  --accent2: #4c8aaf;
  --accent2-rgb: 76,138,175;
  --accent3: #a5b85c;
  --accent3-rgb: 165,184,92;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --bodyBG: #1b2d1b;
  --textColor1: #d4e7d4;
  --textColor2: #111111;
  --textSecondary: #a6b9a6;
  --textMuted: #788a78;
  --secondStyleColor: #4caf50;
  --bgCard: #243524;
  --bgAlt: #2a3c2a;
  --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;
    }
  }



  /*  */
  .vfdsdc {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px) 0;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .vfdsdcBGIMG {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: 50% 20%;
    filter: blur(5px);
    opacity: 0.2;
  }
  /* Белый “треугольник” снизу (диагональный срез) */
  .vfdsdc::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 56%;
    background: var(--bodyBG);
    -webkit-mask-image: radial-gradient(
      120% 100% at 50% 0%,
      transparent 60%,
      #000 61%
    );
    mask-image: radial-gradient(120% 100% at 50% 0%, transparent 60%, #000 61%);

    pointer-events: none;
    pointer-events: none;
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    gap: 60px;
    && h1 {
      text-transform: uppercase;
      text-wrap: balance;
      text-align: right;
      font-weight: 900;
    }
  }

  .hero__content {
    margin: 0 0 14px;
    color: var(--textColor1);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 20px;
    && p {
      max-width: 700px;
      text-align: right;
    }
  }

  .hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--textColor2);
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    width: fit-content;
    transition: 0.2s all linear;
    margin-left: auto;
  }

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

  .hero__phone a {
    color: inherit;
    text-decoration: none;
  }

  .hero__phoneIcon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero__art {
    display: flex;
    width: 450px;
    height: 550px;
    align-items: center;
    justify-content: center;
    && img {
      width: 100%;
      height: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  .hero__svg {
    width: min(440px, 100%);
    height: auto;
  }

  /* Адаптив */
  @media (max-width: 860px) {
    .vfdsdc {
      min-height: 500px;
    }
    .hero__art {
      display: none;
    }
    .hero__btn {
      margin: 0 auto;
    }

    .hero::after {
      height: 40%;
      clip-path: polygon(0 65%, 100% 20%, 100% 100%, 0% 100%);
    }
    .vfdsdc::after {
      display: none;
    }
    .hero__inner {
      && h1 {
        font-size: 36px;
        text-align: center;
      }
      && p {
        text-align: center;
        text-wrap: balance;
      }
    }
  }



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



  .about-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .models__cards_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .card-mod {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    color: var(--textColor1);
    h3,
    p {
      padding-left: 10px;
      color: var(--textColor1);
    }
    img {
      border-radius: var(--borderRadius);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 20%;
    }
  }

  @media (max-width: 800px) {
    .models__cards_container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .card-mod {
      width: 100%;
      height: fit-content;

      img {
        height: 300px;
      }
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



  /*  */
  .zq9-pulse {
    padding: clamp(18px, 3vw, 40px) 0;
    color: var(--txt);
  }

  .zq9-head {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(14px, 2vw, 22px);
  }

  .zq9-title {
    line-height: 1.15;
    margin: 0;
    letter-spacing: 0.2px;
  }

  .zq9-sub {
    margin: 0;
    color: var(--textColor1);
    white-space: nowrap;
  }

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

  .zq9-card {
    position: relative;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    overflow: hidden;
    padding: 16px;
    min-height: 168px;
  }

  .zq9-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(
      400px 120px at 20% 0%,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
      transparent 60%
    );
    pointer-events: none;
    opacity: 0.9;
  }

  .zq9-card:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-1px);
    transition:
      transform 220ms ease,
      border-color 220ms ease;
  }

  .zq9-card * {
    position: relative;
    z-index: 1;
  }

  .zq9-card--big {
    padding: clamp(18px, 2.4vw, 28px);
    min-height: 260px;
  }

  .zq9-kicker {
    margin: 0 0 10px;
    color: var(--textColor1);
  }

  .zq9-pay {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
  }

  .zq9-payNum {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 650;
    letter-spacing: -0.5px;
  }

  .zq9-payUnit {
    font-size: 14px;
    color: var(--textColor1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Decorative “3D” blob + ribs like in the reference */
  .zq9-deco {
    position: absolute;
    left: -70px;
    bottom: -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
      radial-gradient(
        circle at 38% 35%,
        rgba(255, 255, 255, 0.14),
        transparent 55%
      ),
      radial-gradient(
        circle at 62% 70%,
        rgba(76, 222, 255, 0.24),
        transparent 60%
      ),
      radial-gradient(
        circle at 50% 50%,
        rgba(76, 222, 255, 0.12),
        rgba(0, 0, 0, 0) 60%
      );
    filter: blur(0.2px);
    opacity: 0.95;
    transform: rotate(-12deg);
    z-index: 0;
  }

  .zq9-ribs {
    position: absolute;
    left: -24px;
    bottom: -18px;
    width: 280px;
    height: 240px;
    background: repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 2px,
      rgba(255, 255, 255, 0) 10px,
      rgba(255, 255, 255, 0) 16px
    );
    mask-image: radial-gradient(circle at 45% 55%, #000 0 48%, transparent 70%);
    opacity: 0.9;
    z-index: 0;
  }

  .zq9-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .zq9-top {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
  }

  .zq9-h3 {
    margin: 0;
    font-weight: 600;
    color: var(--textColor1);
  }

  .zq9-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--textColor1);
    font-size: 20px;
  }

  .zq9-miniA {
    opacity: 0.75;
  }
  .zq9-miniSep {
    opacity: 0.55;
  }
  .zq9-miniB {
    color: var(--secondStyleColor);
  }

  .zq9-chart {
    padding: 6px 0 2px;
  }

  .zq9-chart svg {
    width: 100%;
    height: 120px;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(76, 222, 255, 0.1));
  }

  .zq9-foot {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
  }

  .zq9-badge {
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    background: var(--bodyBG);
    color: var(--textColor1);
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .zq9-badge--down {
    border-color: rgba(76, 222, 255, 0.18);
    background: rgba(76, 222, 255, 0.06);
  }

  .zq9-badge--up {
    border-color: rgba(76, 222, 255, 0.26);
    background: rgba(76, 222, 255, 0.1);
  }

  /* Responsive layout similar to reference */
  @media (min-width: 860px) {
    .zq9-grid {
      grid-template-columns: 1.05fr 2fr;
      align-items: stretch;
    }
    .zq9-card--big {
      min-height: 360px;
    }
    .zq9-metrics {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (min-width: 520px) and (max-width: 859px) {
    .zq9-metrics {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .zq9-card:hover {
      transform: none;
    }
    .zq9-card {
      transition: none;
    }
  }



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

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

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

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

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

  .rm1__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
    padding-left: 32px;
  }

  .rm1__line {
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 15%, transparent));
  }

  .rm1__item {
    position: relative;
  }

  .rm1__dot {
    position: absolute;
    left: -32px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    z-index: 1;
  }

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

  .rm1__card {
    padding: 20px 24px;
    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;
  }

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

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

  .rm1__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
  }

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

  @media (max-width: 600px) {
    .rm1 { padding: 48px 0; }
    .rm1__head { margin-bottom: 36px; }
    .rm1__timeline { padding-left: 28px; }
    .rm1__dot { left: -28px; width: 14px; height: 14px; }
    .rm1__line { left: 6px; }
  }

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



  /* ===== EXTRA v15 — CTA with gradient waves, floating shapes, scan line ===== */

  .ex15 {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 130px) 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textColor1);
  }

  /* animated gradient waves */
  .ex15__waves {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 20% 80%, rgba(var(--accent-rgb), 0.18), transparent),
      radial-gradient(ellipse 60% 40% at 80% 20%, rgba(var(--accent2-rgb), 0.14), transparent),
      radial-gradient(ellipse 100% 60% at 50% 100%, rgba(var(--accent-rgb), 0.1), transparent);
    animation: ex15Wave 8s ease-in-out infinite alternate;
  }

  @keyframes ex15Wave {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-12px); }
    100% { transform: scale(1) translateY(6px); }
  }

  /* grain overlay */
  .ex15__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
  }

  /* floating shapes */
  .ex15__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(1px);
    animation: ex15Float 12s ease-in-out infinite;
  }

  .ex15__shape--1 {
    width: 180px;
    height: 180px;
    background: var(--secondStyleColor);
    top: 10%;
    left: 5%;
    animation-duration: 14s;
  }

  .ex15__shape--2 {
    width: 120px;
    height: 120px;
    background: var(--accent2);
    bottom: 15%;
    right: 8%;
    animation-delay: -4s;
  }

  .ex15__shape--3 {
    width: 80px;
    height: 80px;
    background: var(--secondStyleColor);
    top: 50%;
    right: 20%;
    animation-delay: -8s;
    border-radius: 4px;
    transform: rotate(45deg);
  }

  @keyframes ex15Float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(8deg); }
    66% { transform: translateY(15px) rotate(-5deg); }
  }

  /* corner brackets */
  .ex15__brackets {
    position: absolute;
    inset: 28px;
    pointer-events: none;
    z-index: 1;
  }

  .ex15__brackets span {
    position: absolute;
    width: 36px;
    height: 36px;
    border-color: var(--accent2);
    border-style: solid;
    opacity: 0.35;
  }

  .ex15__brackets span:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; }
  .ex15__brackets span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; }
  .ex15__brackets span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
  .ex15__brackets span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

  /* scan line */
  .ex15__scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondStyleColor), transparent);
    opacity: 0.25;
    animation: ex15Scan 4s linear infinite;
    z-index: 1;
  }

  @keyframes ex15Scan {
    0% { top: 0; }
    100% { top: 100%; }
  }

  /* content */
  .ex15 .container {
    position: relative;
    z-index: 2;
  }

  .ex15__content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }

  .ex15__content h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 5.5vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--textColor1);
    text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.35),
                 0 0 80px rgba(var(--accent-rgb), 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }

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

  .ex15__content p {
    margin: 0 0 36px;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.15s, transform 0.7s 0.15s;
  }

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

  /* buttons */
  .ex15__btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
  }

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

  .ex15__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    font-size: 15px;
    font-weight: 700;
    color: var(--bodyBG);
    background: var(--secondStyleColor);
    border: none;
    border-radius: var(--borderRadius);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 24px color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .ex15__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .ex15__btn-sec {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 15px;
    color: var(--accent2);
    background: transparent;
    border: 1.5px solid color-mix(in srgb, var(--accent2) 40%, transparent);
    border-radius: var(--borderRadius);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }

  .ex15__btn-sec:hover {
    background: color-mix(in srgb, var(--accent2) 8%, transparent);
    border-color: var(--accent2);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .ex15__content h2 {
      font-size: 28px;
    }
  }

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

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

    .ex15__btns {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ex15__waves,
    .ex15__shape,
    .ex15__scanline {
      animation: none;
    }

    .ex15__content h2,
    .ex15__content p,
    .ex15__btns,
    .ex15__btn,
    .ex15__btn-sec {
      transition: none;
    }
  }



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

  .rv7__head {
    margin-bottom: 40px;
  }

  .rv7__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 14px;
  }

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

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

  /* Horizontal scroll */
  .rv7__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    cursor: grab;
  }

  .rv7__scroll::-webkit-scrollbar { display: none; }
  .rv7__scroll:active { cursor: grabbing; }

  .rv7__card {
    flex: 0 0 clamp(280px, 34vw, 380px);
    scroll-snap-align: start;
    padding: 28px 24px 22px;
    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: 18px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

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

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

  .rv7__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
  }

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

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

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

  .rv7__stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
    font-size: 12px;
  }

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

  @media (max-width: 600px) {
    .rv7 { padding: 48px 0; }
    .rv7__head { margin-bottom: 28px; }
    .rv7__card { flex: 0 0 85vw; padding: 22px 18px 18px; }
    .rv7__stars { margin-left: 0; margin-top: 4px; }
  }



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

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

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

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

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

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

  .gl1__item {
    border-radius: var(--borderRadius);
    overflow: hidden;
    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;
  }

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

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

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

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

  .gl1__info {
    padding: 16px 18px;
  }

  .gl1__info h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
  }

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

  @media (max-width: 900px) {
    .gl1__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .gl1 { padding: 48px 0; }
    .gl1__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .gl1__head { margin-bottom: 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl1__item, .gl1__img img { transition: none; }
  }



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

  /* ── Background Image ── */
  .faq15__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ── Gradient Overlay ── */
  .faq15__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 70% 30%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 92%, transparent) 0%,
        color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
        color-mix(in srgb, var(--bodyBG) 95%, transparent) 100%
      );
  }

  /* ── Diagonal Lines Pattern ── */
  .faq15::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image: repeating-linear-gradient(
      135deg,
      var(--secondStyleColor) 0 1px,
      transparent 1px 40px
    );
    pointer-events: none;
  }

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

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

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

  .faq15__kicker i {
    font-size: 12px;
  }

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

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

  /* ── Two-Column Grid ── */
  .faq15__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }

  .faq15__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── Item ── */
  .faq15__item {
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .faq15__item--open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    box-shadow: 0 8px 32px
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* ── Trigger Button ── */
  .faq15__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    transition:
      background 0.2s ease,
      color 0.3s ease;
  }

  .faq15__trigger:hover {
    background: color-mix(in srgb, var(--textColor1) 4%, transparent);
    color: var(--secondStyleColor);
  }

  .faq15__item--open .faq15__trigger {
    color: var(--secondStyleColor);
  }

  /* ── Number ── */
  .faq15__num {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    min-width: 28px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    transition: color 0.35s ease;
  }

  .faq15__item--open .faq15__num {
    color: var(--secondStyleColor);
  }

  /* ── Question Text ── */
  .faq15__question {
    flex: 1;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  /* ── Active Indicator Dot ── */
  .faq15__indicator {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
    transition:
      background 0.3s ease,
      box-shadow 0.3s ease;
  }

  .faq15__item--open .faq15__indicator {
    background: var(--secondStyleColor);
    box-shadow: 0 0 8px var(--secondStyleColor);
  }

  /* ── Body (collapsible) ── */
  .faq15__body {
    overflow: hidden;
    height: 0;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* ── Answer ── */
  .faq15__answer {
    padding: 0 20px 20px 62px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.35s 0.1s ease,
      transform 0.35s 0.1s ease;
  }

  .faq15__item--open .faq15__answer {
    opacity: 1;
    transform: translateY(0);
  }

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

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .faq15 {
      padding: clamp(48px, 6vw, 80px) 20px;
    }
  }

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

    .faq15__answer {
      padding-left: 20px;
    }
  }

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

    .faq15__trigger {
      padding: 16px;
      gap: 10px;
    }

    .faq15__answer {
      padding: 0 16px 18px 16px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq15__body,
    .faq15__answer,
    .faq15__indicator,
    .faq15__item,
    .faq15__trigger,
    .faq15__num {
      transition: none;
    }
  }



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