:root {
  --orange: #FF7A1A;
  --orange-dark: #E5650D;
  --red: #E63946;
  --red-dark: #C72A38;
  --green: #2BAA3F;
  --green-dark: #1E8B30;
  --ink: #1A1A1A;
  --ink-soft: #555;
  --bg: #FFFFFF;
  --bg-soft: #FFF8F2;
  --border: #ECECEC;
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .8; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; }
.logo__img { height: 44px; width: auto; }
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.nav a:hover { color: var(--orange); }
.header__cta { white-space: nowrap; }
.burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .25s;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,122,26,0.35);
}
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 10px 28px rgba(255,122,26,0.45); }
.btn--outline {
  background: rgba(255,255,255,0.95);
  color: var(--orange);
  border-color: var(--orange);
}
.btn--outline:hover { background: var(--orange); color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--big { padding: 18px 40px; font-size: 16px; }
.btn--whatsapp { background: #25D366; color: #fff; padding: 10px 18px; font-size: 13px; }
.btn--whatsapp:hover { background: #1FB855; }
.btn--telegram { background: #229ED9; color: #fff; padding: 10px 18px; font-size: 13px; }
.btn--telegram:hover { background: #1B86B9; }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.hero--image {
  display: block;
  line-height: 0;
}
.hero__image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.hero__hit {
  position: absolute;
  bottom: 6.5%;
  width: 22%;
  height: 6.5%;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
  transition: background .2s;
}
.hero__hit--left  { left: 28.5%; }
.hero__hit--right { left: 52.0%; }
.hero__hit:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}
.hero__hit:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section { padding: 80px 0; }
.section--white { background: var(--bg); }
.section--soft { background: var(--bg-soft); }
.section__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}
.section__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 40px;
}
.subtitle {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--ink);
}
.subtitle--center { text-align: center; margin-top: 48px; }

.about-text {
  max-width: 820px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
}
.about-text strong { color: var(--ink); }

.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.badge {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(255,122,26,0.3);
}

/* FUNCTIONAL */
.callout {
  background: var(--green);
  color: #fff;
  padding: 24px 32px;
  border-radius: var(--radius);
  max-width: 820px;
  margin: 24px auto 0;
  font-size: 17px;
  text-align: center;
}
.callout strong { color: #fff; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.info-card {
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card--red { border-color: var(--red); }
.info-card--green { border-color: var(--green); }
.info-card__num {
  font-family: 'Russo One', sans-serif;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.info-card--red .info-card__num { color: var(--red); }
.info-card--green .info-card__num { color: var(--green); }
.info-card p { color: var(--ink-soft); font-size: 15px; }

/* WHY */
.tech-list {
  list-style: none;
  max-width: 840px;
  margin: 0 auto;
}
.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.tech-list li:last-child { border: 0; }
.tech-list span {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.tech-list div { flex: 1; font-size: 16px; color: var(--ink); line-height: 1.6; }

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.result-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--border);
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product__img {
  background: linear-gradient(135deg, #FFF8F2 0%, #FFEFE0 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.product:hover .product__img img {
  transform: scale(1.04);
}
.product__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); line-height: 1.3; }
.product__desc { color: var(--ink-soft); font-size: 14px; margin-bottom: 12px; line-height: 1.5; flex: 1; }
.product__meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.product__prices { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.price-opt { background: var(--green); color: #fff; padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; }
.price-retail { background: var(--bg-soft); color: var(--ink); padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; border: 1px solid var(--border); }
.product__actions { display: flex; gap: 8px; }
.product__actions .btn { flex: 1; }

.extra-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.extra-card {
  background: #fff;
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 24px;
}
.extra-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--orange); }
.extra-card p { color: var(--ink-soft); font-size: 14px; margin-bottom: 12px; }
.extra-prices { font-weight: 700; color: var(--ink); font-size: 14px; }

.center-cta { text-align: center; margin-top: 48px; }

/* PRODUCTION */
.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.production-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wholesale-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.wholesale-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.wholesale-card p { color: var(--ink-soft); font-size: 15px; }

/* CONTACTS */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.contact-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-block__label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.contact-block__value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-block__value--small { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.contact-block__value:hover { color: var(--orange); }

.messengers {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 48px;
  flex-wrap: wrap;
}
.messenger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.messenger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-size: 16px;
}
.messenger__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.messenger--tg { background: #229ED9; }
.messenger--wa { background: #25D366; }
.messenger--vk { background: #0077FF; }
.messenger--max { background: linear-gradient(135deg, #6E4AFF, #B14AFF); }

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.place-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 2px solid var(--border);
  display: block;
  transition: border-color .2s, transform .2s;
}
.place-card:hover { border-color: var(--orange); transform: translateY(-4px); opacity: 1; }
.place-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.place-card p { color: var(--ink-soft); font-size: 14px; margin-bottom: 12px; }
.place-card__link { color: var(--orange); font-weight: 700; font-size: 14px; }

/* FOOTER */
.footer {
  background: var(--ink);
  color: #DDD;
  padding: 56px 0 0;
  margin-top: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__logo { height: 48px; background: #fff; padding: 8px 12px; border-radius: 8px; margin-bottom: 16px; }
.footer h5 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer p { color: #BBB; font-size: 14px; line-height: 1.7; }
.footer a { color: #DDD; }
.footer a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* FLOATING BUTTONS */
.float-btn {
  position: fixed;
  right: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .2s;
}
.float-btn:hover { transform: scale(1.08); opacity: 1; }
.float-btn svg {
  width: 26px;
  height: 26px;
  display: block;
}
.float-btn--tg { bottom: 24px;  background: #229ED9; }
.float-btn--wa { bottom: 92px;  background: #25D366; }
.float-btn--vk { bottom: 160px; background: #0077FF; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px 24px; gap: 14px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .header__cta { display: none; }
  .burger { display: block; }
  .hero { min-height: auto; }
  .hero__content { padding: 0; }
  .hero__buttons { gap: 10px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .btn--big { padding: 14px 28px; font-size: 14px; }

  /* ОТСТУПЫ СЕКЦИЙ — компактнее на мобильных */
  .section { padding: 36px 0; }
  .section__title { font-size: clamp(24px, 6vw, 32px); margin-bottom: 10px; }
  .section__subtitle { font-size: 15px; margin-bottom: 24px; }
  .subtitle { font-size: 20px; margin: 24px 0 12px; }
  .subtitle--center { margin-top: 28px; }
  .about-text { font-size: 15px; line-height: 1.55; margin-bottom: 12px; }
  .badges { margin-top: 20px; gap: 8px; }
  .badge { font-size: 12px; padding: 10px 20px; }
  .callout { padding: 16px 20px; font-size: 15px; margin-top: 16px; }

  /* СЕТКИ */
  .cards-3 { grid-template-columns: 1fr; gap: 12px; }
  .cards-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .extra-products { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
  .production-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .wholesale-grid { grid-template-columns: 1fr; gap: 12px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
  .places-grid { grid-template-columns: 1fr; gap: 12px; }
  .messengers { gap: 10px; margin: 20px 0 28px; }
  .center-cta { margin-top: 24px; }

  /* КАРТОЧКИ — компактнее */
  .info-card { padding: 20px 16px; }
  .info-card__num { font-size: 44px; }
  .result-card { padding: 18px 14px; font-size: 14px; }
  .wholesale-card { padding: 20px 16px; }
  .wholesale-card h4 { font-size: 18px; }
  .extra-card { padding: 18px; }
  .place-card { padding: 18px; }
  .contact-block { padding: 18px; }
  .product__body { padding: 14px 16px 16px; }
  .product__body h3 { font-size: 16px; }
  .product__desc { font-size: 13px; margin-bottom: 8px; }
  .product__meta { font-size: 12px; margin-bottom: 8px; }
  .product__prices { margin-bottom: 12px; gap: 8px; }
  .tech-list li { padding: 14px 0; }

  /* ФУТЕР */
  .footer { padding: 32px 0 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { margin-top: 24px; }

  /* ПЛАВАЮЩИЕ КНОПКИ — компактнее на телефоне */
  .float-btn { width: 48px; height: 48px; right: 14px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-btn--tg { bottom: 16px; }
  .float-btn--wa { bottom: 76px; }
  .float-btn--vk { bottom: 136px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .tech-list li { gap: 14px; padding: 16px 0; }
  .tech-list span { width: 36px; height: 36px; font-size: 15px; }
}

/* ============================================
   СЕКЦИЯ "СОСТАВ БИО ЖЕЛЕ" НА ГЛАВНОЙ
   ============================================ */
.composition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.comp-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.comp-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  opacity: 1;
}
.comp-card__num {
  font-family: 'Russo One', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.comp-card__icon {
  font-size: 40px;
  line-height: 1;
}
.comp-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.comp-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}
.comp-card__arrow {
  font-size: 16px;
  color: var(--orange);
  font-weight: 800;
  margin-top: 6px;
}

/* ============================================
   СТРАНИЦЫ КОМПОНЕНТОВ
   ============================================ */
.component-page {
  padding: 40px 0 80px;
  background: var(--bg);
}
.breadcrumb {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--orange);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; opacity: 1; }
.breadcrumb__sep { margin: 0 8px; color: var(--border); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}
.back-link:hover { gap: 12px; opacity: 1; }

.component-hero {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.component-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.component-subtitle {
  font-size: 16px;
  color: var(--orange);
  font-weight: 700;
}

.component-page h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 36px 0 14px;
  color: var(--ink);
}
.component-page p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 820px;
}
.component-page p strong { color: var(--ink); }

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.benefit-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
}
.benefit-card:nth-child(2n) { border-left-color: var(--red); }
.benefit-card:nth-child(3n) { border-left-color: var(--green); }
.benefit-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.cta-section {
  margin-top: 56px;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-soft), #FFE4D1);
  border-radius: var(--radius);
  text-align: center;
}
.cta-section h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--ink-soft);
  margin: 0 auto 20px;
  max-width: 520px;
}

@media (max-width: 768px) {
  .composition-grid { grid-template-columns: 1fr; gap: 12px; }
  .comp-card { padding: 20px 18px; }
  .benefit-cards { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { padding: 18px 18px; }
  .component-page { padding: 24px 0 48px; }
  .component-hero { margin-bottom: 28px; padding-bottom: 20px; }
  .cta-section { padding: 24px 18px; margin-top: 36px; }
}

/* Инлайн-ссылки внутри текста — Питьевой бювет и т.п. */
.inline-link {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,122,26,0.4);
  transition: color .15s, text-decoration-color .15s;
}
.inline-link:hover {
  color: var(--orange-dark);
  text-decoration-color: var(--orange);
  opacity: 1;
}
.inline-link--strong {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.inline-link--strong:hover {
  color: var(--orange);
  border-bottom-color: var(--orange-dark);
}
.inline-link--strong strong { color: inherit; }
