:root {
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
}

/* ---- next <style> block ---- */

/* HEADER */
.header {
  background-color: var(--secondStyleColor);
  color: var(--textColor2);
}
.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(--textColor2);
  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(--textColor2);
  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(--textColor2);
  text-decoration: none;
}

@media screen and (max-width: 800px) {
  .headerWrapper {
    padding: 0 20px;
  }
  .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(--textColor2);
    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 v1 ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bodyBG);
}

/* Фоновое изображение */
.heroBG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) brightness(0.55);
  transform: scale(1.1);
  z-index: 1;
  object-position: 50% 20%;
}

/* Контент */
.hero > .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* Левая колонка */
.hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--textColor1);
  margin: 0 0 15px 0;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero a {
  display: inline-block;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  padding: 14px 32px;
  border-radius: var(--borderRadius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.hero a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Справа — второе изображение */
.hero > .container > img {
  width: 420px;
  height: auto;
  border-radius: var(--borderRadius);
  object-fit: contain;
}

/* ===== Адаптив ===== */
@media (max-width: 950px) {
  .hero > .container {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero > .container > img {
    width: 300px;
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero > .container > img {
    display: none;
  }
}

/* ---- 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 ---- */

/* контейнер секции */
#reviews .swiper {
  width: 100%;
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

.rv-wrap {
  padding: 40px 0 40px;
}

.badges {
  margin-right: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* шапка секции */
.rv-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  gap: 14px;
  margin-bottom: 45px;
}

.rv-kicker {
  grid-column: 1 / -1;
  color: var(--textColor1);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
}

.rv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondStyleColor);
}

.rv-title {
  margin: 0;
  color: var(--textColor1);
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.12em;
}

/* контролы */
.rv-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* кнопки навигации */
.rev-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--secondStyleColor);
  background: var(--secondStyleColor);
  color: var(--textColor2);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 17px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.rev-btn:hover {
  transform: translateY(-1px);
}

/* карточки */
.rv-card {
  background: var(--bodyBG);
  border: 1px solid var(--secondStyleColor);
  border-radius: var(--borderRadius);
  padding: 18px 20px;
  color: var(--textColor1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  cursor: grab;
  transition: border-color 0.2s ease, transform 0.22s ease;
  position: relative;
  min-height: 150px;
  width: 96%;
}
.rv-card:active {
  cursor: grabbing;
}

/* верх карточки */
.rv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  margin-bottom: 8px;
}

.rv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.8);
  overflow: hidden;
}

.rv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.rv-meta strong {
  color: var(--rv-text-main);
  font-weight: 700;
  font-size: 15px;
}

.rv-meta span {
  font-size: 12px;
  color: var(--textColor2);
}

.rv-rate {
  position: absolute;
  right: 20px;
  bottom: 0;
  margin-left: auto;
  color: var(--secondStyleColor);
  font-weight: 800;
  font-size: 150px;
  opacity: 0.3;
  z-index: 0;
}

/* текст отзыва */
.rv-quote {
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0 12px;
  color: var(--textColor1);
  flex-grow: 1;
  width: 70%;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-right: auto;
}

/* теги */
.rv-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rv-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--rv-chip);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* мини-лейблы */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--secondStyleColor);
  color: var(--textColor2);
  position: relative;
  z-index: 1;
}

/* адаптив */
@media (max-width: 980px) {
  .rv-card {
    width: 90%;
    height: auto;
    margin-inline: auto;
    padding: 16px;
    min-height: 220px;
  }

  .pill {
    font-size: 14px;
  }
  .rv-quote {
    font-size: 16px;
    width: 100%;
  }
  .rv-rate {
    top: 10px;
    opacity: 1;
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .rv-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }

  .rv-controls {
    justify-content: center;
  }

  .rv-title {
    text-align: center;
    font-size: 22px;
  }

  .rv-card {
    width: 95%;
    padding: 14px;
    min-height: 200px;
  }

  .rv-quote {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .rv-wrap {
    padding: 28px 0 32px;
  }

  .rv-card {
    width: 90%;
    height: auto;
    margin-inline: auto;
    padding: 12px;
    min-height: 180px;
  }

  .rv-controls {
    justify-content: center;
  }

  .rv-head {
    margin-bottom: 25px;
  }

  .rv-title {
    font-size: 20px;
  }

  .rv-quote {
    font-size: 13px;
    margin: 4px 0 10px;
  }

  .rv-top {
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .rv-card {
    padding: 10px;
    min-height: 160px;
  }

  .rv-quote {
    font-size: 12px;
  }

  .rev-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}

/* ---- next <style> block ---- */

.plansWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.planshead {
  margin-bottom: 45px;
}

ul.product-plans {
  /* width: min(60rem, 90%); */
  margin-inline: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
ul.product-plans li.product-plan:nth-child(1) {
  --accent-color: var(--secondStyleColor);
}
ul.product-plans li.product-plan:nth-child(2) {
  --accent-color: var(--secondStyleColor);
}
ul.product-plans li.product-plan:nth-child(3) {
  --accent-color: var(--secondStyleColor);
}

ul.product-plans li.product-plan {
  --overlap-size: 1.5rem;
  --border-radius: 5rem;
  /* width: min(15rem, 100%); */
  margin-inline: var(--overlap-size);
  padding-block: 2rem;
  display: grid;
  grid-template-rows: max-content max-content 1fr max-content;
  gap: 0.5rem;
  border-radius: var(--border-radius) 0 var(--border-radius) 0;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

ul.product-plans li.product-plan .title {
  font-size: 2rem;
  color: var(--textColor1);
  text-align: center;
}

ul.product-plans li.product-plan .price {
  margin-right: calc(var(--overlap-size) * -1);
  justify-self: end;
  padding-block: 0.25rem;
  padding-inline: var(--overlap-size);
  background-color: var(--accent-color);
  color: var(--textColor2);
  position: relative;
}
ul.product-plans li.product-plan .price::after {
  content: "";
  position: absolute;
  height: var(--overlap-size);
  width: var(--overlap-size);
  right: 0;
  top: 100%;
  background-color: inherit;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

ul.product-plans li.product-plan .btn {
  justify-self: start;
  margin-left: calc(var(--overlap-size) * -1);
  padding-block: 0.5rem;
  padding-inline: 2.5rem;
  border: none;
  font-family: inherit;
  color: var(--textColor2);
  font-size: 1.1rem;
  background-color: var(--secondStyleColor);
  background-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.25) 0);
  background-size: 100% 200%;
  transition: background-position 100ms ease;
  border-radius: var(--border-radius);
  position: relative;
  cursor: pointer;
}
ul.product-plans li.product-plan .btn:focus-visible {
  outline-offset: 5px;
  outline: 2px solid var(--accent-color);
  background-position: 0 100%;
}

ul.product-plans li.product-plan .btn:hover {
  background-position: 0 100%;
  color: #fff;
}

ul.product-plans li.product-plan .btn:active {
  transform: scale(0.95);
}
ul.product-plans li.product-plan .btn:active::after {
  transform-origin: left bottom;
  transform: scale(0.9);
}

ul.product-plans li.product-plan .features {
  align-self: flex-start;
  list-style: none;
  padding-inline: 2rem;
  display: grid;
}

ul.product-plans li.product-plan .features li:not(:first-child) {
  border-top: 1px solid rgb(200, 200, 200);
}
ul.product-plans li.product-plan .features li {
  padding: 0.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1rem 1fr;
}

ul.product-plans li.product-plan .features li::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: grid;
  place-items: center;
}
ul.product-plans li.product-plan .features li.check::before {
  content: "\2713";
  color: green;
}
ul.product-plans li.product-plan .features li.cross::before {
  content: "\d7";
  color: red;
}
.credits {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.credits a ul.product-plans li.product-plan {
  color: var(--color);
}
.product-plan {
  border: 1px solid var(--secondStyleColor);
  color: var(--textColor1);
}

@media (max-width: 800px) {
  .product-plans {
    margin-bottom: 20px;
  }
  .planshead {
    margin-bottom: 30px;
  }
}

/* ---- next <style> block ---- */

.aboutWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}
.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-left a {
  padding: 15px 20px;
  background-color: var(--secondStyleColor);
  border-radius: var(--borderRadius);
  width: fit-content;
  color: var(--textColor2);
  font-weight: 900;
  text-transform: uppercase;
}
.about-right {
  display: flex;
  align-items: center;
  gap: 20px;
  .a_img {
    height: 400px;
    object-position: top;
    border-radius: var(--borderRadius);
    img {
      border-radius: inherit;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: top;
    }
  }
}
@media (max-width: 800px) {
  .aboutWrapper {
    display: flex;
    flex-direction: column;
  }
  .about-right {
    display: flex;
    flex-direction: column;
  }
  .about-right {
    width: 100%;
  }
  .a_img {
    width: 100%;
  }
}

/* ---- 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;
  object-position: 50% 20%;
  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 ---- */
.pShip {
  position: relative;
}
.pShipBG {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 20%;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.1;
  -webkit-filter: blur(5px);
}

.pShip__inner {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 420px;
  position: relative;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}
.hexTri__hex {
  transition: 0.3s all cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: 0.3s all cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: 0.3s all cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: 0.3s all cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.3s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hexTri__wrap a:hover {
  .hexTri__hex {
    transform: scale(102%);
    -webkit-transform: scale(102%);
    -moz-transform: scale(102%);
    -ms-transform: scale(102%);
    -o-transform: scale(102%);
  }
}
/* вертикальные линии как на рефе */
.pShip__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.06) 0,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px,
    transparent 150px
  );
  opacity: 0.35;
}

/* LEFT container */
.pShip__left {
  z-index: 1;
  /* padding: 28px; */
}

/* RIGHT */

.pShip__right {
  z-index: 1;
  padding: clamp(26px, 4vw, 60px);
  display: grid;
  align-content: center;
  gap: 16px;
  p {
    max-width: 400px;
  }
}

.pShip__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--textColor1);
}

.pShip__title {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  color: var(--textColor1);
}

/* ========== HEX TRI (то что уже было) ========== */
.hexTri__wrap {
  position: relative;
  width: min(760px, 100%);
  height: clamp(320px, 45vw, 520px);
  margin: 0 auto;
}

.hexTri__hex {
  position: absolute;
  width: clamp(150px, 22vw, 240px);
  aspect-ratio: 1/1;
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0% 50%);
  background: var(--textColor1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hexTri__hex::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.16), transparent 52%);
  transform: rotate(-2deg);
  opacity: 0.55;
}

.hexTri__icon {
  position: relative;
  z-index: 2;
  width: 120px;
  object-fit: contain;
}

.icon-p-1 {
  width: 200px;
  filter: invert(100%);
}

/* позиции 3 сот (не в ряд) */
.hexTri__hex--a {
  left: 0%;
  top: 0%;
}
.hexTri__hex--b {
  left: 26%;
  top: 32%;
}
.hexTri__hex--c {
  left: 62%;
  top: 22%;
}

/* responsive */
@media (max-width: 980px) {
  .pShip__inner {
    flex-direction: column-reverse;
  }
  .hexTri__icon {
    width: 90px;
  }
  .pShip__right p {
    text-align: center;
  }

  .icon-p-1 {
    width: 110px;
  }
  .pShip__right {
    padding-top: 6px;
  }

  .hexTri__hex--a,
  .hexTri__hex--b,
  .hexTri__hex--c {
    left: auto;
    top: auto;
  }
  .hexTri__wrap {
    display: flex;
    flex-direction: column;
  }
  .hexTri__hex {
    position: relative;
    width: 180px;
  }
  .hexTri__wrap {
    padding: 0;
    height: fit-content;
    a {
      display: flex;
      justify-content: center;
    }
  }
  .pShip__kicker,
  .pShip__title {
    text-align: center;
  }
}

/* ---- next <style> block ---- */

.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: transparent;
  border-radius: var(--borderRadius);
  padding: 22px 22px 24px 22px;
  border: 1px solid var(--secondStyleColor);
  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 ---- */

.unitLuma {
  padding: 80px 0;
  color: var(--textColor1);
}

.unitLumaShell {
  max-width: var(--maxWidthContainer);
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

/* Левая колонка */
.unitLumaLabel {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.unitLumaTitle {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 14px 0;
}

.unitLumaLead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--textColor1);
  max-width: 420px;
}

/* Правая колонка: карточки */
.unitLumaGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.unitLumaCard {
  border-radius: var(--borderRadius);
  border: 1px solid var(--secondStyleColor);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
  padding: 18px 18px 20px 18px;
  transition: 0.18s ease;
}

.unitLumaCard:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-3px);
}

.unitLumaCardAccent {
  background: radial-gradient(
    circle at top left,
    rgba(2, 255, 57, 0.16),
    #262626 55%
  );
}

.unitLumaCardTitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.unitLumaCardText {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Адаптив */
@media (max-width: 900px) {
  .unitLumaShell {
    grid-template-columns: 1fr;
  }

  .unitLumaGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .unitLumaGrid {
    grid-template-columns: 1fr;
  }
}

/* ---- next <style> block ---- */

/* ===== HOW IT WORKS SECTION ALT (VARIANT 2) ===== */

.howSection-alt {
  padding: 80px 0;
  background: var(--bodyBG);
  color: var(--textColor1);
}

.howAltWrapper {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
}

/* Header */
.howAltHeader {
  max-width: 700px;
  margin: 0 auto 45px auto;
  text-align: center;
}

.howEyebrow {
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--secondStyleColor);
  font-weight: 600;
  margin-bottom: 10px;
}

.howTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--textColor1);
}

.howSubtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* Timeline */
.howAltTimeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 28px;
}

.howAltLine {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--secondStyleColor),
    rgba(2, 255, 57, 0.05)
  );
}

/* Step */
.howAltStep {
  position: relative;
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.howAltDot {
  position: relative;
  flex: 0 0 36px;
  height: 36px;
  border-radius: 999px;
  /* background: #2b2b2b; */
  border: 1px solid var(--secondStyleColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--textColor1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  z-index: 1;
  margin-left: -2px;
}

.howAltStepBody {
  border-radius: var(--borderRadius);
  padding: 18px 20px 18px 20px;
  border: 4px dotted var(--secondStyleColor);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
  transition: 0.18s ease;
}

.howAltStepTitle {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.howAltStepText {
  font-size: 14px;
  line-height: 1.6;
  color: #d4d4d4;
}

.howAltStepBody:hover {
  border-color: var(--secondStyleColor);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 700px) {
  .howAltTimeline {
    padding-left: 18px;
  }

  .howAltLine {
    left: 10px;
  }

  .howAltStep {
    gap: 12px;
  }

  .howAltStepBody {
    padding: 16px 16px;
  }
}

/* ---- next <style> block ---- */

.faq {
  margin-bottom: 100px;
  color: var(--textColor1);
}

/* Внутренняя секция */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  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);
}

.faq-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--textColor1);
}

/* Элементы Najczęściej zadawane pytania */
.faq-item {
  border-bottom: 2px solid var(--secondStyleColor);
  padding: 12px 0;
}

.faq h3 {
  margin: 10px 0;
}

/* Кнопка-вопрос */
.faq-question {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  color: var(--textColor1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
}

.faq-question::after {
  content: "+";
  font-size: 32px;
  transition: transform 0.2s ease;
  color: var(--secondStyleColor);
}

.faq-question.active::after {
  content: "-";
  transform: rotate(180deg);
}

/* Ответ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 15px;
  color: var(--textColor1);
  padding-top: 0;
}

.faq-answer p {
  margin-top: 0;
}

/* Открытый ответ (по классу из твоего JS) */
.faq-answer.open {
  max-height: 200px; /* можно увеличить, если текст длиннее */
  /* padding-top: 10px; */
}

/* Если используешь .reviewsWrapper рядом — оставил хук */
.reviewsWrapper h2 {
  margin-bottom: 20px;
}

/* Мобилка */
@media screen and (max-width: 750px) {
  .faq {
    margin-bottom: 60px;
  }

  .faq-section {
    padding: 30px 16px;
  }
}

/* ---- 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;
  }
}
