:root {
  --graphite: #1B1A18;
  --moss:     #2E3B30;
  --copper:   #B07A47;
  --bg-soft:  #F6F3EE;
  --surface:  #E4DDCE;
  --header-h: 136px;

  /* Утверждённая типографика CEMCOSMETICS:
     заголовки — Cormorant Garamond, основной текст/UI — Manrope. */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-base: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--graphite);
  padding-top: var(--header-h);   /* учитываем fixed-шапку */
  overflow-x: hidden;             /* guard от горизонтального скролла (карусель/шапка) */
}

/* Шапка и футер — в общем файле nav.css */

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;

  background-image: url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* ---------- Текстовый слой (слева) ---------- */
.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;          /* вертикальный центр hero */
  padding: 0 clamp(24px, 6vw, 110px);
}

.hero__text {
  max-width: 560px;
}

/* Заголовки — Cormorant Garamond */
h1, h2, h3 { font-family: var(--font-head); color: var(--graphite); }

.hero__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 600;                 /* SemiBold */
  letter-spacing: 0.005em;
  color: var(--graphite);
}

.hero__subtitle {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--moss);
}

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

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--copper);
  color: #fff;
  border: 1px solid var(--copper);
}
.btn--primary:hover { background: #9c6a3b; }

.btn--secondary {
  background: transparent;
  color: var(--moss);
  border: 1px solid var(--copper);
  font-weight: 500;
  padding: 0 30px;
  transition: all 0.2s ease;
}
.btn--secondary:hover {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}

/* ---------- Продуктовый слой (флаконы + подписи) ---------- */
.hero__product {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;          /* флаконы не перехватывают клики у кнопок */
}

.bottle {
  position: absolute;
  bottom: 12%;                    /* базовая линия на столешнице (место под подписи) */
  width: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 20px rgba(40, 30, 20, 0.30));
}
.bottle--peeling { left: 57%; height: 58%; z-index: 1; }
.bottle--shampoo { left: 67%; height: 80%; z-index: 4; }
.bottle--mask    { left: 79%; height: 77%; z-index: 3; }
.bottle--lotion  { left: 91%; height: 62%; z-index: 2; }

/* Подписи под флаконами */
.caption {
  position: absolute;
  bottom: 6%;                       /* поднято выше (~+12px), не прижато к низу hero */
  transform: translateX(-50%);
  font-size: 15px;                  /* чуть крупнее */
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;           /* капс → 0.08em */
  text-transform: uppercase;
  text-align: center;
  color: rgba(27, 26, 24, 0.82);    /* увереннее, но второстепенно */
  white-space: nowrap;
}
.caption--peeling { left: 57%; }
.caption--shampoo { left: 67%; }
.caption--mask    { left: 79%; }
.caption--lotion  { left: 91%; }

/* ================= МАРКЕРЫ ДОВЕРИЯ ================= */
.trust {
  background: var(--bg-soft);
  padding: 28px clamp(24px, 6vw, 80px);
}
.trust__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__item {
  position: relative;
  padding: 6px 28px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--graphite);
}
.trust__item + .trust__item {
  border-left: 1px solid rgba(176, 122, 71, 0.35);   /* тонкий медный разделитель */
}
.trust__item::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--copper);
  vertical-align: middle;
}

/* ================= СЕКЦИИ ГЛАВНОЙ ================= */
.section-head { max-width: 1280px; margin: 0 auto 36px; text-align: center; }
.section-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 600;
}
.section-sub {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--moss);
}

/* Система ухода */
.system { padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 40px); }
.system__steps {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  display: flex;
  flex-direction: column;
  background: #fffdfa;
  border: 1px solid rgba(176, 122, 71, 0.25);
  border-radius: 16px;
  padding: 26px 24px 28px;
  box-shadow: 0 14px 30px rgba(40, 30, 20, 0.05);
}
.step__num {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--copper);
}
.step__media {
  height: 190px;
  display: flex;
  align-items: flex-end;          /* флаконы выровнены по нижней линии */
  justify-content: center;
  margin: 8px 0 18px;
}
.step__img { max-height: 190px; width: auto; object-fit: contain; }
.step__stage {                    /* название этапа — ГЛАВНОЕ */
  margin: 0 0 4px;
  font-family: var(--font-base);  /* карточки — Manrope, не serif */
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--graphite);
}
.step__product {                  /* название продукта — вторичное, усилено */
  margin: 0 0 12px;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--moss);             /* #2E3B30 — не медный */
}
.step__text {                     /* описание — короткое и тихое */
  margin: 0 0 18px;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(27, 26, 24, 0.72);
  flex: 1 0 auto;
}
.step__link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease;
}
.step__link::after { content: " →"; }
.step__link:hover { border-bottom-color: var(--copper); }

.system__cta { text-align: center; margin-top: 40px; }

/* Блок 3: Уход за кожей головы — как уход за лицом (тёмно-моховый) */
.scalp-care-principle {
  background: var(--moss);              /* #2E3B30 */
  padding: clamp(56px, 9vw, 120px) clamp(24px, 5vw, 80px);
}
.scp__inner { max-width: 1360px; margin: 0 auto; }
.scp__head { max-width: 980px; margin-bottom: clamp(36px, 5vw, 56px); }
.scp__title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  color: #F3EFE6;
}
.scp__sub {
  margin: 0;
  max-width: 880px;                     /* ограничить ширину подзаголовка */
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.86);
}
.scp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.scp__item {
  padding: clamp(24px, 2.4vw, 32px);
  background: rgba(243, 239, 230, 0.065);
  border: 1px solid rgba(176, 122, 71, 0.34);
  border-radius: 16px;
  transition: border-color .2s ease;
}
.scp__item::before {                    /* тонкий медный акцент */
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 16px;
  border-radius: 2px;
  background: var(--copper);
}
.scp__item:hover { border-color: var(--copper); }
.scp__item-title {
  margin: 0 0 10px;
  font-family: var(--font-base);       /* Manrope SemiBold */
  font-weight: 600;
  font-size: 21px;
  color: #F3EFE6;
}
.scp__item-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.82);
}
@media (max-width: 1000px) {
  .scp__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .scp__grid { grid-template-columns: 1fr; }
}

/* Блок 4: Когда нужна система CEMCOSMETICS (светлый) */
.cem-use-cases {
  background: var(--bg-soft);            /* #F6F3EE */
  padding: clamp(56px, 8vw, 110px) clamp(24px, 5vw, 80px) 60px;
  margin-bottom: 0;
}
.uc__inner { max-width: 1280px; margin: 0 auto; }
.uc__head { max-width: 950px; margin-bottom: clamp(32px, 5vw, 52px); }
.uc__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  color: var(--graphite);
}
.uc__sub {
  margin: 0;
  max-width: 920px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(27, 26, 24, 0.80);
}
.uc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.uc__card {
  background: #fff;
  border: 1px solid rgba(176, 122, 71, 0.20);
  border-radius: 16px;
  padding: clamp(24px, 2.4vw, 32px);
  transition: border-color .2s ease, transform .2s ease;
}
.uc__card:hover { border-color: var(--copper); transform: translateY(-2px); }
.uc__card-title {
  margin: 0 0 10px;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--graphite);
}
.uc__card-text {
  margin: 0;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(27, 26, 24, 0.74);
}
.uc__card--accent {
  background: var(--surface);            /* #E4DDCE */
  border: 1px solid rgba(176, 122, 71, 0.28);
  position: relative;
}
.uc__card--accent::before {              /* тонкая медная линия сверху */
  content: "";
  position: absolute;
  top: 0; left: clamp(24px, 2.4vw, 32px);
  width: 40px; height: 2px;
  border-radius: 2px;
  background: var(--copper);
}
.uc__cta { margin-top: 34px; margin-bottom: 0; }
@media (max-width: 1000px) {
  .uc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .uc__grid { grid-template-columns: 1fr; }
  .cem-use-cases { padding-bottom: 52px; }
}

/* Блок 5: Восстановление среды кожи головы (editorial) */
.cem-formula-system {
  background: var(--bg-soft);             /* #F6F3EE */
  margin-top: 0;
  margin-bottom: 0;
  padding: 48px clamp(24px, 5vw, 80px) 56px;
}
.fs__inner { max-width: 1080px; margin: 0 auto; }
.fs__title {
  margin: 0 0 28px;
  max-width: 1000px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.12;
  color: var(--graphite);
}
.fs__lead {
  margin: 0 0 36px;
  max-width: 920px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(27, 26, 24, 0.84);
}
.fs__groups {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 0 32px;
}
.fs__eyebrow {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
}
.fs__row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: var(--font-base);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--moss);
}
/* «Активные группы» — лёгкая порцелановая плашка */
.fs__group--plate {
  background: rgba(228, 221, 206, 0.55);
  border-top: 1px solid rgba(176, 122, 71, 0.35);
  border-radius: 14px;
  padding: 20px 22px;
}
.fs__dot { color: var(--copper); margin: 0 9px; }
.fs__note {
  margin: 0;
  max-width: 840px;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(27, 26, 24, 0.72);
}
@media (max-width: 600px) {
  .cem-formula-system { padding: 48px clamp(24px, 5vw, 80px) 52px; }
  .fs__title { font-size: 34px; }
  .fs__lead { font-size: 16px; }
  .fs__row { font-size: 15px; }
  .fs__note { font-size: 14px; }
  .fs__dot { margin: 0 6px; }
}

/* Блок 6: Экспертные заключения (доказательный) */
.cem-expert-documents {
  background: var(--bg-soft);             /* #F6F3EE */
  margin-top: 0;
  margin-bottom: 0;
  padding: 56px clamp(24px, 5vw, 80px) 56px;
}
.ed__inner { max-width: 1280px; margin: 0 auto; }
.ed__head { max-width: 950px; margin-bottom: clamp(32px, 5vw, 52px); }
.ed__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.12;
  color: var(--graphite);
}
.ed__sub {
  margin: 0; max-width: 920px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(27, 26, 24, 0.80);
}
.ed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.document-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(176, 122, 71, 0.24);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(40, 30, 20, 0.05);
  transition: border-color .2s ease, transform .2s ease;
}
.document-card:hover { border-color: var(--copper); transform: translateY(-2px); }
.document-card__media {
  display: block;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 14px;
}
.document-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.document-card__title {
  margin: 0 0 4px;
  font-family: var(--font-base);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--graphite);
}
.document-card__caption {
  margin: 0 0 12px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--moss);
}
.document-card__link {
  margin-top: auto;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
}
.document-card__link:hover { text-decoration: underline; }
@media (max-width: 1000px) {
  .ed__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ed__grid { grid-template-columns: 1fr; }
  .document-card__media { height: 240px; }
}

/* Блок 7: Отзывы (карусель) */
.cem-reviews {
  background: var(--bg-soft);
  margin-top: 0;
  margin-bottom: 0;
  padding: 56px clamp(24px, 5vw, 80px) 56px;
}
.rv__inner { max-width: 1280px; margin: 0 auto; }
.rv__head { max-width: 950px; margin-bottom: clamp(28px, 4vw, 44px); }
.rv__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.12;
  color: var(--graphite);
}
.rv__sub {
  margin: 0; max-width: 920px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(27, 26, 24, 0.80);
}
.rv__carousel { position: relative; }
.rv__viewport { overflow: hidden; }
.rv__track { display: flex; gap: 20px; transition: transform .4s ease; }
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(176, 122, 71, 0.20);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 24px rgba(40, 30, 20, 0.05);
}
.review-product {
  font-family: var(--font-base); font-size: 14px; font-weight: 600;
  color: var(--moss); margin-bottom: 8px;
}
.review-rating { color: var(--copper); letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-family: var(--font-base); font-size: 15px; line-height: 1.6;
  color: rgba(27, 26, 24, 0.86); margin: 0 0 18px;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.is-expanded .review-text { -webkit-line-clamp: unset; }
.review-more {
  align-self: flex-start; background: none; border: none; padding: 0;
  font-family: var(--font-base); font-size: 14px; font-weight: 600;
  color: var(--copper); cursor: pointer; margin: 0 0 16px;
}
.review-author {
  margin-top: auto;
  font-family: var(--font-base); font-size: 14px; font-weight: 600;
  color: var(--graphite);
}
.review-source {
  font-family: var(--font-base); font-size: 13px; font-weight: 500;
  color: rgba(27, 26, 24, 0.62); margin-top: 4px;
}
.rv__arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid rgba(176, 122, 71, 0.4);
  color: var(--copper); font-size: 22px; line-height: 1; cursor: pointer;
  z-index: 2; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.rv__arrow:not(:disabled):hover { background: rgba(176, 122, 71, 0.10); }
.rv__arrow--prev { left: -10px; }
.rv__arrow--next { right: -10px; }
.rv__arrow:disabled { opacity: .35; cursor: default; }
@media (max-width: 1000px) {
  .review-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .cem-reviews { padding: 52px clamp(24px, 5vw, 80px) 72px; }
  .review-card { flex-basis: 100%; }
  .rv__arrow--prev { left: 0; }
  .rv__arrow--next { right: 0; }
}

/* Блок 8: Экспертный блог (превью) */
.cem-blog-preview {
  background: var(--bg-soft);
  margin-top: 0;
  margin-bottom: 0;
  padding: 56px clamp(24px, 5vw, 80px) 56px;
}
.bl__inner { max-width: 1280px; margin: 0 auto; }
.bl__head { max-width: 950px; margin-bottom: clamp(28px, 4vw, 44px); }
.bl__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.12;
  color: var(--graphite);
}
.bl__sub {
  margin: 0; max-width: 920px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(27, 26, 24, 0.80);
}
.bl__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 1fr;
  gap: 20px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(176, 122, 71, 0.20);
  border-radius: 18px;
  padding: 30px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.blog-card--feature {
  grid-row: span 2;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(46, 59, 48, 0.04) 100%);
}
.blog-card:hover {
  border-color: rgba(176, 122, 71, 0.35);
  background: rgba(46, 59, 48, 0.03);
  transform: translateY(-2px);
}
.blog-category {
  font-family: var(--font-base); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss);
  margin-bottom: 12px;
}
.blog-card__title {
  margin: 0 0 12px;
  font-family: var(--font-base); font-weight: 600;
  font-size: 21px; line-height: 1.3; color: var(--graphite);
}
.blog-card--feature .blog-card__title { font-size: 26px; }
.blog-card__excerpt {
  margin: 0 0 20px;
  font-family: var(--font-base); font-size: 15px; font-weight: 400;
  line-height: 1.55; color: rgba(27, 26, 24, 0.74);
}
.blog-link {
  margin-top: auto; align-self: flex-start;
  font-family: var(--font-base); font-size: 14px; font-weight: 600;
  color: var(--copper); text-decoration: none;
}
.blog-link:hover { text-decoration: underline; }
.bl__cta { margin-top: clamp(28px, 4vw, 40px); }
@media (max-width: 1000px) {
  .bl__grid { grid-template-columns: 1fr 1fr; }
  .blog-card--feature { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 640px) {
  .cem-blog-preview { padding: 52px clamp(24px, 5vw, 80px) 52px; }
  .bl__grid { grid-template-columns: 1fr; }
  .blog-card--feature { grid-column: auto; }
}

/* Блок 9: Финальный CTA (светлая порцелановая плашка) */
.cem-final-cta {
  background: var(--bg-soft);
  margin-top: 0;
  padding: 56px clamp(20px, 5vw, 60px) 80px;
}
.cem-final-cta__card {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 64px);
  border: 1px solid rgba(176, 122, 71, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(46, 59, 48, 0.04) 100%);
}
.cem-final-cta__title {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.12;
  color: var(--graphite);
}
.cem-final-cta__sub {
  margin: 20px auto 0;
  max-width: 780px;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(27, 26, 24, 0.80);
}
.cem-final-cta__buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 640px) {
  .cem-final-cta { padding: 52px clamp(20px, 5vw, 60px) 64px; }
  .cem-final-cta__card { padding: 40px 24px; }
  .cem-final-cta__title { font-size: 32px; }
  .cem-final-cta__buttons { flex-direction: column; align-items: center; }
  .cem-final-cta__buttons .btn { width: 100%; max-width: 320px; }
}

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

/* ================= TABLET ================= */
@media (max-width: 1100px) {
  .hero__text { max-width: 440px; }
  .hero__title { font-size: clamp(32px, 4.2vw, 44px); }
  .bottle--peeling { left: 60%; }
  .bottle--shampoo { left: 71%; }
  .bottle--mask    { left: 83%; }
  .bottle--lotion  { left: 95%; }
  .caption--peeling { left: 60%; }
  .caption--shampoo { left: 71%; }
  .caption--mask    { left: 83%; }
  .caption--lotion  { left: 95%; }
}

/* ================= MOBILE ================= */
@media (max-width: 760px) {
  :root { --header-h: 84px; }

  .hero {
    height: auto;
    min-height: 640px;
    /* Отдельный вертикальный фон для mobile (стена + столешница, БЕЗ флаконов).
       Положить файл assets/hero-bg-mobile.jpg (портрет, напр. 1080×1440). */
    background-image: url("../assets/hero-bg-mobile.jpg");
    background-position: center bottom;
    background-size: cover;
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 36px;
  }
  .hero__text { max-width: 100%; }
  .hero__title { font-size: 34px; }
  .hero__actions { gap: 12px; }
  .btn { flex: 1 1 auto; min-width: 160px; }

  /* Флаконы — в нижней зоне, не перекрывают текст */
  .bottle { bottom: 6%; }
  .bottle--peeling { left: 17%; height: 34%; }
  .bottle--shampoo { left: 39%; height: 46%; }
  .bottle--mask    { left: 62%; height: 44%; }
  .bottle--lotion  { left: 84%; height: 37%; }

  /* Подписи на мобильном скрываем, чтобы не перегружать экран */
  .caption { display: none; }

  /* Маркеры доверия 2×2 */
  .trust__list { grid-template-columns: repeat(2, 1fr); gap: 14px 0; }
  .trust__item { padding: 6px 18px; }
  .trust__item:nth-child(odd)  { border-left: none; }
  .trust__item:nth-child(even) { border-left: 1px solid rgba(176, 122, 71, 0.35); }
}

@media (max-width: 420px) {
  .bottle--peeling { height: 30%; }
  .bottle--shampoo { height: 41%; }
  .bottle--mask    { height: 39%; }
  .bottle--lotion  { height: 33%; }
}
