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

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

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

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

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

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

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

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

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

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

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


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

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

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

  /* layout */

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

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

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

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

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

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

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

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

  /* ссылки */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile__menu {
    display: none;
  }

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

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

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

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

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

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

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

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

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

    header .btn {
      display: none;
    }
  }

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

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

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



  .home {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .heroContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    h1 {
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    p {
      text-align: center;
    }
  }
  .imageWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
  .image {
    width: 400px;
    height: 300px;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      object-position: 50% 20%;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .main__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .btn {
    display: inline-block;
    width: 100%;
    border-radius: 100px;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 16px 20px;
    width: fit-content;
    color: var(--textColor2);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  .btn__fill {
    background-color: var(--secondStyleColor);
  }

  @media (max-width: 800px) {
    .home {
      height: fit-content;
    }
    .imageWrapper {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }
    .image {
      width: 300px;
      height: 200px;
    }
  }



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



  /* ===== PARTNERS v7 — Hexagonal showcase ===== */

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

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

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

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

  .pt7__stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  /* Hexagonal container */
  .pt7__hex {
    position: relative;
    width: min(300px, 70vw);
    aspect-ratio: 1 / 1.15;
  }

  .pt7__hex-glow {
    position: absolute;
    inset: -20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--secondStyleColor);
    opacity: 0.08;
    filter: blur(20px);
    animation: pt7Glow 3s ease-in-out infinite alternate;
  }

  @keyframes pt7Glow {
    0% { opacity: 0.06; }
    100% { opacity: 0.14; }
  }

  .pt7__hex-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    border: none;
    transition: transform 0.3s ease;
  }

  .pt7__hex-inner::before {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--bodyBG);
    z-index: 0;
  }

  .pt7__hex-inner:hover {
    transform: scale(1.04);
  }

  .pt7__hex-inner img {
    position: relative;
    z-index: 1;
    max-width: 55%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  }

  /* Connecting lines */
  .pt7__lines {
    display: flex;
    gap: 40px;
  }

  .pt7__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(
      180deg,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
  }

  .pt7__line--1 { animation: pt7Blink 2s ease infinite 0s; }
  .pt7__line--2 { animation: pt7Blink 2s ease infinite 0.4s; }
  .pt7__line--3 { animation: pt7Blink 2s ease infinite 0.8s; }

  @keyframes pt7Blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
  }

  /* Badges */
  .pt7__badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pt7__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
    transition: border-color 0.3s ease;
  }

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

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

  /* Responsive */
  @media (max-width: 800px) {
    .pt7__hex {
      width: min(240px, 65vw);
    }

    .pt7__badge {
      padding: 8px 14px;
      font-size: 12px;
    }
  }

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

    .pt7__head {
      margin-bottom: 36px;
    }

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

    .pt7__hex {
      width: min(200px, 60vw);
    }

    .pt7__badges {
      gap: 10px;
    }

    .pt7__badge {
      padding: 7px 12px;
      font-size: 11px;
    }

    .pt7__lines {
      gap: 28px;
    }

    .pt7__line {
      height: 28px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt7__hex-glow,
    .pt7__line {
      animation: none;
    }
    .pt7__hex-inner,
    .pt7__badge {
      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;
    }
  }



  /* ===== PLANS v17 — Neon toggle cards with scanlines + clip-path ===== */

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

  /* Scanlines overlay */
  .pl17::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      color-mix(in srgb, var(--secondStyleColor) 1.5%, transparent) 3px,
      color-mix(in srgb, var(--secondStyleColor) 1.5%, transparent) 4px
    );
    pointer-events: none;
    z-index: 1;
  }

  .pl17__header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 48px;
  }

  .pl17__header h2 {
    margin: 0 0 32px;
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 700;
    color: var(--secondStyleColor);
    text-shadow: 0 0 30px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Toggle */
  .pl17__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .pl17__toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    transition: color 0.3s, text-shadow 0.3s;
    cursor: default;
  }

  .pl17__toggle-label--active {
    color: var(--secondStyleColor);
    text-shadow: 0 0 10px color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  .pl17__switch {
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid var(--accent2);
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s;
    box-shadow: 0 0 15px color-mix(in srgb, var(--accent2) 20%, transparent);
  }

  .pl17__switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 12px var(--secondStyleColor);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pl17__switch--yearly::after {
    transform: translateX(30px);
  }

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

  /* Grid */
  .pl17__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }

  /* Card */
  .pl17__card {
    position: relative;
    background: color-mix(in srgb, var(--bodyBG) 90%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    padding: clamp(32px, 4vw, 40px) clamp(22px, 3vw, 28px);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  }

  .pl17__card.visible {
    animation: pl17FadeUp 0.6s ease forwards;
  }

  @keyframes pl17FadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Top accent line */
  .pl17__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
  }

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

  /* Popular card */
  .pl17__card--popular {
    border-color: var(--accent3);
  }

  .pl17__card--popular::before {
    background: linear-gradient(90deg, var(--accent3), var(--accent2));
  }

  .pl17__card--popular.visible {
    animation: pl17PulsingBorder 3s ease-in-out infinite, pl17FadeUp 0.6s ease forwards;
  }

  @keyframes pl17PulsingBorder {
    0%, 100% { box-shadow: 0 0 15px color-mix(in srgb, var(--accent3) 15%, transparent); }
    50% { box-shadow: 0 0 35px color-mix(in srgb, var(--accent3) 30%, transparent); }
  }

  .pl17__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bodyBG);
    background: var(--accent3);
    padding: 4px 14px;
    margin-bottom: 16px;
  }

  .pl17__name {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
  }

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

  .pl17__price {
    min-height: 52px;
    margin-bottom: 4px;
  }

  .pl17__value {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondStyleColor);
    transition: opacity 0.3s;
  }

  .pl17__card--popular .pl17__value {
    color: var(--accent3);
    text-shadow: 0 0 20px color-mix(in srgb, var(--accent3) 40%, transparent);
  }

  .pl17__period {
    display: block;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    margin-bottom: 32px;
  }

  .pl17__features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 0 32px;
  }

  .pl17__features li {
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--textColor1) 4%, transparent);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

  .pl17__check {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--secondStyleColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--secondStyleColor);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .pl17__card.visible .pl17__check {
    opacity: 1;
    transform: scale(1);
  }

  .pl17__card--popular .pl17__check {
    border-color: var(--accent3);
    color: var(--accent3);
  }

  /* CTA */
  .pl17__cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 14px 32px;
    color: var(--secondStyleColor);
    border: 2px solid var(--secondStyleColor);
    background: transparent;
    transition: all 0.3s;
    clip-path: polygon(0 6px, 6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
  }

  .pl17__cta:hover {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    box-shadow: 0 0 25px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

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

  .pl17__cta--primary:hover {
    background: var(--accent3);
    color: var(--bodyBG);
    box-shadow: 0 0 25px color-mix(in srgb, var(--accent3) 30%, transparent);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .pl17__grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 8px auto 0;
    }
  }

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

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

    .pl17__card {
      padding: 28px 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pl17__card,
    .pl17__cta,
    .pl17__switch::after,
    .pl17__check,
    .pl17__value {
      animation: none;
      transition: none;
    }
  }



  .aboutWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }
  .about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-left a {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    width: fit-content;
    color: var(--textColor2);
    font-weight: 900;
    text-transform: uppercase;
  }
  .about-right {
    display: flex;
    align-items: center;
    gap: 20px;
    .a_img {
      height: 400px;
      object-position: 50% 20%;
      border-radius: var(--borderRadius);
      img {
        border-radius: inherit;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 20%;
      }
    }
  }
  @media (max-width: 800px) {
    .aboutWrapper {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      width: 100%;
    }
    .a_img {
      width: 100%;
    }
  }



  /* ===== HOW IT WORKS SECTION ===== */

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

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

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

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

  .howTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

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

  /* Steps */
  .howSteps {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .howStepItem {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 24px 20px 22px 20px;
    border: 1px solid var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: 0.2s ease;
  }

  .howStepItem::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;
    transition: 0.25s ease;
    pointer-events: none;
  }

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

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

  /* Badge + text */
  .howStepBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--secondStyleColor);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondStyleColor);
    margin-bottom: 14px;
  }

  .howStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

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

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

    .howStepItem {
      padding: 22px 18px;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .faq10__answer {
    overflow: hidden;
  }

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

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

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

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

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

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

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



  .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;
    max-width: 600px;
    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}