@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(3, 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::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 15% 20%, rgba(200,16,46,.10), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(200,16,46,.06), transparent 35%);

  pointer-events: none;
}

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

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

/* =========================
   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: 70px;
  }

  .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;

  min-width: 150px;
  min-height: 58px;
  padding: 0 24px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  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);
}

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

  .footer__logo img {
    width: 300px;
  }

  .footer__tagline {
    font-size: 18px;
  }

  .footer__contacts {
    width: 100%;
  }

  .footer__contacts a,
  .footer__world {
    width: 100%;
  }
}
.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 - 20px);

    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;
}