:root {
        --font-sans: "Poppins", 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 {
    position: relative;
    padding: 130px 0;
    text-align: center;
    background: var(--bodyBG);
    overflow: hidden;
    color: var(--textColor1);
  }
  h1 {
    text-transform: uppercase;
    font-weight: 900;
  }

  /* Фоновая картинка */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.5);
    z-index: 1;
  }

  /* Контейнер поверх */
  .hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Заголовок */
  .hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    text-wrap: balance;
  }

  /* Подзаголовок */
  .hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    color: var(--textColor1);
  }

  /* Кнопка */
  .hero a {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: 0.2s ease;
  }

  .hero a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Адаптив */
  @media (max-width: 700px) {
    .hero {
      padding: 100px 0;
    }

    .hero h1 {
      font-size: 34px;
    }

    .hero p {
      font-size: 16px;
    }
  }

/* ---- 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 ---- */

/* ===== ABOUT SECTION ===== */

  .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: start;
  }

  /* 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;
  }

  .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;
    }
  }

/* ---- next <style> block ---- */

/* ===== FEATURES SECTION ALT (VARIANT 2) ===== */

  .featuresSection-alt {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .featuresAltWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .featuresAltHeader {
    max-width: 760px;
    margin: 0 auto 45px 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 layout */
  .featuresAltGrid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: flex-start;
  }

  /* Left: stacked rows */
  .featuresAltList {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .featureRow {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 18px 20px;
    background: #2b2b2b;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.18s ease;
  }

  .featureRow:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .featureRowIcon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
  }

  .featureRowIcon i {
    color: var(--secondStyleColor);
    font-size: 18px;
  }

  .featureRowTitle {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .featureRowText {
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
  }

  /* Right: highlight card */
  .featuresAltHighlightInner {
    background: #2b2b2b;
    border-radius: var(--borderRadius);
    padding: 24px 24px 26px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
  }

  .highlightLabel {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .highlightTitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .highlightText {
    font-size: 14px;
    line-height: 1.7;
    color: #d6d6d6;
    margin-bottom: 10px;
  }

  .highlightList {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
  }

  .highlightList li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 6px;
  }

  .highlightList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .featuresAltGrid {
      grid-template-columns: 1fr;
    }

    .featureRow {
      grid-template-columns: auto minmax(0, 1fr);
    }

    .featuresAltHighlightInner {
      padding: 22px 20px;
    }
  }

/* ---- 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 ---- */

/* ===== EXPERT REVIEW (ADAPTED TO DARK THEME) ===== */

  .expertreview {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .expertreview .container {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .expertreview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  /* сетка */
  .expertReview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* ссылки внутри цитат — акцент тем же зелёным */
  .expertReview a {
    color: var(--secondStyleColor);
    text-decoration: none;
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .expertReview a:hover {
    border-color: var(--secondStyleColor);
  }

  /* левый штрих у абзаца — градиент от ярко-зелёного к прозрачному */
  .expertReview p {
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--secondStyleColor), transparent)
      1;
    padding-left: 18px;
    margin: 0 0 1rem;
    font-style: italic;
    color: #e0e0e0;
  }

  /* автор */
  .expertReview span {
    font-style: italic;
    opacity: 0.75;
    display: block;
    text-align: right;
    color: #c4c4c4;
  }

  /* карточки */
  .review-card {
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--borderRadius);
    padding: 2rem 2.2rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
    border-color: var(--secondStyleColor);
  }

  /* 2 колонки на десктопе */
  @media (min-width: 900px) {
    .expertReview {
      grid-template-columns: 1fr 1fr;
    }
  }

/* ---- 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 ---- */

/* ===== GALLERY SECTION ===== */

  .gallerySection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .galleryWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .galleryHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

  .galleryEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .galleryTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .gallerySubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cfcfcf;
  }

  /* Grid */
  .galleryGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  /* Item */
  .galleryItem {
    background: #262626;
    border-radius: var(--borderRadius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: 0.2s ease;
  }

  .galleryItem:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  /* Image wrapper (фиксированное соотношение) */
  .galleryImageFrame {
    position: relative;
    width: 100%;
    padding-top: 62%; /* ~16:10 */
    overflow: hidden;
  }

  .galleryImageFrame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Caption */
  .galleryCaption {
    padding: 10px 12px 12px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .galleryGrid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 600px) {
    .galleryGrid {
      grid-template-columns: 1fr;
    }
  }

/* ---- next <style> block ---- */

.ctaBlock_x92f--wrapper {
    padding: 80px 0;
    color: var(--textColor1);
  }

  .ctaBlock_x92f-container {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    padding: 0 20px;
    background: #262626;
    border-radius: var(--borderRadius);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ctaBlock_x92f-header {
    text-align: center;
    padding: 35px 0 20px;
  }

  .ctaBlock_x92f-title {
    font-size: 28px;
    margin: 0 0 8px;
    color: var(--textColor1);
  }

  .ctaBlock_x92f-subtitle {
    font-size: 15px;
    color: #cccccc;
    margin: 0 auto;
    line-height: 1.6;
  }

  .ctaBlock_x92f-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 0 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .ctaBlock_x92f-input,
  .ctaBlock_x92f-textarea {
    width: 100%;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--textColor1);
    border-radius: var(--borderRadius);
    padding: 12px 14px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
  }

  .ctaBlock_x92f-input:focus,
  .ctaBlock_x92f-textarea:focus {
    border-color: var(--secondStyleColor);
  }

  .ctaBlock_x92f-textarea {
    min-height: 120px;
    resize: none;
  }

  .ctaBlock_x92f-btn {
    margin-top: 6px;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--borderRadius);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .ctaBlock_x92f-btn:hover {
    background: #00e234;
    transform: translateY(-2px);
  }

  @media (max-width: 600px) {
    .ctaBlock_x92f-title {
      font-size: 24px;
    }
    .ctaBlock_x92f-subtitle {
      font-size: 14px;
    }
  }

/* ---- next <style> block ---- */

/* ===== FAQ SECTION ===== */

  .faqSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .faqWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 45px 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: #cfcfcf;
  }

  /* List */
  .faqList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Item */
  .faqItem {
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--borderRadius);
    padding: 22px 24px;
    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: #e0e0e0;
  }

  /* Responsive */
  @media (max-width: 700px) {
    .faqItem {
      padding: 20px 18px;
    }
  }

/* ---- next <style> block ---- */

.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: #e5e7eb;
    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;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    align-items: flex-start;
  }

  .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 {
      align-items: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }