* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 130%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Helvetica";
  src:
    url("./fonts/Helvetica.woff2") format("woff2"),
    url("./fonts/Helvetica.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Light";
  src:
    url("./fonts/helvetica-light.woff2") format("woff2"),
    url("./fonts/helvetica-light.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni 72 Oldstyle";
  src:
    url("./fonts/bodoni-72-oldstyle-book-italic.woff2") format("woff2"),
    url("./fonts/bodoni-72-oldstyle-book-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

body {
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.25rem);
  background-color: #0c0c0c;
  font-family: "Helvetica", "Helvetica Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #e7e4db;
  letter-spacing: 0em;
  position: relative;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Унаследует цвет текста от родителя */
}

.section {
  width: 100%;
  margin-top: 80px;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
}

.bodoni {
  font-family: "Bodoni 72 Oldstyle";
  font-style: italic;
  color: #b19c66;
}

.header_block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header_block__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #e7e4db;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger--open span:nth-child(2) {
  opacity: 0;
}

.burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  display: flex;
  gap: 30px;
}

.btn {
  padding: 10px 20px;
  border: 1px solid #b19c66;
  color: #b19c66;
  display: inline-block;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: #b19c66;
  color: #0c0c0c;
}

.logo img {
  width: 260px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
  pointer-events: none;
}

.header--scrolled::before {
  background-color: rgba(12, 12, 12, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.color {
  color: #b19c66;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, #0c0c0c, rgba(12, 12, 12, 0));
}

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

h1.title {
  font-size: clamp(2.25rem, 1rem + 6.5vw, 6.75rem);
  line-height: 0.98;
  max-width: 30%;
  min-width: 550px;
  font-family: "Helvetica Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
}

h1.title .bodoni {
  font-size: 1.214em;
  line-height: 0.98;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.title_block {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
}

.title_block__bg {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.title_block > .right,
.title_block > .left,
.title_block > .title_descr {
  position: relative;
  z-index: 1;
}

.title_block > .right {
  margin-left: auto;
  margin-right: 50%;
}

.title_block > .left {
  margin-left: 50%;
}

.title_descr {
  font-size: clamp(1rem, 0.88rem + 0.55vw, 1.875rem);
  max-width: 35%;
}

h2.title {
  max-width: 30%;
  min-width: 450px;
  font-size: clamp(1.2rem, 1rem + 3.5vw, 4rem);
  line-height: 1.02;
  font-family: "Helvetica Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
}

h2.title .bodoni {
  font-size: 1.071em;
  line-height: 1.02;
}

.man_block_item_video {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

.man_block_item_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.man_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.man_block_item_info {
  margin-top: 20px;
  transform: translateX(40px);
}

.man_block_item_info_year {
  transform: translateX(-20px);
}

.white {
  color: #e7e4db !important;
}

.green {
  padding: 30px 30px;
  background: #0f1914;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.center {
  text-align: center;
}

.green .title {
  max-width: 80%;
  width: 80%;
}

.about_video {
  width: 100%;
  margin: 0 auto;
}

.about_video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.about_video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about_video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.about_video__overlay.about_video__overlay--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about_video__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about_video__play {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.about_video__play:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.about_video__play:focus-visible {
  outline: 2px solid #b19c66;
  outline-offset: 4px;
}

.about_video__play img {
  display: block;
  width: clamp(40px, 12vw, 80px);
  height: auto;
}

.section--compare {
  margin-top: 80px;
  padding: 0;
  background-color: #0a0a0a;
}

.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #0a0a0a;
  color: #c9c5bc;
  line-height: 1.45;
}

.compare-table th,
.compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #333;
  vertical-align: top;
  text-align: left;
}

.compare-table thead th {
  font-family: "Bodoni 72 Oldstyle", "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  color: #b19c66;
  font-size: clamp(1.2rem, 1rem + 0.75vw, 1.65rem);
  line-height: 1.25;
  padding-top: 24px;
  padding-bottom: 24px;
}

.compare-table__corner {
  width: 22%;
  min-width: 140px;
  border-bottom-color: #333;
}

.compare-table thead th:nth-child(2),
.compare-table tbody td:nth-child(2),
.compare-table tfoot td:nth-child(2) {
  width: 39%;
}

.compare-table thead th:nth-child(3),
.compare-table tbody td:nth-child(3),
.compare-table tfoot td:nth-child(3) {
  width: 39%;
}

.compare-table__label {
  font-family: "Bodoni 72 Oldstyle", "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  color: #b19c66;
  font-size: clamp(1.2rem, 1rem + 0.75vw, 1.65rem);
  line-height: 1.25;
}

.compare-table tbody td {
  color: #e7e4db;
}

.compare-table tfoot td {
  border-bottom: none;
  padding-top: 28px;
  padding-bottom: 28px;
}

.compare-table__foot-row {
  background-color: #0f1a14;
}

.compare-table__foot-spacer {
  background-color: #0f1a14;
}

.compare-table__foot-val {
  font-family: "Bodoni 72 Oldstyle", "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.1;
  vertical-align: middle;
}

.compare-table__foot-val--muted {
  color: #e7e4db;
}

.compare-table__foot-val--gold {
  color: #b19c66;
}

@media (max-width: 767px) {
  .compare-table th,
  .compare-table td {
    padding: 16px 16px;
  }
}

.story {
  width: 100%;
  margin-top: 40px;
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.story-card {
  display: flex;
  flex-direction: column;
  background-color: #0f1914;
  border: 1px solid rgba(177, 156, 102, 0.12);
  overflow: hidden;
}

.story-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #000;
  overflow: hidden;
  flex-shrink: 0;
  pointer-events: none;
}

.story-card__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.story-card__body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.story-card__meta {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8a59c;
  line-height: 1.4;
}

.story-card__title {
  margin: 0;
  font-weight: normal;
  line-height: 1.15;
  color: #e7e4db;
}

.story-card__title .bodoni {
  font-size: 1.08em;
}

.story-card__path {
  margin: 0;
  color: #e7e4db;
  opacity: 0.92;
  line-height: 1.35;
}

.story-card__text {
  margin: 0;
  line-height: 1.5;
  color: #c9c5bc;
  flex: 1;
  font-size: 14px;
}

.story-card__foot {
  margin: 0;
  margin-top: 4px;
  line-height: 1.45;
  color: #e7e4db;
}

.story-card__foot strong {
  font-family: "Helvetica", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.story-card__mark {
  margin-right: 0.35em;
  font-size: 1.05em;
}

.story-card__foot--ok .story-card__mark {
  color: #e7e4db;
}

.story-card__foot--bad .story-card__mark {
  color: #c9c5bc;
}

.title_block .btn {
  margin-top: 30px;
}

/* Digit block — Roman numerals */

.digit .title[data-digit] {
  overflow: visible;
}

.digit {
  gap: 60px;
}

.digit .title[data-digit]::after {
  content: attr(data-digit);
  position: absolute;
  font-family: "Bodoni 72 Oldstyle", "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5rem, 10vw, 12rem);
  line-height: 1;
  color: #0f1914;
  z-index: -1;
  top: 50%;
  pointer-events: none;
  white-space: nowrap;
}

.digit .title.right[data-digit]::after {
  right: 0;
  transform: translateX(50%) translateY(-50%);
}

.digit .title.left[data-digit]::after {
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}

.promo_video {
  width: 400px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  overflow: hidden;
}

.promo_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mt-40 {
  margin-top: -40px;
}

/* System block — 4 cards */

.system_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.system_block_item {
  background-color: #0f1914;
  border: 1px solid rgba(177, 156, 102, 0.15);
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.system_block_item__num {
  color: #b19c66;
  line-height: 1;
  font-size: 14px;
}

.system_block_item__title {
  margin: 0;
  font-weight: normal;
  line-height: 1.15;
  color: #e7e4db;
}

.system_block_item__text {
  margin: 0;
  line-height: 1.55;
  color: #c9c5bc;
}

.system_block_cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.book_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.book_block_img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.book_block_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.book_block .btn {
  margin-top: 40px;
}

.book_block_info__title {
  margin: 0;
  font-size: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  line-height: 1.1;
  color: #e7e4db;
}

.book_block_info__desc {
  margin: 0;
  line-height: 1.55;
  color: #c9c5bc;
}

.book_block_info__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.5;
  color: #b19c66;
  font-size: 14px;
}

.book_block_info__list li::before {
  content: "— ";
}

/* Podcast cards */

.podcast {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.podcast_item {
  display: flex;
  flex-direction: column;
  background-color: #0f1914;
  border: 1px solid rgba(177, 156, 102, 0.12);
  padding: 24px 24px 32px;
  gap: 16px;
  transition: background-color 0.2s ease;
}

.podcast_item:hover {
  background-color: #142419;
}

.podcast_item__play {
  flex-shrink: 0;
}

.podcast_item__play img {
  width: 56px;
  height: 56px;
  display: block;
}

.podcast_item__num {
  margin-top: auto;
  color: #b19c66;
  font-size: 14px;
  line-height: 1;
  padding-top: 40px;
}

.podcast_item__title {
  margin: 0;
  font-weight: normal;
  line-height: 1.15;
  color: #e7e4db;
}

.podcast_item__text {
  margin: 0;
  line-height: 1.5;
  color: #c9c5bc;
}

/* Center-aligned title blocks */

.title_block.center_align {
  align-items: center;
  text-align: center;
}

.title_block.center_align > .title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.title_block.center_align > .title_descr {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 50%;
}

.title_block__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */

.footer {
  margin-top: 80px;
  padding-bottom: 80px;
}

.whitebtn {
  border: 1px solid #e7e4db;
  color: #e7e4db;
}

.whitebtn:hover {
  background-color: #e7e4db;
  color: #0c0c0c;
}

/* Footer block */

.footer_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer_block__logo img {
  height: 60px;
  width: auto;
  display: block;
}

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

.footer_block__social-link img {
  width: 40px;
  height: 40px;
  display: block;
}

.footer_block__disclaimer {
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
  color: #7a7770;
  font-size: 14px;
}

.footer_block__copy {
  margin: 0;
  color: #c9c5bc;
}

.footer_block__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_block__links a {
  color: #c9c5bc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal--open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal__content {
  position: relative;
  width: 90%;
  max-width: 560px;
  background: #111;
  border: 1px solid rgba(177, 156, 102, 0.2);
  padding: 48px 40px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #e7e4db;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.modal__close:hover {
  opacity: 1;
}

.modal__title {
  margin: 0 0 32px;
  font-family: "Helvetica Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  line-height: 1.15;
  color: #e7e4db;
  text-align: center;
}

/* WPForms inside modal */

.modal .wpforms-field-label {
  color: #e7e4db !important;
}

.modal .wpforms-field-sublabel {
  color: #7a7770 !important;
}

.modal .wpforms-required-label {
  color: #b19c66 !important;
}

.modal .wpforms-field-medium,
.modal .wpforms-field-large {
  max-width: 100% !important;
  width: 100% !important;
}

.modal .wpforms-field input[type="text"],
.modal .wpforms-field input[type="email"],
.modal .wpforms-field input[type="tel"],
.modal .wpforms-field input[type="url"],
.modal .wpforms-field input[type="number"],
.modal .wpforms-field textarea,
.modal .wpforms-field select {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  border: 1px solid rgba(177, 156, 102, 0.35) !important;
  border-radius: 0 !important;
  color: #e7e4db !important;
  padding: 12px 14px !important;
  transition: border-color 0.2s ease;
}

.modal .wpforms-field input:-webkit-autofill,
.modal .wpforms-field input:-webkit-autofill:hover,
.modal .wpforms-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #e7e4db !important;
  -webkit-box-shadow: 0 0 0 1000px #111 inset !important;
  box-shadow: 0 0 0 1000px #111 inset !important;
  border: 1px solid rgba(177, 156, 102, 0.35) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.modal .wpforms-field input:focus,
.modal .wpforms-field textarea:focus,
.modal .wpforms-field select:focus {
  border-color: #b19c66 !important;
  outline: none !important;
}

.modal .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
  width: 100% !important;
  display: flex !important;
  gap: 0px !important;
}

.modal .wpforms-field-row .wpforms-field-row-block {
  flex: 1;
  width: auto !important;
}

.modal .wpforms-submit-container {
  padding: 0 !important;
}

.gap0 {
  gap: 0px !important;
}

.modal .wpforms-submit {
  width: 100% !important;
  background: transparent !important;
  border: 1px solid #b19c66 !important;
  border-radius: 0 !important;
  color: #b19c66 !important;
  padding: 18px 32px !important;
  height: 56px !important;
  font-family: inherit !important;
  font-size: inherit !important;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.modal .wpforms-submit:hover {
  background: #b19c66 !important;
  color: #0c0c0c !important;
}

.modal .wpforms-confirmation-container-full {
  color: #b19c66 !important;
  text-align: center;
}

.modal .wpforms-field-email .mailcheck-suggestion {
  display: none !important;
}

.man_block_item_info .bodoni {
  font-size: 20px !important;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet landscape */
@media (max-width: 1100px) {
  .man_block {
    grid-template-columns: repeat(2, 1fr);
  }

  .story__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .system_block {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast {
    grid-template-columns: repeat(2, 1fr);
  }

  .green .title {
    max-width: 100%;
    width: 100%;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .section {
    margin-top: 60px;
  }

  .container {
    padding: 0 20px;
  }

  h1.title {
    min-width: unset;
    max-width: 80%;
  }

  h2.title {
    min-width: unset;
    max-width: 70%;
  }

  .title_descr {
    max-width: 60%;
  }

  .title_block.center_align > .title_descr {
    max-width: 80%;
  }

  .book_block {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }

  .book_block_info {
    align-items: center;
    text-align: center;
  }

  .promo_video {
    width: 300px;
  }

  .footer {
    margin-top: 60px;
    padding-bottom: 60px;
  }

  .modal__content {
    padding: 36px 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .header {
    padding: 14px 0;
  }

  .header_block {
    grid-template-columns: auto 1fr;
  }

  .header_block__right {
    justify-self: end;
  }

  .header_block__right .btn {
    display: none;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 101;
  }

  .menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12, 12, 12, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 100;
    font-size: 1.5rem;
  }

  .menu--open {
    display: flex;
  }

  .logo img {
    width: 160px;
  }

  .hero {
    height: 70vh;
  }

  h1.title {
    max-width: 100%;
    font-size: clamp(1.75rem, 1rem + 5vw, 3.5rem);
  }

  h2.title {
    max-width: 100%;
    font-size: clamp(1.2rem, 0.8rem + 3vw, 2.5rem);
  }

  .title_descr {
    max-width: 100%;
  }

  .title_block > .right,
  .title_block > .left {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .title_block > .title_descr {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .title_block.center_align > .title_descr {
    max-width: 100%;
  }

  .man_block {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 30px;
  }

  .man_block_item_info {
    transform: translateX(20px);
  }

  .digit {
    gap: 40px;
  }

  .digit .title[data-digit]::after {
    font-size: clamp(4rem, 8vw, 6rem);
  }

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

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

  .compare-table {
    min-width: 600px;
  }

  .section--compare {
    margin-top: 40px;
  }

  .title_block__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0px !important;
  }

  .title_block__buttons .btn {
    width: 100%;
    text-align: center;
  }

  .footer_block__disclaimer {
    max-width: 100%;
  }

  .book_block_info h2.title {
    max-width: 100% !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    margin-top: 48px;
  }

  .hero {
    height: 60vh;
  }

  .man_block {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    row-gap: 30px;
  }

  .man_block_item_info {
    transform: translateX(20px);
    font-size: 0.85em;
  }

  .story-card__frame {
    aspect-ratio: 4 / 3;
  }

  .promo_video {
    width: 100%;
    max-width: 280px;
  }

  .system_block_item,
  .podcast_item {
    padding: 20px 18px 24px;
  }

  .footer {
    margin-top: 48px;
    padding-bottom: 48px;
  }

  .modal__content {
    padding: 32px 20px;
    width: 95%;
  }
}
