@import url("https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600&display=swap");

:root {
  --bg: #f6f7f8;
  --white: #ffffff;
  --black: #000000;
  --muted: #4a4f5e;
  --on-surface-var: #595f74;
  --radius-16: 16px;
  --radius-32: 32px;
  --shadow-1: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 6px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 360px;
  margin: 0;
  font-family: "Onest", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--black);
}

/* ══════════════════════════════════════════════
   Header
   ══════════════════════════════════════════════ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 0;
  background: transparent;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header__blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  background: linear-gradient(
    180deg,
    rgba(0, 8, 20, 0.38) 0%,
    rgba(0, 8, 20, 0.16) 42%,
    rgba(0, 8, 20, 0) 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 18%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 18%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-header.site-header--mega-open {
  background: #fff;
  box-shadow: var(--shadow-1);
}

.site-header.site-header--mega-open .site-header__blur {
  opacity: 0;
  visibility: hidden;
}

.site-header.site-header--mega-open .header-link {
  color: #000;
}

.site-header.site-header--mega-open .header__menu-btn-chevron {
  color: #000;
}

.site-header.site-header--mega-open .header-how {
  color: #000;
}

.site-header.site-header--mega-open .header-btn--outline {
  border-color: #93683b;
  color: #000;
  background: transparent;
}

.site-header.site-header--mega-open .header-btn--outline:hover {
  border-color: #7a5631;
  color: #4a4f5e;
}

.site-header.site-header--mega-open .header-btn--solid {
  background: #93683b;
  color: #fff;
}

.site-header.site-header--mega-open .header-btn--solid:hover {
  background: #7a5631;
}

.site-header.site-header--mega-open .header-cart img {
  filter: brightness(0);
}

.site-header.site-header--mega-open .header-logo img {
  filter: brightness(0);
}

.site-header.site-header--mega-open .header-burger .hamburger-inner,
.site-header.site-header--mega-open .header-burger .hamburger-inner::before,
.site-header.site-header--mega-open .header-burger .hamburger-inner::after {
  background-color: #000;
}

.header-container {
  position: relative;
  z-index: 1;
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 33px;
}

.header-logo img {
  height: 35px;
  width: 130px;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  color: #fff;
  font-family: "Onest", sans-serif;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.25s;
  user-select: none;
}

.header-link:hover,
.header-link:hover .header__menu-btn-chevron {
  color: #fb0953;
}

.header__menu-btn-chevron {
  display: block;
  flex-shrink: 0;
  color: #fff;
}

@media (min-width: 1160px) {
  .header__menu-btn-chevron {
    transition: transform 0.25s, color 0.25s;
  }

  .header__menu-btn-chevron.open {
    transform: rotate(-180deg);
  }
}

@media (max-width: 1260px) {
  .header-link {
    font-size: 14px;
    line-height: 1.36;
  }
}

@media (max-width: 1159px) {
  .header-link {
    display: none;
  }

  .header-logo img {
    margin-bottom: 0;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-how {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.header-how-icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 9999px;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.header-btn--outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.header-btn--outline:hover {
  border-color: #bec7d2;
  color: #bec7d2;
  background: transparent;
}

.header-btn--solid {
  background: #fff;
  color: #000;
}

.header-btn--solid:hover {
  background: #bec7d2;
}

.header-cart {
  position: relative;
  display: flex;
}

.header-cart img {
  width: 28px;
  height: 28px;
}

.header-cart__badge {
  position: absolute;
  top: -7px;
  left: 20px;
  box-sizing: border-box;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  background: #ff2b2b;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cart__badge[hidden] {
  display: none !important;
}

.header-mobile {
  display: none;
}

.header-burger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1159px) {
  .header-burger {
    display: flex;
  }
}

.header-burger .hamburger {
  display: flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.header-burger .hamburger-box {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
}

.header-burger .hamburger-inner {
  display: block;
  bottom: 6px;
  width: 70%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  transform-origin: center;
  transition:
    0.13s 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.25s;
}

.header-burger .hamburger-inner::before,
.header-burger .hamburger-inner::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  transform-origin: center;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
}

.header-burger .hamburger-inner::before {
  top: -8px;
  transition:
    top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0.25s;
}

.header-burger .hamburger-inner::after {
  top: -16px;
  transition:
    top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear,
    background-color 0.25s;
}

.header-burger .hamburger.is-active .hamburger-inner {
  width: 30px;
  bottom: 50%;
  transform: rotate(-45deg);
  transition:
    0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0.25s;
}

.header-burger .hamburger.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition:
    top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear,
    background-color 0.25s;
}

.header-burger .hamburger.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition:
    top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0.25s;
}

.header-burger:hover .hamburger-inner,
.header-burger:hover .hamburger-inner::before,
.header-burger:hover .hamburger-inner::after {
  background-color: #fb0953;
}

.header-account {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-account img {
  width: 35px;
  height: 35px;
}

.header-account__img--open {
  display: none;
}

@media (max-width: 1159px) {
  .site-header.site-header--mega-open .header-account__img--default {
    display: none;
  }

  .site-header.site-header--mega-open .header-account__img--open {
    display: block;
  }
}

@media (max-width: 1159px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    padding: 0 20px;
  }

  .header-mobile .header-left {
    gap: 30px;
  }

  .header-mobile .header-right {
    gap: 13px;
  }
}

/* ══════════════════════════════════════════════
   Mega menu (genotek.ru header__menu), document flow — не fixed
   ══════════════════════════════════════════════ */

.header__menu {
  display: block;
  width: 100%;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 54px 54px rgba(0, 0, 0, 0.1);
  transition: 0.1s;
}

.header__menu.open {
  opacity: 1;
  visibility: visible;
  max-height: 700px;
}

@media (max-height: 800px) {
  .header__menu.open {
    max-height: calc(100vh - 97px);
  }
}

@media (max-height: 800px) and (max-width: 1159px) {
  .header__menu.open {
    max-height: calc(100vh - 84px);
  }
}

.header__menu-container {
  display: block;
  width: 100%;
  max-width: 1390px;
  margin: auto;
  padding: 50px 45px;
}

@media (max-width: 1024px) {
  .header__menu-container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header__menu-container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 430px) {
  .header__menu-container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.header__menu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 576px) {
  .header__menu-row {
    margin: 0;
    width: 100%;
    flex-direction: column;
    row-gap: 20px;
  }
}

.header__menu-column {
  flex: 1 0 0;
  display: inline-block;
  order: 0;
}

.header__menu-column:first-child {
  order: 1;
}

.header__menu-column:nth-child(4) {
  order: 4;
}

.header__menu-column--analyses {
  order: 2;
}

@media (max-width: 576px) {
  .header__menu-column--analyses {
    order: 3;
  }
}

.header__menu-column--genealogy {
  order: 3;
}

@media (max-width: 576px) {
  .header__menu-column--genealogy {
    order: 2;
  }
}

@media (max-width: 992px) {
  .header__menu-column {
    flex-basis: calc(50% - 60px);
  }
}

@media (max-width: 576px) {
  .header__menu-column {
    flex-basis: 100%;
    display: block;
  }
}

.header__menu-title {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.header__menu-title--label-new {
  position: relative;
  display: block;
}

@media (max-width: 1400px) {
  .header__menu-title--label-new {
    max-width: 230px;
  }
}

@media (max-width: 992px) {
  .header__menu-title--label-new {
    max-width: 100%;
  }
}

@media (max-width: 770px) {
  .header__menu-title--label-new {
    max-width: 230px;
  }
}

@media (max-width: 576px) {
  .header__menu-title--label-new {
    max-width: 100%;
    white-space: nowrap;
  }
}

.header__menu-title--label-new a {
  letter-spacing: -0.3px;
  margin-right: 1px;
}

.header__menu-title a {
  color: #262626;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: solid 1px rgba(138, 124, 93, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header__menu-title a:hover {
  color: #e20c4a;
  border-bottom-color: rgba(206, 15, 86, 0.29);
}

.header__menu-title-label-new {
  display: inline;
  padding: 4px 9px;
  border-radius: 8px;
  background: linear-gradient(95deg, #ff53b4, #ff6713);
  font-size: 14px;
  line-height: 1.43;
  color: #fff;
  letter-spacing: -0.2px;
  vertical-align: middle;
}

.header__menu-nav {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
}

.header__menu-nav li {
  margin-bottom: 5px;
  margin-top: 0;
  vertical-align: top;
  list-style-type: none;
  font-size: 14px;
  color: #8a7c5d;
}

.header__menu-nav li::before {
  content: none;
}

.header__menu-nav li a {
  font-size: 14px;
  color: #bd995b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__menu-nav li a:hover {
  color: #e20c4a;
}

.header__menu-nav li.active {
  font-weight: 600;
}

.header__menu-nav + .header__menu-title {
  margin-top: 30px;
}

.header__menu-demo-block-m {
  display: none;
}

@media (max-width: 1159px) {
  .header__menu-demo-block-m {
    display: block;
  }
}

@media (max-width: 576px) {
  .header__menu-demo-block-m {
    padding-top: 20px;
  }
}

.header__menu-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 22px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid #8a7c5d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.56;
  color: #8a7c5d;
  outline: 0;
  margin: 5px 0 10px;
  padding: 0 20px;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}

.header__menu-demo-btn:hover {
  background: #e20c4a;
  color: #fff;
  border-color: #e20c4a;
}

.header__menu-demo-btn:active {
  background: #ca0b42;
  border-color: #ca0b42;
}

/* ══════════════════════════════════════════════
   Hero banner
   ══════════════════════════════════════════════ */

.hero-section {
  background: #04182c;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}

.hero-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-inner {
  position: relative;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 80px;
  padding: 0 20px 20px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  color: #fff;
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Не display:none — иначе после загрузки цен вырастает hero-cta и смещается hero-text (flex-end у hero-inner) */
.hero-actions.hero-actions--pending {
  visibility: hidden;
  pointer-events: none;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 9999px;
  background: #fff;
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-btn:hover {
  background: #bec7d2;
}

.hero-price {
  display: flex;
  flex-direction: column;
}

.hero-price-current {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
  color: #fff;
}

.hero-price-old-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-price-old {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #fff;
  text-decoration: line-through;
}

.hero-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1px 2px;
  border-radius: 8px;
  background: #ea187e;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.hero-discount__countdown[hidden] {
  display: none !important;
}

.hero-discount__countdown {
  display: inline-flex;
  align-items: center;
}

.hero-discount__dot {
  width: 3px;
  height: 3px;
  margin: 0 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
}

.hero-discount__timer {
  display: inline-block;
  width: 59px;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  text-align: left;
}

.hero-cards {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: 20px;
}

.hero-cards::-webkit-scrollbar {
  display: none;
}

.hero-card {
  flex: 0 0 260px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card-title {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #fff;
}

.hero-card-desc {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #d8ecff;
}

@media (min-width: 1920px) {
  .hero-banner {
    height: 980px;
  }

  .hero-inner {
    max-width: 1300px;
    padding-bottom: 80px;
    gap: 220px;
  }
}

/* ══════════════════════════════════════════════
   What does the test include
   ══════════════════════════════════════════════ */

.includes-section {
  background: var(--bg);
  padding: 40px 64px;
}

.includes-area {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.includes-title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  text-align: center;
}

.includes-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.includes-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.inc-card {
  background: var(--white);
  border-radius: 32px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.inc-card:first-child {
  justify-content: space-between;
}

.inc-card:first-child .risk-strip-wrap {
  margin-top: auto;
  padding-top: 24px;
  margin-bottom: -16px;
}

.inc-card:first-child .note-list {
  margin-top: auto;
  padding-top: 24px;
}

.inc-card:nth-child(2) .inc-therapy-img {
  margin-top: 24px;
}

.inc-card:nth-child(2) .note-list {
  margin-top: 24px;
}

.inc-card:last-child .inc-family-copy {
  margin-top: 4px;
}

.inc-card:last-child .inc-family-picture {
  margin-top: auto;
}

.inc-card-headline {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
  text-align: center;
}

.inc-card-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.inc-therapy-img {
  margin: 0 auto;
  width: 292px;
  height: 164px;
  border-radius: 16px;
  overflow: hidden;
}

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

.inc-family-copy {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inc-family-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.inc-family-picture {
  margin-top: auto;
  width: 100%;
  display: block;
}

.inc-family-image {
  width: 100%;
  height: 154px;
  border-radius: 17px;
  object-fit: cover;
  display: block;
}

.inc-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.inc-also-title {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
  text-align: center;
}

.inc-bottom-cards {
  display: flex;
  gap: 8px;
  max-width: 844px;
  width: 100%;
}

@media (max-width: 956px) {
  .includes-section {
    overflow-x: clip;
  }

  .inc-bottom-cards {
    max-width: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .inc-bottom-cards::-webkit-scrollbar {
    display: none;
  }
}

.inc-sm-card {
  position: relative;
  flex: 1 1 276px;
  min-width: 276px;
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  min-height: 88px;
}

.inc-sm-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 16px;
}

.inc-sm-card-text {
  position: relative;
}

.inc-sm-card-text h4 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-weight: 600;
}

.inc-sm-card-text p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.content-area {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
}

.main-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.main-card {
  background: var(--white);
  border-radius: var(--radius-32);
  padding: 24px;
  overflow: hidden;
  height: 356px;
  display: flex;
  flex-direction: column;
}

.card-headline {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
  text-align: center;
}

.card-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.risk-strip-wrap {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  cursor: grab;
  padding: 16px 0;
  margin-bottom: -16px;
}

.risk-strip-wrap:active {
  cursor: grabbing;
}

.risk-strip {
  display: flex;
  gap: 4px;
  width: max-content;
  will-change: transform;
}

.risk-item {
  flex: 0 0 auto;
  border-radius: var(--radius-16);
  background: var(--white);
  box-shadow: var(--shadow-1);
  padding: 16px;
  text-align: center;
  width: 112px;
}

.risk-item.wide {
  width: 136px;
}

.risk-item .icon-wrap {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.risk-item .icon-wrap img {
  width: 24px;
  height: 24px;
}

.risk-icon-full {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: 8px;
  object-fit: cover;
}

.risk-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 2;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.note-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.note img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.note p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.therapy-center {
  margin: 24px auto 0;
  position: relative;
  width: 236px;
  height: 136px;
}

.therapy-shadow {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 151px;
  height: 108px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-1);
  transform: rotate(8deg);
}

.therapy-pill-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 202px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-2);
  transform: rotate(-8deg);
  padding: 16px;
  text-align: center;
}

.therapy-pill {
  width: 80px;
  height: 40px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.drug-name {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--muted);
}

.drug-efficiency {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #4db433;
}

.family-copy {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.family-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-align: center;
}

.family-image {
  margin-top: auto;
  width: 100%;
  height: 154px;
  border-radius: 17px;
  object-fit: cover;
}

.bottom-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.also-title {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
  text-align: center;
}

.bottom-cards {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.small-card {
  position: relative;
  border-radius: 16px;
  background: var(--white);
  padding: 16px;
  overflow: hidden;
  width: 276px;
  min-height: 88px;
  flex: 0 0 276px;
}

.small-card h4 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  font-weight: 600;
}

.small-card p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.small-card img {
  position: absolute;
  right: -26px;
  top: 10px;
  width: 92px;
  height: 99px;
  object-fit: cover;
}

.small-card.origin img {
  top: -10px;
  right: -30px;
  width: 80px;
  height: 80px;
  transform: rotate(-10deg);
}

.small-card.character img {
  top: -33px;
  right: -43px;
  width: 101px;
  height: 108px;
  transform: rotate(-21deg);
}

/* ══════════════════════════════════════════════
   Technology & accuracy banner
   ══════════════════════════════════════════════ */

.tech-section {
  background: var(--bg);
  padding: 0 64px;
  overflow-x: clip;
}

.tech-banner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  height: 672px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px 76px;
}

.tech-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tech-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tech-header {
  position: relative;
  max-width: 640px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
}

.tech-subtitle {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
}

.tech-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tech-card {
  width: 376px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  color: #fff;
}

.tech-card-label {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.tech-card-value {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.tech-big-number {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
}

.tech-unit {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.tech-card-desc {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.tech-card--note .tech-card-desc {
  margin: 0;
}

.tech-theses {
  position: relative;
  max-width: 1300px;
  margin: -76px auto 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.tech-theses.marquee-mode {
  overflow: hidden;
  cursor: grab;
}

.tech-theses.marquee-mode:active {
  cursor: grabbing;
}

.tech-theses.marquee-mode .tech-theses-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.tech-thesis {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.tech-thesis-icon {
  width: 36px;
  height: 36px;
  border-radius: 28px;
  object-fit: cover;
  flex: 0 0 36px;
}

/* ══════════════════════════════════════════════
   Process / How it works
   ══════════════════════════════════════════════ */

.process-section {
  background: var(--bg);
  padding: 40px 64px 0;
}

.process-mobile {
  display: none;
}

.process-area {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  text-align: center;
}

.process-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.process-image {
  width: 624px;
  height: 440px;
  flex: 0 0 624px;
  border-radius: 32px;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 32px;
  flex: 0 0 48px;
  border-radius: 9999px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
}

.step-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.step-text {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 9999px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
  transition: box-shadow 0.2s;
  width: auto;
}

.video-btn:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s;
}

.video-btn img {
  width: 24px;
  height: 24px;
}

.video-btn--center {
  align-self: center;
}

/* Mobile banner variant */

.process-banner {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 32px;
  overflow: visible;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-banner-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.process-banner-title {
  position: relative;
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.process-strip-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  margin: 0 -20px;
  padding: 16px 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.process-strip-wrap::-webkit-scrollbar {
  display: none;
}

.process-strip {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px 20px;
  width: max-content;
  min-width: 100%;
}

.process-strip-card {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process-strip-card .strip-num {
  margin-top: -32px;
}

.process-strip-card:first-child,
.process-strip-card:last-child {
  flex: 0 0 180px;
}

.process-strip-card p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.strip-num {
  width: 48px;
  height: 32px;
  border-radius: 9999px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  text-align: center;
}

/* ══════════════════════════════════════════════
   Timeline / Deadlines block
   ══════════════════════════════════════════════ */

.timeline-section {
  background: var(--bg);
  padding-top: 40px;
}

.timeline-mobile {
  display: none;
}

.timeline-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.timeline-img {
  width: 310px;
  height: 510px;
  flex: 0 0 310px;
  overflow: hidden;
}

.timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-img--left {
  border-radius: 0 32px 32px 0;
}

.timeline-img--right {
  border-radius: 32px 0 0 32px;
}

@media (min-width: 1441px) {
  .timeline-content {
    max-width: 1300px;
    margin: 0 auto;
  }

  .timeline-img--left {
    border-radius: 32px;
  }

  .timeline-img--right {
    border-radius: 32px;
  }
}

.timeline-center {
  flex: 1 1 0;
  min-width: 0;
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}

.timeline-title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  text-align: center;
}

.timeline-steps {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 500px;
  width: 100%;
}

.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 29px;
  padding-top: 2px;
}

.timeline-dot {
  width: 29px;
  height: 29px;
}

.timeline-connector {
  width: 1px;
  flex: 1 1 0;
  min-height: 92px;
  border-left: 1px solid #8bcaff;
}

.timeline-connector--white {
  border-left-color: #fff;
}

.timeline-texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}

.timeline-block h3 {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
}

.timeline-block p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
}

/* Timeline banner (mobile) */

.timeline-banner {
  position: relative;
  width: 100%;
  height: 552px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.timeline-banner-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timeline-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-banner-title {
  position: relative;
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.timeline-banner-steps {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  color: #fff;
}

.timeline-banner-steps .timeline-block h3 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}

.timeline-banner-steps .timeline-block p {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.timeline-banner-steps .timeline-texts {
  gap: 12px;
}

/* ══════════════════════════════════════════════
   CTA Banner
   ══════════════════════════════════════════════ */

.cta-section {
  background: var(--bg);
  padding-top: 40px;
}

.cta-banner {
  position: relative;
  width: 100%;
  height: 544px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 460px 0 0;
}

.cta-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-content {
  position: relative;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
  color: #fff;
}

.cta-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
}

.cta-desc {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #d8ecff;
}

.cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta-actions.cta-actions--pending {
  visibility: hidden;
  pointer-events: none;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 9999px;
  background: #fff;
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #bec7d2;
}

.cta-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-price-current {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.1px;
  font-weight: 600;
  color: #fff;
}

.cta-price-old-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.cta-price-old {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #fff;
  text-decoration: line-through;
}

.cta-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1px 2px;
  border-radius: 8px;
  background: #ea187e;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
}

.cta-discount__countdown[hidden] {
  display: none !important;
}

.cta-discount__countdown {
  display: inline-flex;
  align-items: center;
}

.cta-discount__dot {
  width: 3px;
  height: 3px;
  margin: 0 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
}

.cta-discount__timer {
  display: inline-block;
  width: 59px;
  box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  text-align: left;
}

/* ══════════════════════════════════════════════
   FAQ Accordion
   ══════════════════════════════════════════════ */

.faq-section {
  background: #fff;
  padding: 60px 64px;
}

.faq-area {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.faq-heading {
  margin: 0;
  flex: 0 0 auto;
  max-width: 440px;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.4px;
  font-weight: 600;
}

.faq-list {
  flex: 1 1 0;
  min-width: 0;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg);
  border-radius: 20px;
  transition: background 0.2s;
}

.faq-item:hover {
  background: #e9ecf0;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span:first-child {
  flex: 1 1 0;
  min-width: 0;
}

.faq-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.25s;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 32px 20px;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ── Floating CTA button ── */

.floating-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 9999px;
  background: #236ffa;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s, opacity 0.35s, background 0.2s;
  opacity: 0;
  pointer-events: none;
}

.floating-btn.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* До загрузки цен не показываем, даже если скрипт повесил .visible */
.floating-btn.floating-btn--pending,
.floating-btn.floating-btn--pending.visible {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.floating-btn:hover {
  background: #1341ba;
}

/* ── Video popup ── */

.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.video-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* ── Промо-попап (макет genotek full-genome) ── */

.popup-wrapper {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.popup-wrapper.popup-wrapper--open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

.popup-wrapper[hidden] {
  display: none !important;
}

.popup-wrapper--promo .popup {
  width: 100%;
  max-width: 480px;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: none;
}

.promo-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(135deg, #534AFD 1.1%, #01E7CB 100%);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .05);
  padding: 30px 45px;
}

.promo-form__icon {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 30px;
}

.promo-form__title {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.promo-form__text {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: -0.3px;
}

.promo-form__price {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 15px;
}

.promo-form__price-new {
  font-size: 40px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.5px;
}

.promo-form__price-old {
  position: relative;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.5px;
}

.promo-form__price-old::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: rotate(-12deg);
}

.promo-form__price-old:empty {
  display: none;
}

.promo-form__actions {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding-bottom: 34px;
  border-radius: 25px;
}

.promo-form__button {
  position: relative;
  width: 100%;
  display: inline-block;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: #fff;
  transition: .25s;
  z-index: 2;
}

.promo-form__button:hover {
  color: #fff;
  background-color: #fb0853;
  border-color: #fb0853;
}

.promotion__order-btn-discount {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6c672;
  column-gap: 8px;
  color: #000;
  font-size: 14px;
  line-height: 1.36;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  min-height: 64px;
  padding: 37px 20px 6px;
  border-radius: 0 0 25px 25px;
  box-sizing: border-box;
}

.promotion__order-btn-discount-meta {
  width: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  white-space: nowrap;
}

.promotion__order-btn-discount-clock {
  display: block;
  width: 17px;
  height: 16px;
  margin-top: -2px;
}

@media (max-width: 576px) {
  .promo-form {
    padding: 30px 20px;
  }

  .promo-form__icon {
    margin-bottom: 20px;
  }

  .promo-form__title {
    font-size: 24px;
    line-height: 32px;
  }

  .promo-form__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

/* ── Попап подписки: newsletter-form ── */

.newsletter-form {
  display: block;
  width: 100%;
  max-width: 570px;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  background: none;
}

.newsletter-form.success {
  display: none;
}

.newsletter-form.error {
  display: none;
}

.newsletter-form__header {
  display: block;
  background-image: linear-gradient(108deg, #534afd 11%, #9c60f6 90%);
  position: relative;
  padding: 30px;
  min-height: 142px;
  border-radius: 26px 26px 0 0;
}

.newsletter-form__header.success {
  background-image: url(./header-success.jpg);
  background-position: center;
  background-size: auto 142px;
  background-repeat: no-repeat;
}

.newsletter-form__header.error {
  background-image: url(./header-error.jpg);
  background-position: center;
  background-size: auto 142px;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .newsletter-form__header {
    padding-right: 70px;
    padding-left: 70px;
  }
}

.newsletter-form__header::before,
.newsletter-form__header::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 576px) {
  .newsletter-form__header::before,
  .newsletter-form__header::after {
    display: none;
  }
}

.newsletter-form__header::before {
  background-image: url(./gift.png);
  width: 83px;
  height: 93px;
  bottom: -45px;
  left: 25px;
}

.newsletter-form__header::after {
  background-image: url(./thing.png);
  width: 87px;
  height: 90px;
  top: -45px;
  right: 45px;
}

.newsletter-form__header.success::before,
.newsletter-form__header.success::after,
.newsletter-form__header.error::before,
.newsletter-form__header.error::after {
  background-image: none;
}

.newsletter-form__header-title {
  font-size: 30px;
  line-height: 38px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.3px;
}

@media (max-width: 480px) {
  .newsletter-form__header-title {
    font-size: 29px;
  }
}

.newsletter-form__header-close {
  width: 28px;
  height: 30px;
  color: #fff;
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  opacity: .6;
  transition: .25s;
}

@media (max-width: 576px) {
  .newsletter-form__header-close {
    top: 15px;
    right: 15px;
  }
}

.newsletter-form__header-close:hover {
  opacity: 1;
}

.newsletter-form__content {
  background-color: #fff;
  padding: 30px 30px 45px;
  border-radius: 0 0 26px 26px;
}

@media (min-width: 768px) {
  .newsletter-form__content {
    padding-right: 100px;
    padding-left: 100px;
  }
}

.newsletter-form__title {
  font-size: 30px;
  line-height: 38px;
  color: #000;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

.newsletter-form__lead {
  font-size: 18px;
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
  color: #000;
}

.newsletter-form__block {
  margin-bottom: 15px;
}

.newsletter-form__block .form-field {
  margin-bottom: 30px;
}

.newsletter-form__block .form-field__error {
  color: #fb0853;
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
}

.newsletter-form__control[type="text"] {
  width: 100%;
  box-sizing: border-box;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #aeaeae;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 15px;
  transition: 0.25s;
}

.newsletter-form__control[type="text"]:focus-visible {
  border-color: #113566;
  outline: none;
  border-width: 1px;
}

.newsletter-form__control[type="text"]::placeholder {
  opacity: 0.7;
}

.newsletter-form__control[type="text"]:hover {
  border-color: #113566;
}

.newsletter-form__control[type="text"].error {
  border-color: #e63457;
}

.newsletter-form__button {
  width: 100%;
  display: block;
  margin: 0;
  line-height: 48px;
  border: 1px solid #113566;
  background: #113566;
  transition: all 0.25s ease-in-out;
  border-radius: 25px;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  outline: 0;
  padding: 0 24px;
  cursor: pointer;
  box-sizing: border-box;
}

.newsletter-form__button.outline {
  border-color: rgba(17, 53, 102, 0.5);
  background-color: transparent;
  color: #113566;
  margin-top: 15px;
}

.newsletter-form__button:hover:not(:disabled) {
  background: #e20c4a;
  border-color: #e20c4a;
  color: #fff;
}

.newsletter-form__button:disabled {
  pointer-events: none;
  opacity: 0.3;
}

.newsletter-form__note {
  color: #555;
  font-size: 12px;
  line-height: 15px;
  margin: 0;
}

.newsletter-form__note label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin: 0;
}

.newsletter-link-privacy {
  color: #BD995B;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid rgba(189, 153, 91, 0);
  transition: all .2s ease;
}

.newsletter-link-privacy:hover {
  color: #e20c4a;
  border-bottom-color: rgba(226, 12, 74, 1);
}

.newsletter-form__note input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  margin-top: -1px;
  flex-shrink: 0;
  accent-color: #113566;
  cursor: pointer;
}

.newsletter-form__note-link--rules {
  border: none;
  color: #113566;
}

.newsletter-form__note-link--terms {
  color: #787878;
}

.newsletter-form__buttons {
  margin-bottom: 15px;
}

.newsletter-form__buttons.second {
  margin-bottom: 0;
}

.newsletter-form__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 3px solid white;
  border-right-color: transparent;
  border-radius: 50%;
  animation: newsletter-spinner-border 0.75s linear infinite;
  margin-right: 4px;
}

@keyframes newsletter-spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* ── 1440px: CTA padding ── */
@media (max-width: 1440px) {
  .cta-banner {
    padding-right: 220px;
  }
}

/* ── 1100px: tighter padding, taller cards ── */
@media (max-width: 1100px) {
  .includes-section {
    padding: 40px 20px;
  }

  .includes-area {
    max-width: none;
  }

  .inc-card {
    min-height: 464px;
  }

  .cta-banner {
    padding-right: 32px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .faq-area {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: none;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-item:hover {
    background: var(--bg);
  }

  .faq-list {
    max-width: 880px;
    width: 100%;
  }

  .tech-section {
    padding: 0;
  }

  .tech-banner {
    max-width: none;
    width: 100%;
    padding-bottom: 20px;
  }

  .tech-theses {
    max-width: none;
    margin-top: 0;
    justify-content: safe center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px;
    gap: 16px;
  }

  .tech-theses::-webkit-scrollbar {
    display: none;
  }

  .tech-thesis {
    gap: 8px;
  }

  .tech-thesis {
    color: var(--black);
  }

  .process-section {
    padding: 40px 20px 0;
  }

  .process-area {
    max-width: none;
  }

  .process-image {
    width: 50%;
    flex: 0 0 50%;
    height: 380px;
  }

}

/* ── 956px: includes cards stack to 1 column ── */
@media (max-width: 956px) {
  .includes-cards {
    grid-template-columns: 1fr;
  }

  .inc-card {
    min-height: auto;
  }

  .inc-card:last-child .inc-family-picture {
    margin-top: 24px;
  }

}

/* ── 1059px: timeline becomes banner, CTA rounds ── */
@media (max-width: 1059px) {
  .timeline-desktop {
    display: none;
  }

  .timeline-mobile {
    display: block;
  }

  .cta-banner {
    border-radius: 32px;
    overflow: hidden;
  }

  .timeline-connector {
    min-height: 24px;
  }
}

/* ── 768px: single-column stack ── */
@media (max-width: 768px) {
  .hero-inner {
    gap: 96px;
    max-width: none;
  }

  .hero-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.4px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }

  .hero-card {
    flex: 0 0 269px;
  }

  .hero-cta {
    max-width: 420px;
  }

  .faq-section {
    padding: 40px 20px;
  }

  .faq-area {
    flex-direction: column;
    gap: 24px;
  }

  .faq-heading {
    max-width: none;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-answer-inner {
    padding: 0 20px 16px;
  }

  .cta-banner {
    height: 544px;
    padding: 0 20px 40px 20px;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .cta-content {
    align-items: center;
    max-width: none;
  }

  .cta-text {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .small-card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .tech-section {
    padding: 0;
  }

  .tech-banner {
    padding: 40px 24px 24px;
  }

  .tech-card {
    width: 100%;
    max-width: 376px;
  }

  .process-desktop {
    display: none;
  }

  .process-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .process-section {
    padding: 0;
  }

}

/* ── 576px: smaller heading, scrollable bottom row ── */
@media (max-width: 576px) {
  .hero-inner {
    gap: 20px;
  }

  .hero-cta {
    gap: 12px;
    max-width: none;
  }

  .includes-section {
    padding: 40px 20px;
  }

  .faq-heading {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }

  .includes-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }


  .tech-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }

  .tech-subtitle {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.1px;
  }

  .tech-banner {
    padding: 40px 20px 24px;
  }

  .timeline-banner-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }

  .process-banner-title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.2px;
  }

  .bottom-cards {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bottom-cards::-webkit-scrollbar {
    display: none;
  }

  .small-card {
    flex: 0 0 232px;
    width: 232px;
  }

  .small-card:nth-child(2) {
    flex: 0 0 260px;
    width: 260px;
  }

  .small-card:nth-child(3) {
    flex: 0 0 220px;
    width: 220px;
  }
}

/* ── 563px: timeline connector ── */
@media (max-width: 563px) {
  .timeline-connector {
    min-height: 40px;
  }
}

/* ── 458px: timeline connector ── */
@media (max-width: 458px) {
  .timeline-connector {
    min-height: 60px;
  }
}

/* ── 390px: narrowest mobile ── */
@media (max-width: 390px) {
  .page {
    padding: 40px 20px;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-cta {
    max-width: none;
  }
}

/* ══════════════════════════════════════════════
   Footer (genotek.ru: .footer.footer--light)
   ══════════════════════════════════════════════ */

.footer-line-wrap {
  width: 100%;
  background: white;
}

.footer-line {
  width: 100%;
  max-width: 1300px;
  height: 1px;
  background: #e7e7e7;
  margin: 0 auto;
}

@media (max-width: 1390px) {
  .footer-line-wrap {
    padding: 0 45px;
  }
}

@media (max-width: 768px) {
  .footer-line-wrap {
    padding: 0 30px;
  }
}

@media (max-width: 430px) {
  .footer-line-wrap {
    padding: 0 20px;
  }
}

.footer.footer--light {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #fff;
  color: #000;
  z-index: 1;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  padding-right: 45px;
  padding-left: 45px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .footer__container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 430px) {
  .footer__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 45px;
  align-content: flex-start;
}

@media (max-width: 990px) {
  .footer__grid {
    gap: 30px;
  }
}

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

.footer__col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .footer__col:nth-child(2),
  .footer__col:nth-child(3),
  .footer__col:nth-child(4) {
    display: none;
  }
}

.footer__col--group {
  column-gap: 30px;
  row-gap: 30px;
}

@media (max-width: 768px) {
  .footer__col--group {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .footer__col--group {
    flex-direction: column;
  }
}

.footer__title-link {
  display: block;
  width: 100%;
  margin-top: 13px;
}

.footer__title-link:first-child {
  margin-top: 0;
}

.footer__title-link a {
  display: inline;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  border-bottom: solid 1px rgba(187, 187, 187, 0.5);
  cursor: pointer;
  transition: 0.25s;
}

.footer__title-link a:hover {
  color: #fb0853 !important;
  border-color: rgba(251, 8, 83, 0.3) !important;
}

.footer__title-link + .footer__link {
  margin-top: 13px;
}

.footer__title {
  display: block;
  width: 100%;
  text-transform: uppercase;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.43;
}

.footer__link {
  display: block;
  width: 100%;
  font-size: 14px;
  margin-top: 7px;
}

.footer__link:first-child {
  margin-top: 0;
}

.footer__link a {
  display: inline;
  font-size: 14px;
  line-height: 1.43;
  color: #bd995b;
  text-decoration: none;
  border-bottom: solid 1px rgba(138, 124, 91, 0.3);
  cursor: pointer;
  transition: 0.25s;
}

.footer__link a:hover {
  color: #fb0853 !important;
  border-color: rgba(251, 8, 83, 0.3) !important;
}

.footer__link + .footer__title-link {
  margin-top: 30px;
}

.footer__text {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.43;
  margin-top: 8px;
}

.footer__text + .footer__text {
  margin-top: 15px;
}

.footer__text span {
  font-family: "Onest", system-ui, -apple-system, sans-serif;
  font-weight: 600;
}

.footer__text + .footer__title {
  margin-top: 30px;
}

.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 30px;
  padding-top: 30px;
}

.footer__bottom-info {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}

@media (max-width: 1400px) {
  .footer__bottom-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer__bottom-info {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .footer__bottom-info {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
}

.footer__bottom-group {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}

@media (max-width: 768px) {
  .footer__bottom-group {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.footer__bottom-text {
  display: inline-block;
  font-size: 14px;
  line-height: 1.36;
}

.footer__bottom-socials {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.footer__bottom-socials-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.36;
}

.footer__bottom-socials-link {
  display: inline-block;
  border: 0;
  line-height: 0;
}

.footer__bottom-socials-link-icon {
  display: inline-block;
  color: #bd995b;
  transition: 0.25s;
}

.footer__bottom-socials-link-icon svg {
  display: block;
}

.footer__bottom-socials-link--vk:hover .footer__bottom-socials-link-icon {
  color: #2787f5;
}

.footer__bottom-socials-link--tg:hover .footer__bottom-socials-link-icon {
  color: #35abf1;
}

.footer__bottom-offers {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
}

@media (max-width: 768px) {
  .footer__bottom-offers {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__bottom-link {
  font-size: 14px;
  line-height: 1.43;
  color: #000;
  text-decoration: none;
  border-bottom: solid 1px rgba(187, 187, 187, 0.5);
  cursor: pointer;
  transition: 0.25s;
}

.footer__bottom-link:hover {
  color: #fb0853 !important;
  border-color: rgba(251, 8, 83, 0.3) !important;
}

.footer__bottom-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
}

@media (max-width: 768px) {
  .footer__bottom-actions {
    display: none;
  }
}

.footer__bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 30px;
  background: #bd995b;
  border-radius: 25px;
  border: solid 1px #bd995b;
  font-size: 18px;
  line-height: 1.56;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  transition: 0.25s;
  text-decoration: none;
}

@media (max-width: 520px) {
  .footer__bottom-btn {
    display: flex;
    width: 100%;
  }
}

.footer__bottom-btn:hover {
  background: #fb0953 !important;
  border-color: #fb0953 !important;
  color: #fff !important;
}

.footer__bottom-btn--demo {
  background: transparent;
  color: #000;
  border-color: rgba(0, 0, 0, 0.35);
}
