/* =========================================
   GlycoEdge Blood Support — Landing Page
   CSS Variables & Base Reset
   ========================================= */
/* Google Fonts загружаются через <link> в HTML — @import удалён для производительности */

:root {
  /* Цвета бренда — синхронизованы с оффер-страницей */
  --crimson:       #8B1A1A;
  --crimson-dark:  #6B0000;
  --crimson-mid:   #A82020;
  --crimson-light: #C8302D;
  --orange-cta:    #F5A623;
  --orange-hover:  #E09010;
  --gold:          #B8930A;
  --gold-light:    #F5E070;
  --gold-border:   #D4A820;
  --tan-bg:        #F0E8C0;
  --off-white:     #FAFAF0;
  --dark:          #1A0505;
  --mid-text:      #333333;
  --light-text:    #666666;
  --success:       #2E7D32;
  --success-light: #E8F5E9;
  --white:         #FFFFFF;
  --section-alt:   #F8F0E0;
  --dark-section:  #1A0505;

  /* Типографика */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Figtree', 'Segoe UI', sans-serif;

  /* Отступы */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  3rem;
  --space-xl:  5rem;

  /* Контейнер */
  --max-width: 1100px;

  /* Тени */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);

  /* Радиусы */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* z-индексы */
  --z-sticky:  100;
  --z-overlay: 200;
  --z-modal:   300;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--mid-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

/* Утилиты */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.text-center { text-align: center; }
.text-crimson { color: var(--crimson); }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-orange { color: var(--orange-cta); }

/* Классы для вынесенных инлайн-стилей */
.problem__symptom-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}

.guarantee__text + .guarantee__text {
  margin-top: 1rem;
}

.faq__header .section-title em {
  color: var(--crimson);
}

.final-cta__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.guarantee-lock-icon {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.65);
  flex-shrink: 0;
}

/* =========================================
   АНИМАЦИИ
   ========================================= */
@keyframes float {
  /* Чистый translateY — will-change на элементе уже даёт GPU-слой */
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  /* Используем только opacity+transform — GPU-composited, без box-shadow */
  0%, 100% { transform: scale(1) translateZ(0); opacity: 1; }
  50%       { transform: scale(1.03) translateZ(0); opacity: 0.92; }
}

@keyframes pulse-ring {
  /* Кольцо вокруг CTA через псевдоэлемент */
  0%   { transform: scale(1) translateZ(0); opacity: 0.6; }
  100% { transform: scale(1.5) translateZ(0); opacity: 0; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes ticker-scroll {
  /* translateZ(0) внутри keyframe — создаёт GPU-слой без конфликта с base-style */
  0%   { transform: translateX(0) translateZ(0); }
  100% { transform: translateX(-50%) translateZ(0); }
}

/* Классы для scroll-reveal — просто opacity+transform, без translateZ в значениях */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   Focus-visible — видимый фокус при Tab-навигации
   ========================================= */
.btn-cta:focus-visible,
.testimonials__all-link:focus-visible {
  outline: 3px solid var(--orange-cta);
  outline-offset: 3px;
}

.accordion-item__trigger:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 2px;
}

.carousel__btn:focus-visible,
.carousel__dot:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 2px;
}

.sticky-bar__cta:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.footer__links a:focus-visible,
.footer__company--us a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* Уважаем prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  /* Декоративные анимации — отключаем */
  .hero__bottle,
  .hero__badge-dot,
  .final-cta__stock-dot,
  .btn-cta::after {
    animation: none !important;
  }

  /* Transitions — мгновенные */
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }

  /* Reveal — сразу видимые */
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Тикер — информационный элемент, оставляем двигаться */
}

/* =========================================
   1. STICKY TOP BAR (таймер + оффер)
   ========================================= */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--crimson);
  color: var(--white);
  padding: 8px var(--space-sm);
  border-bottom: 3px solid var(--gold-border);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sticky-bar__text {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.sticky-bar__text strong {
  color: var(--gold-light);
}

/* Таймер */
.countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2px 8px;
  min-width: 42px;
}

.countdown__num {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown__sep {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.sticky-bar__cta {
  background: var(--orange-cta);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 10px 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.sticky-bar__cta:hover {
  background: var(--orange-hover);
  transform: scale(1.04);
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--crimson-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Фоновое изображение */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}

/* Градиентный оверлей */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107,0,0,0.92) 0%,
    rgba(139,26,26,0.80) 50%,
    rgba(26,5,5,0.88) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) var(--space-sm);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* Контент слева */
.hero__content {
  color: var(--white);
}

/* Картинка-разделитель — скрыта на десктопе */
.hero__visual-mobile,
.section-divider-img {
  display: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,224,112,0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  white-space: nowrap;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  /* GPU-friendly пульс через opacity+scale */
  animation: pulse-glow 2.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.hero__headline em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 580px;
}

.hero__nodiet-img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 8px 0;
}

/* Звёздный рейтинг */
.hero__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 20px;
  height: 20px;
  fill: var(--gold-light);
}
.star--empty {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
}

.hero__stars-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.hero__stars-text strong {
  color: var(--gold-light);
}

/* CTA кнопки hero */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

/* Главная CTA кнопка */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange-cta);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  padding: 18px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* GPU-ускоренный transition — только transform и opacity */
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  text-align: center;
  /* Пульс через псевдоэлемент — без box-shadow jank */
  overflow: visible;
}

/* Кольцо-пульс через ::after — GPU-composited */
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 3px solid var(--orange-cta);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 8px 24px rgba(245,166,35,0.45);
}

.btn-cta:hover::after {
  animation: none;
  opacity: 0;
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta--secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  animation: none;
  font-size: 0.95rem;
  padding: 14px 28px;
}

.btn-cta--secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-border);
  animation: none;
  box-shadow: none;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__guarantee-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.hero__guarantee-note .guarantee-lock-icon {
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
}

/* Trust-индикаторы под CTA */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--space-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--gold-light);
}

/* Бутылка справа */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__bottle {
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow-md);
  /* filter убран с анимируемого элемента — блокирует GPU-compositing */
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}

/* Тень — отдельный статичный элемент, не анимируется, filter здесь безопасен */
.hero__bottle-glow {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

/* =========================================
   3. TRUST BADGES STRIP
   ========================================= */
.trust-strip {
  background: var(--white);
  border-top: 3px solid var(--gold-border);
  border-bottom: 3px solid var(--gold-border);
  padding: 20px var(--space-sm);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--crimson);
}

.badge-divider {
  width: 1px;
  height: 30px;
  background: var(--gold-border);
  opacity: 0.5;
}

/* Компактный вид на мобильных */
@media (max-width: 767px) {
  .hero__stars {
    justify-content: center;
  }

  .hero__guarantee-note {
    text-align: center;
  }

  .hero__trust {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .trust-strip {
    padding: 14px var(--space-sm);
  }

  .trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 8px 0;
  }

  /* Скрываем разделители — в сетке они не нужны */
  .badge-divider {
    display: none;
  }

  /* Иконка над текстом, по центру — ровно 3 штуки в ряд */
  .badge-item {
    flex: 0 0 33.333%;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    padding: 6px 4px;
  }

  .badge-item svg {
    width: 22px;
    height: 22px;
  }
}

/* =========================================
   4. PROBLEM SECTION
   ========================================= */
.problem {
  background: var(--dark-section);
  color: var(--white);
  padding: var(--space-xl) var(--space-sm);
  position: relative;
  overflow: hidden;
}

/* Декоративный фон */
.problem::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139,26,26,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.problem__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  display: block;
  width: fit-content;
  background: rgba(245,166,35,0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

/* Центровка тега на мобильных */
@media (max-width: 767px) {
  .section-tag {
    margin-left: auto;
    margin-right: auto;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.section-title em {
  color: var(--gold-light);
  font-style: normal;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.85;
  line-height: 1.7;
  max-width: 700px;
}

/* Статистические счётчики */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,147,10,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.stat-card:hover {
  border-color: var(--gold-border);
  background: rgba(255,255,255,0.1);
}

.stat-card__num {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.stats-source {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* Компактный ряд статов на мобильных */
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: var(--space-md) 0 6px;
  }

  .stat-card {
    padding: 12px 6px;
  }

  .stat-card__num {
    font-size: 1.7rem;
    margin-bottom: 4px;
  }

  .stat-card__label {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* Симптомы */
.symptoms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(168,32,32,0.2);
  border-left: 3px solid var(--crimson-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.symptom-item svg {
  width: 20px;
  height: 20px;
  color: #FF6B6B;
  flex-shrink: 0;
  margin-top: 2px;
}

.symptom-item__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

/* =========================================
   5. STORY / DISCOVERY SECTION
   ========================================= */
.story {
  background: var(--off-white);
  padding: var(--space-xl) var(--space-sm);
}

.story__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.story__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.story__header .section-title {
  color: var(--dark);
}

.story__header .section-tag {
  background: rgba(139,26,26,0.1);
  color: var(--crimson);
  border-color: var(--crimson);
}

@media (max-width: 767px) {
  .story {
    padding: var(--space-md) var(--space-sm);
  }

  .story__header {
    margin-bottom: var(--space-md);
  }
}

.story__text {
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--mid-text);
}

.story__text p {
  margin-bottom: 1rem;
}

.story__text strong {
  color: var(--crimson);
}

/* Механизм действия — 3 шага */
.mechanism {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (max-width: 767px) {
  .mechanism {
    margin-top: var(--space-sm);
  }
}

.mechanism__step {
  text-align: center;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--crimson);
  position: relative;
}

.mechanism__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
}

.mechanism__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.mechanism__desc {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* Стрелка между шагами (только десктоп) */
.mechanism__arrow {
  display: none;
}

/* Компактный горизонтальный вид на мобильных */
@media (max-width: 767px) {
  .mechanism {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: var(--space-md);
  }

  /* Число слева, заголовок + описание справа */
  .mechanism__step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    text-align: left;
    padding: 12px 14px;
  }

  .mechanism__num {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin: 0;
  }

  .mechanism__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .mechanism__desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

/* =========================================
   6. INGREDIENTS SECTION
   ========================================= */
.ingredients {
  background: var(--section-alt);
  padding: var(--space-md) var(--space-sm);
}

@media (min-width: 768px) {
  .ingredients {
    padding: var(--space-xl) var(--space-sm);
  }
}

.ingredients__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.ingredients__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.ingredients__header .section-title {
  color: var(--dark);
}

/* На светлом фоне золотой нечитаем — заменяем на тёмно-красный */
.ingredients__header .section-title em,
.testimonials .section-title em {
  color: var(--crimson);
}

.ingredients .section-tag,
.testimonials .section-tag,
.faq .section-tag {
  background: rgba(139,26,26,0.1);
  color: var(--crimson);
  border-color: var(--crimson);
}

.ingredients__serving {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  margin-top: var(--space-sm);
}

@media (max-width: 767px) {
  .ingredients__header {
    margin-bottom: var(--space-sm);
  }
}

/* Сетка карточек ингредиентов */
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-sm);
}

/* Последняя карточка — на десктопе влево, на мобильном полная ширина */
@media (min-width: 768px) {
  .ingredient-card:last-child {
    justify-self: start;
    width: 100%;
    max-width: 300px;
  }
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,147,10,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ingredient-card__header {
  background: var(--crimson);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ingredient-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.ingredient-card__dose {
  background: rgba(255,255,255,0.2);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.ingredient-card__body {
  padding: 16px;
}

.ingredient-card__icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: none; /* используем SVG */
}

.ingredient-card__icon-svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Обтекание текста вокруг иконки на мобильных */
@media (max-width: 767px) {
  .ingredient-card__icon-svg {
    float: left;
    width: 28px;
    height: 28px;
    margin: 2px 10px 4px 0;
  }

  /* Clearfix — тег под иконкой не залезает */
  .ingredient-card__body::after {
    content: '';
    display: table;
    clear: both;
  }

  .ingredient-card__tag {
    clear: both;
    display: block;
    width: fit-content;
  }
}

.ingredient-card__benefit {
  font-size: 0.92rem;
  color: var(--mid-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.ingredient-card__tag {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ingredients__footnote {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.72rem;
  color: var(--light-text);
  font-style: italic;
}

/* =========================================
   7. BENEFITS SECTION
   ========================================= */
.benefits {
  background: var(--white);
  padding: var(--space-lg) var(--space-sm);
}

.benefits__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

.benefits__content .section-tag {
  background: rgba(139,26,26,0.1);
  color: var(--crimson);
  border-color: var(--crimson);
}

.benefits__content .section-title {
  color: var(--dark);
}

.benefits__list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-item__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-item__check svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.benefit-item__text {
  font-size: 1rem;
  color: var(--mid-text);
  line-height: 1.5;
}

.benefit-item__text strong {
  color: var(--dark);
}

.benefits__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.benefits__bottle {
  width: 100%;
  max-width: 540px;
}

/* Уменьшаем отступ и размер картинки на мобильном */
@media (max-width: 767px) {
  .benefits {
    padding: var(--space-sm) var(--space-sm) 0;
  }

  .benefits__container {
    gap: 0;
  }

  .benefits__list {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .benefits__visual {
    margin: 0;
  }

  .benefits__bottle {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}

/* =========================================
   8. TESTIMONIALS SECTION
   ========================================= */
.testimonials {
  background: var(--section-alt);
  padding: var(--space-xl) var(--space-sm);
}

.testimonials__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials__header .section-title {
  color: var(--dark);
}

/* Сводный рейтинг */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.rating-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--crimson);
  line-height: 1;
}

.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-stars .stars .star {
  width: 22px;
  height: 22px;
}

.rating-count {
  font-size: 0.9rem;
  color: var(--light-text);
}

.testimonials__all-link {
  display: block;
  text-align: left;
  margin-top: 2px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--crimson);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.testimonials__all-link:hover,
.testimonials__all-link:focus {
  color: var(--crimson-dark);
  border-bottom-color: var(--crimson-dark);
}

/* Карусель */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,147,10,0.2);
}

.testimonial-card__top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.testimonial-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--gold-border);
}

.testimonial-card__meta {
  flex: 1;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.testimonial-card__location {
  font-size: 0.82rem;
  color: var(--light-text);
  margin-bottom: 6px;
}

.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

.testimonial-card__verified svg {
  width: 14px;
  height: 14px;
  fill: var(--success);
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid-text);
  font-style: italic;
  border-left: 3px solid var(--gold-border);
  padding-left: 16px;
  margin-bottom: var(--space-sm);
}

.testimonial-card__result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-light);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.testimonial-card__result svg {
  width: 16px;
  height: 16px;
  fill: var(--success);
}

/* Контролы карусели */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.carousel__btn:hover {
  background: var(--crimson-dark);
  transform: scale(1.08);
}

.carousel__btn svg {
  width: 20px;
  height: 20px;
}

.carousel__dots {
  display: flex;
  gap: 8px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139,26,26,0.25);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.carousel__dot.active {
  background: var(--crimson);
  transform: scale(1.3);
}

.testimonials__disclaimer {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--light-text);
  font-style: italic;
}

/* =========================================
   9. ORDER / CTA SECTION
   ========================================= */
.order {
  background: linear-gradient(160deg, var(--crimson-dark) 0%, #3D0000 100%);
  padding: var(--space-xl) var(--space-sm);
  position: relative;
  overflow: hidden;
}

.order::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.order__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.order__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,224,112,0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.order__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.order__title em {
  color: var(--gold-light);
  font-style: normal;
}

.order__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
}

/* Блок с ценой и изображением */
.order__deal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.order__offer-img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.order__price-block {
  text-align: center;
}

.order__free-badge {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  /* Анимация — паритет с .btn-cta */
  position: relative;
  overflow: visible;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease;
}

/* Пульсирующее зелёное кольцо — аналог оранжевого у .btn-cta */
.order__free-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 3px solid var(--success);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.order__free-badge:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
}

.order__free-badge:hover::after {
  animation: none;
  opacity: 0;
}

.order__old-price {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.order__new-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}

.order__currency {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-top: 10px;
}

.order__amount {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.order__per {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
}

.order__savings {
  display: inline-block;
  background: var(--orange-cta);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  margin-top: 8px;
}

.order__supply-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.order__ship-free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}

.order__ship-free svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
}

/* CTA в order */
.order__cta-wrap {
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.order__cta {
  width: 100%;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.order__next {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* Trust badges в order */
.order__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--space-md);
}

.order-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-badge svg {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
}

/* Secure badges */
.order__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.order__secure-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.order__secure-item svg {
  width: 14px;
  height: 14px;
  fill: rgba(255,255,255,0.55);
}

/* =========================================
   10. GUARANTEE SECTION
   ========================================= */
.guarantee {
  background: var(--white);
  padding: var(--space-xl) var(--space-sm);
}

.guarantee__container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.guarantee__badge-img {
  width: clamp(140px, 30vw, 200px);
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

.guarantee__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.guarantee__title span {
  color: var(--crimson);
}

.guarantee__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid-text);
}

/* =========================================
   11. FAQ SECTION
   ========================================= */
.faq {
  background: var(--section-alt);
  padding: var(--space-xl) var(--space-sm);
}

.faq__container {
  max-width: 760px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.faq__header .section-title {
  color: var(--dark);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Аккордеон */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(184,147,10,0.15);
}

.accordion-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-sm);
  transition: background 0.2s;
}

.accordion-item__trigger:hover {
  background: rgba(139,26,26,0.04);
}

.accordion-item__trigger.open {
  background: rgba(139,26,26,0.06);
}

.accordion-item__q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.accordion-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--crimson);
  transition: transform 0.3s;
}

.accordion-item__trigger.open .accordion-item__icon {
  transform: rotate(45deg);
}

.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item__body.open {
  max-height: 500px;
}

.accordion-item__answer {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid-text);
  border-top: 1px solid rgba(184,147,10,0.15);
  padding-top: 14px;
}

/* =========================================
   12. FINAL CTA SECTION
   ========================================= */
.final-cta {
  background: var(--crimson);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta__container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.final-cta__title em {
  color: var(--gold-light);
  font-style: normal;
}

.final-cta__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
}

.final-cta__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  color: #FF9999;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: var(--space-md);
}

.final-cta__stock-dot {
  width: 10px;
  height: 10px;
  background: #FF6B6B;
  border-radius: 50%;
  animation: pulse-glow 1.5s ease infinite;
}

.final-cta__cta {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

/* =========================================
   13. FOOTER
   ========================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: var(--space-lg) var(--space-sm) var(--space-md);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: var(--space-md);
}

.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold-light);
}

/* Название компании в футере */
.footer__company {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 10px;
}

.footer__company--us {
  margin-top: 8px;
  line-height: 1.6;
}
.footer__company--us a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.footer__company--us a:hover,
.footer__company--us a:focus {
  color: rgba(255,255,255,0.7);
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}

/* Блок с дисклеймерами */
.footer__references {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__references a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

.footer__references a:hover {
  color: rgba(255,255,255,0.8);
}

.footer__disclaimers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__disclaimer-item {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer__disclaimer-item strong {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

.footer__fda {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: var(--space-sm);
}

.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =========================================
   NEWS TICKER (бегущая строка)
   ========================================= */
.ticker-wrap {
  background: var(--gold-border);
  overflow: hidden;
  padding: 8px 0;
}

.ticker-inner {
  display: flex;
  width: max-content;
  /* 90s = ~23px/sec */
  animation: ticker-scroll 90s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticker-item::before {
  content: '★';
  color: var(--crimson);
}

/* =========================================
   RESPONSIVE — TABLET (768px)
   ========================================= */
@media (min-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-xl) var(--space-md);
  }

  .hero__visual {
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .hero__cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .order__deal {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .order__price-block {
    text-align: center;
  }

  .guarantee__container {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .guarantee__badge-img {
    margin: 0;
  }

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

  .mechanism__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-border);
  }

  .mechanism__arrow svg {
    width: 28px;
    height: 28px;
  }

  .testimonial-card {
    min-width: 50%;
  }
}

/* =========================================
   RESPONSIVE — DESKTOP (1200px)
   ========================================= */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__container {
    padding: 100px var(--space-md);
    gap: var(--space-xl);
  }

  .hero__bottle {
    max-width: 540px;
  }

  .testimonial-card {
    min-width: 33.333%;
  }

  .ingredients__grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* =========================================
   MOBILE — уменьшенные отступы секций
   ========================================= */
@media (max-width: 767px) {
  .problem,
  .story,
  .benefits,
  .testimonials,
  .order,
  .guarantee,
  .faq,
  .final-cta {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  /* Уменьшаем отступы hero на мобильных */
  .hero__container {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }

  /* Гарантия: одинаковый и уменьшенный отступ вокруг значка */
  .guarantee {
    padding-top: var(--space-sm);
  }
  .guarantee__container {
    gap: var(--space-sm);
  }
}

/* =========================================
   MOBILE — sticky-бар внизу + бутылка вверху в hero
   ========================================= */
@media (max-width: 767px) {
  /* Sticky-бар переезжает на bottom */
  .sticky-bar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 3px solid var(--gold-border);
    border-bottom: none;
    padding: 6px var(--space-sm) calc(6px + env(safe-area-inset-bottom));
    z-index: var(--z-sticky);
  }

  /* 2-строчный layout: оффер сверху, таймер+кнопка снизу */
  .sticky-bar__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    align-items: center;
    flex-wrap: unset;
    justify-content: unset;
  }

  /* Строка 1: текст оффера на всю ширину */
  .sticky-bar__text {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 0.3px;
  }

  /* Строка 2, колонка 1: таймер */
  .countdown {
    grid-column: 1;
    grid-row: 2;
  }

  /* Строка 2, колонка 2: кнопка */
  .sticky-bar__cta {
    grid-column: 2;
    grid-row: 2;
    justify-content: center;
    font-size: 0.82rem;
    padding: 10px 14px;
    min-height: 40px;
  }

  /* Компенсируем высоту bottom-бара через footer padding */
  .footer {
    padding-bottom: calc(var(--space-md) + 84px);
  }

  /* Оригинальный блок с картинкой — скрываем на мобайл */
  .hero__visual {
    display: none;
  }

  .hero__bottle-glow {
    display: none;
  }

  /* Картинка-разделитель между секциями — full-bleed */
  .section-divider-img {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  .section-divider-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }
}
