
:root {
  --bg: #f0f4f8;
  --bg-card: #ffffff;
  --text: #2d3748;
  --text-muted: rgba(0,0,0,0.5);
  --accent: #3182ce;
  --accent-rgb: 49,130,206;
  --accent2: #b131ce;
  --accent2-rgb: 177,49,206;
  --accent3: #46d3a2;
  --accent3-rgb: 70,211,162;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'Onest', sans-serif;
  --font-heading: 'Onest', sans-serif;
  --bodyBG: #f0f4f8;
  --textColor1: #2d3748;
  --textColor2: #ffffff;
  --textSecondary: #5e6674;
  --textMuted: #8f96a0;
  --secondStyleColor: #3182ce;
  --bgCard: #ffffff;
  --bgAlt: #e0e5ea;
  --borderSubtle: rgba(0,0,0,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.05);
  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;
    }
  }



  /* Hero Section with Enhanced Animated Background */
  #hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Central Light Core */
  #hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 70%
    );
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  /* Connecting Lines and Dots Background */
  .network-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
  }

  .network-line {
    position: absolute;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    height: 1px;
    transform-origin: left center;
  }

  .network-line:nth-child(1) {
    width: 200px;
    top: 20%;
    left: 10%;
    transform: rotate(25deg);
    animation: pulseLine 4s ease-in-out infinite;
  }

  .network-line:nth-child(2) {
    width: 150px;
    top: 40%;
    right: 20%;
    transform: rotate(-45deg);
    animation: pulseLine 4s ease-in-out infinite 1s;
  }

  .network-line:nth-child(3) {
    width: 180px;
    bottom: 30%;
    left: 30%;
    transform: rotate(60deg);
    animation: pulseLine 4s ease-in-out infinite 2s;
  }

  .network-line:nth-child(4) {
    width: 220px;
    top: 60%;
    right: 15%;
    transform: rotate(-20deg);
    animation: pulseLine 4s ease-in-out infinite 3s;
  }

  .network-line:nth-child(5) {
    width: 160px;
    bottom: 20%;
    right: 35%;
    transform: rotate(40deg);
    animation: pulseLine 4s ease-in-out infinite 1.5s;
  }

  @keyframes pulseLine {
    0%,
    100% {
      opacity: 0.1;
      transform: scaleX(0.8) rotate(var(--rotation));
    }

    50% {
      opacity: 0.5;
      transform: scaleX(1) rotate(var(--rotation));
    }
  }

  .network-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondStyleColor);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  .network-dot:nth-child(6) {
    top: 20%;
    left: 10%;
    animation: dotPulse 3s ease-in-out infinite;
  }

  .network-dot:nth-child(7) {
    top: 40%;
    right: 20%;
    animation: dotPulse 3s ease-in-out infinite 0.5s;
  }

  .network-dot:nth-child(8) {
    bottom: 30%;
    left: 30%;
    animation: dotPulse 3s ease-in-out infinite 1s;
  }

  .network-dot:nth-child(9) {
    top: 60%;
    right: 15%;
    animation: dotPulse 3s ease-in-out infinite 1.5s;
  }

  .network-dot:nth-child(10) {
    bottom: 20%;
    right: 35%;
    animation: dotPulse 3s ease-in-out infinite 2s;
  }

  .network-dot:nth-child(11) {
    top: 35%;
    left: 25%;
    animation: dotPulse 3s ease-in-out infinite 2.5s;
  }

  .network-dot:nth-child(12) {
    bottom: 40%;
    right: 25%;
    animation: dotPulse 3s ease-in-out infinite 0.8s;
  }

  .network-dot:nth-child(13) {
    top: 15%;
    left: 60%;
    animation: dotPulse 3s ease-in-out infinite 1.2s;
  }

  .network-dot:nth-child(14) {
    bottom: 50%;
    left: 15%;
    animation: dotPulse 3s ease-in-out infinite 2.8s;
  }

  .network-dot:nth-child(15) {
    top: 70%;
    left: 45%;
    animation: dotPulse 3s ease-in-out infinite 0.3s;
  }

  .network-dot:nth-child(16) {
    top: 25%;
    right: 40%;
    animation: dotPulse 3s ease-in-out infinite 1.8s;
  }

  .network-dot:nth-child(17) {
    bottom: 15%;
    left: 55%;
    animation: dotPulse 3s ease-in-out infinite 2.3s;
  }

  @keyframes dotPulse {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.4;
    }

    50% {
      transform: scale(1.5);
      opacity: 1;
    }
  }

  /* Inner Peace Animated Background */
  .peace-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .breathing-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      var(--secondStyleColor),
      transparent 5%
    );
    animation: breathe 8s ease-in-out infinite;
  }

  .breathing-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .breathing-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
  }

  .breathing-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
  }

  .breathing-circle:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
  }

  @keyframes breathe {
    0%,
    100% {
      transform: scale(1) translate(0, 0);
      opacity: 0.3;
    }

    25% {
      transform: scale(1.2) translate(-10px, -10px);
      opacity: 0.5;
    }

    50% {
      transform: scale(1.4) translate(10px, -20px);
      opacity: 0.3;
    }

    75% {
      transform: scale(1.1) translate(-5px, 10px);
      opacity: 0.4;
    }
  }

  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .zen-stone {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(
      circle,
      var(--secondStyleColor) 0%,
      transparent 30%
    );
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
  }

  .zen-stone:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
  }

  .zen-stone:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 5s;
  }

  .zen-stone:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 10s;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0) translateX(0) rotate(0deg);
    }

    33% {
      transform: translateY(-30px) translateX(20px) rotate(120deg);
    }

    66% {
      transform: translateY(20px) translateX(-20px) rotate(240deg);
    }
  }

  .mandala-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
  }

  .mandala-circle {
    position: absolute;
    border: 2px solid var(--secondStyleColor);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
  }

  .mandala-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 60s;
  }

  .mandala-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-duration: 50s;
    animation-direction: reverse;
  }

  .mandala-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 40s;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .hero {
    position: relative;
  }

  .heroBG {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 0.1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
  }

  .hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    position: relative;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    color: var(--textColor1);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-align: center;
    -webkit-animation: fadeInUp 1s ease;
    text-transform: uppercase;
  }

  .hero-content p {
    font-size: 1.3rem;
    color: var(--textColor1);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-wrap: balance;
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    text-decoration: none;
    border-radius: var(--borderRadius);
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }



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



  /* ===== FEATURES v19 — Spotlight hero with SVG light rays + side cards ===== */

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

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

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

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

  .ft19__layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
    align-items: start;
  }

  /* Hero spotlight card */
  .ft19__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* SVG rays */
  .ft19__rays {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 70%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
  }

  .ft19__ray {
    stroke: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    stroke-width: 1;
    animation: ft19Pulse 3s ease-in-out infinite alternate;
  }

  .ft19__ray:nth-child(2n) {
    animation-delay: 0.5s;
    stroke: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .ft19__ray:nth-child(3n) {
    animation-delay: 1s;
  }

  @keyframes ft19Pulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
  }

  .ft19__hero-img {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

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

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

  .ft19__hero-body {
    position: relative;
    z-index: 1;
    padding: 24px 26px 28px;
  }

  .ft19__kicker {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .ft19__hero-body h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
  }

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

  /* Side cards */
  .ft19__side {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft19__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

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

  .ft19__card:hover .ft19__ico {
    transform: scale(1.1);
  }

  .ft19__ico i {
    font-size: 16px;
    color: var(--secondStyleColor);
  }

  .ft19__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
  }

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

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

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

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

    .ft19__hero-body h3 {
      font-size: 20px;
    }
  }

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

    .ft19__head {
      margin-bottom: 36px;
    }

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

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

    .ft19__card {
      padding: 18px 16px;
    }

    .ft19__card h3 {
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft19__ray {
      animation: none;
    }

    .ft19__hero-img img,
    .ft19__card,
    .ft19__ico {
      transition: none;
    }
  }



  .our-services .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .aboutImageWrapper {
    width: 1320px;
    height: 400px;

    img {
      object-fit: cover;
      width: 100%;
      object-position: 50% 20%;
      height: 100%;
      border-radius: var(--borderRadius);
    }
  }

  .our-services .left-image {
    margin-right: 45px;
  }

  .our-services .section-heading h2 {
    margin-right: 100px;
  }

  .our-services .section-heading p {
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .our-services .progress-skill-bar {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
  }

  .our-services .progress-skill-bar span {
    position: absolute;
    top: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondStyleColor);
  }

  .our-services .first-bar span {
    left: 69%;
  }

  .our-services .second-bar span {
    left: 81%;
  }

  .our-services .third-bar span {
    left: 88%;
  }

  .our-services .progress-skill-bar h3 {
    font-weight: 700;
    color: var(--textColor1);
    margin-bottom: 14px;
  }

  .our-services .progress-skill-bar .full-bar {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background-color: var(--bodyBG);
    position: relative;
    z-index: 1;
  }

  .our-services .progress-skill-bar .filled-bar {
    background: var(--secondStyleColor);
    background: linear-gradient(
      105deg,
      var(--secondStyleColor) 0%,
      var(--secondStyleColor) 100%
    );
    height: 6px;
    border-radius: 3px;
    margin-bottom: -6px;
    position: relative;
    z-index: 2;
  }

  .our-services .first-bar .filled-bar {
    width: 71%;
  }

  .our-services .second-bar .filled-bar {
    width: 83%;
  }

  .our-services .third-bar .filled-bar {
    width: 90%;
  }

  @media (max-width: 800px) {
    .our-services .container {
      flex-direction: column;
    }
    .aboutImageWrapper {
      width: 100%;
    }
  }



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

  .gl4__head {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 44px;
  }

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

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

  .gl4__panels {
    display: flex;
    gap: 8px;
    height: clamp(340px, 45vw, 520px);
    border-radius: var(--borderRadius);
    overflow: hidden;
  }

  .gl4__panel {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--borderRadius);
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gl4__panel--active { flex: 5; }

  .gl4__panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gl4__panel--active img { transform: scale(1.03); }

  .gl4__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 80%, transparent),
      transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gl4__panel--active .gl4__label { opacity: 1; }

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

  @media (max-width: 800px) {
    .gl4__panels { flex-direction: column; height: auto; }
    .gl4__panel { height: 80px; flex: none; }
    .gl4__panel--active { height: 280px; }
    .gl4__label { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl4 { padding: 48px 0; }
    .gl4__head { margin-bottom: 32px; }
    .gl4__panel--active { height: 220px; }
  }

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



  /* ===== ROADMAP v9 — Sticky sidebar progress + scrolling cards ===== */

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

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

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

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

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

  /* Layout */
  .rm9__layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
  }

  /* Sidebar */
  .rm9__sidebar {
    position: sticky;
    top: 80px;
  }

  .rm9__progress-track {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
  }

  .rm9__progress-line {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
  }

  .rm9__progress-filled {
    width: 100%;
    height: 62%;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 30%, transparent));
  }

  .rm9__step {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    transition: color 0.2s ease;
  }

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

  .rm9__step-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .rm9__step--done .rm9__step-dot {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
  }

  .rm9__step--done {
    color: var(--textColor1);
  }

  .rm9__step--active .rm9__step-dot {
    background: transparent;
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
  }

  .rm9__step--active {
    color: var(--secondStyleColor);
    font-weight: 600;
  }

  /* Cards */
  .rm9__cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

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

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

  .rm9__card--active {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent),
      transparent
    );
  }

  .rm9__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }

  .rm9__card-num {
    font-size: 28px;
    font-weight: 800;
    color: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    line-height: 1;
  }

  .rm9__badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

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

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

  .rm9__card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 600;
  }

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

  .rm9__card-footer {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .rm9__metric strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondStyleColor);
    line-height: 1;
    margin-bottom: 2px;
  }

  .rm9__metric span {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

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

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

    .rm9__sidebar {
      position: static;
    }

    .rm9__progress-track {
      flex-direction: row;
      gap: 0;
      justify-content: space-between;
    }

    .rm9__progress-line {
      left: 0;
      right: 0;
      top: 7px;
      bottom: auto;
      width: auto;
      height: 2px;
    }

    .rm9__progress-filled {
      height: 100%;
      width: 62%;
    }

    .rm9__step span:last-child {
      display: none;
    }

    .rm9__card h3 {
      font-size: 17px;
    }

    .rm9__card > p {
      font-size: 13px;
    }
  }

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

    .rm9__head {
      margin-bottom: 36px;
    }

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

    .rm9__card {
      padding: 20px 18px;
    }

    .rm9__card-footer {
      gap: 16px;
    }

    .rm9__metric strong {
      font-size: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm9__card,
    .rm9__step,
    .rm9__step-dot {
      transition: none;
    }
  }



  #bonuses { padding: 80px 0; }
  .bn1-head { text-align: center; margin-bottom: 50px; }
  .bn1-head h2 { margin-bottom: 12px; }
  .bn1-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .bn1-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .bn1-grid .bonus-card {
    background: var(--cardBG); border-radius: var(--borderRadius); padding: 32px 28px;
    border: 1px solid var(--secondStyleColor); position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .bn1-grid .bonus-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
  .bn1-grid .bonus-card__badge {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
    background: var(--accentColor); color: #fff; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .bn1-grid .bonus-card__badge:empty { display: none; }
  .bn1-grid .bonus-card__icon {
    width: 56px; height: 56px; border-radius: 14px; background: var(--accentColor);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; color: #fff;
  }
  .bn1-grid .bonus-card h3 { font-size: 20px; margin-bottom: 10px; }
  .bn1-grid .bonus-card p { color: var(--textSecondary); font-size: 14px; line-height: 1.6; }
  .bn1-grid .bonus-card__cat { display: inline-block; margin-top: 16px; padding: 4px 12px; border-radius: 6px; background: rgba(108,92,231,0.15); color: var(--accentColor); font-size: 12px; font-weight: 500; }
  @media (max-width: 900px) { .bn1-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .bn1-grid { grid-template-columns: 1fr; } }



  /* ===== MOBILE v5 — Centered phone with features on both sides ===== */

  .mob5 {
    position: relative;
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
    overflow: hidden;
    text-align: center;
  }

  .mob5__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 70%, rgba(var(--accent-rgb), 0.1), transparent);
    pointer-events: none;
  }

  .mob5 > .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Top */
  .mob5__top {
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .mob5__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    margin: 0 0 16px;
  }

  .mob5__top h2 {
    margin: 0 0 14px;
    font-weight: 700;
  }

  .mob5__top > p {
    margin: 0;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  /* Showcase */
  .mob5__showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
  }

  /* Features columns */
  .mob5__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 220px;
  }

  .mob5__feat {
    padding: 16px;
    border-radius: var(--borderRadius);
    background: var(--bgCard);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .mob5__feat--left {
    text-align: right;
  }

  .mob5__feat--right {
    text-align: left;
  }

  .mob5__feat i {
    font-size: 20px;
    color: var(--secondStyleColor);
    margin-bottom: 8px;
    display: block;
  }

  .mob5__feat h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
  }

  .mob5__feat p {
    margin: 0;
    font-size: 12px;
    color: var(--textSecondary);
  }

  /* Phone */
  .mob5__phone {
    position: relative;
    width: 270px;
    height: 540px;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 40px;
    padding: 12px;
    flex-shrink: 0;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 40px 80px rgba(0,0,0,0.5),
      0 0 80px rgba(var(--accent-rgb), 0.08);
  }

  .mob5__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    z-index: 3;
  }

  .mob5__screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--bgCard);
  }

  .mob5__screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Store buttons */
  .mob5__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mob5__store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-radius: var(--borderRadius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
  }

  .mob5__store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .mob5__store i {
    font-size: 28px;
  }

  .mob5__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
    text-align: left;
  }

  .mob5__store small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .mob5__features {
      display: none;
    }

    .mob5__phone {
      width: 240px;
      height: 480px;
    }
  }

  @media (max-width: 600px) {
    .mob5__phone {
      width: 200px;
      height: 400px;
      border-radius: 30px;
      padding: 10px;
    }

    .mob5__screen {
      border-radius: 22px;
    }
  }



  /* ===== HOW v18 — Rotating border + spark icons ===== */

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

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

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

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

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

  /* Card wrapper with animated border */
  .hw18__card {
    position: relative;
    border-radius: var(--borderRadius);
    padding: 2px;
    overflow: hidden;
  }

  .hw18__border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 12%,
      transparent 24%,
      transparent 100%
    );
    animation: hw18Rotate 5s linear infinite;
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  .hw18__card:hover .hw18__border {
    opacity: 0.8;
  }

  @keyframes hw18Rotate {
    to {
      transform: rotate(360deg);
    }
  }

  .hw18__inner {
    position: relative;
    background: var(--bodyBG);
    border-radius: calc(var(--borderRadius) - 2px);
    padding: 32px 24px 28px;
    text-align: center;
    height: 100%;
  }

  /* Icon box with sparks */
  .hw18__icon-box {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hw18__icon-box i {
    font-size: 24px;
    color: var(--secondStyleColor);
    transition: transform 0.3s ease;
  }

  .hw18__card:hover .hw18__icon-box i {
    transform: rotate(-10deg) scale(1.15);
  }

  /* Sparks */
  .hw18__spark {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    opacity: 0;
  }

  .hw18__card:hover .hw18__spark {
    animation: hw18Spark 0.8s ease forwards;
  }

  .hw18__spark--1 {
    top: 4px;
    right: 8px;
    animation-delay: 0s;
  }

  .hw18__spark--2 {
    top: -2px;
    left: 14px;
    animation-delay: 0.15s;
  }

  .hw18__spark--3 {
    bottom: 2px;
    right: 2px;
    animation-delay: 0.3s;
  }

  .hw18__card:hover .hw18__spark--2 {
    animation-delay: 0.15s;
  }

  .hw18__card:hover .hw18__spark--3 {
    animation-delay: 0.3s;
  }

  @keyframes hw18Spark {
    0% {
      opacity: 0;
      transform: scale(0) translate(0, 0);
    }
    50% {
      opacity: 1;
      transform: scale(1.2) translate(-4px, -8px);
    }
    100% {
      opacity: 0;
      transform: scale(0.6) translate(-8px, -16px);
    }
  }

  .hw18__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hw18__inner h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw18__grid {
      gap: 18px;
    }

    .hw18__inner {
      padding: 26px 20px 24px;
    }

    .hw18__inner h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 800px) {
    .hw18__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
      margin: 0 auto;
    }
  }

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

    .hw18__head {
      margin-bottom: 36px;
    }

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

    .hw18__inner {
      padding: 24px 18px 20px;
    }

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

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

    .hw18__icon-box {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .hw18__icon-box i {
      font-size: 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw18__border {
      animation: none;
      opacity: 0.2;
      background: var(--secondStyleColor);
    }
    .hw18__card:hover .hw18__spark {
      animation: none;
    }
    .hw18__icon-box i {
      transition: none;
    }
  }



  /*  */
  .absssss {
    position: relative;
    &&::after {
      position: absolute;
      content: "";
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      top: 7%;
      left: -15%;
      z-index: -1;
      opacity: 0.1;
    }
  }

  .absssss .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .abllllllll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    && a {
      padding: 12px 40px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-size: 20px;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-2px);
      }
    }
    && p {
      text-wrap: balance;
    }
  }
  .abrrrrrrrrr {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    &&::before {
      position: absolute;
      content: "";
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      bottom: -15%;
      left: -18%;
      opacity: 0.1;
      z-index: -1;
    }
  }
  .abelrrr {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px;
    background-color: var(--bodyBG);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: var(--borderRadius);

    && .abiiimgw {
      min-width: 140px;
      max-width: 140px;
      border-radius: 50%;
      width: 140px;
      height: 140px;
      && img {
        width: 100%;
        border-radius: inherit;
        height: 100%;
        object-fit: cover;
      }
    }

    && svg {
      fill: var(--secondStyleColor);
    }
    && p {
      max-width: 90%;
    }
  }
  .abelrrr div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    && p:last-child {
      font-style: italic;
    }
  }

  @media (max-width: 800px) {
    .absssss {
      &&::after {
        display: none;
      }
    }
    .absssss .container {
      flex-direction: column;
    }
    .abelrrr {
      flex-direction: column-reverse;
      && .abiiimgw {
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
      }
    }
    .abelrrr div {
      justify-content: center;
      align-items: center;
      && p {
        text-align: center;
      }
    }
    .abrrrrrrrrr {
      &&::before {
        left: -26%;
        bottom: 12%;
      }
    }
    .abllllllll {
      align-items: center;
      && h2,
      p {
        text-align: center;
      }
    }
  }



  .marquee {
    padding: 10px 0;
    border-top: 1px solid var(--secondStyleColor);
    border-bottom: 1px solid var(--secondStyleColor);
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 8%,
      #000 92%,
      transparent 100%
    );
  }

  .marquee .track {
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    padding: 12px 0;
    width: max-content;
    animation: scroll 56s linear infinite;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--textColor1);
    -webkit-animation: scroll 56s linear infinite;
  }
  .marquee span::before {
    content: "♥";
    /* font-size: 24px; */
    margin: 0 10px 0 0;
    color: var(--secondStyleColor);
  }
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }



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



  /* ===== FOOTER ===== */

  .footer {
    background: var(--bgAlt);
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

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

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: var(--textMuted);
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2 140px;
    column-gap: 24px;
  }

  .footerNav li {
    break-inside: avoid;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: var(--textSecondary);
    text-decoration: none;
    transition: 0.15s ease;
  }

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

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: var(--textSecondary);
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textSecondary);
    font-size: 14px;
    transition: 0.15s ease;
  }

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

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: var(--textMuted);
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 650px) {
    .footerTop {
      grid-template-columns: 1fr;
    }

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }



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