:root {
  --bg: #0f1117;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent: #c52693;
  --accent-rgb: 197, 38, 147;
  --accent2: #c58d26;
  --accent2-rgb: 197, 141, 38;
  --accent3: #7f2ed7;
  --accent3-rgb: 127, 46, 215;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --font: "Inter", sans-serif;
  --font-heading: "Inter", sans-serif;
  --bodyBG: #0f1117;
  --textColor1: #e4e6ef;
  --textColor2: #ffffff;
  --textSecondary: #afb1b9;
  --textMuted: #7a7c83;
  --secondStyleColor: #c52693;
  --bgCard: #1a1d27;
  --bgAlt: #202228;
  --borderSubtle: rgba(255, 255, 255, 0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255, 255, 255, 0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* layout */

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

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

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

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

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

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

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

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

/* ссылки */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile__menu {
  display: none;
}

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

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

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

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

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

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

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

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

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

  header .btn {
    display: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.toc {
  background-color: transparent;
}

.toc a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--bodyBG);
  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;
  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(--secondStyleColor);
}

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

/*  */
.qx-plans {
  color: var(--textColor1);
}

.qx-shell {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.qx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.qx-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--secondStyleColor);
  margin-bottom: 8px;
}

.qx-sub {
  max-width: 420px;
  text-wrap: balance;
  opacity: 0.8;
}

.qx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.qx-card {
  position: relative;
  z-index: 1;
  border-radius: var(--borderRadius);
  padding: 26px 26px 28px;
  border: 1px solid var(--secondStyleColor);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.qx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.qx-card--core {
  background: var(--secondStyleColor);
  color: var(--textColor2);
  border-color: transparent;
  transform: translateY(-10px);
}

.qx-card--core .qx-btn {
  border-color: var(--textColor2);
  color: var(--textColor2);
}

.qx-flag {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--textColor2);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.qx-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.qx-price {
  font-size: 30px;
  font-weight: 700;
}

.qx-note {
  font-size: 13px;
  opacity: 0.85;
}

.qx-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.qx-list li {
  padding-left: 18px;
  position: relative;
}

.qx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
}

.qx-btn {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--secondStyleColor);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: inherit;
  transition: transform 0.2s ease;
}

.qx-btn--dark {
  background: rgba(0, 0, 0, 0.25);
}

.qx-btn:hover {
  transform: translateY(-2px);
}

.qx-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.qx-link {
  padding: 8px 18px;
  border-radius: var(--borderRadius);
  border: 1px solid var(--secondStyleColor);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--textColor1);
  transition: transform 0.2s ease;
}

.qx-link:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .qx-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .qx-card--core {
    transform: none;
  }
}

/*  */

#about {
  min-height: 500px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  && img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: 50% 20%;
    opacity: 0.1;
  }
}

#about .container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  && h2 {
    text-transform: uppercase;
    color: var(--textColor1);
  }
}
.ab-lllller {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ab-rrrrorjg {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 40px;
  && p {
    font-style: italic;
    color: var(--textColor1);
  }
  && a {
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
    width: fit-content;
    font-weight: 900;
    transition: 0.2s all linear;
    color: var(--textColor2);
    &&:hover {
      transform: translateY(-2px);
    }
  }
}
.ab-lllller > span:nth-of-type(1) {
  color: var(--secondStyleColor);
  font-style: italic;
}
.ab-lllller > span:nth-of-type(2) {
  font-size: 120px;
  font-weight: 900;
  color: var(--secondStyleColor);
  font-style: italic;
}

@media (max-width: 800px) {
  #about .container {
    flex-direction: column;
    align-items: center;
  }
  .ab-lllller {
    align-items: center;
    && h2 {
      text-align: center;
    }
  }
  .ab-rrrrorjg {
    align-items: center;
    padding: 20px;
    && p {
      text-align: center;
      text-wrap: balance;
    }
  }
  .ab-lllller > span:nth-of-type(2) {
    font-size: 90px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pt7__head {
    margin-bottom: 36px;
  }

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

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

  .pt7__badges {
    gap: 10px;
  }

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

  .pt7__lines {
    gap: 28px;
  }

  .pt7__line {
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pt7__hex-glow,
  .pt7__line {
    animation: none;
  }
  .pt7__hex-inner,
  .pt7__badge {
    transition: none;
  }
}

/* ── Section ── */
.gl13 {
  position: relative;
  overflow: hidden;
  background: var(--bodyBG);
  padding: 100px 20px;
}

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

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

.gl13__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--secondStyleColor);
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  border-radius: 100px;
  margin-bottom: 20px;
}

.gl13__kicker i {
  font-size: 11px;
}

.gl13__head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--textColor1);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

/* ── Filter Tabs (decorative) ── */
.gl13__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gl13__tab {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  border-radius: 24px;
  background: transparent;
  color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  cursor: default;
  transition: all 0.3s ease;
}

.gl13__tab--active {
  color: var(--secondStyleColor);
  border-color: var(--secondStyleColor);
  background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  box-shadow: 0 0 16px
    color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
}

/* ── Masonry Grid ── */
.gl13__masonry {
  columns: 3;
  column-gap: 16px;
}

.gl13__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--borderRadius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

/* ── Size Variants ── */
.gl13__item--tall {
  aspect-ratio: 3 / 5;
}

.gl13__item--wide {
  aspect-ratio: 4 / 3;
}

.gl13__item--square {
  aspect-ratio: 1 / 1;
}

/* ── Image ── */
.gl13__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gl13__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gl13__item:hover .gl13__img-wrap img {
  transform: scale(1.06);
}

/* ── Hover Overlay ── */
.gl13__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    color-mix(in srgb, var(--bodyBG) 90%, transparent)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gl13__item:hover .gl13__overlay {
  opacity: 1;
}

.gl13__tag {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondStyleColor);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  transform: translateY(8px);
  transition: transform 0.4s 0.05s ease;
}

.gl13__item:hover .gl13__tag {
  transform: translateY(0);
}

.gl13__overlay h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--textColor1);
  margin: 0;
  transform: translateY(8px);
  transition: transform 0.4s 0.1s ease;
}

.gl13__item:hover .gl13__overlay h3 {
  transform: translateY(0);
}

/* ── Static Border ── */
.gl13__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.gl13__item:hover::after {
  border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .gl13 {
    padding: 80px 20px;
  }

  .gl13__masonry {
    columns: 2;
    column-gap: 10px;
  }

  .gl13__item {
    margin-bottom: 10px;
  }

  .gl13__overlay {
    opacity: 1;
  }

  .gl13__tag,
  .gl13__overlay h3 {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .gl13 {
    padding: 64px 16px;
  }

  .gl13__masonry {
    columns: 1;
  }

  .gl13__head {
    margin-bottom: 32px;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .gl13__item {
    opacity: 1;
    transform: scale(1);
    transition: none;
  }

  .gl13__img-wrap img {
    transition: none;
  }

  .gl13__overlay,
  .gl13__tag,
  .gl13__overlay h3 {
    transition: none;
  }
}

.featuresWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.feaItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  img {
    height: 500px;
    width: 400px;
    border-radius: var(--borderRadius);
    object-fit: cover;
    object-position: 50% 20%;
  }
}
.feaWrap {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .feaWrap {
    margin-bottom: 20px;
  }
  .featuresWrap {
    flex-direction: column;
    gap: 20px;
  }
  .feaItem {
    gap: 20px;
    img {
      width: 100%;
    }
  }
}

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

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

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

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

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

/* Timeline */
.rm13__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Central vertical line */
.rm13__rail {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  transform: translateX(-50%);
  border-radius: 2px;
}

.rm13__rail-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(
    to bottom,
    var(--secondStyleColor),
    var(--accent2)
  );
  border-radius: 2px;
  transition: height 0.1s linear;
  z-index: 1;
  box-shadow: 0 0 14px
    color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
}

/* Milestone row */
.rm13__milestone {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  width: 100%;
}

.rm13__milestone:nth-child(odd) {
  flex-direction: row-reverse;
}

.rm13__milestone:last-child {
  margin-bottom: 0;
}

/* Dot on rail */
.rm13__dot {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bodyBG);
  border: 3px solid var(--secondStyleColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--secondStyleColor);
  z-index: 3;
  transition: all 0.5s ease;
}

.rm13__dot--done {
  border-color: var(--secondStyleColor);
  color: var(--secondStyleColor);
  background: var(--bodyBG);
}

.rm13__dot--active {
  border-color: var(--accent2);
  color: var(--accent2);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent);
  animation: rm13DotPulse 2s ease-in-out infinite;
}

.rm13__dot--empty {
  border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  color: color-mix(in srgb, var(--textColor1) 35%, transparent);
}

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

/* Branch line from dot to card */
.rm13__branch {
  position: absolute;
  top: 30px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2));
  z-index: 2;
}

.rm13__milestone:nth-child(odd) .rm13__branch {
  right: calc(50% + 22px);
}

.rm13__milestone:nth-child(even) .rm13__branch {
  left: calc(50% + 22px);
}

/* Card */
.rm13__card {
  width: calc(50% - 60px);
  background: var(--bgCard);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  border-radius: var(--borderRadius);
  padding: 26px;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.rm13__milestone:nth-child(odd) .rm13__card {
  margin-right: auto;
  transform: translateX(-30px);
}

.rm13__milestone:nth-child(even) .rm13__card {
  margin-left: auto;
  transform: translateX(30px);
}

.rm13__card.visible {
  opacity: 1;
  transform: translateX(0);
}

.rm13__card:hover {
  border-color: color-mix(in srgb, var(--accent2) 30%, transparent);
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
}

.rm13__card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondStyleColor);
}

.rm13__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

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

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

.rm13__list li {
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  padding-left: 20px;
  position: relative;
}

.rm13__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondStyleColor), var(--accent2));
}

/* Responsive */
@media (max-width: 950px) {
  .rm13__card {
    width: calc(50% - 50px);
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .rm13__rail,
  .rm13__rail-fill {
    left: 24px;
    transform: none;
  }

  .rm13__milestone,
  .rm13__milestone:nth-child(odd) {
    flex-direction: column;
    padding-left: 60px;
  }

  .rm13__dot {
    left: 24px;
    top: 0;
  }

  .rm13__branch {
    display: none;
  }

  .rm13__card,
  .rm13__milestone:nth-child(odd) .rm13__card,
  .rm13__milestone:nth-child(even) .rm13__card {
    width: 100%;
    margin: 20px 0 0;
    transform: translateY(20px);
  }

  .rm13__card.visible {
    transform: translateY(0);
  }
}

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

  .rm13__head {
    margin-bottom: 40px;
  }

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

  .rm13__milestone {
    margin-bottom: 40px;
  }

  .rm13__card {
    padding: 18px;
  }

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

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

  .rm13__dot--active {
    animation: none;
  }

  .rm13__rail-fill {
    transition: none;
  }

  .rm13__dot {
    transition: none;
  }
}

/* ===== HOW v12 — Horizontal stepper ===== */

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

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

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

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

.hw12__stepper {
  position: relative;
}

/* Horizontal connecting line */
.hw12__line {
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  z-index: 0;
}

.hw12__progress {
  width: 75%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--secondStyleColor),
    color-mix(in srgb, var(--secondStyleColor) 40%, transparent)
  );
  border-radius: 2px;
}

.hw12__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hw12__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hw12__node {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--bodyBG);
  border: 2px solid var(--secondStyleColor);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hw12__node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px dashed
    color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  animation: hw12Spin 12s linear infinite;
}

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

.hw12__node span {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondStyleColor);
}

.hw12__step:hover .hw12__node {
  transform: scale(1.1);
  box-shadow: 0 0 24px
    color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
}

.hw12__content {
  max-width: 260px;
}

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

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

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

  .hw12__line {
    display: none;
  }
}

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

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

  .hw12__node {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .hw12__node span {
    font-size: 14px;
  }
}

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

  .hw12__head {
    margin-bottom: 36px;
  }

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

  .hw12__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hw12__node {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .hw12__node span {
    font-size: 13px;
  }

  .hw12__node::after {
    inset: -5px;
  }

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

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

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

/* ===========================
     Reviews 17 — Constellation Network
     Animated SVG mesh background + rotating gradient card borders
     =========================== */

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

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

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

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

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

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

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

/* Grid */
.rv17__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card — wrapper for rotating border */
.rv17__card {
  position: relative;
  border-radius: var(--borderRadius);
}

/* Rotating conic-gradient border */
.rv17__border {
  position: absolute;
  inset: 0;
  border-radius: var(--borderRadius);
  padding: 1.5px;
  background: conic-gradient(
    from var(--rv17-angle),
    transparent 0%,
    var(--secondStyleColor) 6%,
    color-mix(in srgb, var(--secondStyleColor) 55%, transparent) 14%,
    transparent 26%
  );
  -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;
}

.rv17__card:hover .rv17__border {
  opacity: 1;
  animation: rv17-rotate 4s linear infinite;
}

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

/* Card inner content */
.rv17__inner {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--borderRadius);
  background: color-mix(in srgb, var(--bodyBG) 78%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.33, 1, 0.53, 1);
}

.rv17__card:hover .rv17__inner {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow:
    0 10px 36px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
    0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
}

/* Stars */
.rv17__stars {
  display: flex;
  gap: 3px;
  font-size: 14px;
  color: var(--secondStyleColor);
}

/* Text */
.rv17__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--textColor1);
  opacity: 0.85;
  flex: 1;
}

/* Author */
.rv17__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.rv17__avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--secondStyleColor);
}

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

.rv17__role {
  margin: 0;
  font-size: 12px;
  color: var(--textColor1);
  opacity: 0.6;
  line-height: 1.4;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rv17__bg * {
    animation: none !important;
  }
  .rv17__border {
    animation: none !important;
  }
  .rv17__inner {
    transition: none !important;
  }
}

/* Responsive — tablets */
@media (max-width: 950px) {
  .rv17__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .rv17__inner {
    padding: 24px 20px 20px;
  }
}

/* Responsive — small tablets */
@media (max-width: 800px) {
  .rv17__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  .rv17__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .rv17__inner {
    padding: 22px 18px 20px;
  }
}

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

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

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

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

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

.faq13__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--secondStyleColor);
  background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.faq13__head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--textColor1);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-footer {
  color: var(--textColor1);
  margin-top: 60px;
  padding: 28px 0 22px;
  background-color: var(--bodyBG);
  border-top: 0.3px solid var(--secondStyleColor);
  color: var(--footer-muted);
  position: relative;
  backdrop-filter: blur(18px);
}

/* Layout */

.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 22px;
}

/* Brand */

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-main .logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--textColor1);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Links & Address */

.site-footer a,
.site-footer address {
  position: relative;
  color: var(--textColor1);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 2px 0;
  text-transform: uppercase;
  transition:
    color 0.22s ease,
    transform 0.22s ease,
    text-shadow 0.22s ease,
    opacity 0.22s ease;
}

.site-footer address {
  font-style: normal;
  color: rgba(209, 213, 219, 0.8);
}

/* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

.site-footer a:hover {
  transform: translateY(-2px);
}

/* Social */

.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  i {
    color: var(--secondStyleColor);
    font-size: 24px;
  }
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--textSecondary);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
}

/* Contacts */

.footer-contacts address {
  font-style: normal;
}

/* Links */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2 120px;
  column-gap: 24px;
  font-size: 13px;
}

.footer-links li {
  break-inside: avoid;
  margin-bottom: 8px;
}

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

/* Bottom */

.footer-bottom {
  padding-top: 14px;
  color: var(--textColor1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p span {
  color: var(--footer-accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .footer-main {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contacts,
  .footer-links {
    columns: 1;
    text-align: center;
  }

  .site-footer {
    margin-top: 40px;
    padding: 22px 0 18px;
  }
}

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