@font-face {
  font-family: 'Accent';
  src: url("../fonts/Baskerville-Script.ttf") format("truetype");
  font-weight: 100 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskerville Script";
  src: url("../fonts/Baskerville-Script.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-dark: #111111;
  --color-light: #ffffff;
  --color-muted: #666666;
  --color-accent: #000000;

  --font-base: "Inter", sans-serif;
  --font-main: "Cormorant Unicase", serif;
  --font-accent: "Baskerville Script", cursive;

  --container-width: 1440px;
  --container-padding: 20px;

  --radius-md: 16px;
  --transition: 0.2s ease;
  --color-text: #232323;
  --color-red: #C8102E;
  --color-bg: #F7F4EE;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-dark);
  background-color: #f7f4ee;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}
p,
li,
a,
button,
input,
textarea {
  font-family: var(--font-base);
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - var(--container-padding) * 2, var(--container-width));
  margin-inline: auto;
}

.section {
  padding-block: 80px;
}

.title {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}

.text {
  margin: 0;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 600;
  transition: var(--transition);
}

.btn--primary {
  color: var(--color-light);
  background-color: var(--color-accent);
}

.header {
  position: relative;
  z-index: 1000;
}

.header__main {
  width: 100%;
  background: rgba(247, 244, 238, 0.96);
  border-bottom: 1px solid #cacaca;
  transition: box-shadow 0.25s ease;
}

.header__main.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.header__placeholder {
  display: none;
}

.header__placeholder.is-active {
  display: block;
}

.header__top {
  background: #202020;
  color: #fff;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.header__note {
  font-size: 14px;
  font-weight: 600;
}

.header__contacts {
  padding: 12px 24px;
  border: 1px solid #fff;
  font-weight: 700;
}

.header__main {
  border-bottom: 1px solid #cacaca;
}

.header__main-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 23px;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
}

.hero {
  background: #f7f4ee;
  padding: 80px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 40px;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;

  font-size: 14px;
  text-transform: uppercase;
  color: #C8102E;
}

.hero__label span {
  width: 50px;
  height: 2px;
  background: #C8102E;
}

.hero__title {
  font-size: 42px;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.hero__product {
  font-family: var(--font-accent);
  font-size: clamp(46px, 2vw, 48px);
  color: #C8102E;
  margin-bottom: 30px;
  letter-spacing: 1px;
  margin-top: 0;
}

.btn--primary {
  background: #C8102E;
  color: #fff;
}

.btn--outline {
  border: 1px solid #232323;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__accent {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .header__main-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .nav {
    max-width: 100%;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero__content {
    max-width: 680px;
  }

  .hero__image {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .header__top-inner {
    padding: 12px 0;
  }

  .header__note {
    font-size: 12px;
  }

  .header__contacts {
    padding: 10px 18px;
    font-size: 13px;
  }

  .header__main-inner {
    padding: 16px 0;
  }

  .logo__text {
    font-size: 18px;
  }

  .nav {
    gap: 12px 18px;
    font-size: 13px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__accent {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__product {
    font-size: 22px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .header__top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 40px 0;
  }

  .hero__label {
    font-size: 12px;
  }

  .hero__label span {
    width: 36px;
  }

  .hero__title {
    font-size: 25px;
  }

  .hero__accent {
    display: inline-block;
    font-size: 32px;
  }

  .hero__product {
    font-size: 20px;
  }
}

.header__note {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.header__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.logo img {
  max-width: 200px;
}

.hero__title {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
  color: #232323;
}

.hero__title-line {
  display: block;
}

.hero__title-accent {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: clamp(50px, 5vw, 86px);
  line-height: 0.95;
  font-weight: 400;
  text-transform: lowercase;
  color: #C8102E;
}

.hero__title-line:last-child .hero__title-accent {
  margin-left: 0;
}

.hero__title-accent {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.95;
  font-weight: 400;

  font-style: normal; /* важно */
  text-transform: lowercase;
  color: #C8102E;
}
.marquee {
  background: #1f1f1f;
  padding: 18px 0;
}

/* ограничение по центру */
.marquee__wrapper {
  overflow: hidden;
}

/* движущийся слой */
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

/* текст */
.marquee__content {
  white-space: nowrap;
  padding-right: 40px;

  font-family: var(--font-accent);
  font-size: 22px;
  color: #fff;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee__content span {
  position: relative;
  padding-right: 28px;
}

/* добавляем точку через псевдоэлемент */
.marquee__content span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);

  font-family: Arial, sans-serif; /* важно! */
  font-size: 18px;
}

.philosophy {
  position: relative;
  z-index: 2;
  padding: 105px 0 200px;
  background-image: url("../images/paper-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.philosophy__top-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 95px;

  font-size: clamp(34px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #232323;
}

.philosophy__top-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 78%;
  height: 10px;
  background: #C8102E;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-1deg);
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 410px 1fr;
  align-items: center;
  gap: 90px;
  max-width: 1120px;
  margin: 0 auto;
}

.philosophy__image img {
  width: 100%;
  height: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: #C8102E;
}

.section-label span {
  width: 56px;
  height: 2px;
  background: #C8102E;
}

.philosophy__label {
  margin-bottom: 26px;
}

.philosophy__title {
  margin: 0 0 34px;

  font-size: clamp(34px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
  color: #232323;
}

.philosophy__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.9;
  text-transform: lowercase;
  color: #C8102E;
}

.philosophy__text {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.philosophy__text p {
  margin: 0;
}

.philosophy__text p + p {
  margin-top: 24px;
}

@media (max-width: 992px) {
  .philosophy {
    padding: 80px 0 90px;
  }

  .philosophy__top-title {
    margin-bottom: 70px;
  }

  .philosophy__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .philosophy__image {
    max-width: 380px;
  }
}

@media (max-width: 576px) {
  .philosophy {
    padding: 64px 0 160px;
  }

  .philosophy__top-title {
    margin-bottom: 56px;
  }

  .philosophy__inner {
    gap: 36px;
  }

  .philosophy__title {
    font-size: 20px;
  }

  .philosophy__title span {
    font-size: 24px;
  }

  .philosophy__text {
    font-size: 16px;
  }
}

.philosophy__top-title::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -30px;

  width: 80%;           /* управляет длиной */
  height: 24px;         /* увеличили высоту контейнера */

  background: url("../images/underline.svg") no-repeat center;
  background-size: 100% auto;  /* ключевой момент */

  transform: translateX(-50%);
}

.reasons {
  position: relative;
  z-index: 1;
  margin-top: -90px;
  padding: 180px 0 95px;
  background: #f7f4ee;
}

.reasons__label {
  margin-bottom: 26px;
}

.reasons__title {
  margin: 0 0 28px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #232323;
}

.reasons__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.9;
  text-transform: lowercase;
  color: #C8102E;
}

.reasons__intro {
  max-width: 640px;
  margin: 0 0 58px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 64px;
}

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ОДИНАКОВАЯ ОБЛАСТЬ ПОД ИКОНКИ */
.reason-card__icon {
  width: 100%;
  max-width: 320px;
  height: 240px;

  object-fit: contain;
  object-position: left top;

  margin-bottom: 28px;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px 88px;
  margin-bottom: 82px;
}

.reason-card {
  display: grid;
  grid-template-rows: 210px minmax(72px, auto) auto;
  align-items: start;
}

.reason-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  margin-bottom: 24px;
}

.reason-card__image img {
  width: 220px;
  height: 190px;
  object-fit: contain;
}

.reason-card__title {
  margin: 0 0 18px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-red);
}

.reason-card__title span {
  font-family: var(--font-accent);
  font-size: 27px;
  font-weight: 400;
  line-height: 0.85;
  text-transform: lowercase;
  color: var(--color-red);
}

.reason-card p {
  max-width: 330px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.35;
  color: var(--color-text);
}

/* ОДИНАКОВАЯ ВЫСОТА ЗАГОЛОВКОВ */
.reason-card h3 {
  margin: 0 0 18px;

  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  text-transform: uppercase;

  color: var(--color-red);
}

/* ТЕКСТ ВСЕГДА СТАРТУЕТ НА ОДНОМ УРОВНЕ */
.reason-card p {
  margin: 0;

  font-size: 18px;
  line-height: 1.45;

  color: var(--color-text);
}

@media (max-width: 900px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reasons__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reason-card__icon {
    height: 200px;
    max-width: 260px;
  }

  .reason-card h3 {
    min-height: auto;
  }
}

.steps {
  padding: 90px 0;
  background: #fff;
}

.steps__label {
  margin-bottom: 20px;
}

.steps__title {
  margin: 0 0 20px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #232323;
}

.steps__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.9;
  text-transform: lowercase;
  color: #C8102E;
}

.steps__subtitle {
  max-width: 520px;
  margin: 0 0 50px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.steps__grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #d8d2c9;
  border-left: 1px solid #d8d2c9;
}

.step-card:not(.step-card--note) {
  border: 1px solid #d8d2c9;
}

.step-card--note {
  border: none !important;
  background: transparent !important;
}
.step-card:not(.step-card--note) {
  margin-right: -1px;
  margin-bottom: -1px;
}

.step-card {
  min-height: 275px;
  padding: 34px 32px 30px;
  border-right: 1px solid #d8d4ce;
  border-bottom: 1px solid #d8d4ce;
  background: transparent;
}

.steps__grid > *:nth-last-child(-n + 3) {
  border-bottom: none;
}

.step-card--accent {
  background: #e9e3dc;
}

.step-card__top {
  display: flex;
  align-items: flex-start;
  min-height: 92px;
  margin-bottom: 26px;
}

.step-card__num {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: #C8102E;
}

.step-card__top img {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.step-card h3 {
  margin: 0 0 18px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.18;
  text-transform: uppercase;
  color: #232323;
}

.step-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #232323;
}

.step-card--note {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card--note p {
  max-width: 310px;
}

.session-blocks {
  padding: 90px 0;
  background: #f7f4ee;
}

.session-blocks__label {
  margin-bottom: 24px;
}

.session-blocks__title {
  margin: 0 0 24px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #232323;
}

.session-blocks__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.9;
  text-transform: lowercase;
  color: #C8102E;
}

.session-blocks__subtitle {
  max-width: 540px;
  margin: 0 0 46px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.session-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.session-card {
  min-height: 300px;
  padding: 34px 34px 38px;

      background: #fff;
}

.session-blocks__grid > *:nth-child(3n) {
  border-right: none;
}

.session-blocks__grid > *:nth-last-child(-n + 3) {
  border-bottom: none;
}

.session-card img {
  max-width: 150px;
  margin-bottom: 34px;
  object-fit: contain;
}

.session-card h3 {
  margin: 0 0 18px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.18;
    text-transform: uppercase;
    color: #232323;
}

.session-card p {
  max-width: 310px;
  margin: 0;
  font-size: 18px;
  line-height: 1.32;
  color: #232323;
}

@media (max-width: 992px) {
  .session-blocks__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-blocks__grid > * {
    border-right: 1px solid #d8d4ce;
    border-bottom: 1px solid #d8d4ce;
  }

  .session-blocks__grid > *:nth-child(3n) {
    border-right: 1px solid #d8d4ce;
  }

  .session-blocks__grid > *:nth-child(2n) {
    border-right: none;
  }

  .session-blocks__grid > *:nth-last-child(-n + 3) {
    border-bottom: 1px solid #d8d4ce;
  }

  .session-blocks__grid > *:nth-last-child(-n + 1) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .session-blocks {
    padding: 60px 0;
  }

  .session-blocks__title span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .session-blocks__grid {
    grid-template-columns: 1fr;
  }

  .session-blocks__grid > * {
    border-right: none !important;
    border-bottom: 1px solid #d8d4ce;
  }

  .session-blocks__grid > *:last-child {
    border-bottom: none;
  }

  .session-card {
    min-height: auto;
    padding: 28px 22px 32px;
  }

  .session-card img {
    width: 96px;
    height: 96px;
    margin-bottom: 26px;
  }
}

.capsule {
  padding: 100px 0;
  background: #e9e3d8;
}

.capsule__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 90px;
}

.capsule__image img {
  width: 100%;
  height: auto;
}

.capsule__label {
  margin-bottom: 32px;
}

.capsule__title {
  margin: 0 0 32px;
  font-size: clamp(40px, 3vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #232323;
}

.capsule__title span {
  font-family: var(--font-accent);
  font-size: clamp(44px, 4.2vw, 70px);
  line-height: 0.9;
  text-transform: lowercase;
  color: #C8102E;
}

.capsule__text {
  max-width: 690px;
  margin: 0 0 38px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.capsule__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capsule__list li {
  position: relative;
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.45);

  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #232323;
}

.capsule__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;

  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #C8102E;
}

@media (max-width: 1100px) {
  .capsule__inner {
    grid-template-columns: 420px 1fr;
    gap: 56px;
  }

  .capsule__text,
  .capsule__list li {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .capsule {
    padding: 70px 0;
  }

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

  .capsule__image {
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .capsule__title span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .capsule__list li {
    padding-left: 30px;
    font-size: 16px;
  }

  .capsule__list li::before {
    top: 20px;
    width: 12px;
    height: 12px;
  }
}

.books {
  padding: 92px 0 88px;
  background: var(--color-bg);
}

.books__label {
  margin-bottom: 26px;
}

.books__title {
  margin: 0 0 34px;
  font-family: var(--font-main);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--color-text);
}

.books__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.85;
  text-transform: lowercase;
  color: var(--color-red);
}

.books__subtitle {
  max-width: 560px;
  margin: 0 0 64px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-text);
}

.books__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 46px;
}

.book-card {
  position: relative;
  min-height: 310px;
  padding: 52px 24px 28px;
  border: 1px solid #d8d4ce;
  background: #e9e3d8;
}

.book-card__num {
  position: absolute;
  top: 20px;
  right: 22px;

  font-family: var(--font-accent);
  font-size: 24px;
  line-height: 1;
  color: var(--color-red);
}

.book-card__icon {
  height: 100px;
  margin-bottom: 54px;
  object-fit: contain;
  max-width: 100px;
}

.book-card h3 {
  margin: 0 0 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.book-card h3 span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-accent);
  font-size: 31px;
  line-height: 0.95;
  text-transform: lowercase;
  color: var(--color-red);
}

.book-card p {
  max-width: 260px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text);
}

.books__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 38px;
  border-top: 1px solid #d8d4ce;
}

.books__note {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--color-text);
}

.books__note span {
  margin-right: 14px;
  font-family: var(--font-accent);
  font-size: 38px;
  line-height: 0.9;
  color: var(--color-red);
}

.books__btn {
  min-width: 260px;
  border-color: var(--color-text);
}

@media (max-width: 1100px) {
  .books__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-card {
    min-height: 290px;
  }
}

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

  .books__note span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .books {
    padding: 64px 0;
  }

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

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

  .books__btn {
    width: 100%;
  }
}

.gift {
  padding: 100px 0;
  background: #e9e3d8;
}

.gift__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 90px;
}

.gift__image img {
  width: 100%;
  height: auto;
}

.gift__label {
  margin-bottom: 34px;
}

.gift__title {
  margin: 0 0 38px;
  font-size: clamp(40px, 3vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  color: #232323;
}

.gift__title span {
  margin-left: 10px;
  font-family: var(--font-accent);
  font-size: clamp(48px, 4.4vw, 74px);
  line-height: 0.8;
  text-transform: lowercase;
  color: #C8102E;
}

.gift__text {
  max-width: 690px;
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.gift__list {
  display: grid;
  gap: 14px;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}

.gift__list li {
  display: flex;
  align-items: center;
  gap: 16px;

  font-size: 18px;
  line-height: 1.25;
  color: #232323;
}

.gift__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;
  border: 1px solid #C8102E;

  font-size: 30px;
  line-height: 1;
  color: #C8102E;
}

.gift__list em {
  font-style: normal;
  color: #C8102E;
}

.gift__order {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-top: 30px;
  margin-bottom: 34px;
  border-top: 1px solid #c9c3ba;
}

.gift__price {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 70px);
  line-height: 1;
  color: #C8102E;
}

.gift__btn {
  min-width: 280px;
}

.gift__note {
  position: relative;
  margin: 0;
  padding-left: 30px;

  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.gift__note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;

  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #C8102E;
}

@media (max-width: 1100px) {
  .gift__inner {
    grid-template-columns: 420px 1fr;
    gap: 56px;
  }

  .gift__text,
  .gift__list li,
  .gift__note {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .gift {
    padding: 70px 0;
  }

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

  .gift__image {
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .gift__title span {
    display: inline-block;
    margin-left: 0;
  }

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

  .gift__btn {
    width: 100%;
    min-width: 0;
  }

  .gift__list span {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

.portrait {
  padding: 100px 0;
  background: #F7F4EE;
}

.portrait__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 90px;
}

.portrait__image img {
  width: 100%;
  height: auto;
}

.portrait__label {
  margin-bottom: 34px;
}

.portrait__title {
  margin: 0 0 34px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  color: #232323;
}

.portrait__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.8;
  text-transform: lowercase;
  color: #C8102E;
}

.portrait__text {
  max-width: 720px;
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.portrait__text strong {
  font-weight: 400;
  color: #C8102E;
}

.portrait__list {
  display: grid;
  gap: 18px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.portrait__list li {
  position: relative;
  padding-left: 42px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #232323;
}

.portrait__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;

  width: 20px;
  height: 12px;
  border-left: 4px solid #C8102E;
  border-bottom: 4px solid #C8102E;
  transform: rotate(-45deg);
}

.portrait__list strong {
  color: #C8102E;
}

.portrait__steps {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid #d8d4ce;

  font-size: 16px;
  text-transform: uppercase;
  color: #232323;
}

.portrait__steps span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portrait__steps span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #C8102E;
  transform: rotate(45deg);
}

.portrait__steps span:not(:last-child)::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #d8d4ce;
}

.portrait__btn {
  min-width: 320px;
}

@media (max-width: 1100px) {
  .portrait__inner {
    grid-template-columns: 420px 1fr;
    gap: 56px;
  }

  .portrait__text,
  .portrait__list li {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .portrait {
    padding: 70px 0;
  }

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

  .portrait__image {
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .portrait__title span {
    display: inline-block;
    margin-left: 0;
  }

  .portrait__steps {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .portrait__steps span:not(:last-child)::after {
    display: none;
  }

  .portrait__btn {
    width: 100%;
    min-width: 0;
  }
}

.questionnaires {
  padding: 90px 0 70px;
  background: #FFFDF8;
}

.questionnaires__label {
  margin-bottom: 24px;
}

.questionnaires__title {
  margin: 0 0 34px;
  font-family: var(--font-main);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.questionnaires__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--color-red);
}

.questionnaires__subtitle {
  max-width: 600px;
  margin: 0 0 64px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-text);
}

.questionnaires__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 78px;
}

.questionnaire-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px 34px;
  padding: 18px 18px 28px;
  background: #e9e3d8;
}

.questionnaire-card__media {
  grid-row: 1;
}

.questionnaire-card__media img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: contain;
}

.questionnaire-card__content {
  display: flex;
  flex-direction: column;
  padding-top: 42px;
}

.questionnaire-card__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-red);
}

.questionnaire-card__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-red);
}

.questionnaire-card__label span {
  font-size: 14px;
}

.questionnaire-card h3 {
  margin: 0 0 26px;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--color-text);
}

.questionnaire-card h3 span {
  font-family: var(--font-accent);
  font-size: 24px;
  line-height: 0.9;
  text-transform: lowercase;
  color: var(--color-red);
}

.questionnaire-card p {
  margin: 0 0 18px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: var(--color-text);
}

.questionnaire-card p strong {
  color: var(--color-red);
}

.questionnaire-card__points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid #d0c9bf;
  list-style: none;
}

.questionnaire-card__points li {
  position: relative;
  padding-left: 26px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: var(--color-text);
}

.questionnaire-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-red);
}

.questionnaire-card__actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.questionnaire-card__actions .btn {
  width: 100%;
}

.questionnaires__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 38px;
  border-top: 1px solid #d8d4ce;
}

.questionnaires__bottom p {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-text);
}

.questionnaires__bottom span {
  margin-right: 16px;
  font-family: var(--font-accent);
  font-size: 42px;
  line-height: 0.9;
  color: var(--color-red);
}

.questionnaires__btn {
  min-width: 280px;
}
@media (max-width: 1200px) {
  .questionnaires__grid {
    grid-template-columns: 1fr;
  }

  .questionnaire-card {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .questionnaire-card {
    grid-template-columns: 1fr;
  }

  .questionnaire-card__points,
  .questionnaire-card__actions {
    grid-column: auto;
  }

  .questionnaire-card__media {
    max-width: 260px;
  }

  .questionnaire-card__content {
    padding-top: 0;
  }

  .questionnaires__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .questionnaires__btn {
    width: 100%;
  }
}

.downloads {
  padding: 90px 0;
  background: #f7f4ee;
}

.downloads__label {
  margin-bottom: 24px;
}

.downloads__title {
  margin: 0 0 34px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: #232323;
}

.downloads__title span,
.download-item h3 span,
.downloads__bottom span {
  font-family: var(--font-accent);
  text-transform: none;
  color: #C8102E;
}

.downloads__title span {
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.85;
}

.downloads__subtitle {
  max-width: 620px;
  margin: 0 0 70px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.downloads__list {
  display: grid;
  gap: 12px;
  margin-bottom: 56px;
}

.download-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 28px;

  padding: 34px 28px;
  background: #e9e3d8;
}

.download-item__icon {
  width: 46px;
  height: 60px;
  object-fit: contain;
}

.download-item__content {
  min-width: 0;
}

.download-item__num {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #C8102E;
}

.download-item h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 1vw, 34px);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
  color: #232323;
}

.download-item h3 span {
  font-size: clamp(28px, 2vw, 28px);
}

.download-item h3 em {
  font-family: var(--font-accent);
  font-size: clamp(22px, 2vw, 32px);
  font-style: normal;
  text-transform: none;
}

.download-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  color: #6c6c6c;
}

.download-item__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.download-item__format {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 64px;
  min-height: 38px;
  border: 1px solid #C8102E;

  font-size: 16px;
  font-weight: 600;
  color: #C8102E;
}

.download-item__btn {
  min-width: 160px;
  min-height: 52px;
}

.downloads__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding-top: 36px;
  border-top: 1px solid #d8d4ce;
}

.downloads__bottom p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.downloads__bottom span {
  font-size: clamp(28px, 2vw, 52px);
  line-height: 0.9;
}

.downloads__btn {
  min-width: 260px;
}

@media (max-width: 900px) {
  .download-item {
    grid-template-columns: 52px 1fr;
  }

  .download-item__actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .downloads__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .downloads {
    padding: 60px 0;
  }

  .downloads__subtitle {
    margin-bottom: 44px;
    font-size: 16px;
  }

  .download-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .download-item__actions {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .download-item__btn,
  .downloads__btn {
    width: 100%;
    min-width: 0;
  }
}

.games {
  padding: 90px 0;
  background: #e9e3d8;
}

.games__label {
  margin-bottom: 24px;
}

.games__title {
  margin: 0 0 30px;
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #232323;
}

.games__title span,
.game-card h3 span,
.games__bottom span {
  font-family: var(--font-accent);
  text-transform: lowercase;
  color: #C8102E;
}

.games__title span {
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.85;
}

.games__subtitle {
  max-width: 560px;
  margin: 0 0 58px;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 70px;
}

.game-card {
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 28px;
  background: #f7f4ee;
}

.game-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 285px;
  margin-bottom: 30px;
  background: #ebe5dc;
}

.game-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.game-card__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
  color: #C8102E;
}

.game-card h3 {
  margin: 0 0 20px;
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.05;
  color: #232323;
}

.game-card h3 span {
  font-size: clamp(32px, 2vw, 36px);
  line-height: 0.85;
}

.game-card p:not(.game-card__label) {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.35;
  color: #6c6c6c;
}

.game-card__btn {
  width: 180px;
  margin-top: auto;
}

.games__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 38px;
  border-top: 1px solid #d0c9bf;
}

.games__bottom p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: #232323;
}

.games__bottom span {
  margin-right: 10px;
  font-size: 42px;
  line-height: 0.9;
}

.games__btn {
  min-width: 260px;
}

@media (max-width: 1100px) {
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-card {
    min-height: 560px;
  }
}

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

  .games__bottom span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .games {
    padding: 60px 0;
  }

  .games__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .game-card {
    min-height: auto;
    padding: 22px;
  }

  .game-card__image {
    height: 230px;
  }

  .game-card__btn,
  .games__btn {
    width: 100%;
  }
}

.pricing {
  padding: 90px 0 100px;
  background: #F7F4EE;
}

.pricing__label {
  margin-bottom: 26px;
}

.pricing__title {
  margin: 0 0 30px;
  font-family: var(--font-main);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.pricing__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.85;
  text-transform: lowercase;
  color: var(--color-red);
}

.pricing__subtitle {
  max-width: 450px;
  margin: 0 0 74px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-text);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  margin-bottom: 58px;
}

.price-card {
  position: relative;
  min-height: 470px;
  padding: 50px 34px 34px;
  border: 1px solid #d8d4ce;
  background: #e9e3d8;
}

.price-card--featured {
  background: #181818;
  color: #fff;
}

.price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 14px 28px;
  background: var(--color-red);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.price-card__num {
  display: block;
  margin-bottom: 22px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  color: #999793;
}

.price-card__icon {
  width: 58px;
  height: 44px;
  margin-bottom: 34px;
  object-fit: contain;
}

.price-card h3 {
  margin: 0 0 58px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
}

.price-card__price {
  margin: 0 0 18px;
  font-family: var(--font-main);
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 1;
  color: var(--color-red);
}

.price-card__text {
  max-width: 300px;
  margin: 0 0 42px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: inherit;
}

.price-card__btn {
  width: 100%;
  border-color: currentColor;
  color: inherit;
}

.price-card--featured .price-card__icon {
  filter: brightness(0) invert(1);
}

.pricing__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 52px;
}

.pricing-feature {
  position: relative;
  margin: 0;
  padding-left: 48px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-text);
}

.pricing-feature span {
  font-family: var(--font-accent);
  font-size: 32px;
  line-height: 0.9;
  color: var(--color-red);
}

.pricing-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
}

.pricing-feature--check::before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
}

.pricing-feature--check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transform: rotate(-45deg);
}

.pricing-feature--box::before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-text);
}

.pricing-feature--box::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
}

.pricing__bottom {
  display: flex;
  justify-content: center;
}

.pricing__main-btn {
  min-width: 260px;
}

@media (max-width: 900px) {
  .pricing__grid,
  .pricing__features {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .pricing {
    padding: 60px 0 70px;
  }

  .pricing__subtitle {
    margin-bottom: 46px;
  }

  .price-card h3 {
    margin-bottom: 36px;
  }

  .pricing__main-btn {
    width: 100%;
  }
}

/* =========================
   CAPSULE DARK SECTION
========================= */

.capsule {
  position: relative;
  padding: 120px 0;
  background: #07070d;
  overflow: hidden;
}

/* мягкое свечение фона */
.capsule::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,16,46,.12), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(200,16,46,.08), transparent 40%);
  pointer-events: none;
}

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

.capsule__inner {
  display: grid;
      grid-template-columns: 40% 60%;
  gap: 30px;
  align-items: center;
}

/* =========================
   IMAGE
========================= */

.capsule__image img {
  width: 100%;
  display: block;
  object-fit: contain;

  filter:
    brightness(1.03)
    contrast(1.02)
    drop-shadow(0 0 50px rgba(200,16,46,.12));
}

/* =========================
   LABEL
========================= */

.capsule__label {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 28px;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;

  color: #C8102E;
}

.capsule__label span {
  width: 64px;
  height: 2px;
  background: #C8102E;
}

/* =========================
   TITLE
========================= */

.capsule__title {
  margin: 0 0 34px;

  font-family: var(--font-main);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.03em;

  color: #ffffff;
}

.capsule__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  font-weight: 400;
  line-height: .9;

  color: #C8102E;
}

/* =========================
   TEXT
========================= */

.capsule__text {
  margin: 0 0 52px;

  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 300;

  color: rgba(255,255,255,.92);
}

.capsule__text strong {
  font-weight: 500;
  color: #ffffff;
}

/* =========================
   LIST
========================= */

.capsule__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capsule__list li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: #ffffff;
}

.capsule__list li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 13px;
  height: 13px;

  border-radius: 50%;
  background: #C8102E;

  transform: translateY(-50%);
}

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

@media (max-width: 1200px) {

  .capsule__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .capsule__image {
    max-width: 680px;
    margin: 0 auto;
  }

  .capsule__content {
    max-width: 900px;
    margin: 0 auto;
  }

  .capsule__title {
    font-size: 62px;
  }

  .capsule__title span {
    font-size: 72px;
  }
}

@media (max-width: 768px) {

  .capsule {
    padding: 90px 0;
  }

  .capsule__title {
    font-size: 46px;
  }

  .capsule__title span {
    font-size: 56px;
  }

  .capsule__text {
    font-size: 18px;
  }

  .capsule__list li {
    min-height: auto;
    padding: 22px 0 22px 36px;
    font-size: 18px;
  }
}

/* =========================
   GIFT DARK SECTION
========================= */

.gift {
  position: relative;
  padding: 120px 0;
  background: #07070d;
  overflow: hidden;
}

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

.gift__inner {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 90px;
  align-items: flex-start;
}

/* =========================
   IMAGE
========================= */

.gift__image {
  display: flex;
  justify-content: center;
}

.gift__image img {
  width: 100%;
  max-width: 470px;
  object-fit: contain;

  filter:
    brightness(1.08)
    contrast(1.04)
    drop-shadow(0 0 40px rgba(200,16,46,.12));
}

/* =========================
   LABEL
========================= */

.gift__label {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 30px;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;

  color: #C8102E;
}

.gift__label span {
  width: 62px;
  height: 2px;
  background: #C8102E;
}

/* =========================
   TITLE
========================= */

.gift__title {
  margin: 0 0 36px;

  font-family: var(--font-main);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.03em;
  text-transform: uppercase;

  color: #ffffff;
}

.gift__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: .88;
  text-transform: lowercase;

  color: #C8102E;
}

/* =========================
   TEXT
========================= */

.gift__text {
  max-width: 760px;
  margin: 0 0 42px;

  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 300;

  color: rgba(255,255,255,.9);
}

/* =========================
   LIST
========================= */

.gift__list {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0 0 48px;
  padding: 0;

  list-style: none;
}

.gift__list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gift__list span {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(200,16,46,.7);

  font-family: var(--font-accent);
  font-size: 34px;
  line-height: 1;

  color: #C8102E;
}

.gift__list strong {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;

  color: #ffffff;
}

.gift__list em {
  font-style: normal;
  color: #C8102E;
}

/* =========================
   ORDER
========================= */

.gift__order {
  display: flex;
  align-items: center;
  gap: 46px;

  margin-top: 56px;
  padding-top: 46px;

  border-top: 1px solid rgba(255,255,255,.35);
}

.gift__price {
  margin: 0;

  font-family: var(--font-main);
  font-size: clamp(54px, 4vw, 76px);
  line-height: .9;
  font-weight: 400;

  color: #C8102E;
}

.gift__btn {
  min-width: 280px;
}

/* =========================
   NOTE
========================= */

.gift__note {
  position: relative;

  margin: 34px 0 0;
  padding-left: 28px;

  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.45;

  color: rgba(255,255,255,.88);
}

.gift__note::before {
  content: "";

  position: absolute;
  left: 0;
  top: 11px;

  width: 14px;
  height: 14px;

  border-radius: 50%;
  background: #C8102E;
}

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

@media (max-width: 1200px) {

  .gift__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gift__image {
    order: -1;
  }

  .gift__content {
    max-width: 900px;
  }
}

@media (max-width: 768px) {

  .gift {
    padding: 90px 0;
  }

  .gift__title {
    font-size: 20px;
  }

  .gift__title span {
    font-size: 24px;
  }

  .gift__text {
    font-size: 16px;
  }

  .gift__list strong {
    font-size: 16px;
  }

  .gift__order {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .gift__btn {
    width: 100%;
  }
}

@media (max-width: 576px) {

  .gift__list span {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .gift__price {
    font-size: 52px;
  }
}

.questionnaire-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;

  padding: 18px 18px 28px;
  background: #e9e3d8;
}

.questionnaire-card__media {
  grid-column: 1;
}

.questionnaire-card__media img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: contain;
}

.questionnaire-card__points {
  grid-column: 1;
  display: grid;
  gap: 14px;

  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.questionnaire-card__content {
  grid-column: 2;
  grid-row: 1 / span 2;

  display: flex;
  flex-direction: column;
  padding-top: 42px;
}

.questionnaire-card__actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #d0c9bf;
}

.questionnaire-card {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
  padding: 28px;
  background: #e9e3d8;
}

.questionnaire-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.questionnaire-card__content {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.questionnaire-card__points {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
  padding: 28px 0 0;
  border-top: 1px solid #d0c9bf;
  list-style: none;
}

.questionnaire-card__points li {
  position: relative;
  padding-left: 28px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text);
}

.questionnaire-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-red);
}

.questionnaire-card__actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.cta {
  padding: 105px 0;
  background: #FFFCF5;
  overflow: hidden;
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 95px);
}

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

.cta__content {
  min-width: 0;
}

.cta__title {
  margin: 0 0 36px;
  font-family: var(--font-main);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.cta__title span {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  line-height: 0.9;
  text-transform: lowercase;
  color: var(--color-red);
}

.cta__text {
  max-width: 720px;
  margin: 0 0 48px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 760px;
}

.cta__actions .btn {
  flex: 1 1 280px;
  min-height: 70px;
  min-width: 0;
}

.btn--dark {
  color: #fff;
  background: #232323;
}

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

  .cta__image {
    max-width: 520px;
  }
}

@media (max-width: 576px) {
  .cta {
    padding: 70px 0;
  }

  .cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta__actions .btn {
    width: 100%;
  }
}

.footer {
  padding: 95px 0 110px;
  background: #202020;
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  display: block;
  margin-bottom: 22px;
}

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

.footer__tagline {
  margin: 0 0 42px;
  font-family: var(--font-accent);
  font-size: 22px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
}

.footer__tagline span {
  margin: 0 12px;
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
}

.footer__world {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  margin-bottom: 20px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__world img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.footer__contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;

  color: #fff;
}

.footer__contacts img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer__copy {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.reasons__bottom {
  margin-top: 90px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.reasons__quote {
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #1E1E1E;
}

.reasons__quote span {
  display: block;
  margin-top: 8px;

  font-family: var(--font-accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
  color: #C8102E;
}

.reasons__btn {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #C8102E;
  color: #fff;

  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;

  transition: 0.3s ease;
}

.reasons__btn:hover {
  background: #a80d26;
}

@media (max-width: 1024px) {
  .reasons__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .reasons__quote {
    font-size: 48px;
  }

  .reasons__quote span {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .reasons__bottom {
    margin-top: 70px;
    padding-top: 36px;
  }

  .reasons__quote {
    font-size: 20px;
    line-height: 1;
  }

  .reasons__quote span {
    font-size: 24px;
  }

  .reasons__btn {
    width: 100%;
    height: 72px;
  }
}

.step-card {
  background: #fff;
  transition: background-color 0.25s ease;
}

.step-card__num {
  color: #cacaca;
  transition: color 0.25s ease;
}

.step-card--accent,
.step-card:hover {
  background: #e9e3d8;
}

.step-card--accent .step-card__num,
.step-card:hover .step-card__num {
  color: var(--color-red);
}

.step-card--note:hover {
  background: #fff;
}
.step-card__top img {
  transition: transform 0.25s ease;
}

.step-card:hover .step-card__top img {
  transform: translateY(-4px);
}

.session-blocks {
  padding: 100px 0;
  background: var(--color-bg);
}

.session-blocks__label {
  margin-bottom: 24px;
}

.session-blocks__title {
  margin: 0 0 28px;
  font-family: var(--font-title);
  font-size: clamp(44px, 2vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.session-blocks__title span {
  font-family: var(--font-accent);
  font-size: clamp(50px, 2vw, 50px);
  font-weight: 300;
  line-height: 0.85;
  text-transform: lowercase;
  color: var(--color-red);
}

.session-blocks__subtitle {
  max-width: 640px;
  margin: 0 0 58px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-text);
}

.session-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #d8d2c9;
}

.session-card {
  min-height: 360px;
  padding: 42px 36px 38px;

  background: #fff;

  display: flex;
  flex-direction: column;
}

.session-blocks__grid > *:nth-child(3n) {
  border-right: none;
}

.session-blocks__grid > *:nth-last-child(-n + 3) {
  border-bottom: none;
}

.session-card__icon {
  height: 130px;
  margin-bottom: 34px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.session-card__icon img {
  max-width: 170px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.session-card h3 {
  margin: 0 0 18px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.18;
    text-transform: uppercase;
    color: #232323;
}

.session-card p {
  max-width: 330px;
  margin: 0;

  font-size: 18px;
  line-height: 1.35;
  color: var(--color-text);
}

@media (max-width: 992px) {
  .session-blocks__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-blocks__grid > * {
    border-right: 1px solid #d8d2c9;
    border-bottom: 1px solid #d8d2c9;
  }

  .session-blocks__grid > *:nth-child(3n) {
    border-right: 1px solid #d8d2c9;
  }

  .session-blocks__grid > *:nth-child(2n) {
    border-right: none;
  }

  .session-blocks__grid > *:nth-last-child(-n + 3) {
    border-bottom: 1px solid #d8d2c9;
  }

  .session-blocks__grid > *:last-child {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .session-blocks {
    padding: 64px 0;
  }

  .session-blocks__grid {
    grid-template-columns: 1fr;
  }

  .session-blocks__grid > * {
    border-right: none !important;
    border-bottom: 1px solid #d8d2c9;
  }

  .session-blocks__grid > *:last-child {
    border-bottom: none;
  }

  .session-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .session-card__icon {
    height: 110px;
    margin-bottom: 26px;
  }

  .session-card h3 {
    min-height: auto;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;

  width: min(92%, 620px);

  margin: 80px auto;

  padding: 56px;

  background: #f7f5f1;
  border: 1px solid #d8d2c9;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);

  z-index: 2;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;
  background: transparent;

  font-size: 42px;
  line-height: 1;
  cursor: pointer;

  color: #1f1f1f;

  transition: 0.2s ease;
}

.modal__close:hover {
  color: var(--color-red);
}

.modal__label {
  margin-bottom: 22px;
}

.modal__title {
  margin: 0 0 22px;

  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.modal__title span {
  display: block;

  font-family: var(--font-accent);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  line-height: 0.9;

  text-transform: lowercase;

  color: var(--color-red);
}

.modal__text {
  max-width: 420px;

  margin: 0 0 42px;

  font-size: 18px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-form__group input {
  width: 100%;
  height: 72px;

  padding: 0 24px;

  border: 1px solid #cfc8be;
  background: #fff;

  font-size: 18px;
  font-family: inherit;
  color: #1f1f1f;

  transition: 0.2s ease;
}

.modal-form__group input:focus {
  outline: none;
  border-color: var(--color-red);
}

.modal-form__group input::placeholder {
  color: #8b8b8b;
}

.modal-form__submit {
  width: 100%;
  margin-top: 10px;
}

body.modal-open {
  overflow: hidden;
}

.btn {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.btn--primary {
  background: #C8102E;
  color: #fff;
}

.btn--primary:hover {
  background: #af0d27;
}

.btn--outline:hover {
  background: #1f1f1f;
  color: #fff;
}

.btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.22),
    transparent
  );

  transform: skewX(-25deg);

  transition: left 0.7s ease;
}

.btn:hover::before {
  left: 140%;
}

.step-card--note {
  border-right: none;
  border-bottom: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card--note:hover {
  background: transparent;
}

.step-card--note p {
  max-width: 360px;
  font-size: 18px;
  line-height: 1.35;
}

.steps__grid .step-card--note {
  border: none !important;
}

.steps__grid .step-card--note {
  border: none !important;
  background: transparent !important;
  box-shadow: none;
}

.steps__grid .step-card--note:hover {
  background: transparent !important;
}

.steps__grid .step-card--note p {
  max-width: 360px;
  margin: 0;
}

.steps__grid {
  border: none;
}

.step-card {
  border-right: 1px solid #d8d2c9;
  border-bottom: 1px solid #d8d2c9;
}

/* убираем только у блока со звёздочкой */
.steps__grid > .step-card--note {
  border: none !important;
  background: transparent !important;
}
.steps__grid > .step-card:nth-child(10),
.steps__grid > .step-card:nth-child(11) {
  border-bottom: 1px solid #d8d2c9;
}

.session-card {
  position: relative;
  border: 1px solid #d8d2c9;
  background: #f5f3ee;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.session-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #c8102e;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.session-card:hover::before {
  opacity: 1;
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.08);
}

.book-card {
  position: relative;
  background: #e9e3d8; /* обычный фон карточки */
  border: 1px solid #d8d2c9;

  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.book-card:hover {
  background: var(--color-bg); /* фон меняется только при наведении */
  border-color: var(--color-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200, 16, 46, 0.08);
  z-index: 2;
}

.questionnaire-card {
  position: relative;
  border: 1px solid #d8d2c9;

  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.questionnaire-card:hover {
  border-color: var(--color-red);

  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(200, 16, 46, 0.08);

  z-index: 2;
}

.questionnaire-card__media img {
  transition: transform 0.45s ease;
}

.questionnaire-card:hover .questionnaire-card__media img {
  transform: scale(1.03);
}

.download-item {
  position: relative;

  border: 1px solid #d8d2c9;

  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.download-item:hover {
  border-color: var(--color-red);

  transform: translateX(10px);

  box-shadow:
    0 12px 30px rgba(200, 16, 46, 0.08);

  z-index: 2;
}

.download-item__btn {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.download-item:hover .download-item__btn {
  transform: translateX(4px);
}

.game-card {
  position: relative;

  border: 1px solid #d8d2c9;

  overflow: hidden;

  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.game-card:hover {
  border-color: var(--color-red);

  transform: translateY(-10px);

  box-shadow:
    0 18px 42px rgba(200, 16, 46, 0.08);

  z-index: 2;
}

.game-card__image {
  overflow: hidden;
}

.game-card__image img {
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.game-card:hover .game-card__image img {
  transform: scale(1.04);
}

.game-card__btn {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.game-card:hover .game-card__btn {
  transform: translateX(4px);
}

.typing-word {
  display: inline-block;
  min-width: 20px;
  color: var(--color-red);
}

.typing-word.typing::after {
  content: "|";
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.price-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-red);
  background: var(--color-bg);
  box-shadow: 0 18px 42px rgba(200, 16, 46, 0.1);
  z-index: 2;
}

.price-card--featured:hover {
  background: #111;
}

.price-card__icon {
  transition: transform 0.4s ease;
}

.price-card:hover .price-card__icon {
  transform: translateY(-6px) scale(1.05);
}

.price-card__price {
  transition:
    transform 0.35s ease,
    letter-spacing 0.35s ease;
}

.price-card:hover .price-card__price {
  transform: translateX(4px);
  letter-spacing: 0.02em;
}

.price-card__btn {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.price-card:hover .price-card__btn {
  transform: translateX(4px);
}

.books-form__fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  border: none;
}

.books-form__fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--color-text);
}

.books-form__fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d8d2c9;
  background: #fff;
  cursor: pointer;
}

.books-form__fieldset input {
  accent-color: var(--color-red);
}

.books-form input[type="text"],
.books-form input[type="tel"],
.books-form input[type="email"] {
  width: 100%;
  height: 64px;
  margin-bottom: 14px;
  padding: 0 20px;
  border: 1px solid #d8d2c9;
  font: inherit;
}

@media (max-width: 576px) {
  .books-form__fieldset {
    grid-template-columns: 1fr;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 640px;

  max-height: calc(100vh - 40px);

  overflow-y: auto;

  background: var(--color-bg);

  padding: 48px;

  border: 1px solid #d8d2c9;

  scrollbar-width: thin;
}

@media (max-width: 768px) {

  .modal {
    padding: 10px;
    align-items: flex-start;
  }

  .modal__content {
    max-height: calc(100vh - 150px);

    padding:
      32px
      24px;
  }

}

input[type="tel"]::placeholder {
  color: #9f9f9f;
}

@media (max-width: 1100px) {

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

}

@media (max-width: 640px) {

  .steps__grid {
    grid-template-columns: 1fr;

    border-left: none;
  }

  .step-card {
    border-left: 1px solid #d8d2c9;
    border-right: 1px solid #d8d2c9;
  }

  .step-card--note {
    border-right: 1px solid #d8d2c9 !important;
  }

}
.header__top {
  background: #1f1f1f;
}

.header__top-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.header__note {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__top-logo img {
  display: block;
  width: 360px;
  max-width: 100%;
}

.header__top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  text-decoration: none;
}

.header__socials img {
  width: 34px;
  height: 34px;
  display: block;
}

.header__contacts {
  flex-shrink: 0;
  min-width: 170px;
}



@media (max-width: 900px) {
  .header__top-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 0;
  }

  .header__top-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header__top-logo img {
    width: 280px;
  }
}

.header__top-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0;
}

.header__note {
  justify-self: start;
  margin: 0;
}

.header__top-logo {
  justify-self: center;
}

.header__top-logo img {
  width: 360px;
  max-width: 100%;
}

.header__top-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.header__socials img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header__contacts {
  flex-shrink: 0;
  min-width: 170px;
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fragment-modal__content {
  max-width: 760px;
}

.fragment-modal__text {
  max-height: 58vh;
  overflow-y: auto;

  margin-top: 24px;
  padding-right: 12px;

  font-family: var(--font-base);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text);
}

.fragment-modal__text p {
  margin: 0 0 18px;
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header__top-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header__top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

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

.header__socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header__phone {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.header__phone:hover {
  opacity: .8;
}

@media (max-width: 768px) {

  .header__top-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header__top-logo {
    flex-shrink: 0;
  }

  .header__top-logo img {
    height: 34px;
    width: auto;
  }

  .header__top-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header__socials {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header__socials img {
    width: 20px;
    height: 20px;
  }

  .header__phone {
    display: none; /* телефон убираем на мобиле */
  }

  .burger,
  .header__burger,
  .menu-toggle {
    margin-left: 10px;
  }
}



@media (max-width: 768px) {
  .header__top-inner {
    flex-direction: row;
  }

  .header__phone {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__main {
    display: none;
  }

  .header__main.is-open {
    display: block;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {

  .header__top {
    padding: 15px 0;
  }

  .header__top-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo logo"
      "social burger";
    align-items: center;
    row-gap: 15px;
  }

  .header__top-logo {
    grid-area: logo;
    justify-self: center;
  }

  .header__top-logo img {
    height: 42px;
    width: auto;
  }

  .header__top-right {
    display: contents;
  }

  .header__socials {
    grid-area: social;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header__socials img {
    width: 24px;
    height: 24px;
  }

  .header__phone {
    display: none;
  }

  .header__burger {
    grid-area: burger;
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
}

.header__burger span {
  display: block !important;
  width: 30px;
  height: 3px;
  background: #fff !important;
  border-radius: 3px;
  margin: 5px auto;
}

@media (max-width: 768px) {
  .header__burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.header__burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: 0 !important;
    cursor: pointer;
    z-index: 9999;
}

.header__burger span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    margin: 1px 0 !important;
    background: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 2px;
}

.questionnaire-gallery {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.questionnaire-gallery__main {
  background: #fff7ec;
}

.questionnaire-gallery__main img {
  width: 100%;
  display: block;
}

.questionnaire-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.questionnaire-gallery__thumb {
  background: #fff7ec;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.questionnaire-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 12px 0 20px;
}

.admin-gallery-preview .preview-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.questionnaire-gallery__thumb {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}

.questionnaire-gallery__thumb:hover,
.questionnaire-gallery__thumb.is-active {
  border-color: #d40b2f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero__title {font-size: 20px; margin: 0;}
    .hero__title-accent {font-size: 24px;}
    .hero__product {margin-bottom: 15px; margin-top: 0;}
    .philosophy__top-title {font-size: 20px;}
    .reasons__title {font-size: 20px;}
    .reasons__title span {font-size: 24px;}
    .reasons__intro {font-size: 16px;}
    .reason-card h3 {font-size: 18px;}
    .reason-card p {font-size: 16px;}
    .steps__title {font-size: 20px;}
    .steps__title span {font-size: 24px;}
    .steps__subtitle {font-size: 16px;}
    .step-card p {font-size: 16px;}
    .step-card h3 {font-size: 16px;}
    .questionnaires__title {font-size: 20px;}
    .questionnaires__title span {font-size: 24px;}
    .questionnaires__subtitle {font-size: 16px;}
    .questionnaire-card {display: block;}
    .modal__title {font-size: 20px;}
    .fragment-modal__text p {font-size: 16px;}
    .questionnaires__bottom span {font-size: 24px;}
    .questionnaires__bottom p {font-size: 18px;}
    .books__title {font-size: 20px;}
    .books__title span {font-size: 24px;}
    .book-card h3 {font-size: 18px;}
    .book-card h3 span {font-size: 24px;}
    .books__subtitle {font-size: 16px;}
    .book-card p {font-size: 16px;}
    .books__note span {font-size: 24px;}
    .books__note {font-size: 16px;}
    .gift__note {font-size: 16px;}
    .pricing__title {font-size: 20px;}
    .pricing__title span {font-size: 24px;}
    .pricing__subtitle {font-size: 16px;}
    .price-card h3 {font-size: 20px;}
    .price-card__text {font-size: 16px;}
    .pricing-feature {font-size: 16px;}
    .cta__title {font-size: 20px;}
    .cta__title span {font-size: 24px;}
    .cta__text {font-size: 16px;}
    .session-blocks__title {font-size: 20px;}
    .session-blocks__title span {font-size: 24px;}
    .session-blocks__subtitle {font-size: 16px;}
    .session-card p {font-size: 16px;}
    .capsule__title {font-size: 20px;}
    .capsule__title span {font-size: 24px;}
    .capsule__text {font-size: 16px;}
    .capsule__list li {font-size: 16px;}
    .games__title {font-size: 20px;}
    .games__title span {font-size: 24px;}
    .games__subtitle {font-size: 16px;}
    .downloads__title {font-size: 20px;}
    .downloads__title span {font-size: 24px;}
    .download-item h3 {font-size: 20px;}
    .download-item p {font-size: 16px;}
    .downloads__bottom span {font-size: 24px;}
    .downloads__bottom p {font-size: 16px;}
    
}

p.questionnaire-card__price {
  margin: 28px 0 18px;
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.cdek-city {
  position: relative;
}

.cdek-city__results {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
}

.cdek-city__item {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.cdek-city__item:hover {
  background: #f4efe7;
}

.order-total {
  margin: 20px 0;
  padding: 18px;
  background: #f4efe7;
  font-size: 16px;
}

.order-total p {
  margin: 0 0 8px;
}

.order-total p:last-child {
  margin-bottom: 0;
}

.cdek-widget-container {
  margin: 20px 0;
  border: 1px solid #ddd;
}

.cdek-selected {
  margin: 16px 0;
  padding: 16px;
  background: #f4efe7;
}

.cdek-selected p {
  margin: 6px 0 0;
}

.footer__legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 18px 0;
  font-size: 14px;
}

.footer__legal a {
  color: inherit;
  text-decoration: underline;
}

.footer__legal a:hover {
  opacity: 0.75;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 22px;
  border-radius: 18px;

  background: rgba(20, 20, 20, 0.96);
  color: #fff;

  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #d84d5b;
  text-decoration: underline;
}

.cookie-banner__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.cookie-banner.is-hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

.gift-delivery {
    margin: 20px 0;
}

.gift-delivery__title {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.gift-delivery__option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    cursor: pointer;
}

.gift-delivery__option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
}

.gift-delivery__option span {
    font-size: 18px;
    line-height: 1.4;
}

.game-card__price{
    margin:18px 0;
    font-size:28px;
    font-weight:700;
    color:#c8102e;
}

.game-card__price span{
    color:#777;
    font-weight:400;
}

.game-card__price{
    font-size:32px;
    font-weight:700;
    margin:20px 0;
}

.admin-sidebar__divider{
    margin:25px 0;
    border:none;
    border-top:1px solid #ddd;
}

.admin-sidebar__link{
    display:block;
    padding:12px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    color:#333;
    background:#f5f5f5;
    transition:.2s;
}

.admin-sidebar__link:hover{
    background:#d11533;
    color:#fff;
}

.admin-tab--link{
    display:flex;
    align-items:center;
    gap:18px;

    width:100%;

    padding:22px 20px;

    box-sizing:border-box;

    color:#fff;
    text-decoration:none;

    background:#232323;
    border:1px solid #4b4b4b;

    transition:.2s;
}

.admin-tab--link:hover{

    background:#b3122f;
    border-color:#b3122f;

}

.admin-tab--link .drag-handle{

    cursor:default;

}
.admin-sidebar__top{

    margin-bottom:25px;

}

.admin-sidebar__top h2{

    margin:0 0 18px;

    font-size:26px;

    color:#fff;

}

.admin-sidebar__menu{

    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 18px;

    background:#b3122f;

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    border-radius:10px;

    transition:.2s;

}

.admin-sidebar__menu:hover{

    background:#d11533;

}

.admin-sidebar__divider{

    height:1px;

    background:#444;

    margin:25px 0;

}

.admin-sidebar__title{

    margin:0 0 20px;

    color:#999;

    text-transform:uppercase;

    font-size:13px;

    letter-spacing:.08em;

}

.admin-tab--crm{
    display:flex !important;
    align-items:center;
    justify-content:flex-start;

    gap:28px;

    width:100%;

    padding:26px 28px;

    margin-bottom:20px;

    box-sizing:border-box;

    background:#1f1f1f;

    border:1px solid #4b4b4b;

    color:#fff !important;

    text-decoration:none !important;

    font-size:32px;

    font-weight:700;

    transition:.25s;
}

.admin-tab--crm:hover{

    background:#d11237;

    border-color:#d11237;

}

.admin-tab--crm .drag-handle{

    cursor:default;

    font-size:30px;

    color:#fff;

}

/* Hero slider */

.hero-slider {
  position: relative;
  min-width: 0;
}

.hero-slider__viewport {
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-slider__slide {
  min-width: 100%;
  flex: 0 0 100%;
}

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

.hero-slider__dots {
  display: none;
}

.hero__button-arrow {
  display: inline-block;
  margin-left: 12px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 767px) {

  .hero {
    padding: 34px 0 28px;
    overflow: hidden;
  }

  .hero .container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__content {
    width: 100%;
    padding: 0 35px;
  }

  .hero .section-label {
    display: none;
  }

  .hero__title {
    margin: 0;
    font-size: clamp(40px, 9.6vw, 58px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

  .hero__title-line {
    display: block;
  }

  .hero__title-accent {
    display: inline;
    color: #c92f3e;
    font-family: var(--font-accent, cursive);
    font-size: 1.12em;
    font-weight: 400;
    line-height: 0.9;
  }

  .hero__subtitle {
    margin: 42px 0 8px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
  }

  .hero__product {
    margin: 0;
    color: #c92f3e;
    font-family: var(--font-accent, cursive);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.05;
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 48px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 86px;
    padding: 18px 24px;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
  }

  .hero__actions .btn--outline {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262626;
    border: 2px solid #262626;
    background: transparent;
  }

  .hero-slider {
    width: 100%;
    margin-top: 36px;
    padding: 0 48px;
  }

  .hero-slider__viewport {
    position: relative;
    z-index: 1;
    border-radius: 36px;
  }

  .hero-slider__slide {
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    border-radius: 36px;
    background: #111;
  }

  .hero-slider__slide img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
  }

  .hero-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 23px;
  }

  .hero-slider__dot {
    width: 16px;
    height: 16px;
    padding: 0;
    border: 2px solid #c92f3e;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .hero-slider__dot.is-active {
    background: #c92f3e;
  }

}

@media (max-width: 430px) {

  .hero__content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero__title {
    font-size: 39px;
  }

  .hero__subtitle {
    font-size: 23px;
  }

  .hero__product {
    font-size: 39px;
  }

  .hero__actions {
    margin-top: 36px;
  }

  .hero__actions .btn {
    min-height: 70px;
    font-size: 17px;
  }

  .hero-slider {
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero-slider__viewport,
  .hero-slider__slide {
    border-radius: 28px;
  }

}

@media (min-width: 768px) {

  .hero {
    padding: 64px 0 70px;
    background: #f8f5f0;
    overflow: hidden;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
    align-items: center;
    gap: clamp(48px, 6vw, 100px);
  }

  .hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
  }

  .hero .section-label {
    margin-bottom: 40px;
  }

  .hero__title {
    margin: 0;
    font-size: clamp(48px, 4.1vw, 76px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero__title-line {
    display: block;
  }

  .hero__title-accent {
    display: inline;
    color: #c82c3b;
    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    line-height: 0.9;
  }

  .hero__subtitle {
    margin: 46px 0 5px;
    font-size: clamp(20px, 1.55vw, 28px);
    font-weight: 600;
    line-height: 1.25;
  }

  .hero__product {
    margin: 0;
    color: #c82c3b;
    font-family: var(--font-accent, cursive);
    font-size: clamp(28px, 2.2vw, 42px);
    font-weight: 400;
    line-height: 1.1;
  }

  .hero__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 52px;
  }

  .hero__actions .btn {
    min-width: 270px;
    min-height: 68px;
    padding: 18px 30px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
  }

  .hero__actions .btn--primary {
    color: #fff;
    background: #c82c3b;
    border: 1px solid #c82c3b;
  }

  .hero__actions .btn--outline {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292929;
    background: transparent;
    border: 1px solid #292929;
  }

  .hero__button-arrow {
    margin-left: 14px;
    font-size: 27px;
    line-height: 1;
    transform: rotate(90deg);
  }

  .hero-slider {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    padding: 18px;
    border: 1px solid #e55353;
    background: transparent;
  }

  .hero-slider::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 3px solid #222;
    pointer-events: none;
    z-index: 3;
  }

  .hero-slider__viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    aspect-ratio: 1.12 / 1;
    background: #111;
  }

  .hero-slider__track {
    display: block;
    width: 100%;
    height: 100%;
    transform: none !important;
  }

  .hero-slider__slide {
    display: none;
    width: 100%;
    height: 100%;
    min-width: 0;
  }

  .hero-slider__slide:first-child {
    display: block;
  }

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

  .hero-slider__dots {
    display: none;
  }

  .hero-slider__rec {
    position: absolute;
    right: 45px;
    bottom: 36px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 18px;
    border: 2px solid #292929;
    background: #f8f5f0;

    color: #292929;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
  }

  .hero-slider__rec span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #c82c3b;
  }

  .hero-slider__decor {
    position: absolute;
    z-index: 4;
    width: 78px;
    height: 62px;
    pointer-events: none;
  }

  .hero-slider__decor--top {
    top: 12px;
    left: 12px;
    border-top: 14px solid #c82c3b;
    border-left: 14px solid #c82c3b;
  }

  .hero-slider__decor--bottom {
    right: 12px;
    bottom: 12px;
    border-right: 14px solid #c82c3b;
    border-bottom: 14px solid #c82c3b;
  }

}

@media (min-width: 768px) and (max-width: 1200px) {

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
    gap: 42px;
  }

  .hero__title {
    font-size: clamp(44px, 4.2vw, 58px);
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    min-width: 220px;
  }

}

@media (max-width: 767px) {

  .hero-slider__rec,
  .hero-slider__decor {
    display: none;
  }

  .hero-slider {
    border: 0;
    background: transparent;
  }

  .hero-slider::before {
    display: none;
  }

}

.philosophy__mobile-reasons {
  display: none;
}

@media (max-width: 767px) {

  .philosophy {
    padding: 44px 0 48px;
    background: #f7f3ed;
  }

  .philosophy__desktop {
    display: none;
  }

  .philosophy__mobile-reasons {
    display: block;
  }

  .philosophy__mobile-reasons .reasons__label {
    margin-bottom: 28px;
  }

  .philosophy__mobile-reasons .reasons__title {
    margin: 0 0 18px;
  }

  .philosophy__mobile-reasons .reasons__intro {
    margin: 0;
  }

  .reasons {
    padding-top: 0;
  }

  .reasons__header {
    display: none;
  }

}

@media (max-width: 767px) {

  .philosophy {
    position: relative;
    padding-bottom: 72px;
  }

  .philosophy::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
    height: 54px;

    background: url("/images/paper-bg.png") center bottom / cover no-repeat;

    pointer-events: none;
    z-index: 2;
  }

  .reasons {
    position: relative;
    z-index: 1;
    padding-top: 110px;
    background: #fff;
  }
  .reason-card {
    grid-template-rows: 100px minmax(55px, auto) auto;
  }
}

@media (max-width: 767px) {

  /* Основная секция карточек */

  .reasons {
    padding: 150px 0 44px;
    background: #fff;
  }

  .reasons .container {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .reasons__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    counter-reset: reason-card;
  }

  /* Карточка */

  .reason-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 8px;
    align-items: center;

    width: 100%;
    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
    box-shadow: none;

    counter-increment: reason-card;
  }

  /* Изображение слева */

  .reason-card__image {
    grid-column: 1;
    grid-row: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 120px;
    height: 100px;
    margin: 0;
  }

  .reason-card__image img {
    display: block;
    width: 100%;
    max-width: 88px;
    height: 100%;
    max-height: 100px;
    object-fit: contain;
  }

  /* Заголовок справа */

  .reason-card__title {
    grid-column: 2;
    grid-row: 1;

    position: relative;

    margin: 0;
    padding-top: 34px;

    color: #d40f2f;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.18;
    text-transform: uppercase;
  }

  /* Автоматический номер */

  .reason-card__title::before {
    content: counter(reason-card) ".";

    position: absolute;
    top: 0;
    left: 0;

    color: #d40f2f;
    font-family: var(--font-accent, cursive);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
  }

  /* Красная рукописная часть */

  .reason-card__title span {
    display: inline;

    margin: 0 4px;

    color: #d40f2f;
    font-family: var(--font-accent, cursive);
    font-size: 22px;
    font-weight: 400;
    line-height: 0.95;
    text-transform: none;
  }

  /* Описание под всей верхней строкой */

  .reason-card > p {
    grid-column: 1 / -1;
    grid-row: 2;

    margin: 0;

    color: #272727;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.27;
  }

  /* Нижняя часть */

  .reasons__bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    margin-top: 26px;
    padding-top: 24px;

    border-top: 1px solid #d7d7d7;
  }

  .reasons__quote {
    margin: 0;

    color: #2a2a2a;
    font-family: var(--font-heading, serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
    text-transform: uppercase;
  }

  .reasons__quote span {
    display: block;
    margin-top: 5px;

    color: #d40f2f;
    font-family: var(--font-accent, cursive);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
    text-transform: none;
  }

  /* Кнопка как на макете */

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

    width: calc(100% - 84px);
    max-width: 290px;
    min-height: 54px;

    margin: 32px auto 0;
    padding: 14px 24px;

    border: 0;
    border-radius: 999px;

    background:
      linear-gradient(
        90deg,
        #cf1734 0%,
        #ef3550 52%,
        #cf1734 100%
      );

    color: #fff;
    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      0 4px 12px rgba(198, 16, 46, 0.16);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .reasons__btn:hover,
  .reasons__btn:focus {
    color: #fff;
    background:
      linear-gradient(
        90deg,
        #bd102c 0%,
        #e72d48 52%,
        #bd102c 100%
      );
  }

}

@media (max-width: 390px) {

  .reasons .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .reasons__grid {
    gap: 28px;
  }

  .reason-card {
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 12px;
  }

  .reason-card__image {
    width: 86px;
    height: 96px;
  }

  .reason-card__image img {
    max-width: 86px;
    max-height: 96px;
  }

  .reason-card__title {
    font-size: 16px;
  }

  .reason-card__title span {
    font-size: 21px;
  }

  .reason-card > p {
    font-size: 14px;
  }

  .reasons__btn {
    width: calc(100% - 86px);
  }

  .reason-card {
    grid-template-rows: 100px minmax(55px, auto) auto;
  }

}

.steps__header {
  position: relative;
}

.steps__toggle,
.steps__video {
  display: none;
}

@media (max-width: 767px) {

  .steps {
    padding: 42px 0 0;
    background: #f4efe7;
  }

  .steps .container {
    width: 100%;
    padding: 0;
  }

  .steps__header,
  .steps__title,
  .steps__subtitle {
    margin-right: 22px;
    margin-left: 22px;
  }

  .steps__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .steps__header .section-label {
    margin: 0;
  }

  .steps__toggle {
    position: relative;

    display: block;
    flex: 0 0 auto;

    width: 42px;
    height: 42px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #fff;
    cursor: pointer;
  }

  .steps__toggle span {
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 20px;
    height: 2px;

    background: #292929;

    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }

  .steps__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .steps__toggle.is-active span:last-child {
    transform: translate(-50%, -50%) rotate(0);
  }

  .steps__title {
    margin-top: 24px;
    margin-bottom: 20px;

    font-size: 34px;
    font-weight: 400;
    line-height: 1.05;
  }

  .steps__title span {
    color: #d61534;
    font-family: var(--font-accent, cursive);
    font-size: 1.15em;
    font-weight: 400;
  }

  .steps__subtitle {
    margin-top: 0;
    margin-bottom: 36px;

    font-size: 15px;
    line-height: 1.35;
  }

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

    width: 100%;
    min-height: 220px;

    background: #fff;
  }

  .steps__video-play {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #ee1d2f;
    cursor: pointer;
  }

  .steps__video-play span {
    display: block;

    width: 0;
    height: 0;
    margin-left: 4px;

    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
  }

  .steps__grid {
    display: none;

    padding: 32px 22px 40px;
    background: #fff;
  }

  .steps__grid.is-open {
    display: grid;
  }

}

.gift__delivery-note {
  display: none;
}

@media (max-width: 767px) {

  .gift {
    padding: 42px 0 44px;
    background: #f8f4ee;
  }

  .gift .container {
    width: 100%;
    padding-right: 21px;
    padding-left: 21px;
  }

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

  /*
   * На мобильном заголовок должен быть
   * до изображения.
   */
  .gift__content {
    display: contents;
  }

  .gift .section-label {
    order: 1;
    margin: 0 0 20px;
  }

  .gift__title {
    order: 2;

    margin: 0;

    color: #252525;

    font-family: var(--font-heading, serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .gift__title span {
    color: #d61b38;

    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    text-transform: none;
  }

  .gift__text {
    order: 3;

    margin: 20px 0 30px;

    color: #2d2d2d;
    font-size: 14px;
    line-height: 1.28;
  }

  .gift__image {
    order: 4;

    width: 100%;
    margin: 0 0 26px;
  }

  .gift__image img {
    display: block;

    width: 100%;
    height: auto;
    aspect-ratio: 1.48 / 1;

    object-fit: cover;
  }

  .gift__list {
    order: 5;

    display: grid;
    gap: 7px;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style: none;
  }

  .gift__list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 11px;

    min-height: 34px;
  }

  .gift__list li > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid #df2942;
    background: transparent;

    color: #df2942;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }

  .gift__list strong {
    color: #2b2b2b;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  .gift__order {
    order: 6;

    display: block;

    width: 100%;
    margin-top: 28px;
    padding-top: 28px;

    border-top: 1px solid #d4d0ca;
  }

  .gift__price {
    display: none;
  }

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

    width: calc(100% - 64px);
    max-width: 255px;
    min-height: 54px;

    margin: 0 auto;
    padding: 14px 22px;

    border: 0;
    border-radius: 999px;

    background:
      linear-gradient(
        90deg,
        #cf1534 0%,
        #ee2947 50%,
        #cf1534 100%
      );

    color: #fff;

    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      0 4px 12px rgba(190, 20, 50, 0.15);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
  }

  .gift__note {
    position: relative;
    order: 7;

    margin: 28px 0 0;
    padding-left: 18px;

    color: #333;
    font-size: 14px;
    line-height: 1.3;
  }

  .gift__note::before {
    content: "";

    position: absolute;
    top: 7px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #d71939;
  }

  .gift__delivery-note {
    display: block;
    order: 8;

    margin: 22px 0 0;

    color: #333;
    font-size: 14px;
    line-height: 1.3;
  }

}

@media (max-width: 767px) {
  .gift__image picture {
    display: block;
    width: 100%;
  }

  .gift__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.48 / 1;
    object-fit: cover;
  }
}

@media (max-width: 767px) {

  .questionnaires {
    padding: 42px 0 32px;
    background: #f6f1e9;
  }

  .questionnaires .container {
    width: 100%;
    padding-right: 19px;
    padding-left: 19px;
  }

  .questionnaires .section-label {
    max-width: 240px;
    margin: 0 0 18px;
  }

  .questionnaires__title {
    margin: 0;

    color: #262626;

    font-family: var(--font-heading, serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
  }

  .questionnaires__title span {
    color: #d71939;

    font-family: var(--font-accent, cursive);
    font-size: 1.12em;
    font-weight: 400;
    text-transform: none;
  }

  .questionnaires__subtitle {
    margin: 18px 0 28px;

    color: #333;
    font-size: 14px;
    line-height: 1.3;
  }

  .questionnaires__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .questionnaire-card {
    display: block;

    width: 100%;
    padding: 11px;

    border: 0;
    background: #eee8de;
    box-shadow: none;
  }

  /* Галерея */

  .questionnaire-card__media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;

    width: 100%;
    margin: 0 0 18px;
  }

  .questionnaire-gallery__main {
    width: 100%;
    min-width: 0;
    height: 270px;

    overflow: hidden;
    background: #e6e6e6;
  }

  .questionnaire-gallery__main img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
  }

  .questionnaire-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 48px;
  }

  .questionnaire-gallery__thumb {
    width: 48px;
    height: 58px;

    overflow: hidden;

    border: 0;
    background: #fff;
    cursor: pointer;
  }

  .questionnaire-gallery__thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .questionnaire-gallery__thumb.is-active {
    outline: 1px solid #d71939;
    outline-offset: 1px;
  }

  /* Текстовая часть */

  .questionnaire-card__content {
    padding: 0;
  }

  .questionnaire-card__label {
    margin: 0 0 12px;

    color: #d71939;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }

  .questionnaire-card__label span {
    display: none;
  }

  .questionnaire-card__content h3 {
    margin: 0 0 16px;
    padding-bottom: 14px;

    border-bottom: 1px solid #cbc5bc;

    color: #282828;

    font-family: var(--font-heading, serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
  }

  .questionnaire-card__content h3 span {
    display: inline-block;
    margin-top: 3px;

    color: #d71939;

    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
  }

  .questionnaire-card__author {
    display: none;
  }

  .questionnaire-card__text {
    position: relative;

    max-height: 44px;
    margin: 14px 0 12px;

    overflow: hidden;

    color: #333;
    font-size: 13px;
    line-height: 1.3;
  }

  .questionnaire-card__points {
    display: grid;
    gap: 10px;

    margin: 0 0 22px;
    padding: 0;

    list-style: none;
  }

  .questionnaire-card__points li {
    position: relative;

    min-height: 17px;
    padding-left: 23px;

    color: #333;
    font-size: 12px;
    line-height: 1.25;
  }

  .questionnaire-card__points li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 13px;
    height: 13px;

    border-radius: 50%;
    background: #cf1737;

    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
  }

  /* Строка «Развернуть» */

  .questionnaire-card__text::after {
    content: "";
  }

  .questionnaire-card__content::before {
    content: "Развернуть";

    display: block;

    margin: 0 0 10px;

    color: #2c2c2c;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }

  .questionnaire-card__price {
    margin: 12px 0 18px;

    color: #292929;
    font-size: 16px;
    line-height: 1;
    text-align: center;
  }

  .questionnaire-card__price strong {
    color: #d71939;
    font-size: 19px;
  }

  .questionnaire-card__actions {
    display: grid;
    gap: 10px;
  }

  .questionnaire-card__actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 50px;
    padding: 13px 18px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .questionnaire-card__actions .btn--primary {
    border: 0;

    background:
      linear-gradient(
        90deg,
        #cf1534 0%,
        #ee2947 50%,
        #cf1534 100%
      );

    color: #fff;

    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.18),
      0 4px 10px rgba(190, 20, 50, 0.12);
  }

  .questionnaire-card__actions .btn--outline {
    border: 1px solid #d71939;
    background: transparent;
    color: #292929;
  }

  .questionnaire-card__actions .btn--outline::before {
    content: "▤";
    margin-right: 10px;

    color: #d71939;
    font-size: 18px;
    line-height: 1;
  }

  /* Нижняя часть */

  .questionnaires__bottom {
    display: block;

    margin-top: 18px;
    padding-top: 0;

    border: 0;
  }

  .questionnaires__bottom p {
    display: none;
  }

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

    width: calc(100% - 72px);
    max-width: 230px;
    min-height: 48px;

    margin: 0 auto;
    padding: 12px 18px;

    border: 1px solid #292929;
    border-radius: 999px;

    background: transparent;
    color: #292929;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

}

@media (max-width: 767px) {
  .questionnaire-card__actions {
    display: grid;
    gap: 10px;
    justify-items: center;
    align-items: center;
  }

  .questionnaire-card__actions .btn {
    width: 86%;
    max-width: 290px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {

  .books {
    padding: 40px 0 38px;
    background: #fff;
  }

  .books .container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .books .section-label {
    margin-bottom: 18px;
  }

  .books__title {
    margin: 0;

    color: #292929;
    font-family: var(--font-heading, serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
  }

  .books__title span {
    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    text-transform: none;
  }

  .books__subtitle {
    margin: 18px 0 24px;

    color: #333;
    font-size: 14px;
    line-height: 1.32;
  }

  .books-slider {
    width: 100%;
    overflow: hidden;
  }

  .books__grid.books-slider__track {
    display: flex;
    gap: 0;

    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .books__grid.books-slider__track::-webkit-scrollbar {
    display: none;
  }

  .books-slider__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .book-card {
    position: relative;

    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "text text";

    column-gap: 14px;
    row-gap: 14px;

    min-height: 158px;
    margin: 0;
    padding: 28px 18px 20px;

    border: 1px solid #d3ccc1;
    border-radius: 12px;

    background: #eee8df;

    box-shadow:
      0 4px 8px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .book-card__num {
    position: absolute;
    top: 12px;
    right: 16px;

    color: #c8bfb4;
    font-family: var(--font-heading, serif);
    font-size: 16px;
    font-weight: 400;
  }

  .book-card__icon {
    grid-area: icon;

    align-self: center;

    width: 54px;
    height: 68px;

    object-fit: contain;
  }

  .book-card h3 {
    grid-area: title;

    align-self: center;

    margin: 0;

    color: #2a2a2a;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .book-card h3 span {
    display: block;

    margin-top: 2px;

    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 25px;
    font-weight: 400;
    line-height: 0.95;
    text-transform: none;
  }

  .book-card p {
    grid-area: text;

    margin: 0;

    color: #353535;
    font-size: 13px;
    line-height: 1.28;
  }

  .books-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 14px;
  }

  .books-slider__dot {
    width: 9px;
    height: 9px;
    padding: 0;

    border: 1px solid #d71939;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;
  }

  .books-slider__dot.is-active {
    background: #d71939;
  }

  .books__bottom {
    display: block;

    margin-top: 42px;
    padding-top: 20px;

    border-top: 1px solid #d7d2cb;
  }

  .books__note {
    margin: 0;

    color: #2f2f2f;
    font-size: 13px;
    line-height: 1.32;
  }

  .books__note span {
    display: block;

    margin-bottom: 10px;

    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
  }

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

    width: calc(100% - 72px);
    max-width: 240px;
    min-height: 48px;

    margin: 18px auto 0;
    padding: 12px 18px;

    border: 1px solid #292929;
    border-radius: 999px;

    background: transparent;
    color: #292929;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

}

@media (max-width: 767px) {

  .pricing {
    padding: 42px 0 38px;
    background: #F7F4EE;
  }

  .pricing .container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .pricing .section-label {
    display: none;
  }

  .pricing__title {
    margin: 0;

    color: #292929;
    font-family: var(--font-heading, serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
  }

  .pricing__title span {
    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    text-transform: none;
  }

  .pricing__subtitle {
    margin: 14px 0 28px;

    color: #333;
    font-size: 14px;
    line-height: 1.32;
  }

  .pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-card {
    position: relative;

    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "price price"
      "text text"
      "button button";

    column-gap: 10px;
    row-gap: 12px;

    min-height: 248px;
    padding: 32px 38px;

    border: 1px solid #d8d2ca;
    border-radius: 0;

    background: #EFEAE1;
    box-shadow: none;
  }

  .price-card__icon {
    margin-bottom: unset;
  }
  .price-card__num {
    position: absolute;
    top: 14px;
    right: 16px;

    color: #aaa49d;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
  }

  .price-card__icon {
    grid-area: icon;

    align-self: center;

    width: 32px;
    height: 34px;

    object-fit: contain;
  }

  .price-card h3 {
    grid-area: title;

    align-self: center;

    margin: 0;

    color: #292929;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
  }

  .price-card__price {
    grid-area: price;

    margin: 0;

    color: #d71939;
    font-family: var(--font-heading, serif);
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
  }

  .price-card__text {
    grid-area: text;

    margin: 0;

    color: #333;
    font-size: 14px;
    line-height: 1.32;
  }

  .price-card__btn {
    grid-area: button;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 48px;

    margin-top: 10px;
    padding: 12px 18px;

    border: 1px solid #292929;
    border-radius: 999px;

    background: transparent;
    color: #292929;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .price-card__btn::after {
    content: "→";
    margin-left: 12px;

    font-size: 19px;
    font-weight: 400;
    line-height: 1;
  }

  /* Рекомендуемый тариф */

  .price-card--featured {
    border-color: #1d1d1d;
    background: #1d1d1d;
    color: #fff;
  }

  .price-card--featured .price-card__num {
    color: #8c8c8c;
  }

  .price-card--featured h3,
  .price-card--featured .price-card__text {
    color: #fff;
  }

  .price-card--featured .price-card__price {
    color: #e7193c;
  }

  .price-card--featured .price-card__btn {
    border-color: #fff;
    color: #fff;
  }

  .price-card--featured .price-card__icon {
    filter: brightness(0) invert(1);
  }

  .price-card__badge {
    position: absolute;
    top: 9px;
    right: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 102px;
    min-height: 28px;
    padding: 7px 12px;

    border-radius: 999px;

    background: #dc1537;
    color: #fff;

    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  /* Нижние преимущества */

  .pricing__features {
    display: grid;
    gap: 22px;

    margin-top: 28px;
    padding-top: 0;
  }

  .pricing-feature {
    position: relative;

    margin: 0;
    padding-left: 36px;

    color: #292929;
    font-size: 13px;
    line-height: 1.3;
  }

  .pricing-feature strong {
    font-weight: 700;
  }

  .pricing-feature span {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
  }

  .pricing-feature--check::before {
    content: "✓";

    position: absolute;
    top: 1px;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border: 1px solid #d71939;
    border-radius: 50%;

    color: #d71939;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .pricing-feature--box::before {
    content: "";

    position: absolute;
    top: 1px;
    left: 0;

    width: 22px;
    height: 26px;

    border: 1px solid #292929;
    background:
      linear-gradient(#d71939, #d71939)
      8px 7px / 5px 5px
      no-repeat;
  }

  .pricing__bottom {
    margin-top: 34px;
  }

  .pricing__main-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(100% - 72px);
    max-width: 260px;
    min-height: 52px;

    margin: 0 auto;
    padding: 14px 22px;

    border: 0;
    border-radius: 999px;

    background:
      linear-gradient(
        90deg,
        #cf1534 0%,
        #ee2947 50%,
        #cf1534 100%
      );

    color: #fff;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.18),
      0 4px 10px rgba(190, 20, 50, 0.14);
  }

}

.session-mobile-slider {
  display: none;
}

@media (max-width: 767px) {

  .session-blocks {
    padding: 0;
    background: #f7f2eb;
  }

  .session-blocks .container {
    width: 100%;
    padding: 0;
  }

  .session-blocks__desktop {
    display: none;
  }

  .session-mobile-slider {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .session-mobile-slider__viewport {
    width: 100%;
    overflow: hidden;
  }

  .session-mobile-slider__track {
    display: flex;
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .session-mobile-slider__track::-webkit-scrollbar {
    display: none;
  }

  .session-mobile-slide {
    flex: 0 0 100%;
    min-width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .session-mobile-slide--intro {
    min-height: 248px;
    padding: 38px 20px 26px;
  }

  .session-mobile-slide--intro .section-label {
    margin: 0 0 18px;
  }

  .session-mobile-slide--intro .session-blocks__title {
    margin: 0;

    color: #292929;

    font-family: var(--font-heading, serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
  }

  .session-mobile-slide--intro .session-blocks__title span {
    display: block;

    color: #d71939;

    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
  }

  .session-mobile-slide--intro .session-blocks__subtitle {
    margin: 16px 0 0;

    color: #333;
    font-size: 14px;
    line-height: 1.32;
  }

  @media (max-width: 767px) {

    .session-mobile-slide--card {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      grid-template-areas:
        "icon title"
        "text text";

      column-gap: 14px;
      row-gap: 16px;
      align-content: center;

      min-height: 145px;
      margin: 0 18px;
      padding: 18px 16px 20px;

      border: 1px solid #d6d6d6;
      background: #fff;
    }

    .session-mobile-slide--card .session-card__icon {
      grid-area: icon;

      display: flex;
      align-items: center;
      justify-content: center;

      width: 54px;
      height: 54px;
      margin: 0;
    }

    .session-mobile-slide--card .session-card__icon img {
      display: block;
      width: 54px;
      height: 54px;
      object-fit: contain;
    }

    .session-mobile-slide--card h3 {
      grid-area: title;
      align-self: center;

      margin: 0;

      color: #2b2b2b;
      font-family: Arial, sans-serif;
      font-size: 17px;
      font-weight: 400;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .session-mobile-slide--card p {
      grid-area: text;

      margin: 0;

      color: #333;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.28;
    }

  }

  .session-mobile-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 20px 24px;
  }

  .session-mobile-slider__dot {
    width: 9px;
    height: 9px;
    padding: 0;

    border: 1px solid #d71939;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;
  }

  .session-mobile-slider__dot.is-active {
    background: #d71939;
  }

}

@media (max-width: 767px) {
  .session-mobile-slide {
    box-sizing: border-box;
  }

  .session-mobile-slide--card {
    width: calc(100% - 36px);
    flex-basis: calc(100% - 36px);
  }
}

@media (max-width: 767px) {

  .session-mobile-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "text text";

    column-gap: 14px;
    row-gap: 16px;
    align-content: center;

    width: 100%;
    min-height: 145px;
    padding: 18px 16px 20px;

    border: 1px solid #d6d6d6;
    background: #fff;
  }

  .session-mobile-card .session-card__icon {
    grid-area: icon;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin: 0;
  }

  .session-mobile-card .session-card__icon img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
  }

  .session-mobile-card h3 {
    grid-area: title;
    align-self: center;

    margin: 0;

    color: #2b2b2b;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .session-mobile-card p {
    grid-area: text;

    margin: 0;

    color: #333;
    font-size: 13px;
    line-height: 1.28;
  }

}

@media (max-width: 767px) {

  /* Общие свойства всех слайдов */

  .session-mobile-slide {
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Первый информационный слайд */

  .session-mobile-slide--intro {
    display: block;

    min-height: 248px;
    padding: 38px 20px 24px;

    background: #f7f2eb;
  }

  .session-mobile-slide--intro .section-label {
    display: flex;
    align-items: center;

    width: 100%;
    margin: 0 0 18px;
  }

  .session-mobile-slide--intro .section-label span {
    flex: 0 0 40px;
  }

  .session-mobile-slide--intro .session-blocks__title {
    display: block;

    width: 100%;
    margin: 0;

    color: #292929;
    font-family: var(--font-heading, serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
  }

  .session-mobile-slide--intro .session-blocks__title span {
    display: block;

    margin-top: 2px;

    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
  }

  .session-mobile-slide--intro .session-blocks__subtitle {
    display: block;

    width: 100%;
    max-width: none;

    margin: 16px 0 0;

    color: #333;
    font-size: 14px;
    line-height: 1.32;
  }

  /* Слайды с карточками */

  .session-mobile-slide:not(.session-mobile-slide--intro) {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 190px;
    padding: 18px;
  }

  .session-mobile-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "text text";

    column-gap: 14px;
    row-gap: 16px;
    align-content: center;

    width: 100%;
    min-height: 145px;
    padding: 18px 16px 20px;

    border: 1px solid #d6d6d6;
    background: #fff;
  }

  .session-mobile-card .session-card__icon {
    grid-area: icon;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin: 0;
  }

  .session-mobile-card .session-card__icon img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
  }

  .session-mobile-card h3 {
    grid-area: title;
    align-self: center;

    margin: 0;

    color: #2b2b2b;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .session-mobile-card p {
    grid-area: text;

    margin: 0;

    color: #333;
    font-size: 13px;
    line-height: 1.28;
  }

}

.games__toggle {
  display: none;
}

@media (max-width: 767px) {

  .games {
    padding: 38px 0;
    background: #EFEAE1;
  }

  .games .container {
    width: 100%;
    padding: 0;
  }

  .games__header,
  .games__title,
  .games__subtitle {
    margin-right: 20px;
    margin-left: 20px;
  }

  .games__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .games__header .section-label {
    margin: 0;
  }

  .games__toggle {
    position: relative;

    display: block;
    flex: 0 0 auto;

    width: 42px;
    height: 42px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #fff;
    cursor: pointer;
  }

  .games__toggle span {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 20px;
    height: 2px;

    background: #292929;

    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }

  .games__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .games__toggle.is-active span:last-child {
    transform: translate(-50%, -50%) rotate(0);
  }

  .games__title {
    margin-top: 18px;
    margin-bottom: 16px;

    color: #292929;
    font-family: var(--font-heading, serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.03;
    text-transform: uppercase;
  }

  .games__title span {
    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 1.08em;
    font-weight: 400;
    text-transform: none;
  }

  .games__subtitle {
    margin-top: 0;
    margin-bottom: 34px;

    color: #333;
    font-size: 14px;
    line-height: 1.32;
  }

  .games__collapsible {
    display: none;

    padding: 0 20px 38px;
    background: #f6f1e9;
  }

  .games__collapsible.is-open {
    display: block;
  }

  .games__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .games__bottom {
    margin-top: 24px;
  }

}

@media (max-width: 767px) {

  .games__bottom {
    display: block;

    margin: 0;
    padding: 28px 20px 40px;

    border-top: 1px solid #d4d0ca;
    background: #fff;
  }

  .games__bottom p {
    margin: 0;

    color: #333;
    font-size: 14px;
    line-height: 1.3;
  }

  .games__bottom p span {
    display: block;

    margin-bottom: 8px;

    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
  }

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

    width: calc(100% - 72px);
    max-width: 250px;
    min-height: 50px;

    margin: 24px auto 0;
    padding: 12px 18px;

    border: 1px solid #292929;
    border-radius: 999px;

    background: transparent;
    color: #292929;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .games__btn::after {
    content: "→";
    margin-left: 12px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1;
  }

}

@media (max-width: 767px) {

  .cta {
    padding: 38px 0 40px;
    background: #fff;
  }

  .cta .container {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .cta__inner {
    display: block;
  }

  .cta__image {
    display: none;
  }

  .cta__content {
    width: 100%;
  }

  .cta .section-label {
    margin: 0 0 22px;
  }

  .cta__title {
    margin: 0;

    color: #292929;
    font-family: var(--font-heading, serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.04;
    text-transform: uppercase;
  }

  .cta__title span {
    display: block;
    margin-top: 2px;

    color: #d71939;
    font-family: var(--font-accent, cursive);
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
  }

  .cta__text {
    display: none;
  }

}

@media (max-width: 767px) {

  .cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
  }

  .cta__actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    max-width: 100%;
    height: 52px;
    min-height: 52px;

    padding: 0 20px;
    margin: 0;

    aspect-ratio: auto;
    flex: none;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .cta__actions .btn--primary {
    background: #d31635;
    color: #fff;
    border: none;
  }

  .cta__actions .btn--outline,
  .cta__actions .btn--dark {
    background: #fff;
    color: #292929;
    border: 1px solid #292929;
  }

}

.footer {
  padding: 72px 0 48px;
  background: #222;
  color: #aaa;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  display: block;
  width: min(100%, 460px);
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__tagline {
  margin: 34px 0 0;

  color: #f3f3f3;
  font-family: var(--font-accent, cursive);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
}

.footer__tagline span {
  margin: 0 14px;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.footer__world {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin-top: 38px;
  padding: 16px 28px;

  border: 1px solid #777;
  color: #fff;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer__world img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin-top: 28px;
}

.footer__contacts a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border-radius: 50%;
  background: #d70f32;
}

.footer__contacts img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.footer__requisites {
  margin: 28px 0 0;

  color: #aaa;
  font-size: 17px;
  line-height: 1.35;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  margin-top: 30px;
}

.footer__legal a {
  color: #aaa;
  font-size: 17px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__legal a:hover {
  color: #fff;
}

.footer__copy {
  margin: 38px 0 0;

  color: #aaa;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 767px) {

  .footer {
    padding: 50px 0 38px;
    background: #222;
  }

  .footer .container {
    width: 100%;
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer__logo {
    width: min(100%, 300px);
  }

  .footer__tagline {
    max-width: 310px;
    margin-top: 26px;

    font-size: 20px;
    line-height: 1.45;
  }

  .footer__tagline span {
    margin: 0 8px;
    font-size: 9px;
  }

  .footer__world {
    width: min(100%, 285px);

    margin-top: 28px;
    padding: 12px 16px;

    gap: 12px;

    font-size: 15px;
  }

  .footer__world img {
    width: 32px;
    height: 32px;
  }

  .footer__contacts {
    gap: 12px;
    margin-top: 24px;
  }

  .footer__contacts a {
    width: 43px;
    height: 43px;
  }

  .footer__contacts img {
    width: 24px;
    height: 24px;
  }

  .footer__requisites {
    max-width: 320px;
    margin-top: 25px;

    font-size: 14px;
    line-height: 1.4;
  }

  .footer__legal {
    gap: 13px;
    margin-top: 26px;
  }

  .footer__legal a {
    font-size: 14px;
  }

  .footer__copy {
    margin-top: 34px;

    font-size: 13px;
    line-height: 1.35;
  }

}

.footer__contacts a {
  background: transparent;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  justify-content: center;
  align-items: center;
  gap: 14px;

  margin-top: 24px;
}

.footer__contacts a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer__contacts img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .footer__contacts {
    grid-template-columns: repeat(4, 42px);
    gap: 12px;
  }

  .footer__contacts a {
    width: 42px;
    height: 42px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .footer__contacts img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .footer__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: auto;
    max-width: none;

    margin: 24px auto 0;
    padding: 0;

    transform: none;
  }

  .footer__contacts a,
  .footer__contacts a:hover,
  .footer__contacts a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;

    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;

    border: 0 !important;
    border-radius: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .footer__contacts img {
    display: block;
    width: 34px;
    height: 34px;
    margin: 0;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .footer .container {
    width: 100%;
    margin: 0 auto;
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }
}