/* Freshmint — bulk oral care. Палитра из лого/баннера стора:
   «fresh» — синий #2456a4, «mint» — зелёный #27a44a; фон — морозная мята.
   v2 (уникализация): свой хиро с волной и карточкой, тикер, «полка» категорий,
   тёмный spotlight-band, линейка форматов (ruler), аудитории, case-math,
   таймлайн kit-шагов, зелёный футер, переработанные карточки и PDP. */

/* Шрифты локальные: latin-подмножества woff2 в assets/fonts/. */
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/nunito-latin.woff2) format('woff2'); }
@font-face { font-family: 'Nunito'; font-style: normal; font-weight: 800; font-display: swap;
  src: url(../fonts/nunito-latin.woff2) format('woff2'); }
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/mulish-latin.woff2) format('woff2'); }
@font-face { font-family: 'Mulish'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/mulish-latin.woff2) format('woff2'); }

:root {
  --ink: #1c3557;           /* тёмно-синие тексты */
  --blue: #2456a4;          /* «fresh» из лого */
  --blue-deep: #1d4f9e;     /* синий баннера */
  --navy: #143567;
  --mint: #27a44a;          /* «mint» из лого — CTA */
  --mint-deep: #1e8038;
  --frost: #f2f8f4;         /* фон — морозная мята */
  --card: #ffffff;
  --line: #dbe7de;
  --muted: #5f7183;
  --star: #e8a426;
  --pine: #0f2e20;          /* футер — тёмная хвоя */
  --pine-soft: #b9d6c4;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(20, 53, 103, .09);
  --shadow-hover: 0 10px 26px rgba(20, 53, 103, .18);
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 65L0 49L0 17L28 1L56 17L56 49L28 65L28 97M0 81L28 97M56 81L28 97' fill='none' stroke='rgba(255,255,255,0.09)' stroke-width='2'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Mulish', 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--frost);
}

h1, h2, h3, h4 { font-family: 'Nunito', 'Segoe UI', Arial, sans-serif; line-height: 1.25; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.btn {
  display: inline-block;
  background: var(--mint);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: 9px;
  border: 0;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--mint-deep); transform: translateY(-1px); }

/* ---------- header ---------- */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--mint);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-name { display: flex; flex-direction: column; line-height: 1.05; gap: 2px; }
.logo-word { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 23px; letter-spacing: -0.01em; line-height: 1; }
.logo-word .lw-fresh { color: var(--blue); }
.logo-word .lw-mint { color: var(--mint); }
.logo-tag { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--mint-deep); font-weight: 600; }
.main-nav { display: flex; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  padding: 8px 11px;
  border-radius: 7px;
}
.main-nav a:hover { background: var(--frost); color: var(--blue-deep); }
.main-nav a.active { color: var(--mint-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

/* ---------- hero v2: текст слева на градиенте, карточка-бестселлер справа, волна снизу ---------- */
.hero {
  position: relative;
  background: var(--hex), linear-gradient(108deg, var(--blue-deep) 0%, #1d6a8a 46%, var(--mint) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 48px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 96px;
}
.hero .eyebrow { color: #b5f0c6; }
.hero h1 { font-size: 44px; font-weight: 800; margin: 10px 0 14px; text-shadow: 0 2px 14px rgba(12, 40, 80, .35); }
.hero-sub { font-size: 17.5px; color: #e2eefc; max-width: 540px; margin-bottom: 26px; }
.hero-ctas { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-alt { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14.5px; color: #fff; border-bottom: 2px solid rgba(255, 255, 255, .45); padding-bottom: 2px; }
.hero-alt:hover { border-bottom-color: #fff; }
.hero-counts { list-style: none; display: flex; gap: 34px; flex-wrap: wrap; }
.hero-counts li { border-left: 3px solid rgba(255, 255, 255, .35); padding-left: 12px; }
.hero-counts b { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 24px; line-height: 1.2; }
.hero-counts span { font-size: 13px; color: #cfe6db; }
.hero-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(10, 35, 70, .35);
  padding: 18px 18px 20px;
  color: var(--ink);
  transform: rotate(2deg);
  transition: transform .2s;
  max-width: 330px;
  margin-left: auto;
}
.hero-card:hover { transform: rotate(0deg) translateY(-3px); }
.hero-card-flag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.hero-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.hero-card-name { display: block; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px; margin-top: 10px; }
.hero-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 42px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60L0 30C150 55 350 5 600 22C850 39 1050 12 1200 32L1200 60Z' fill='%23f2f8f4'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}

/* ---------- бегущая строка фактов ---------- */
.ticker { background: var(--navy); color: #d7e6f8; overflow: hidden; padding: 11px 0; }
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 36s linear infinite; }
.ticker-track span {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .05em;
  white-space: nowrap;
  padding: 0 18px;
  position: relative;
}
.ticker-track span::after { content: ''; position: absolute; right: -2px; top: 50%; margin-top: -2px; width: 4px; height: 4px; border-radius: 50%; background: var(--mint); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- «полка» категорий ---------- */
.shelf { padding: 56px 22px 10px; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head h2 { font-size: 31px; color: var(--blue-deep); }
.section-head p { color: var(--muted); margin-top: 6px; }
.shelf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.shelf-tile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.shelf-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--mint); }
.shelf-thumb {
  flex-shrink: 0;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #eaf6ee, #d5ecdc);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.shelf-thumb img { width: 82%; height: 82%; object-fit: contain; }
.shelf-info h3 { font-size: 19px; color: var(--ink); }
.shelf-desc { font-size: 14px; color: var(--muted); line-height: 1.45; margin: 4px 0 8px; }
.shelf-count { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--mint-deep); }
.shelf-tile:hover .shelf-count { color: var(--mint); }

/* ---------- spotlight v2: тёмная лента с водяной цифрой ---------- */
.spot2 {
  background: var(--hex), linear-gradient(120deg, var(--navy) 0%, var(--blue-deep) 55%, #17635a 100%);
  color: #fff;
  margin-top: 54px;
  padding: 58px 0;
}
.spot2-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 46px; align-items: center; }
.spot2-media { position: relative; }
.spot2-num {
  position: absolute;
  top: -34px; left: -12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, .12);
  z-index: 0;
  pointer-events: none;
}
.spot2-media img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 1; object-fit: contain;
  background: #fff; border-radius: 16px; padding: 26px;
  box-shadow: 0 16px 40px rgba(8, 30, 60, .4);
}
.spot2 .eyebrow { color: #9fe8b5; }
.spot2-body h2 { font-size: 28px; margin: 6px 0 12px; }
.spot2-intro { color: #d5e4f6; margin-bottom: 16px; }
.spot2-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.spot2-meta .price { color: #fff; font-size: 26px; }
.spot2-meta .rcount { color: #b9cde6; }
.spot2-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.spot2-link { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: #9fe8b5; }
.spot2-link:hover { color: #fff; }

/* ---------- catalog / карточки v2 ---------- */
.catalog { padding: 52px 22px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--mint); }
.card-link { display: flex; flex-direction: column; flex: 1; }
.card-img {
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 42%, #ffffff 58%, #edf6f0 100%);
  padding: 18px;
  position: relative;
}
.card-img img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.card-count {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--blue-deep);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 20px;
}
.card-body { padding: 14px 16px 8px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.card-title { font-size: 15.5px; font-weight: 600; color: var(--ink); font-family: 'Mulish', sans-serif; }
.card-short { font-size: 13.5px; line-height: 1.45; color: var(--muted); margin-bottom: 4px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.price { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 18.5px; color: var(--blue-deep); }
.card-meta .price { background: #e8f5ec; color: var(--mint-deep); padding: 2px 10px; border-radius: 8px; font-size: 16.5px; }
.stars .star { color: #d4ddd6; font-size: 14px; }
.stars .star.on { color: var(--star); }
.rcount { color: var(--muted); font-size: 13px; margin-left: 4px; }
.card .btn-buy {
  margin: 10px 0 0;
  border-radius: 0;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  background: var(--blue-deep);
}
.card .btn-buy:hover { background: var(--mint-deep); transform: none; }

/* ---------- линейка форматов (ruler) ---------- */
.ruler { padding: 54px 22px 14px; }
.ruler-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 34px 26px 24px;
}
.ruler-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink); min-width: 88px; }
.ruler-bar {
  width: 42px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--mint) 0%, var(--blue) 130%);
  position: relative;
  transition: transform .18s;
}
.ruler-bar::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 8px;
  border-radius: 4px 4px 0 0;
  background: var(--navy);
}
.ruler-item:hover .ruler-bar { transform: scaleY(1.05); transform-origin: bottom; }
.ruler-item b { font-family: 'Nunito', sans-serif; font-size: 15px; }
.ruler-item span { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.3; }

/* ---------- полоса цифр v2 — светлая ---------- */
.stats2 { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 48px; padding: 38px 0; }
.stats2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stats2 .stat { border-left: 1px solid var(--line); padding: 4px 16px; }
.stats2 .stat:first-child { border-left: 0; }
.stat-num { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 36px; color: var(--blue-deep); line-height: 1.15; }
.stat-num i { font-style: normal; color: var(--mint); }
.stat-label { display: block; font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* ---------- аудитории ---------- */
.who { padding: 54px 22px 10px; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}
.who-card::after {
  content: '';
  position: absolute;
  right: -22px; bottom: -26px;
  width: 84px; height: 84px;
  background: radial-gradient(circle, rgba(39, 164, 74, .12), transparent 70%);
  border-radius: 50%;
}
.who-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}
.who-card h3 { font-size: 16.5px; margin-bottom: 6px; color: var(--blue-deep); }
.who-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- case math ---------- */
.math-band { padding: 54px 22px 10px; }
.math-inner {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #eef7f1 100%);
  border: 1px solid var(--line);
  border-left: 6px solid var(--mint);
  border-radius: 14px;
  padding: 34px 34px;
}
.math-intro h2 { font-size: 26px; color: var(--blue-deep); margin-bottom: 10px; }
.math-intro p { font-size: 15px; color: var(--muted); }
.math-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.math-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 18px 16px;
  color: var(--ink);
  text-align: center;
  transition: border-color .18s, box-shadow .18s;
}
.math-card:hover { border-color: var(--mint); box-shadow: var(--shadow); }
.math-per { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 27px; color: var(--mint-deep); }
.math-unit { display: block; font-size: 13px; color: var(--muted); margin: 2px 0 10px; }
.math-case { display: block; font-size: 12.5px; color: var(--ink); border-top: 1px dashed var(--line); padding-top: 8px; }

/* ---------- kit-шаги v2 — таймлайн ---------- */
.kit-steps { padding: 54px 22px 10px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px; left: 12%; right: 12%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--mint) 0 12px, transparent 12px 22px);
}
.step { display: block; text-align: center; padding: 0 12px; color: var(--ink); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  background: var(--blue);
  color: #fff;
  border: 4px solid var(--frost);
  border-radius: 50%;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 19px;
  position: relative; z-index: 1;
  transition: background .18s, transform .18s;
}
.step:hover .step-num { background: var(--mint); transform: scale(1.08); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin-bottom: 12px; }
.step-go { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--mint-deep); }
.step:hover .step-go { color: var(--mint); }

/* ---------- mission ---------- */
.mission-band { padding: 60px 0 40px; text-align: center; }
.mission-band h2 { font-size: 27px; color: var(--blue-deep); max-width: 780px; margin: 0 auto 14px; }
.mission-band p { color: var(--muted); max-width: 720px; margin: 0 auto; }

/* ---------- лента баннера стора ---------- */
.brand-band { padding: 10px 22px 50px; }
.brand-band img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- seo content ---------- */
.seo-content { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.seo-content h2 { font-size: 26px; color: var(--blue-deep); margin-bottom: 16px; }
.seo-content h3 { font-size: 19px; color: var(--blue-deep); margin: 26px 0 10px; }
.seo-content p { margin-bottom: 12px; color: #3c4f66; }
.seo-content ul { margin: 10px 0 14px 22px; color: #3c4f66; }
.seo-content li { margin-bottom: 6px; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.seo-content th, .seo-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.seo-content th { background: var(--frost); font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--blue-deep); }

/* ---------- разбор рейтингов v2 ---------- */
.testimonials { padding: 56px 0 68px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 24px 22px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; right: 18px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(39, 164, 74, .18);
}
.testi-stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-bottom: 8px; }
.testi-figure { display: inline-block; background: var(--frost); border-radius: 20px; padding: 3px 12px; font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--blue-deep); font-size: 13px; margin-bottom: 10px; }
.testi-card p { font-size: 15px; color: #3c4f66; }
.testi-name { margin-top: 12px; font-weight: 600; }
.testi-name a { color: var(--ink); border-bottom: 1px solid rgba(28, 53, 87, .3); }
.testi-name a:hover { color: var(--mint-deep); border-bottom-color: var(--mint-deep); }

/* ---------- page hero (category / info) ---------- */
.page-hero {
  background: var(--hex), linear-gradient(115deg, var(--blue-deep), #1d6a8a 58%, var(--mint));
  color: #fff;
  padding: 52px 0 48px;
}
.page-hero h1 { font-size: 36px; margin: 8px 0 10px; }
.page-hero .eyebrow { color: #9fe8b5; }
.page-hero-sub { color: #d9e8f8; max-width: 640px; }

/* ---------- PDP v2 ---------- */
.pdp-top { background: #fff; border-bottom: 1px solid var(--line); }
.pdp-top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
.breadcrumb { font-size: 14px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--mint-deep); }
.pdp-cat-chip {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mint-deep);
  background: #e8f5ec;
  border-radius: 20px;
  padding: 4px 14px;
}
.product { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 34px 22px 50px; }
.product-media {
  background: radial-gradient(circle at 50% 40%, #ffffff 55%, #e9f4ec 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 92px;
}
.media-count {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--blue-deep);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 5px 13px;
  border-radius: 20px;
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info h1 { font-size: 24px; margin: 4px 0 10px; color: var(--ink); }
.product-meta { margin-bottom: 10px; }
.pdp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pdp-badge {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 12px;
}
.pdp-badge::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); margin-right: 7px; vertical-align: 1px; }
.buy-box {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--mint);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 18px;
  max-width: 440px;
}
.buy-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.product-price { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 31px; color: var(--blue-deep); }
.buy-per { font-size: 13.5px; color: var(--mint-deep); font-weight: 600; }
.buy-box .btn-buy { display: block; text-align: center; padding: 14px 20px; font-size: 16px; }
.buy-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
.glance { display: flex; gap: 0; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 18px; max-width: 440px; background: #fff; }
.glance div { flex: 1; min-width: 90px; text-align: center; padding: 10px 8px; border-left: 1px solid var(--line); }
.glance div:first-child { border-left: 0; }
.glance b { display: block; font-family: 'Nunito', sans-serif; font-size: 15.5px; color: var(--blue-deep); }
.glance span { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.product-intro { color: #3c4f66; font-size: 16.5px; }

/* авторские блоки товара v2 — нумерованный список */
.product-detail { padding: 0 22px 14px; }
.feats { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 34px; }
.feat { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; padding: 22px 0; border-top: 1px dashed var(--line); }
.feat:first-child { border-top: 0; }
.feat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.feat h2 { font-size: 17px; color: var(--blue-deep); margin-bottom: 6px; }
.feat p { color: #3c4f66; font-size: 15px; }

/* ---------- info pages ---------- */
.info-page { padding: 46px 0 64px; }
.info-page .wrap { max-width: 820px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.info-page h2 { color: var(--blue-deep); font-size: 21px; margin: 24px 0 10px; }
.info-page h2:first-child { margin-top: 0; }
.info-page h3 { color: var(--blue-deep); font-size: 17px; margin: 18px 0 8px; }
.info-page p { margin-bottom: 12px; color: #3c4f66; }
.info-page ul, .info-page ol { margin: 10px 0 14px 22px; color: #3c4f66; }
.info-page li { margin-bottom: 6px; }
.info-page table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.info-page th, .info-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.info-page th { background: var(--frost); font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--blue-deep); }
.info-page a { color: var(--mint-deep); }

/* ---------- CTA-лента перед футером ---------- */
.cta-band { background: var(--hex), linear-gradient(115deg, var(--mint-deep), var(--mint) 60%, #2ba0c2); color: #fff; padding: 46px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-band h2 { font-size: 26px; margin-bottom: 6px; }
.cta-sub { color: #e2f7e9; font-size: 15.5px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--mint-deep); }
.btn-light:hover { background: #e8f7ed; color: var(--mint-deep); }
.btn-ghost { background: transparent; border: 2px solid rgba(255, 255, 255, .7); padding: 11px 30px; }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); }

/* ---------- footer v2: тёмная хвоя, контакт-чипы сверху, карточка партнёров ---------- */
.site-footer { background: var(--pine); color: var(--pine-soft); font-size: 14.5px; }
.foot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 34px 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.foot-brand { display: flex; flex-direction: column; gap: 2px; }
.foot-brand .logo-word { font-size: 24px; }
.foot-brand .lw-fresh { color: #9cc2f0; }
.foot-brand .lw-mint { color: #7fd89b; }
.foot-brand .tagline { color: #7fd89b; font-family: 'Nunito', sans-serif; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.foot-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.f-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 13px;
  color: #dcebe2;
}
.f-chip b { font-family: 'Nunito', sans-serif; font-weight: 700; color: #fff; }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1.3fr; gap: 30px; padding: 32px 22px 28px; }
.foot-col h3 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.foot-col h3::after { content: ''; display: block; width: 26px; height: 3px; background: var(--mint); border-radius: 2px; margin-top: 6px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: var(--pine-soft); }
.foot-col a:hover { color: #7fd89b; }
.foot-count {
  display: inline-block;
  background: rgba(255, 255, 255, .1);
  color: #9dbfab;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 20px;
  margin-left: 4px;
}
.foot-text { font-size: 14px; line-height: 1.55; }
.f-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 18px 20px;
  align-self: start;
}
.f-card h3 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.f-card p { font-size: 13px; color: #b5d2c1; line-height: 1.5; margin-bottom: 12px; }
.f-card .pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  padding: 3px 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 11.5px;
  color: #cfe4d8;
}
.foot-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 22px 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8fb39d;
  font-size: 13px;
}
.foot-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-legal a { color: #8fb39d; }
.foot-legal a:hover { color: #7fd89b; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .shelf-grid { grid-template-columns: 1fr; }
  .who-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 48px; padding-bottom: 78px; }
  .hero-card { margin-left: 0; transform: none; }
  .spot2-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats2-grid { grid-template-columns: repeat(2, 1fr); }
  .stats2 .stat { border-left: 0; padding: 10px 12px; }
  .math-inner { grid-template-columns: 1fr; padding: 26px 24px; }
  .math-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .product { grid-template-columns: 1fr; }
  .product-media { position: static; }
  .feats { padding: 6px 20px; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-hover);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 11px 10px; font-size: 16px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 27px; }
  .hero-sub { font-size: 16px; }
  .hero-counts { gap: 20px; }
  .hero-counts b { font-size: 20px; }
  .section-head h2 { font-size: 25px; }
  .page-hero h1 { font-size: 28px; }
  .shelf-tile { flex-direction: column; text-align: center; }
  .shelf-info h3 { font-size: 17px; }
  .ruler-row { gap: 14px; padding: 28px 14px 20px; }
  .ruler-item { min-width: 72px; }
  .ruler-bar { width: 32px; }
  .spot2-num { font-size: 84px; top: -22px; }
  .spot2-body h2 { font-size: 22px; }
  .stat-num { font-size: 28px; }
  .cta-band h2 { font-size: 22px; }
  .foot-main { grid-template-columns: 1fr; gap: 26px; }
  .foot-head { flex-direction: column; align-items: flex-start; }
  .foot-base { flex-direction: column; align-items: flex-start; }
  .info-page .wrap { padding: 28px 20px; }
  .info-page table { display: block; overflow-x: auto; white-space: nowrap; }
  .info-page td { white-space: normal; min-width: 150px; }
  .product-price { font-size: 26px; }
  .feat { grid-template-columns: 1fr; gap: 10px; }
  .logo-word { font-size: 20px; }
  .logo-tag { display: none; }
}
