
:root {
  --bg: #faf8f5;
  --bg-card: #ffffff;
  --text: #2d2a26;
  --text-muted: rgba(0,0,0,0.5);
  --accent: #d85a2a;
  --accent-rgb: 216,90,42;
  --accent2: #6ed82a;
  --accent2-rgb: 110,216,42;
  --accent3: #dc4097;
  --accent3-rgb: 220,64,151;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'DM Sans', sans-serif;
  --font-heading: 'DM Sans', sans-serif;
  --bodyBG: #faf8f5;
  --textColor1: #2d2a26;
  --textColor2: #ffffff;
  --textSecondary: #605e5a;
  --textMuted: #94918e;
  --secondStyleColor: #d85a2a;
  --bgCard: #ffffff;
  --bgAlt: #eae8e4;
  --borderSubtle: rgba(0,0,0,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(0,0,0,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: #000; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(0,0,0,0.05); }

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

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

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

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

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

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

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


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

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

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

  /* layout */

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

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

  .logo {
    font-family:
      system-ui,
      -apple-system,
      "SF Pro Text",
      "Segoe UI",
      sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

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

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

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

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

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ссылки */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile__menu {
    display: none;
  }

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

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

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

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

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

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

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

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

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

    header .btn {
      display: none;
    }
  }

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

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

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



  /* ===== hero shell ===== */
  .z9q-heroBox {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 24px);
    background:
      radial-gradient(
        900px 450px at 20% 20%,
        color-mix(in srgb, var(--secondStyleColor) 35%, transparent),
        transparent 55%
      ),
      radial-gradient(
        700px 380px at 75% 30%,
        color-mix(in srgb, var(--secondStyleColor) 30%, transparent),
        transparent 55%
      ),
      radial-gradient(
        500px 380px at 55% 95%,
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 10%, transparent),
        color-mix(in srgb, var(--textColor2) 10%, transparent) 15%,
        color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
      );

    display: flex;
    align-items: center;
    width: 100%;
    isolation: isolate;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      opacity: 0.1;
      z-index: -1;
      inset: 0;
    }
  }

  .z9q-heroBox::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--borderRadius);
    pointer-events: none;
  }

  /* left/right striped “curtains” */
  .k2p-curtain,
  .k2p-curtain2 {
    position: absolute;
    top: -40px;
    bottom: -60px;
    width: 34%;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
  }

  .k2p-curtain {
    left: -8%;
    transform: skewX(-12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(60% 70% at 65% 50%, #000 60%, transparent 100%);
  }

  .k2p-curtain2 {
    right: -10%;
    transform: skewX(12deg);
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.12) 0 10px,
      rgba(255, 255, 255, 0.02) 10px 26px
    );
    mask-image: radial-gradient(65% 70% at 35% 55%, #000 60%, transparent 100%);
  }

  /* subtle diagonal lines behind */
  .p7x-gridwash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 45%),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.045) 0 1px,
        transparent 1px 18px
      );
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
  }

  /* ===== main layout ===== */
  .n0v-stage {
    position: relative;
    z-index: 2;
  }

  .t5q-centerCopy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .x8h-title {
    color: var(--textColor1);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .g7p-sub {
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto;
  }

  .j3c-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--textColor1);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.2s all linear;
    width: fit-content;
    &&:hover {
      transform: translateY(-5px);
    }
  }

  /* ===== responsive rules ===== */
  @media (max-width: 780px) {
    .z9q-heroBox {
      min-height: 550px;
    }
    .t5q-centerCopy {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin: 10px auto 12px;
      padding: 0 6px;
    }

    .k2p-curtain,
    .k2p-curtain2 {
      opacity: 0.55;
      width: 46%;
    }
  }



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

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

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

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

  .toc {
    background-color: transparent;
  }

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

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

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

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

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

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

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

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

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

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

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

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }



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

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

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

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

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

  /* Timeline wrapper */
  .rm12__wrapper {
    position: relative;
    overflow: hidden;
  }

  /* Connecting line */
  .rm12__line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    border-radius: 2px;
    z-index: 0;
  }

  .rm12__line-glow {
    position: absolute;
    inset: -3px 0;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      var(--accent2),
      transparent
    );
    filter: blur(8px);
    opacity: 0.4;
    animation: rm12LineGlow 3s ease-in-out infinite alternate;
  }

  @keyframes rm12LineGlow {
    0% { opacity: 0.25; }
    100% { opacity: 0.55; }
  }

  /* Scrollable track */
  .rm12__track {
    display: flex;
    gap: 40px;
    padding: 40px 60px 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    align-items: flex-start;
  }

  .rm12__track::-webkit-scrollbar {
    display: none;
  }

  /* Phase card */
  .rm12__card {
    position: relative;
    z-index: 1;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    background: var(--bgCard);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-radius: var(--borderRadius);
    padding: 28px 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

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

  .rm12__card:hover {
    border-color: color-mix(in srgb, var(--accent2) 40%, transparent);
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent2) 10%, transparent);
  }

  /* Connector dot */
  .rm12__dot {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    border: 3px solid var(--bodyBG);
    box-shadow: 0 0 12px color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .rm12__dot--pulse {
    background: var(--accent2);
    border-color: var(--bodyBG);
    box-shadow: 0 0 12px color-mix(in srgb, var(--accent2) 50%, transparent);
    animation: rm12DotPulse 2s ease-in-out infinite;
  }

  .rm12__dot--empty {
    background: transparent;
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

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

  .rm12__stem {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, var(--secondStyleColor), transparent);
    transform: translateX(-50%);
  }

  /* Status badge */
  .rm12__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    white-space: nowrap;
  }

  .rm12__status--completed {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  .rm12__status--active {
    background: color-mix(in srgb, var(--accent2) 15%, transparent);
    color: var(--accent2);
    border-color: color-mix(in srgb, var(--accent2) 28%, transparent);
    animation: rm12PulseStatus 2s ease-in-out infinite;
  }

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

  .rm12__status i {
    font-size: 9px;
  }

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

  .rm12__date {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .rm12__date i {
    margin-right: 4px;
  }

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

  /* Nav arrows */
  .rm12__nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .rm12__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: var(--bgCard);
    color: var(--secondStyleColor);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .rm12__arrow:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 20px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Scroll indicator */
  .rm12__dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 6px;
  }

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

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

  /* Responsive */
  @media (max-width: 950px) {
    .rm12__track {
      padding: 40px 32px 50px;
      gap: 28px;
    }
  }

  @media (max-width: 768px) {
    .rm12__track {
      padding: 40px 24px 50px;
      gap: 24px;
    }

    .rm12__card {
      min-width: 250px;
      max-width: 250px;
    }

    .rm12__line {
      left: 24px;
      right: 24px;
    }
  }

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

    .rm12__head {
      margin-bottom: 36px;
    }

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

    .rm12__card {
      min-width: 230px;
      max-width: 230px;
      padding: 24px 18px;
    }

    .rm12__arrow {
      width: 40px;
      height: 40px;
    }
  }

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

    .rm12__dot--pulse {
      animation: none;
    }

    .rm12__status--active {
      animation: none;
    }

    .rm12__line-glow {
      animation: none;
    }

    .rm12__arrow {
      transition: none;
    }

    .rm12__scroll-dot {
      transition: none;
    }
  }



  /* ===== TESTIMONIALS SECTION STARS (VARIANT 3) ===== */

  .testimonialsSection-stars {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

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

  /* Header */
  .testimonialsStarsHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .testimonialsEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .testimonialsTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .testimonialsSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* Grid */
  .testimonialsStarsGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  /* Card base */
  .testimonialStarCard {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 22px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.2s ease;
    overflow: hidden;
  }

  .testimonialStarCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .testimonialStarCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  .testimonialStarCard:hover::before {
    opacity: 1;
  }

  /* Highlighted main card */
  .testimonialStarCard--highlight {
    grid-row: span 2;
  }

  /* Stars row */
  .testimonialStarsRow {
    display: flex;
    gap: 4px;
    font-size: 14px;
  }

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

  /* Text + meta */
  .testimonialStarText {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  .testimonialStarMeta {
    margin-top: 4px;
  }

  .testimonialStarName {
    font-size: 15px;
    font-weight: 600;
  }

  .testimonialStarRole {
    font-size: 13px;
    color: var(--textMuted);
  }

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

    .testimonialStarCard--highlight {
      grid-row: auto;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

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

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

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

    .gl11__item img {
      transition: none;
    }
  }



  /* ===== HOW v11 — Accordion ===== */

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

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

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

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

  .hw11__accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hw11__item {
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .hw11__item[open] {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .hw11__summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
  }

  .hw11__summary::-webkit-details-marker {
    display: none;
  }

  .hw11__summary::marker {
    content: "";
  }

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

  .hw11__num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .hw11__label {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
  }

  .hw11__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    position: relative;
    transition: transform 0.3s ease;
  }

  .hw11__icon::before,
  .hw11__icon::after {
    content: "";
    position: absolute;
    background: var(--secondStyleColor);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hw11__icon::before {
    width: 12px;
    height: 2px;
  }

  .hw11__icon::after {
    width: 2px;
    height: 12px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .hw11__item[open] .hw11__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  .hw11__body {
    padding: 0 24px 22px 84px;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw11__accordion {
      max-width: 100%;
    }
  }

  @media (max-width: 800px) {
    .hw11__body {
      padding: 0 20px 20px 20px;
    }

    .hw11__summary {
      gap: 14px;
      padding: 18px 20px;
    }

    .hw11__label {
      font-size: 16px;
    }
  }

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

    .hw11__head {
      margin-bottom: 32px;
    }

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

    .hw11__summary {
      gap: 12px;
      padding: 16px 16px;
    }

    .hw11__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      border-radius: 10px;
    }

    .hw11__label {
      font-size: 15px;
    }

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

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

    .hw11__icon {
      width: 24px;
      height: 24px;
    }

    .hw11__icon::before {
      width: 10px;
    }

    .hw11__icon::after {
      height: 10px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw11__icon,
    .hw11__icon::after,
    .hw11__item {
      transition: none;
    }
  }



  /* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

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

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

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

  .ab18__cell--hero:hover img {
    transform: scale(1.04);
  }

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

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

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

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

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

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

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ab18__feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

  .ab18__feat-icon i {
    font-size: 17px;
    color: var(--secondStyleColor);
  }

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

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

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

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

  .ab18__cell--img2:hover img {
    transform: scale(1.04);
  }

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

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

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

  @media (max-width: 800px) {
    .ab18__cell--intro h2 {
      font-size: 22px;
    }

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

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

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      transition: none;
    }
  }



  /* ===== FEATURES v15 — SVG dot-grid bg + staggered masonry ===== */

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

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

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

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

  .ft15__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

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

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

  /* Masonry grid */
  .ft15__masonry {
    columns: 3;
    column-gap: 18px;
  }

  .ft15__card {
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.03);
    padding: 26px 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* Image cards */
  .ft15__card--tall,
  .ft15__card--wide {
    padding: 0;
    overflow: hidden;
  }

  .ft15__card-img {
    overflow: hidden;
  }

  .ft15__card--tall .ft15__card-img {
    aspect-ratio: 4 / 3;
  }

  .ft15__card--wide .ft15__card-img {
    aspect-ratio: 16 / 8;
  }

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

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

  .ft15__card-body {
    padding: 20px 22px 24px;
  }

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

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

  /* Icon cards */
  .ft15__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;
  }

  .ft15__card:hover .ft15__ico {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ft15__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

  .ft15__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) {
    .ft15__masonry {
      columns: 2;
    }
  }

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

    .ft15__card p,
    .ft15__card-body p {
      font-size: 13px;
    }
  }

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

    .ft15__head {
      margin-bottom: 36px;
    }

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

    .ft15__masonry {
      columns: 1;
    }
  }

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



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

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

  /* ── Gradient Overlay ── */
  .faq13__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 20%,
        color-mix(in srgb, var(--secondStyleColor) 12%, 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%
      );
  }

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

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

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

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

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

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

  /* ── List ── */
  .faq13__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── Item ── */
  .faq13__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;
  }

  .faq13__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 ── */
  .faq13__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    transition: background 0.2s ease;
  }

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

  /* ── Number ── */
  .faq13__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.35s ease;
  }

  .faq13__item--open .faq13__num {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

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

  /* ── Plus/Minus Icon ── */
  .faq13__icon {
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
  }

  .faq13__icon::before,
  .faq13__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--textColor1);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .faq13__icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
  }

  .faq13__icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .faq13__item--open .faq13__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .faq13__item--open .faq13__icon::before,
  .faq13__item--open .faq13__icon::after {
    background: var(--secondStyleColor);
  }

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

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

  .faq13__item--open .faq13__answer {
    opacity: 1;
    transform: translateY(0);
  }

  .faq13__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) {
    .faq13 {
      padding: clamp(48px, 6vw, 80px) 20px;
    }
  }

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

    .faq13__trigger {
      padding: 18px 20px;
      gap: 12px;
    }
  }

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

    .faq13__num {
      width: 32px;
      height: 32px;
      font-size: 12px;
      border-radius: 8px;
    }

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

    .faq13__answer {
      padding: 0 16px 20px 16px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq13__body,
    .faq13__answer,
    .faq13__icon::before,
    .faq13__icon::after,
    .faq13__item,
    .faq13__num {
      transition: none;
    }
  }



  .ft8 {
    position: relative;
    padding: 0 20px 28px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Animated Top Border ── */
  .ft8__border {
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor),
      var(--accent2),
      var(--secondStyleColor)
    );
    background-size: 300% 100%;
    animation: ft8BorderFlow 6s linear infinite;
    margin-bottom: 48px;
  }

  @keyframes ft8BorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
  }

  /* ── Container ── */
  .ft8 .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 ── */
  .ft8__logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.25s ease;
  }

  .ft8__logo:hover {
    opacity: 0.8;
  }

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

  /* ── Divider ── */
  .ft8__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
    border-radius: 2px;
    margin-bottom: 28px;
    animation: ft8DividerPulse 3s ease-in-out infinite;
  }

  @keyframes ft8DividerPulse {
    0%, 100% { width: 60px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
  }

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

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

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

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

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

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

  .ft8__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .ft8__social a:hover {
    color: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* ── Bottom ── */
  .ft8__bottom {
    display: flex;
    align-items: center;
  }

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

  /* ── Responsive ── */
  @media (max-width: 800px) {
    .ft8__border {
      margin-bottom: 36px;
    }

    .ft8__nav {
      gap: 20px;
    }
  }

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

    .ft8__border {
      margin-bottom: 32px;
    }

    .ft8__logo {
      font-size: 22px;
    }

    .ft8__desc {
      font-size: 13px;
    }

    .ft8__nav {
      gap: 16px;
    }

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

    .ft8__social a {
      width: 38px;
      height: 38px;
      font-size: 14px;
    }

    .ft8__social {
      gap: 10px;
    }
  }

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

    .ft8__divider {
      animation: none;
    }

    .ft8__social a,
    .ft8__nav a,
    .ft8__nav a::after,
    .ft8__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}