/* =============================================
   SILICIUM.IBEAUTYLAB.KZ — CSS
   Палитра: кремовый / золото / розово-бежевый
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #B8975A;
  --gold-light:  #D4B47A;
  --gold-pale:   #F5EDD8;
  --rose:        #E8C5C0;
  --rose-dark:   #C4877D;
  --cream:       #FBF7F1;
  --cream-dark:  #F2EBE0;
  --text:        #2C2118;
  --text-mid:    #6B5B4E;
  --text-muted:  #A3917F;
  --white:       #FFFFFF;
  --border:      #E8DDD0;
  --kaspi-red:   #F14635;

  /* Цвета упаковки: тёмный сине-зелёный */
  --teal:        #1B5E72;
  --teal-mid:    #2A7A92;
  --teal-light:  #D5EBF0;
  --teal-pale:   #EEF7FA;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(44,33,24,.07);
  --shadow-md: 0 8px 32px rgba(44,33,24,.10);
  --shadow-lg: 0 24px 64px rgba(44,33,24,.13);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: 0.25s;

  --max: 1120px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; border-radius: var(--r-md); }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }

/* =============================================
   Типографика
   ============================================= */
.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* =============================================
   Кнопки
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,90,.35); }
.btn--ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--gold); }
.btn--kaspi {
  background: var(--kaspi-red);
  color: var(--white);
  border-color: var(--kaspi-red);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--r-lg);
}
.btn--kaspi:hover { background: #d93b2a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(241,70,53,.35); }
.btn--lg { padding: 14px 28px; font-size: 16px; border-radius: var(--r-lg); }

/* =============================================
   Шапка
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo__mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px; font-weight: 600;
  letter-spacing: -.02em;
}
.logo__text { font-size: 17px; font-weight: 600; color: var(--text); }
.logo__domain { color: var(--gold); }

.nav { display: flex; gap: 4px; flex: 1; }
.nav__link {
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text-mid);
  transition: color var(--t), background var(--t);
}
.nav__link:hover { color: var(--gold); background: var(--gold-pale); }
.nav__link.active { color: var(--gold); font-weight: 500; }

.header__cta { flex-shrink: 0; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }

.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
  z-index: 99; box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 15px; color: var(--text-mid);
}
.mobile-nav__link:hover { background: var(--gold-pale); color: var(--gold); }

/* =============================================
   Hero
   ============================================= */
.hero {
  padding: 168px 0 96px;
  background: linear-gradient(150deg, #FBF7F1 0%, #F5EDD8 50%, #FBF7F1 100%);
  overflow: hidden;
  position: relative;
}
.hero__bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,180,122,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero__bg-circle--1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.hero__bg-circle--2 { width: 400px; height: 400px; bottom: -100px; left: -80px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero__content { display: flex; flex-direction: column; gap: 0; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(184,151,90,.3);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  width: fit-content;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title em { color: var(--gold); font-style: italic; }

.hero__subtitle {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--gold); line-height: 1; }
.stat__label { font-size: 12px; color: var(--text-muted); margin-top: 2px; max-width: 100px; line-height: 1.3; }
.stat__divider { width: 1px; height: 36px; background: var(--border); }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__trust { display: flex; align-items: center; gap: 10px; }
.star-row { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.trust-text { font-size: 13px; color: var(--text-mid); }

/* Продуктовое фото */
.hero__visual { position: relative; }
.product-frame {
  position: relative;
  background: radial-gradient(ellipse at center, #F5EDD8 0%, #FBF7F1 70%);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.product-img { width: 100%; height: auto; border-radius: var(--r-lg); }
.product-badge {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* =============================================
   Trust bar
   ============================================= */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}
.trust-icon { font-size: 24px; flex-shrink: 0; }

/* =============================================
   О продукте
   ============================================= */
.about { background: var(--white); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); width: 100%; }
.about__content { display: flex; flex-direction: column; gap: 0; }
.about__text { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.about__text strong { color: var(--text); }

.ingredients-box {
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,90,.25);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-top: 24px;
}
.ingredients-box__title { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.ingredient-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,151,90,.15);
  font-size: 14px;
}
.ingredient-row:last-child { border-bottom: none; }
.ingredient-name { color: var(--text); }
.ingredient-val { font-weight: 600; color: var(--gold); }

/* =============================================
   Преимущества
   ============================================= */
.benefits { background: var(--cream); }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow var(--t), transform var(--t);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-card__icon { font-size: 36px; margin-bottom: 16px; }
.benefit-card__title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.benefit-card__desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* =============================================
   Визуальная секция
   ============================================= */
.visual-section { background: var(--white); }
.visual-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.infographic-img { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); width: 100%; }

.timeline { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.timeline-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.timeline-text { font-size: 15px; color: var(--text-mid); line-height: 1.6; padding-top: 4px; }
.timeline-text strong { color: var(--text); }

/* =============================================
   Применение
   ============================================= */
.how { background: var(--cream); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }

.how-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.how-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.how-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 0; }
.how-card__body { padding: 20px 24px 24px; }
.how-card__step { font-size: 36px; font-family: var(--font-serif); font-weight: 600; color: var(--gold); opacity: .3; line-height: 1; display: block; margin-bottom: 8px; }
.how-card__title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.how-card__desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

.how__tip {
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,90,.25);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
}
.how__tip-icon { font-size: 22px; }
.how__tip strong { color: var(--text); }

/* =============================================
   Отзывы
   ============================================= */
.reviews { background: var(--white); }
.overall-rating { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 12px; }
.overall-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; }
.overall-score { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text); }
.overall-count { font-size: 13px; color: var(--text-muted); }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
}
.review-card__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card__text { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 600; color: var(--text); }
.review-card__date { font-size: 12px; color: var(--text-muted); }

/* =============================================
   Kaspi CTA
   ============================================= */
.kaspi-cta { background: var(--cream-dark); }
.kaspi-cta__card {
  background: linear-gradient(135deg, #2C2118 0%, #4A3728 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: var(--shadow-lg);
}
.kaspi-cta__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.kaspi-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.kaspi-cta__variants { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.variant-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  position: relative;
}
.variant-card:hover { background: rgba(255,255,255,.14); }
.variant-card--popular { border-color: var(--gold); background: rgba(184,151,90,.15); }
.variant-card__badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase; letter-spacing: .06em;
}
.variant-card__count { font-size: 16px; font-weight: 600; color: var(--white); }
.variant-card__sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.kaspi-cta__shipping { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.kaspi-cta__note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 12px; }

.kaspi-cta__image { overflow: hidden; }
.kaspi-cta__img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--white); }
.faq__wrap { max-width: 720px; }
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq__item[open] { border-color: var(--gold); }
.faq__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px; font-weight: 500;
  list-style: none; user-select: none;
  color: var(--text);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; font-size: 22px; color: var(--gold); transition: transform var(--t); flex-shrink: 0; }
details[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer { padding: 0 20px 18px; font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* =============================================
   Финальный CTA
   ============================================= */
.final-cta { background: var(--cream-dark); }
.final-cta__inner {
  text-align: center;
  background: radial-gradient(ellipse at center, var(--gold-pale) 0%, transparent 70%);
  padding: 24px;
  border-radius: var(--r-xl);
}
.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}
.final-cta__desc { font-size: 17px; color: var(--text-mid); max-width: 500px; margin: 0 auto 36px; line-height: 1.65; }

/* =============================================
   Подвал
   ============================================= */
.footer { background: #1E160E; padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer .logo__text { color: rgba(255,255,255,.85); }
.footer .logo__domain { color: var(--gold-light); }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.35); margin-top: 8px; max-width: 200px; line-height: 1.5; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px; color: rgba(255,255,255,.25);
}
.footer__disclaimer { font-style: italic; }

/* =============================================
   Анимации
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp .75s var(--ease) forwards;
}
.fade-up:nth-child(1) { animation-delay: .05s; }
.fade-up:nth-child(2) { animation-delay: .15s; }
.fade-up:nth-child(3) { animation-delay: .25s; }
.fade-up:nth-child(4) { animation-delay: .35s; }
.fade-up:nth-child(5) { animation-delay: .45s; }
.fade-up:nth-child(6) { animation-delay: .55s; }
.fade-up:nth-child(7) { animation-delay: .65s; }

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   Адаптив
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__content { align-items: center; }
  .hero__subtitle { max-width: 520px; }
  .hero__stats { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image { max-width: 480px; margin: 0 auto; }

  .visual-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .visual-section__image { max-width: 480px; margin: 0 auto; }

  .kaspi-cta__card { grid-template-columns: 1fr; }
  .kaspi-cta__image { height: 300px; }
  .kaspi-cta__content { padding: 40px 32px; }

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

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }

  .how__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero__content { align-items: flex-start; text-align: left; }
}

@media (max-width: 540px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .kaspi-cta__variants { flex-direction: column; }
  .hero__stats { align-items: flex-start; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   Результаты / Клинические данные
   ============================================= */
.results-bar {
  background: linear-gradient(135deg, var(--teal) 0%, #0D3D4F 100%);
  padding: 64px 0 48px;
}
.results-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 28px;
}
.result-stat { text-align: center; }
.result-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}
.result-stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}
.results-bar__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
@media (max-width: 768px) {
  .results-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 400px) {
  .results-bar__inner { grid-template-columns: 1fr; }
}

/* =============================================
   Таблица сравнения
   ============================================= */
.compare { background: var(--teal-pale); }
.compare__wrap { overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.compare__table thead { background: var(--teal); }
.compare__th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.compare__th--highlight { color: var(--gold-light); }
.compare__table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--t); }
.compare__table tbody tr:last-child { border-bottom: none; }
.compare__table tbody tr:hover { background: var(--teal-pale); }
.compare__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-mid);
  vertical-align: middle;
}
.compare__table td:first-child { font-weight: 500; color: var(--text); }
.compare__td--highlight {
  color: var(--teal) !important;
  font-weight: 600;
}
.compare__icon-yes { color: var(--teal); font-weight: 700; }
.compare__icon-no  { color: #C0392B; }

/* =============================================
   Галерея lifestyle
   ============================================= */
.gallery { background: var(--cream-dark); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--shadow-sm);
  display: block;
}
.gallery__img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery__img--wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery__grid { grid-template-rows: 220px 220px; }
}
@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .gallery__img--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .gallery__img--wide { grid-column: span 1; }
}

/* =============================================
   Цена в вариантах
   ============================================= */
.variant-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-top: 6px;
}

/* =============================================
   Блок сертификаций / производство
   ============================================= */
.certif-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.certif-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
.certif-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 8px;
}
.certif-item__icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.certif-item__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.3;
}
.certif-item__sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 900px) {
  .certif-bar__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .certif-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
