
:root {
  --bg: #11100d;
  --bg-card: #27241c;
  --text: #eae9e6;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #27ecdc;
  --accent-rgb: 39,236,220;
  --accent2: #5927ec;
  --accent2-rgb: 89,39,236;
  --accent3: #3eee4d;
  --accent3-rgb: 62,238,77;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #11100d;
  --textColor1: #eae9e6;
  --textColor2: #111111;
  --textSecondary: #b4b3b0;
  --textMuted: #7e7d7a;
  --secondStyleColor: #27ecdc;
  --bgCard: #27241c;
  --bgAlt: #22211e;
  --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;
}


.hd9 {
  background: var(--bodyBG);
  border-bottom: 1px solid rgba(128,128,128,.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.hd9__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.hd9__logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--textColor1);
  text-decoration: none;
}

/* Nav anchors */
.hd9__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hd9__link {
  color: var(--textColor1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color .2s ease;
}
.hd9__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--secondStyleColor);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.hd9__link:hover {
  color: var(--secondStyleColor);
}
.hd9__link:hover::after {
  transform: scaleX(1);
}

/* CTA button */
.hd9__cta {
  display: inline-block;
  padding: 8px 22px;
  background: var(--secondStyleColor);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none !important;
  transition: filter .2s ease;
  white-space: nowrap;
}
.hd9__cta:hover {
  filter: brightness(1.15);
}

/* Toggle */
.hd9__toggle {
  display: flex;
  background: none;
  border: 1px solid rgba(128,128,128,.25);
  border-radius: 10px;
  padding: 6px;
  cursor: pointer;
  color: var(--textColor1);
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s ease;
}
.hd9__toggle:hover {
  border-color: var(--secondStyleColor);
}

/* Panel */
.hd9__panel {
  position: absolute;
  top: 100%;
  right: 20px;
  background: var(--bodyBG);
  border: 1px solid rgba(128,128,128,.12);
  border-top: 2px solid var(--secondStyleColor);
  border-radius: 0 0 var(--borderRadius) var(--borderRadius);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .25s ease;
  opacity: 0;
  z-index: 99;
  min-width: 220px;
}
.hd9__panel.active {
  max-height: 500px;
  opacity: 1;
}
.hd9__panel ul {
  list-style: none;
  padding: 6px 0;
  margin: 0;
}
.hd9__panel li + li {
  border-top: 1px solid rgba(128,128,128,.06);
}
.hd9__panel a {
  display: block;
  padding: 11px 22px;
  color: var(--textColor1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all .15s ease;
  white-space: nowrap;
}
.hd9__panel a:hover {
  background: rgba(128,128,128,.07);
  color: var(--secondStyleColor);
  padding-left: 26px;
}

@media (max-width: 600px) {
  .hd9__nav { display: none; }
  .hd9__cta { display: none; }
}



  /* ===== HERO v25 — Constellation SVG + background image behind text ===== */

  .hr26 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vw, 160px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background image layer */
  .hr26__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hr26__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
  }

  /* Constellation SVG — above image, below content */
  .hr26__constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--secondStyleColor);
    pointer-events: none;
    z-index: 1;
  }

  .hr26 .container {
    position: relative;
    z-index: 2;
  }

  /* Content */
  .hr26__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .hr26__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .hr26__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    animation: hr26Pulse 1.5s ease-in-out infinite;
  }

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

  .hr26__content h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  }

  .hr26__content > p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 540px;
  }

  /* Actions */
  .hr26__actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
  }

  .hr26__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--borderRadius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
  }

  .hr26__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
  }

  .hr26__btn--primary i {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .hr26__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .hr26__btn--primary:hover i {
    transform: translateX(3px);
  }

  .hr26__btn--ghost {
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    color: var(--textColor1);
    background: color-mix(in srgb, var(--bodyBG) 40%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hr26__btn--ghost:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hr26 {
      min-height: 480px;
    }

    .hr26__content h1 {
      font-size: 36px;
    }
  }

  @media (max-width: 600px) {
    .hr26 {
      padding: 80px 0;
      min-height: 400px;
    }

    .hr26__content h1 {
      font-size: 28px;
    }

    .hr26__content > p {
      font-size: 15px;
    }

    .hr26__actions {
      flex-direction: column;
      width: 100%;
    }

    .hr26__btn {
      justify-content: center;
    }
  }

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

    .hr26__btn,
    .hr26__btn--primary i {
      transition: none;
    }

    .hr26__constellation * {
      animation: none !important;
    }
  }



  :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: var(--textColor1);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: color-mix(in srgb, var(--textColor1) 6%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    overflow: hidden;
  }

  .toc a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scaleX(1);
  }

  .toc a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent 70%
    );
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .toc a:hover::after,
  .toc a:focus::after {
    opacity: 1;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    transform: translateY(-2px);
  }

  .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::before,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }

    .toc a:hover {
      transform: none;
    }
  }



  #slots { padding: 80px 0; }
  .sl17-head { text-align: center; margin-bottom: 50px; }
  .sl17-head h2 { margin-bottom: 12px; }
  .sl17-head p { color: var(--textSecondary); max-width: 550px; margin: 0 auto; }
  .sl17-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .sl17-grid .slot-card {
    background: var(--cardBG);
    border-radius: var(--borderRadius);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
  }
  .sl17-grid .slot-card:hover { transform: translateY(-6px); }
  .sl17-grid .slot-card__img { aspect-ratio: 1; overflow: hidden; position: relative; }
  .sl17-grid .slot-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sl17-grid .slot-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, var(--accentColor));
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: color;
  }
  .sl17-grid .slot-card:hover .slot-card__img::after { opacity: 0.6; }
  .sl17-grid .slot-card__body {
    padding: 14px;
    position: relative;
  }
  .sl17-grid .slot-card__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accentColor);
    transition: width 0.4s ease;
  }
  .sl17-grid .slot-card:hover .slot-card__body::before { width: 80%; }
  .sl17-grid .slot-card__body h3 { font-size: 15px; margin-bottom: 3px; }
  .sl17-grid .slot-card__body p { font-size: 12px; color: var(--textSecondary); }
  .sl17-grid .slot-card {
    animation: sl17Pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  .sl17-grid .slot-card:nth-child(1) { animation-delay: 0.05s; }
  .sl17-grid .slot-card:nth-child(2) { animation-delay: 0.1s; }
  .sl17-grid .slot-card:nth-child(3) { animation-delay: 0.15s; }
  .sl17-grid .slot-card:nth-child(4) { animation-delay: 0.2s; }
  .sl17-grid .slot-card:nth-child(5) { animation-delay: 0.25s; }
  .sl17-grid .slot-card:nth-child(6) { animation-delay: 0.3s; }
  .sl17-grid .slot-card:nth-child(7) { animation-delay: 0.35s; }
  .sl17-grid .slot-card:nth-child(8) { animation-delay: 0.4s; }
  .sl17-grid .slot-card:nth-child(n+9) { animation-delay: 0.45s; }
  @keyframes sl17Pop {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
  }
  @media (max-width: 900px) { .sl17-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .sl17-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }



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

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

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

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

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

  .rm3__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .rm3__rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 6px;
    height: 2px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    z-index: 0;
  }

  .rm3__stage {
    position: relative;
    z-index: 1;
    padding: 28px 18px 20px;
    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.25s ease, border-color 0.25s ease;
  }

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

  .rm3__dot {
    position: absolute;
    top: -6px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm3__dot--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
  }

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

  .rm3__stage h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
  }

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

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

  @media (max-width: 600px) {
    .rm3 { padding: 48px 0; }
    .rm3__head { margin-bottom: 36px; }
    .rm3__track { grid-template-columns: 1fr; }
    .rm3__rail { display: none; }
  }

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



  /*  */
  .jfwauhcjbbAJKShjdbkhkb {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    && h3 {
      text-transform: uppercase;
    }
    && h4 {
      color: var(--secondStyleColor);
    }
  }
  .jfwauhcjbbAJKShjdbkhkb .container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 100%;
  }

  .jfwauhcjbbAJKShjdbkhkbBg {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: 50% 20%;
    z-index: -1;
    opacity: 0.1;
  }

  .col-title {
    font-weight: 700;
    margin: 0 0 22px 0;
    letter-spacing: 0.2px;
  }

  /* Timeline */
  .timeline {
    position: relative;
    padding-left: 90px;
    margin: 0;
    list-style: none;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--secondStyleColor);
    border-radius: 999px;
  }

  .timeline__item {
    position: relative;
    padding: 0 0 34px 0;
  }

  .timeline__item:last-child {
    padding-bottom: 0;
  }

  .timeline__year {
    position: absolute;
    left: -90px;
    top: 0;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.3px;
  }

  .timeline__content h3 {
    margin: 2px 0 8px 0;
    font-weight: 800;
    line-height: 1.2;
  }

  .timeline__content h3 span {
    font-weight: 700;
    color: var(--textColor1);
    margin-left: 8px;
  }

  .timeline__content p {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
    max-width: 520px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .jfwauhcjbbAJKShjdbkhkb .container {
      flex-direction: column;
      gap: 40px;
    }
    .jfwauhcjbbAJKShjdbkhkbBg {
      object-position: 20% 50%;
    }
  }



  .reviewHeader {
    color: var(--textColor1);
    margin-bottom: 40px;
  }

  /* Masonry как на скрине */
  .masonry {
    column-count: 3;
    column-gap: 28px;
  }

  .masonry-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    border-radius: var(--borderRadius);
    padding: 34px 32px 26px;
    margin: 0 0 28px;
    position: relative;
    border: 1px solid var(--secondStyleColor);
  }

  .quoteMark {
    width: 42px;
    height: 28px;
    display: inline-block;
    margin: 2px 0 18px;
  }

  /* две красные “галочки” */
  .quoteMark::before,
  .quoteMark::after {
    content: "";
    position: absolute;
    top: 34px;
    width: 20px;
    height: 20px;
    background: var(--secondStyleColor);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .quoteMark::before {
    left: 32px;
  }
  .quoteMark::after {
    left: 56px;
    transform: scaleX(-1);
  }

  .text {
    margin: 0;
    color: var(--textColor1);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
  }

  .urevj {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
    overflow: hidden;
    background:
      radial-gradient(
        circle at 30% 30%,
        rgba(255, 59, 48, 0.35),
        transparent 55%
      ),
      radial-gradient(
        circle at 70% 70%,
        rgba(30, 136, 255, 0.35),
        transparent 55%
      ),
      #f3f4f7;
  }
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bhkasjh {
    min-width: 0;
  }

  .name {
    margin: 0;
    font-weight: 800;
    font-size: 15px;
    color: var(--textColor1);
    line-height: 1.25;
  }

  .role {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--textColor1);
    font-weight: 600;
  }

  /* Точный “воздух” как в макете */
  .masonry-card.tight .text {
    line-height: 1.85;
  }

  /* Адаптив */
  @media (max-width: 1100px) {
    .masonry {
      column-count: 2;
    }
  }
  @media (max-width: 700px) {
    .masonry {
      column-count: 1;
    }
    .masonry-card {
      padding: 28px 22px 22px;
    }
    .quoteMark::before,
    .quoteMark::after {
      top: 28px;
    }
    .quoteMark::before {
      left: 22px;
    }
    .quoteMark::after {
      left: 46px;
    }
    .reviewHeader {
      margin-bottom: 20px;
    }
  }



  /* ===== ABOUT v15 — Hero image with overlay + SVG hatch bg + feature row ===== */

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

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

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

  /* Hero */
  .ab15__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.4);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 50px;
  }

  .ab15__hero-img {
    position: absolute;
    inset: 0;
  }

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

  .ab15__hero:hover .ab15__hero-img img {
    transform: scale(1.03);
  }

  .ab15__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 48px);
    gap: 10px;
  }

  .ab15__kicker {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ab15__hero h2 {
    margin: 0;
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 600px;
    line-height: 1.15;
    color: var(--textColor1);
  }

  /* Body */
  .ab15__body {
    max-width: 960px;
    margin: 0 auto;
  }

  .ab15__desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
    max-width: 680px;
    margin: 0 auto 48px;
  }

  /* Feature row */
  .ab15__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .ab15__feat {
    text-align: center;
    padding: 24px 16px;
    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;
  }

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

  .ab15__feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
  }

  .ab15__feat:hover .ab15__feat-ico {
    transform: scale(1.12);
  }

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

  .ab15__feat h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
  }

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

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

    .ab15__hero {
      aspect-ratio: 16 / 9;
    }
  }

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

    .ab15__desc {
      font-size: 14px;
    }

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

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

    .ab15__hero {
      aspect-ratio: 16 / 10;
      margin-bottom: 36px;
    }

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

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

  @media (prefers-reduced-motion: reduce) {
    .ab15__hero-img img,
    .ab15__feat,
    .ab15__feat-ico {
      transition: none;
    }
  }



  /* ===== FEATURES v14 — Glass grid over background image ===== */

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

  .ft14__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.12;
    filter: blur(3px);
  }

  .ft14__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      var(--bodyBG) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      var(--bodyBG) 100%
    );
    pointer-events: none;
  }

  .ft14 .container {
    position: relative;
    z-index: 2;
  }

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

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

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

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

  /* Card */
  .ft14__card {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition:
      transform 0.3s ease,
      border-color 0.3s ease;
  }

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

  /* Top accent line */
  .ft14__card-line {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--secondStyleColor),
      transparent
    );
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .ft14__card:hover .ft14__card-line {
    opacity: 1;
    left: 10%;
    right: 10%;
  }

  .ft14__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondStyleColor);
    opacity: 0.5;
    margin-bottom: 14px;
  }

  .ft14__fa {
    font-size: 24px;
    color: var(--secondStyleColor);
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(
      0 4px 10px color-mix(in srgb, var(--secondStyleColor) 30%, transparent)
    );
    transition: transform 0.3s ease;
  }

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

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

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

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

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

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

    .ft14__fa {
      font-size: 20px;
    }
  }

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

    .ft14__head {
      margin-bottom: 36px;
    }

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

    .ft14__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .ft14__card {
      padding: 22px 16px;
    }

    .ft14__fa {
      font-size: 18px;
      margin-bottom: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft14__card,
    .ft14__fa,
    .ft14__card-line {
      transition: none;
    }
  }



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

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

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

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

  .gl7__mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gl7__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
  }

  .gl7__item--tall {
    grid-row: span 2;
  }

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

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

  .gl7__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 0%,
      transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .gl7__item:hover .gl7__overlay {
    opacity: 1;
  }

  .gl7__overlay h3 {
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 600;
  }

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

  @media (max-width: 800px) {
    .gl7__mosaic {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 160px;
    }
    .gl7__overlay { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl7 { padding: 48px 0; }
    .gl7__head { margin-bottom: 32px; }
    .gl7__mosaic {
      grid-template-columns: 1fr;
      grid-auto-rows: 200px;
    }
    .gl7__item--tall { grid-row: span 1; }
  }

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



  #top { padding: 80px 0; }
  .tp7-head { text-align: center; margin-bottom: 50px; }
  .tp7-head h2 { margin-bottom: 12px; }
  .tp7-head p { color: var(--textSecondary); max-width: 600px; margin: 0 auto; }
  .tp7-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tp7-cols .top-card {
    display: flex; gap: 16px;
    background: var(--cardBG); border-radius: var(--borderRadius); padding: 20px;
    border: 1px solid var(--borderSubtle); transition: transform 0.3s, box-shadow 0.3s;
  }
  .tp7-cols .top-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
  .tp7-cols .top-card__left {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .tp7-cols .top-card__rank {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accentColor); color: var(--textColor2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
  }
  .tp7-cols .top-card__logo {
    width: 100px; height: 48px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .tp7-cols .top-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .tp7-cols .top-card__logo svg { max-width: 100%; max-height: 100%; }
  .tp7-cols .top-card__body { flex: 1; }
  .tp7-cols .top-card__body h3 { margin-bottom: 6px; }
  .tp7-cols .top-card__info { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
  .tp7-cols .top-card__rating {
    padding: 3px 10px; border-radius: 6px;
    background: rgba(var(--accent-rgb), 0.12); color: var(--accentColor);
    font-weight: 700; font-size: 13px;
  }
  .tp7-cols .top-card__badge {
    padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700;
    background: var(--accentColor); color: var(--textColor2); text-transform: uppercase;
  }
  .tp7-cols .top-card__badge:empty { display: none; }
  .tp7-cols .top-card__bonus { color: var(--textSecondary); font-size: 14px; margin-bottom: 6px; }
  .tp7-cols .top-card__features { color: var(--textMuted); font-size: 13px; }
  @media (max-width: 768px) { .tp7-cols { grid-template-columns: 1fr; } }



  /* ===== MOBILE v1 — Phone left text right ===== */

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

  .mob1 > .container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Text */
  .mob1__text {
    flex: 1;
    min-width: 0;
  }

  .mob1__text h2 {
    margin: 0 0 16px;
    font-weight: 700;
  }

  .mob1__text p {
    margin: 0 0 30px;
    line-height: 1.7;
    color: var(--textSecondary);
    max-width: 480px;
  }

  /* Store buttons */
  .mob1__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

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

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

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

  .mob1__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
  }

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

  /* Phone device */
  .mob1__device {
    flex-shrink: 0;
  }

  .mob1__phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
      0 0 0 2px rgba(255,255,255,0.08),
      0 30px 60px rgba(0,0,0,0.5),
      inset 0 0 0 1px rgba(255,255,255,0.05);
  }

  .mob1__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 18px 18px;
    z-index: 3;
  }

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

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

  /* Responsive */
  @media (max-width: 900px) {
    .mob1 > .container {
      flex-direction: column-reverse;
      text-align: center;
      gap: 40px;
    }

    .mob1__text p {
      margin-left: auto;
      margin-right: auto;
    }

    .mob1__buttons {
      justify-content: center;
    }

    .mob1__phone {
      width: 220px;
      height: 440px;
      border-radius: 32px;
      padding: 10px;
    }

    .mob1__screen {
      border-radius: 24px;
    }

    .mob1__notch {
      width: 100px;
      height: 24px;
      top: 10px;
    }
  }

  @media (max-width: 600px) {
    .mob1__phone {
      width: 200px;
      height: 400px;
    }

    .mob1__store {
      padding: 10px 18px;
    }

    .mob1__store i {
      font-size: 22px;
    }
  }



  .b7x-wrap {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .b7x-inner {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  .b7x-head {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .b7x-label {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .b7x-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
  }

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

  /* Grid */
  .b7x-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  /* Cards */
  .b7x-card {
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 20px 18px;
    transition: 0.2s ease;
  }

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

  .b7x-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .b7x-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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

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

    .b7x-head {
      margin-bottom: 30px;
    }
  }



  /* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

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

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

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

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

  /* Grid */
  .faqColsGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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



  .ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

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

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ft5__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
    row-gap: 8px;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .ft5__nav a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

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

  @media (max-width: 800px) {
    .ft5__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      transition: none;
    }
  }



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}