/* =========================================================
   ХимЗона — стили лендинга
   Палитра построена на цветах логотипа HIMZONA.kz:
   чёрный + фирменный красный + белый.
   ========================================================= */

/* SVG-спрайт с иконками в <defs> не должен рендериться сам по себе */
.sprite { display: none; }

:root {
  --color-ink: #121214;          /* основной текст, тёмные фоны */
  --color-black: #0a0a0b;        /* самый тёмный фон (hero, footer) */
  --color-charcoal: #1b1c1f;     /* карточки/панели на тёмном фоне */
  --color-charcoal-light: #26272b;

  --color-red: #e2211c;          /* фирменный акцент из логотипа */
  --color-red-dark: #b6180f;
  --color-red-light: #fdeceb;    /* нежно-красная плашка под иконки */

  --color-white: #ffffff;
  --color-bg: #f8f8f7;           /* тёплый белый фон светлых секций */
  --color-bg-alt: #f1f1ef;
  --color-muted: #6b6b70;
  --color-muted-light: #9a9a9e;
  --color-border: #e7e6e4;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(10, 10, 11, 0.08);
  --shadow-lg: 0 26px 60px rgba(10, 10, 11, 0.16);
  --container: 1180px;
  --header-h: 80px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-white);
  line-height: 1.6;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.2;
  color: var(--color-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--color-muted); }

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

ul { padding: 0; margin: 0; list-style: none; }

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

/* ============== ИКОНКИ ============== */
.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.icon--sm { width: 18px; height: 18px; }
.icon--xs { width: 12px; height: 12px; }

/* ============== БАЗОВЫЕ КНОПКИ ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

/* ============== ПОЯВЛЕНИЕ ПРИ СКРОЛЛЕ ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.services__grid > .reveal:nth-child(1) { transition-delay: .02s; }
.services__grid > .reveal:nth-child(2) { transition-delay: .08s; }
.services__grid > .reveal:nth-child(3) { transition-delay: .14s; }
.services__grid > .reveal:nth-child(4) { transition-delay: .2s; }
.services__grid > .reveal:nth-child(5) { transition-delay: .26s; }
.services__grid > .reveal:nth-child(6) { transition-delay: .32s; }
.services__grid > .reveal:nth-child(7) { transition-delay: .38s; }

.tariff-grid > .reveal:nth-child(1) { transition-delay: .02s; }
.tariff-grid > .reveal:nth-child(2) { transition-delay: .1s; }
.tariff-grid > .reveal:nth-child(3) { transition-delay: .18s; }

.advantages__grid > .reveal:nth-child(1) { transition-delay: .02s; }
.advantages__grid > .reveal:nth-child(2) { transition-delay: .09s; }
.advantages__grid > .reveal:nth-child(3) { transition-delay: .16s; }
.advantages__grid > .reveal:nth-child(4) { transition-delay: .23s; }

.reviews__grid > .reveal:nth-child(1) { transition-delay: .02s; }
.reviews__grid > .reveal:nth-child(2) { transition-delay: .1s; }
.reviews__grid > .reveal:nth-child(3) { transition-delay: .18s; }
.reviews__grid > .reveal:nth-child(4) { transition-delay: .26s; }
.reviews__grid > .reveal:nth-child(5) { transition-delay: .34s; }
.reviews__grid > .reveal:nth-child(6) { transition-delay: .42s; }

.product-grid > .reveal:nth-child(1) { transition-delay: .02s; }
.product-grid > .reveal:nth-child(2) { transition-delay: .07s; }
.product-grid > .reveal:nth-child(3) { transition-delay: .12s; }
.product-grid > .reveal:nth-child(4) { transition-delay: .17s; }
.product-grid > .reveal:nth-child(5) { transition-delay: .22s; }
.product-grid > .reveal:nth-child(6) { transition-delay: .27s; }
.product-grid > .reveal:nth-child(7) { transition-delay: .32s; }
.product-grid > .reveal:nth-child(8) { transition-delay: .37s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-actions__btn--whatsapp { animation: none; }
}

.btn--accent {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(226, 33, 28, 0.35);
}
.btn--accent:hover { background: var(--color-red-dark); }

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
}
.btn--ghost:hover { background: var(--color-ink); color: var(--color-white); }

.btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn--outline-light:hover { background: rgba(255,255,255,.15); }

.btn--light {
  background: var(--color-white);
  color: var(--color-red);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn--light:hover { background: var(--color-bg); }

.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============== ШАПКА ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-border);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px 24px;
  padding-block: 10px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 30px; width: auto; }
.logo--chip {
  background: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}
.logo--chip .logo__img { height: 26px; }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  flex-shrink: 1;
  margin-left: 16px;
}
.nav a {
  display: inline-flex;
  align-items: center;
  background: var(--color-red-light);
  border: 1px solid rgba(226, 33, 28, .16);
  border-radius: 10px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-red-dark);
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 33, 28, .3);
}

.header__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  margin-left: auto;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-ink);
  white-space: nowrap;
  transition: color .15s ease;
}
.header__phone:hover { color: var(--color-red); }
.header__phone .icon { color: var(--color-red); width: 18px; height: 18px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 20px 24px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a:not(.btn) { font-weight: 700; color: var(--color-ink); padding: 6px 0; transition: color .2s ease; }
.mobile-nav a:not(.btn):hover,
.mobile-nav a:not(.btn):active { color: var(--color-red); }
.mobile-nav__phone { color: var(--color-red) !important; font-weight: 700; }

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-black) 0%, #131315 55%, #1a1a1c 100%);
  color: var(--color-white);
  padding: 72px 0 96px;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 30% 20%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__blob--1 {
  width: 460px; height: 460px;
  background: var(--color-red);
  opacity: .18;
  top: -180px; right: -140px;
}
.hero__blob--2 {
  width: 360px; height: 360px;
  background: var(--color-red);
  opacity: .08;
  bottom: -160px; left: -120px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 20px;
}
.badge .icon { color: var(--color-red); }

.hero__content h1 {
  color: var(--color-white);
  font-size: 44px;
  max-width: 620px;
  margin-bottom: 18px;
}

.hero__subtitle {
  color: rgba(255,255,255,.68);
  font-size: 17px;
  max-width: 560px;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 12px 14px;
  transition: background .15s ease, border-color .15s ease;
}
.hero__points li:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  flex-shrink: 0;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- форма в hero ---- */
.hero__form-wrap { position: relative; }

.form-standalone { max-width: 480px; margin: 0 auto; }

.request-form {
  background: var(--color-white);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.request-form h3 { margin-bottom: 2px; }
.request-form__hint { margin-bottom: 6px; font-size: 14px; }
.request-form__note { margin: -6px 0 0; font-size: 12.5px; text-align: center; color: var(--color-muted-light); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--color-ink); }

.field input,
.field select {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-ink);
  background: var(--color-white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(226, 33, 28, 0.15);
}
.field.has-error input,
.field.has-error select { border-color: var(--color-red-dark); }

.field__error {
  min-height: 16px;
  font-size: 12.5px;
  color: var(--color-red-dark);
  font-weight: 600;
}

.field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
}
.field--checkbox input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-red); }
.field--checkbox a { color: var(--color-ink); font-weight: 700; text-decoration: underline; }

.form__success {
  margin-top: 4px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-red-light);
  color: var(--color-red-dark);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

/* ============== ОБЩИЙ ЗАГОЛОВОК СЕКЦИИ ============== */
.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head--light h2 { color: var(--color-white); }
.section-head--light p { color: rgba(255,255,255,.6); }

.section-eyebrow {
  display: inline-block;
  color: var(--color-red);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12.5px;
  margin-bottom: 12px;
}

.section-head h2 { font-size: 32px; }

/* ============== УСЛУГИ ============== */
.services { padding: 96px 0; background: var(--color-white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.service-card {
  display: block;
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--color-border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-red);
  background: var(--color-white);
}
.service-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: background .2s ease, color .2s ease;
}
.service-card:hover .service-card__icon {
  background: var(--color-red);
  color: var(--color-white);
}
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; margin: 0; }
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-red);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.service-card--link:hover .service-card__more { opacity: 1; transform: none; }

/* ============== ЦЕНЫ / ПРАЙС-ЛИСТ ============== */
.pricing { position: relative; overflow: hidden; padding: 96px 0; background: var(--color-bg); }
.pricing::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 33, 28, .09), transparent 72%);
  pointer-events: none;
}

.tariff-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.tariff-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tariff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--color-red); }
.tariff-card--featured { border-color: var(--color-red); box-shadow: var(--shadow); }
.tariff-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 14px;
  margin-bottom: 18px;
}
.tariff-card__badge {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tariff-card h3 { font-size: 20px; margin-bottom: 6px; }
.tariff-card__rule {
  color: var(--color-red);
  font-weight: 800;
  font-size: 14.5px;
  margin: 0 0 10px;
}
.tariff-card__desc { font-size: 14.5px; margin-bottom: 16px; }
.tariff-card__list { display: grid; gap: 10px; font-size: 14.5px; color: var(--color-ink); }
.tariff-card__list li { display: flex; align-items: flex-start; gap: 9px; }
.check-icon--sm { width: 18px; height: 18px; margin-top: 1px; }

.price-note {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--color-muted);
  margin-bottom: 36px;
}
.price-note--warning {
  background: var(--color-red-light);
  border-color: rgba(226, 33, 28, .25);
  color: var(--color-ink);
}
.price-note--top { margin-top: 8px; }
.price-note strong { color: var(--color-red-dark); }

/* ============== ПРЕИМУЩЕСТВА ============== */
.advantages {
  background: var(--color-black);
  padding: 96px 0;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.advantage-card {
  background: var(--color-charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.advantage-card:hover { border-color: var(--color-red); transform: translateY(-4px); }
.advantage-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(226, 33, 28, 0.12);
  color: var(--color-red);
  border-radius: 50%;
}
.advantage-card h3 { color: var(--color-white); font-size: 17px; margin-bottom: 8px; }
.advantage-card p { color: rgba(255,255,255,.56); font-size: 14px; margin: 0; }

/* ============== ОТЗЫВЫ ============== */
.reviews { padding: 96px 0; background: var(--color-bg); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.review-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px 30px 28px;
}
.review-card__quote {
  position: absolute;
  top: 12px;
  left: 24px;
  font-size: 64px;
  font-weight: 800;
  color: var(--color-red-light);
  line-height: 1;
  font-family: Georgia, serif;
}
.review-card__text {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-ink);
  margin-bottom: 20px;
}
.review-card__author { display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-weight: 800; font-size: 15px; color: var(--color-ink); }
.review-card__service { font-size: 13px; color: var(--color-muted-light); }

/* ============== CTA-БАННЕР ============== */
.cta-banner {
  background: var(--color-red);
  padding: 52px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--color-white); font-size: 27px; margin-bottom: 4px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============== ПОДВАЛ ============== */
.footer { background: var(--color-black); color: rgba(255,255,255,.65); }

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 68px 0 40px;
}

.footer__col--brand .logo--chip { display: inline-flex; }
.footer__col--brand p { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 16px; }

.footer h4 { color: var(--color-white); font-size: 14px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }

.footer__list { display: grid; gap: 12px; font-size: 14.5px; }
.footer__list li { display: flex; align-items: center; gap: 9px; }
.footer__list .icon { color: var(--color-red); }
.footer__list a { display: flex; align-items: center; gap: 9px; }
.footer__list a:hover { color: var(--color-white); }

.payment-badges { display: grid; gap: 10px; }
.payment-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 9px 14px;
  transition: border-color .15s ease, background .15s ease;
}
.payment-badge:hover { border-color: var(--color-red); background: rgba(255,255,255,.09); }
.payment-badge .icon { color: var(--color-red); flex-shrink: 0; }

.footer-map {
  position: relative;
  height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--color-charcoal);
}
.footer-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.footer-map__caption { margin: 10px 0 0; font-size: 12.5px; color: rgba(255,255,255,.55); }

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.city-chips li {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 13px;
}

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer__policy-link { transition: color .15s ease; }
.footer__policy-link:hover { color: rgba(255,255,255,.8); }

/* ============== ПЛАВАЮЩИЕ КНОПКИ СВЯЗИ ============== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.floating-actions__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(10, 10, 11, 0.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.floating-actions__btn .icon { width: 27px; height: 27px; }
.floating-actions__btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 34px rgba(10, 10, 11, 0.38);
}
.floating-actions__btn--call { background: var(--color-red); }
.floating-actions__btn--whatsapp { background: #25d366; }

@keyframes floating-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45), 0 12px 28px rgba(10, 10, 11, 0.3); }
  50% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0), 0 12px 28px rgba(10, 10, 11, 0.3); }
}
.floating-actions__btn--whatsapp { animation: floating-pulse 2.6s ease-out infinite; }
.floating-actions__btn--whatsapp:hover { animation-play-state: paused; }

/* ============== ИНФОРМАЦИОННЫЕ СТРАНИЦЫ (дезинсекция, товары, клининг) ============== */
.info-hero { padding: 56px 0 40px; background: var(--color-black); color: var(--color-white); }
.info-back { display: inline-block; color: rgba(255,255,255,.6); font-size: 14px; font-weight: 700; margin-bottom: 20px; transition: color .15s ease; }
.info-back:hover { color: var(--color-white); }
.info-hero h1 { color: var(--color-white); font-size: 34px; max-width: 760px; margin-bottom: 16px; }
.info-hero__lead { color: rgba(255,255,255,.65); max-width: 720px; font-size: 15.5px; margin-bottom: 28px; }

.info-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.info-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .15s ease, border-color .15s ease;
}
.info-nav a:hover { background: var(--color-red); border-color: var(--color-red); }
.info-nav .icon { color: var(--color-red); transition: color .15s ease; }
.info-nav a:hover .icon { color: var(--color-white); }

.info-section { padding: 72px 0; background: var(--color-white); }
.info-section--alt { background: var(--color-bg); }

.info-section__head { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 36px; }
.info-section__icon {
  width: 60px; height: 60px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 16px;
}
.info-section__head h2 { font-size: 26px; margin-bottom: 8px; }
.info-section__head p { font-size: 15px; max-width: 760px; margin: 0; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}
.info-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 24px; }
.info-card h3 { font-size: 16px; margin-bottom: 14px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--color-red); }
.product-card__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--color-bg-alt); }
.product-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card__tag {
  align-self: flex-start;
  background: var(--color-red-light);
  color: var(--color-red-dark);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product-card h3 { font-size: 17px; margin-bottom: 6px; }
.product-card__body > p { font-size: 14px; margin-bottom: 12px; }
.product-card__specs { display: grid; gap: 8px; font-size: 13.5px; color: var(--color-ink); margin-bottom: 16px; }
.product-card__specs li { position: relative; padding-left: 18px; }
.product-card__specs li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-red);
}
.product-card__cta {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-red);
  transition: color .15s ease;
}
.product-card:hover .product-card__cta { color: var(--color-red-dark); }

.info-card--empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  border: 1.5px dashed var(--color-border);
}
.info-card--empty .info-section__icon { margin: 0 auto 20px; }
.info-card--empty h2 { font-size: 22px; margin-bottom: 10px; }
.info-card--empty p { margin-bottom: 24px; }
.info-card__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table td { padding: 9px 0; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.info-table td:first-child { color: var(--color-muted); padding-right: 12px; width: 46%; }
.info-table td:last-child { font-weight: 700; color: var(--color-ink); }
.info-table tr:last-child td { border-bottom: none; }

.info-list { display: grid; gap: 10px; font-size: 14px; color: var(--color-ink); }
.info-list li { position: relative; padding-left: 20px; }
.info-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-red);
}
.info-list--ol { counter-reset: info-step; }
.info-list--ol li { padding-left: 28px; }
.info-list--ol li::before {
  content: counter(info-step);
  counter-increment: info-step;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  top: -1px;
}

.legal-text { max-width: 760px; margin: 0 auto; }
.legal-text h2 { font-size: 20px; margin: 40px 0 14px; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text p { font-size: 15px; line-height: 1.7; }
.legal-text .info-list { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.legal-contacts { margin-top: 4px; }

.info-faq__title { font-size: 19px; margin-bottom: 16px; }
.info-faq__title--center { text-align: center; }
.faq { display: grid; gap: 10px; }
.faq--narrow { max-width: 760px; margin: 0 auto; }
.faq__item { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 4px 18px; }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; color: var(--color-red); font-weight: 800; font-size: 18px; flex-shrink: 0; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { padding: 0 0 16px; margin: 0; font-size: 14px; color: var(--color-muted); }

/* =========================================================
   АДАПТИВНОСТЬ
   ========================================================= */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content h1 { font-size: 34px; max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .header__phone { display: none; }
  .burger { display: flex; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .logo__img { height: 24px; }
  .hero { padding: 44px 0 64px; }
  .hero__content h1 { font-size: 28px; }
  .hero__points { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 26px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; padding: 52px 0 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .btn--lg { padding: 13px 22px; font-size: 15px; }
  .floating-actions { right: 14px; bottom: 16px; gap: 12px; }
  .floating-actions__btn { width: 50px; height: 50px; }
  .floating-actions__btn .icon { width: 23px; height: 23px; }
  .info-hero h1 { font-size: 26px; }
  .info-section__head { flex-direction: column; }
}
