:root {
        --font-sans: "Urbanist", system-ui, -apple-system, Segoe UI,
          Roboto, Inter, Arial, sans-serif;
      }

/* ---- next <style> block ---- */

/* HEADER */
  .header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    color: var(--textColor1);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor1);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor1);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor1);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor1);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }

/* ---- next <style> block ---- */

/* -------- HERO -------- */
  .tytyyya {
    position: relative;
    overflow: hidden;
  }
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(5px);
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 12, 16, 0.9) 0%,
        rgba(10, 12, 16, 0.75) 42%,
        rgba(10, 12, 16, 0.3) 70%,
        rgba(10, 12, 16, 0) 100%
      ),
      radial-gradient(
        700px 400px at 20% 30%,
        rgba(122, 31, 43, 0.35),
        transparent 60%
      ),
      radial-gradient(
        700px 400px at 45% 60%,
        rgba(25, 135, 84, 0.25),
        transparent 60%
      );
  }
  .hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: clamp(68vh, 72vh, 780px);
    gap: clamp(16px, 4vw, 48px);
  }

  .tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--textColor2);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: var(--secondStyleColor);
  }
  .hero__title {
    margin: 12px 0 8px;
    line-height: 1.05;
    text-wrap: balance;
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    font-weight: 900;
  }
  .hero__subtitle {
    color: var(--textColor1);
    margin: 0 0 18px;
    max-width: 56ch;
  }
  .hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn {
    --pad-x: 18px;
    --pad-y: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
      background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    will-change: transform;
  }
  .btn--primary {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .btn--primary:hover {
    transform: translateY(-2px);
  }
  .btn--ghost {
    background: transparent;
    color: #fff;
    border-color: var(--ring);
  }
  .btn--ghost:hover {
    border-color: #fff;
    transform: translateY(-2px);
  }
  .btn--tiny {
    --pad-x: 14px;
    --pad-y: 8px;
    font-weight: 700;
    border-radius: 10px;
    background: var(--secondStyleColor);
    color: #fff;
    border: 1px solid var(--borderRadius);
  }
  .btn--tiny:hover {
    transform: translateY(-2px);
    border-color: #fff;
  }
  .hero_rigth_img {
    width: 500px;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  .hero__shape {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 48px;
    fill: var(--bodyBG);
  }

  .hero__statpanel {
    margin-right: clamp(16px, 4vw, 40px);
  }

  @media (max-width: 800px) {
    .hero__statpanel {
      display: none;
    }
    .hero__inner {
      height: 60vh;
      min-height: auto;
    }
  }

/* ---- next <style> block ---- */

:root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }
  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    white-space: nowrap;
    margin: 0 !important;
    text-align: center;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 1px solid var(--secondStyleColor);
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
  }

  .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;
    }
  }

/* ---- next <style> block ---- */

.aboutSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .aboutWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
  }

  /* Left content */
  .sectionEyebrow {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .aboutTitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--textColor1);
  }

  .aboutSubtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 25px;
  }

  .aboutText {
    font-size: 16px;
    line-height: 1.65;
    color: #d2d2d2;
    margin-bottom: 35px;
  }

  /* Bullet list */
  .aboutList {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .aboutListItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
  }

  .aboutIcon {
    color: var(--secondStyleColor);
    margin-top: 4px;
  }

  /* Right block (badge + stats) */
  .aboutSide {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .aboutSide img {
    width: 500px;
  }

  .aboutBadge {
    background: var(--secondStyleColor);
    color: var(--textColor2);
    padding: 12px 20px;
    border-radius: var(--borderRadius);
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    width: fit-content;
  }

  .aboutStats {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .aboutStatCard {
    background: #333;
    padding: 20px 25px;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s ease;
  }

  .aboutStatCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateX(5px);
  }

  .aboutStatValue {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondStyleColor);
    margin-bottom: 5px;
  }

  .aboutStatLabel {
    font-size: 14px;
    color: #bbb;
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .aboutWrapper {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .aboutSide img {
      width: 300px;
    }
  }

/* ---- next <style> block ---- */

/* ===== FEATURES SECTION (VARIANT 1) ===== */

  .featuresSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .featuresWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

  .featuresEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .featuresTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

  .featuresSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .featuresGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .featureCard {
    background: #2b2b2b;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featureCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-4px);
  }

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .featureIcon i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .featureTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: #d2d2d2;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .featuresGrid {
      grid-template-columns: 1fr;
    }
  }

/* ---- next <style> block ---- */

/* ===== HOW v4 (random class variant) ===== */

  .howBlock_wk29 {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .howWrap_t91d {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .howHead_p3q1 {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
  }

  .howLabel_m4t2 {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .howMainTitle_jx7p {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .howDesc_d9z1 {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .howSteps_l1a0 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  /* Tile */
  .howTile_r0x4 {
    position: relative;
    text-align: center;
    background: #262626;
    border-radius: var(--borderRadius);
    padding: 26px 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    overflow: hidden;
  }

  .howTile_r0x4:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-4px);
  }

  .howTile_r0x4::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top center,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent 55%
    );
    opacity: 0;
    transition: 0.25s ease;
  }

  .howTile_r0x4:hover::before {
    opacity: 1;
  }

  /* Badge */
  .howNum_b7d2 {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.1);
    border: 1px solid rgba(2, 255, 57, 0.6);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  /* Icon */
  .howIcon_f2m9 {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
  }

  .howIcon_f2m9 i {
    font-size: 22px;
    color: var(--secondStyleColor);
  }

  /* Titles */
  .howTitle_g4s0 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .howText_u8e1 {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .howSteps_l1a0 {
      grid-template-columns: 1fr;
    }
  }

/* ---- next <style> block ---- */

.expertReview a {
    color: var(--secondStyleColor);
  }
  #expertreview h2 {
    text-align: center;
  }
  .expertReview p {
    border-left: 5px solid var(--secondStyleColor);
    padding-left: 20px;
    margin-bottom: 30px;
    span {
      font-style: italic;
      opacity: 0.6;
    }
  }

/* ---- next <style> block ---- */

/* ===== ROADMAP BASE ===== */

  .roadmapSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .roadmapWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .roadmapHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .roadmapEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .roadmapTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .roadmapSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* ===== ROADMAP v1 (timeline) ===== */

  .roadmapTimeline {
    margin-top: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .roadmapStep {
    position: relative;
    background: #262626;
    border-radius: var(--borderRadius);
    padding: 16px 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .roadmapStep::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

  .roadmapStep:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .roadmapBadge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondStyleColor);
    margin-bottom: 6px;
  }

  .roadmapStepTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapStepText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== ROADMAP v2 (cards grid) ===== */

  .roadmapSection-v2 .roadmapGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .roadmapCard {
    background: #262626;
    border-radius: var(--borderRadius);
    padding: 18px 20px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

  .roadmapCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .roadmapCardTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .roadmapYear {
    font-size: 13px;
    font-weight: 600;
  }

  .roadmapTag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(2, 255, 57, 0.7);
    color: var(--secondStyleColor);
  }

  .roadmapCardTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmapCardText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== ROADMAP v3 (horizontal track) ===== */

  .roadmapSection-v3 .roadmapTrack {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .roadmapTrackLine {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 0;
  }

  .roadmapStage {
    position: relative;
    background: #262626;
    border-radius: var(--borderRadius);
    padding: 30px 18px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
    z-index: 1;
  }

  .roadmapStage--active {
    border-color: var(--secondStyleColor);
  }

  .roadmapDot {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px rgba(2, 255, 57, 0.25);
  }

  .roadmapStageLabel {
    margin-left: 28px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b5ffbf;
    margin-bottom: 4px;
  }

  .roadmapStageTitle {
    font-size: 16px;
    font-weight: 600;
    margin-left: 0;
    margin-bottom: 6px;
  }

  .roadmapStageText {
    font-size: 14px;
    line-height: 1.7;
    color: #dddddd;
  }

  /* ===== RESPONSIVE ===== */

  @media (max-width: 900px) {
    .roadmapSection-v2 .roadmapGrid {
      grid-template-columns: 1fr;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 640px) {
    .roadmapTimeline {
      border-left: none;
      padding-left: 0;
    }

    .roadmapStep::before {
      left: 14px;
    }

    .roadmapSection-v3 .roadmapTrack {
      grid-template-columns: 1fr;
    }

    .roadmapTrackLine {
      display: none;
    }
  }

/* ---- next <style> block ---- */

/* ---------- Spotlight Reels (Mosaic + Lightbox) ---------- */
  .fxl-reels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 20px;
  }
  .fxl-head {
    margin-bottom: 45px;
    text-align: center;
  }

  .fxl-reel {
    position: relative;
    display: block;
    padding: 0;
    border: 1px solid var(--secondStyleColor);
    border-radius: calc(var(--borderRadius) + 2px);
    overflow: hidden;
    background: #0c221a;
    box-shadow: var(--fxl-shadow);
    transition: transform 0.3s ease;
  }
  .fxl-reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* органичная маска */
    mask-image: radial-gradient(
      120% 80% at 80% 20%,
      #000 60%,
      transparent 100%
    );
  }
  .fxl-reel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  .fxl-reel:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  .fxl-reel:hover img {
    transform: scale(1.06);
  }

  .fxl-reel__cap {
    position: absolute;
    left: 12px;
    bottom: 10px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 42, 31, 0.75);
    border: 1px solid var(--secondStyleColor);
    font-size: 12px;
    color: var(--textColor1);
  }

  /* Layout variants */
  .fxl-reel--wide {
    grid-column: span 4;
    grid-row: span 2;
  }
  .fxl-reel--tall {
    grid-column: span 2;
    grid-row: span 3;
  }
  .fxl-reels > .fxl-reel:not(.fxl-reel--wide):not(.fxl-reel--tall) {
    grid-column: span 2;
    grid-row: span 2;
  }

  @media (max-width: 1200px) {
    .fxl-reels {
      grid-template-columns: repeat(4, 1fr);
    }
    .fxl-reel--wide {
      grid-column: span 4;
    }
  }
  @media (max-width: 800px) {
    .fxl-reels {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .fxl-reel--wide,
    .fxl-reel--tall {
      grid-column: span 2;
      grid-row: span 2;
    }
  }

/* ---- next <style> block ---- */

.partners {
    position: relative;
  }

  .partners::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    inset: 0;
    background-color: var(--secondStyleColor);
    opacity: 0.1;
  }

  .partners__container {
    text-align: center;
  }

  .partners__title {
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--textColor1);
  }

  .partners__logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    transition: transform 0.25s ease;
    padding-bottom: 0;
  }

  .partners__logo-wrapper a {
    display: flex;
    justify-content: center;
  }

  .partners__logo-wrapper:hover {
    transform: scale(1.05);
  }

  .partners__logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  }

/* ---- next <style> block ---- */

.beamSlot {
    padding: 64px 0;
    color: var(--textColor1);
  }

  .beamSlotShell {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
    gap: 28px;
    padding: 0 20px;
    align-items: center;
  }

  /* Текст слева */
  .beamSlotLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .beamSlotTitle {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .beamSlotLead {
    font-size: 15px;
    line-height: 1.7;
    color: #d2d2d2;
  }

  /* Панель справа */
  .beamSlotPanel {
    background: #242424;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    padding: 18px 18px 16px 18px;
  }

  .beamSlotFieldGroup {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  .beamSlotInput {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #181818;
    color: var(--textColor1);
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
  }

  .beamSlotInput::placeholder {
    color: #808080;
  }

  .beamSlotInput:focus {
    border-color: var(--secondStyleColor);
  }

  .beamSlotButton {
    border-radius: 999px;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    white-space: nowrap;
    transition: 0.18s ease;
  }

  .beamSlotButton:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }

  .beamSlotHint {
    font-size: 12px;
    line-height: 1.6;
    color: #a0a0a0;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .beamSlotShell {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .beamSlotFieldGroup {
      flex-direction: column;
    }

    .beamSlotButton {
      width: 100%;
      text-align: center;
    }
  }

/* ---- next <style> block ---- */

[data-accordion-element-content] {
    overflow: hidden;
    transition: height 0.5s;
  }

  :root {
    --bgHead: var(--bodyBG);
    --bgHeadHover_active: var(--secondStyleColor);
    --bgText: rgba(255, 255, 255, 0.1);
  }

  .faq h2 {
    text-align: center;
  }
  .card-faq {
    width: 90%;
    margin: 50px auto;
    border-radius: 2px;
    background: transparent;
    margin-top: 40px;
  }

  .faq-article {
    position: relative;
    transition: all 0.3s;
    background-color: transparent;
    border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -ms-border-radius: 0 0 12px 12px;
    -o-border-radius: 0 0 12px 12px;
    p {
      padding: 10px 20px;
    }
  }

  .faq-article.selected {
    transform: scale(1.1);
    z-index: 2;
    background: var(--bgText);
  }

  .faq-h3 {
    position: relative;
    background: var(--bgHead);
    padding: 20px 75px 20px 20px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    overflow: hidden;
    transition: background 0.3s;
    margin: 10px 0;
    cursor: pointer;
  }

  .faq-h3:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .selected .faq-h3 {
    cursor: pointer;
    background: var(--bgHeadHover_active);
    color: var(--bgHead);
    border: none;
  }

  .faq-h3:before,
  .faq-h3:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -1px;
    margin-right: 30px;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s;
  }

  .faq-h3:before {
    transform: rotate(0deg);
    animation: close-line-one-in 0.8s forwards;
  }

  .selected .faq-h3:before {
    animation: close-line-one-out 0.8s forwards;
    background: #000;
  }

  .faq-h3:after {
    transform: rotate(90deg);
    animation: close-line-two-in 0.8s forwards;
  }

  .selected .faq-h3:after {
    background: #000;
    animation: close-line-two-out 0.8s forwards;
  }

  .content {
    opacity: 0;
    transform: translateY(20px);
    transition: all ease-out 0.4s 0.1s;
  }

  .selected .content {
    transform: translateY(0);
    opacity: 1;
  }

  .faq-p {
    padding: 25px 30px 40px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
  }

  @keyframes close-line-one-out {
    0%,
    50% {
      transform: translateX(0);
    }
    75% {
      transform: translateX(50px);
    }
    76% {
      transform: translateX(50px) translateY(50px);
    }
    100% {
      transform: rotate(45deg);
    }
  }

  @keyframes close-line-one-in {
    0%,
    20% {
      transform: rotate(45deg);
    }
    60% {
      transform: translateX(50px) translateY(50px) rotate(45deg);
    }
    61% {
      transform: translateX(50px);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  @keyframes close-line-two-out {
    0%,
    50% {
      transform: rotate(90deg);
    }
    75% {
      transform: translateY(-50px) rotate(90deg);
    }
    76% {
      transform: translateY(-50px) translateX(50px) rotate(90deg);
    }
    100% {
      transform: rotate(135deg);
    }
  }

  @keyframes close-line-two-in {
    0% {
      transform: rotate(135deg);
    }
    50% {
      transform: translateY(-50px) translateX(50px) rotate(135deg);
    }
    51% {
      transform: translateY(-50px) rotate(90deg);
    }
    100% {
      transform: rotate(90deg);
    }
  }

  @media screen and (max-width: 750px) {
    .card-faq {
      width: 90%;
    }
  }

/* ---- next <style> block ---- */

/* ===== FOOTER ===== */

  .footer {
    background: #181818;
    color: var(--textColor1);
    padding: 40px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footerWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Верхняя часть */
  .footerTop {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 24px;
  }

  /* Бренд */
  .footerBrand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .footerLogo {
    color: var(--secondStyleColor);
  }

  .footerLogo i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .footerBrandName {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .footerBrandTagline {
    font-size: 14px;
    color: #bcbcbc;
    padding-top: 10px;
  }

  /* Навигация и контакты */
  .footerNavLabel {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .footerNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footerNav li + li {
    margin-top: 6px;
  }

  .footerNav a {
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.15s ease;
  }

  .footerNav a:hover {
    color: var(--secondStyleColor);
  }

  /* Контакты */
  .footerContactLine {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 4px;
  }

  .footerSocial {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .footerSocial a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 14px;
    transition: 0.15s ease;
  }

  .footerSocial a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
  }

  /* Нижняя полоска */
  .footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9a9a9a;
  }

  .footerMeta {
    text-align: right;
  }

  /* Адаптив */
  @media (max-width: 900px) {
    .footerTop {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 650px) {
    .footerTop {
      grid-template-columns: 1fr;
    }

    .footerBottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .footerMeta {
      text-align: left;
    }
  }