
:root {
  --bg: #0a192f;
  --bg-card: #112240;
  --text: #ccd6f6;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #64ffda;
  --accent-rgb: 100,255,218;
  --accent2: #7364ff;
  --accent2-rgb: 115,100,255;
  --accent3: #87ff7e;
  --accent3-rgb: 135,255,126;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #0a192f;
  --textColor1: #ccd6f6;
  --textColor2: #111111;
  --textSecondary: #9ca7c4;
  --textMuted: #6b7893;
  --secondStyleColor: #64ffda;
  --bgCard: #112240;
  --bgAlt: #1a283f;
  --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: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    /* 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-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: 10px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--borderRadius);
    padding: 10px 20px;
  }

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

  .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 {
    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;
      border: none;
    }

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



.hero32{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;
  background:var(--bodyBG);
}

.hero32__canvas{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;
}

.hero32__glow{
  position:absolute;z-index:0;
  width:60vw;height:60vw;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(var(--accent-rgb),.08) 0%,transparent 65%);
  pointer-events:none;
  animation:hero32glowPulse 6s ease-in-out infinite alternate;
}
@keyframes hero32glowPulse{
  0%{opacity:.6;transform:translate(-50%,-50%) scale(1)}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1.15)}
}

.hero32__grid{
  position:absolute;inset:0;z-index:0;
  background-image:
    linear-gradient(var(--borderSubtle) 1px,transparent 1px),
    linear-gradient(90deg,var(--borderSubtle) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,black 30%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 50%,black 30%,transparent 100%);
}

.hero32__content{
  position:relative;z-index:2;
  max-width:750px;
  margin:0 auto;
  text-align:center;
}

.hero32__eyebrow{
  display:inline-flex;align-items:center;gap:.75rem;
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:2rem;
  animation:hero32fadeUp .7s ease both;
}
.hero32__eyebrow::before,.hero32__eyebrow::after{
  content:'';display:block;
  width:32px;height:2px;
  background:var(--secondStyleColor);
}

.hero32 h1{
  color:var(--textColor1);
  margin-bottom:1.5rem;
  animation:hero32fadeUp .7s ease .1s both;
}

.hero32 p{
  color:var(--textSecondary);
  max-width:520px;
  margin-bottom:2.5rem;
  animation:hero32fadeUp .7s ease .2s both;
}

.hero32__cta{
  display:flex;gap:1.2rem;flex-wrap:wrap;justify-content:center;
  animation:hero32fadeUp .7s ease .3s both;
}

.hero32__btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.85rem 2rem;
  font-size:.9rem;font-weight:600;
  text-decoration:none;border:none;cursor:pointer;
  transition:all .3s ease;
  letter-spacing:.03em;
}
.hero32__btn--fill{
  background:var(--secondStyleColor);color:var(--textColor2);
  clip-path:polygon(0 0,calc(100% - 14px) 0,100% 100%,0 100%);
  padding-right:2.8rem;
}
.hero32__btn--fill:hover{
  background:var(--accent2);
  transform:translateX(4px);
}
.hero32__btn--outline{
  background:transparent;color:var(--textColor1);
  border:1px solid var(--borderSubtle);
  clip-path:polygon(14px 0,100% 0,100% 100%,0 100%);
  padding-left:2.8rem;
}
.hero32__btn--outline:hover{
  border-color:var(--secondStyleColor);
  color:var(--secondStyleColor);
}

.hero32__stats{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:2;
  display:flex;
  border-top:1px solid var(--borderSubtle);
}
.hero32__stat{
  flex:1;
  padding:1.8rem 2rem;
  border-right:1px solid var(--borderSubtle);
  animation:hero32fadeUp .6s ease both;
}
.hero32__stat:last-child{border-right:none}
.hero32__stat:nth-child(1){animation-delay:.5s}
.hero32__stat:nth-child(2){animation-delay:.6s}
.hero32__stat:nth-child(3){animation-delay:.7s}
.hero32__stat:nth-child(4){animation-delay:.8s}
.hero32__stat-value{
  font-size:1.8rem;font-weight:700;
  color:var(--secondStyleColor);
  margin-bottom:.25rem;
}
.hero32__stat-label{
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--textMuted);
}

@keyframes hero32fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:768px){
  .hero32__stats{flex-wrap:wrap}
  .hero32__stat{flex:1 1 50%;border-bottom:1px solid var(--borderSubtle)}
}

@media(prefers-reduced-motion:reduce){
  .hero32__glow,
  .hero32__eyebrow,
  .hero32 h1,
  .hero32 p,
  .hero32__cta,
  .hero32__stat{animation:none!important;opacity:1;transform:none}
}



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

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

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

  .toc {
    background-color: transparent;
  }

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

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

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

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

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

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

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

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

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



  /* ===== HOW v20 — Cards with SVG progress rings + tags ===== */

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

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

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

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

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

  /* Card */
  .hw20__card {
    position: relative;
    padding: 28px 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      170deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .hw20__card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
  }

  /* Top row: icon + ring */
  .hw20__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }

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

  .hw20__card:hover .hw20__icon {
    transform: rotate(-8deg) scale(1.08);
  }

  .hw20__icon i {
    font-size: 20px;
    color: var(--secondStyleColor);
  }

  /* SVG progress ring */
  .hw20__counter {
    position: relative;
    width: 48px;
    height: 48px;
  }

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

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

  .hw20__ring-fg {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 163.36;
    stroke-dashoffset: calc(163.36 - 163.36 * var(--pct) / 100);
    transition: stroke-dashoffset 0.6s ease;
    opacity: 0.6;
  }

  .hw20__card:hover .hw20__ring-fg {
    opacity: 1;
  }

  .hw20__ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.7;
  }

  .hw20__card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Tags */
  .hw20__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .hw20__tags span {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    font-size: 11px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    transition: border-color 0.3s ease, color 0.3s ease;
  }

  .hw20__card:hover .hw20__tags span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    color: var(--secondStyleColor);
  }

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

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

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

    .hw20__card p {
      font-size: 13px;
    }

    .hw20__icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
    }

    .hw20__icon i {
      font-size: 18px;
    }

    .hw20__counter {
      width: 42px;
      height: 42px;
    }
  }

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

    .hw20__head {
      margin-bottom: 36px;
    }

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

    .hw20__track {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .hw20__card {
      padding: 22px 16px 18px;
    }

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

    .hw20__top {
      margin-bottom: 16px;
    }

    .hw20__icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
    }

    .hw20__icon i {
      font-size: 16px;
    }

    .hw20__counter {
      width: 38px;
      height: 38px;
    }

    .hw20__ring-num {
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw20__card,
    .hw20__icon,
    .hw20__ring-fg,
    .hw20__tags span {
      transition: none;
    }
  }



  /* ===== TESTIMONIALS SECTION ALT (VARIANT 2) ===== */

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

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

  /* Header */
  .testimonialsAltHeader {
    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);
  }

  /* List */
  .testimonialsAltList {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Row card */
  .testimonialRow {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;

    border-radius: var(--borderRadius);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.18s ease;
  }

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

  /* Avatar */
  .testimonialAvatar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .testimonialAvatarCircle {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--secondStyleColor);
  }

  /* Body */
  .testimonialRowBody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .testimonialRowHead {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
  }

  .testimonialName {
    font-size: 16px;
    font-weight: 600;
  }

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

  .testimonialTag {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--secondStyleColor);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    white-space: nowrap;
  }

  .testimonialRowText {
    font-size: 14px;
    line-height: 1.7;
    color: #dfdfdf;
  }

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

    .testimonialAvatar {
      justify-content: flex-start;
    }
  }



  .ai-technology h2 {
    text-align: left;
  }
  .ai-technology__body {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .ai-technology__body-text ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }
  .ai-technology__body-img {
    width: 600px;
    height: 500px;
    border-radius: var(--borderRadius);
    img {
      object-fit: cover;
      border-radius: inherit;
      width: 100%;
      height: 100%;
      object-position: 50% 20%;
    }
  }
  .ai-technology__body-text li {
    flex: 1 1 30%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    border-radius: var(--borderRadius);
    background-color: transparent;
    border: 1px solid var(--secondStyleColor);
    color: var(--textColor1);
  }
  .ai-technology__body-text li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* color: var(--pink); */
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    font-family: "Inter", serif;
  }
  .ai-technology__body-text li > span:first-child {
    position: relative;
    z-index: 0; /* чтобы сам span был поверх псевдоэлемента */
  }

  .ai-technology__body-text li > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    p {
      text-align: left;
    }
  }
  .ai-technology__body-text li > div span {
    font-weight: 600;
    font-size: 24px;
    line-height: 31.2px;
  }

  @media (max-width: 800px) {
    .ai-technology__body {
      flex-direction: column;
    }
    .ai-technology__body-img {
      width: 100%;
    }
    .ai-technology__header h2 {
      text-align: center;
    }
  }



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

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

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

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

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

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

  .gl1__item {
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

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

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

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

  .gl1__info {
    padding: 16px 18px;
  }

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

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

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

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

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



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

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

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

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

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

  /* ---- Staircase ---- */
  .rm16__stairs {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Diagonal ribbon behind steps */
  .rm16__ribbon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 4px;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      var(--accent2, var(--secondStyleColor)),
      color-mix(in srgb, var(--secondStyleColor) 15%, transparent)
    );
    border-radius: 4px;
  }

  .rm16__step {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0;
    padding: 0;
    transition: background 0.3s ease;
  }

  /* Staircase indent — each step indented further */
  .rm16__step:nth-child(2) { padding-left: 0; }
  .rm16__step:nth-child(3) { padding-left: 60px; }
  .rm16__step:nth-child(4) { padding-left: 120px; }
  .rm16__step:nth-child(5) { padding-left: 180px; }

  .rm16__index {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 26px;
  }

  .rm16__index span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    background: var(--bodyBG);
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    position: relative;
    z-index: 2;
  }

  .rm16__step--done .rm16__index span {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .rm16__step--active .rm16__index span {
    border-color: var(--accent2, var(--secondStyleColor));
    color: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 18px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 25%, transparent);
    animation: rm16Glow 2s ease-in-out infinite;
  }

  @keyframes rm16Glow {
    0%, 100% { box-shadow: 0 0 18px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 25%, transparent); }
    50% { box-shadow: 0 0 28px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 10%, transparent); }
  }

  .rm16__body {
    padding: 24px 28px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    background: rgba(255, 255, 255, 0.015);
    margin: 8px 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .rm16__step:hover .rm16__body {
    transform: translateX(4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  }

  .rm16__step--active .rm16__body {
    border-color: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 25%, transparent);
    background: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 3%, transparent);
  }

  .rm16__tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    margin-bottom: 10px;
  }

  .rm16__tag--done {
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .rm16__tag--active {
    background: var(--accent2, var(--secondStyleColor));
    color: var(--bodyBG);
    border-color: var(--accent2, var(--secondStyleColor));
  }

  .rm16__body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
  }

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

  /* ---- Responsive ---- */
  @media (max-width: 900px) {
    .rm16__step:nth-child(3) { padding-left: 40px; }
    .rm16__step:nth-child(4) { padding-left: 80px; }
    .rm16__step:nth-child(5) { padding-left: 120px; }
  }

  @media (max-width: 600px) {
    .rm16 { padding: 50px 0; }
    .rm16__head { margin-bottom: 36px; }

    .rm16__step,
    .rm16__step:nth-child(2),
    .rm16__step:nth-child(3),
    .rm16__step:nth-child(4),
    .rm16__step:nth-child(5) {
      padding-left: 0;
      grid-template-columns: 48px 1fr;
    }

    .rm16__ribbon { left: 22px; }
    .rm16__index span { width: 38px; height: 38px; font-size: 13px; }
    .rm16__body { padding: 18px 16px; }
    .rm16__body h3 { font-size: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm16__step--active .rm16__index span { animation: none; }
    .rm16__body { transition: none; }
  }



  /* ===== PLANS v13 — Tab-switched single card ===== */

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

  .pl13__head {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 32px;
  }

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

  .pl13__head h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

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

  /* Tabs */
  .pl13__tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 36px;
    padding: 4px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .pl13__tab {
    padding: 10px 24px;
    border: none;
    border-radius: 100px;
    background: transparent;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
  }

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

  .pl13__tab--active {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .pl13__tab--active:hover {
    color: var(--bodyBG);
  }

  /* Card */
  .pl13__card {
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
  }

  .pl13__card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pl13__card-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(28px, 4vw, 44px);
  }

  .pl13__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .pl13__name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
  }

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

  .pl13__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .pl13__amount {
    font-size: 44px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl13__period {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    font-weight: 500;
  }

  .pl13__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
  }

  .pl13__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  /* Right side */
  .pl13__card-right {
    padding: clamp(28px, 4vw, 44px);
    border-left: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .pl13__card-right h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

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

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

  .pl13__features li i {
    font-size: 12px;
    color: var(--secondStyleColor);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
  }

  .pl13__off {
    opacity: 0.35;
  }

  .pl13__off i {
    color: color-mix(in srgb, var(--textColor1) 35%, transparent) !important;
  }

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

    .pl13__card-right {
      border-left: none;
      border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    }

    .pl13__tab {
      padding: 8px 16px;
      font-size: 13px;
    }
  }

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

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

    .pl13__card-left,
    .pl13__card-right {
      padding: 24px;
    }
  }

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



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