/* ═══════════════════════════════════════════════════════
   ДезинСПб — style.css
   Общие стили: токены, типографика, шапка, футер, кнопки
   ═══════════════════════════════════════════════════════ */

/* ── ТОКЕНЫ ── */
:root {
  /* Цвета */
  --ink:        #08192b;
  --ink-mid:    #294461;
  --ink-soft:   #56789a;
  --ink-muted:  #8aaac6;
  --ink-faint:  #c5d8ea;

  --sky-0:  #f4f8fd;
  --sky-1:  #e6f1fb;
  --sky-2:  #c2daf5;
  --sky-3:  #8cbde8;

  --blue:      #1769bb;
  --blue-d:    #0f549a;
  --blue-lite: #e6f1fb;
  --blue-deep: #0b1f38;

  --orange:    #f07d1a;
  --orange-d:  #d86b0f;
  --orange-bg: #fff5eb;

  --green:     #1e9e6b;
  --green-bg:  #edf8f3;

  --tg:        #229ED9;
  --tg-h:      #1884b8;

  --white:     #ffffff;
  --border:    rgba(23, 105, 187, .12);
  --border-2:  rgba(23, 105, 187, .07);

  /* Радиусы */
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Тени */
  --sh:    0 3px 16px rgba(8, 25, 43, .08);
  --sh-md: 0 8px 32px rgba(8, 25, 43, .11);
  --sh-lg: 0 20px 60px rgba(8, 25, 43, .14);

  /* Отступы */
  --section-gap: 80px;
  --wrap: 1260px;
  --wrap-pad: 28px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  font-family: 'Geologica', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color .18s; }
a:hover { color: var(--blue-d); }
ul { list-style: none; }

/* ── ШРИФТ ── */
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;500;600;700;900&display=swap');

/* ── ОБЁРТКА ── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* ── СЕКЦИИ ── */
.section { padding: var(--section-gap) 0; }
.section-sm { padding: 48px 0; }

/* ── ТИПОГРАФИКА ── */
.stag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.stag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-3);
  margin-bottom: 20px;
}
.stag-line::before { content: ''; width: 24px; height: 1.5px; background: currentColor; flex-shrink: 0; }

h1 { font-size: clamp(30px, 5vw, 54px); font-weight: 900; line-height: 1.07; letter-spacing: -1.5px; }
h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; line-height: 1.15; letter-spacing: -.8px; }
h3 { font-size: clamp(17px, 2.2vw, 22px); font-weight: 700; line-height: 1.3; letter-spacing: -.3px; }
h4 { font-size: 16px; font-weight: 700; line-height: 1.4; }

.sh-lead { font-size: clamp(15px, 1.8vw, 18px); line-height: 1.72; color: var(--ink-soft); max-width: 600px; margin-top: 14px; }

/* ── КНОПКИ ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .18s, transform .12s, box-shadow .12s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-tg {
  background: var(--tg);
  color: var(--white);
}
.btn-tg:hover { background: var(--tg-h); color: var(--white); box-shadow: 0 8px 28px rgba(34,158,217,.35); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-d); color: var(--white); box-shadow: 0 8px 28px rgba(240,125,26,.3); }

.btn-ghost-dark {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

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

.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-sm svg { width: 16px; height: 16px; }

/* TG icon path */
.tg-svg { fill: currentColor; }

/* ── ШАПКА ── */
header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(8, 25, 43, .06);
}

.hw {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  display: flex;
  align-items: center;
  height: 64px;
  gap: 4px;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 28px;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text { line-height: 1; }
.logo-name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.4px;
  color: var(--ink);
}
.logo-name b { color: var(--blue); }
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: .2px;
  display: block;
  margin-top: 1px;
}

/* Навигация */
.nav { display: flex; flex: 1; align-items: center; }

.ni { position: relative; }

.nl {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 64px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: color .18s;
  text-decoration: none;
}
.nl:hover { color: var(--blue); }
.nl svg { width: 9px; height: 9px; transition: transform .2s; flex-shrink: 0; }
.ni:hover > .nl svg { transform: rotate(180deg); }
.ni:focus-within > .nl svg { transform: rotate(180deg); }

/* Дропдаун */
.drop {
  display: none;
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 8px 0;
  min-width: 260px;
  z-index: 400;
}
.ni:hover .drop,
.ni:focus-within .drop { display: block; }

.drop-lbl {
  padding: 10px 18px 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.drop a {
  display: block;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: background .12s, color .12s;
}
.drop a:hover { background: var(--sky-1); color: var(--blue); }
.drop hr { border: none; border-top: 1px solid var(--border-2); margin: 5px 0; }

/* Header CTA */
.hcta {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tg);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s, transform .12s;
}
.hcta:hover { background: var(--tg-h); color: var(--white); transform: translateY(-1px); }
.hcta svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ── МОБИЛЬНОЕ МЕНЮ ── */
.mob-menu-toggle { display: none; }
.mob-overlay { display: none; }
.mob-drawer { display: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hcta { display: none; }

  .mob-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  .mob-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
  }

  /* Mobile menu drawer */
  .mob-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(8, 25, 43, .55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .mob-overlay.open { opacity: 1; pointer-events: all; }

  .mob-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 90vw);
    background: var(--white);
    z-index: 501;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .mob-drawer.open { transform: translateX(0); }

  .mob-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .mob-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--ink-soft);
  }
  .mob-nav { padding: 12px 0; flex: 1; }
  .mob-nav a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--border-2);
  }
  .mob-nav a:hover { background: var(--sky-1); color: var(--blue); }
  .mob-nav details { border-bottom: 1px solid var(--border-2); }
  .mob-nav summary {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mob-nav summary::-webkit-details-marker { display: none; }
  .mob-nav summary::after { content: '›'; font-size: 18px; color: var(--ink-muted); transition: transform .2s; }
  .mob-nav details[open] summary::after { transform: rotate(90deg); }
  .mob-nav .mob-sub-lbl {
    padding: 8px 20px 3px 32px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .mob-nav details a {
    padding: 9px 20px 9px 32px;
    font-size: 13.5px;
    font-weight: 500;
    border-bottom: none;
    color: var(--ink-mid);
  }
  .mob-cta {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
  }
  .mob-cta .btn { width: 100%; justify-content: center; }
}

/* ── ФУТЕР ── */
footer {
  background: #07111f;
  color: rgba(255, 255, 255, .55);
  padding: 56px 0 0;
}

.fg {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.f-logo-img { width: 38px; height: 38px; object-fit: contain; }
.f-logo-name { font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -.4px; }
.f-logo-name b { color: var(--tg); }

.f-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: 18px;
}
.f-about {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
  max-width: 280px;
}
.f-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tg);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background .18s;
}
.f-tg:hover { background: var(--tg-h); color: var(--white); }
.f-tg svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.fch {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.fch:not(:first-child) { margin-top: 28px; }

.fcl { display: flex; flex-direction: column; gap: 2px; }
.fcl a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color .15s;
}
.fcl a:hover { color: rgba(255,255,255,.85); }

.f-hours {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}

.fb {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--wrap-pad);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fb p { font-size: 12.5px; }
.fb div { display: flex; gap: 20px; }
.fb a { font-size: 12.5px; color: rgba(255,255,255,.4); transition: color .15s; }
.fb a:hover { color: rgba(255,255,255,.7); }

/* Футер адаптив */
@media (max-width: 960px) {
  .fg { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fg { grid-template-columns: 1fr; gap: 0; }
  .fg > div { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .fg > div:last-child { border-bottom: none; }
  .fb { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── ХЛЕБНЫЕ КРОШКИ ── */
.breadcrumb {
  background: var(--sky-0);
  border-bottom: 1px solid var(--border-2);
  padding: 11px 0;
}
.bc-list {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.bc-list li { display: flex; align-items: center; }
.bc-list li + li::before {
  content: '›';
  color: var(--ink-muted);
  margin: 0 8px;
  font-size: 13px;
}
.bc-list a, .bc-list span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-muted);
}
.bc-list a:hover { color: var(--blue); }
.bc-list li:last-child span { color: var(--ink-soft); }

/* ── ПОЛОСА ДОВЕРИЯ ── */
.trust {
  background: var(--sky-0);
  border-bottom: 1px solid var(--border-2);
  padding: 16px 0;
}
.trust-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  align-items: center;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  white-space: nowrap;
  padding: 4px 0;
}
.trust-item svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.trust-item strong { color: var(--ink); }

/* ── CTA-СЕКЦИЯ (нижняя) ── */
.cta-band {
  background: linear-gradient(135deg, #0b1f38 0%, #163560 60%, #1a4580 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: 16px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── КАРТОЧКИ НАСЕКОМЫХ ── */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.pest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.pest-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--sky-2);
  transform: translateY(-3px);
}
.pest-card-icon { font-size: 26px; margin-bottom: 12px; }
.pest-card h3 { font-size: 15px; margin-bottom: 6px; }
.pest-card p { font-size: 13px; color: var(--ink-soft); flex: 1; margin-bottom: 14px; }
.pest-card-price { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.pest-card a { font-size: 13px; font-weight: 600; color: var(--blue); }
.pest-card a:hover { color: var(--blue-d); }

/* ── ТАБЛИЦА ЦЕН ── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead th {
  background: var(--sky-1);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-mid);
}
.price-table tbody tr:nth-child(even) { background: var(--sky-0); }
.price-table td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border-2);
}
.price-table td:last-child { font-weight: 700; color: var(--blue); white-space: nowrap; }
.price-table tbody tr:hover { background: var(--blue-lite); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.fq {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .18s;
}
.fq.open { border-color: var(--sky-2); }
.fq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}
.fq-btn:hover { background: var(--sky-0); }
.fq.open .fq-btn { background: var(--sky-1); color: var(--blue); }
.fq-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--blue);
  transition: transform .25s, background .15s;
}
.fq.open .fq-icon { transform: rotate(45deg); background: var(--blue); color: var(--white); border-color: var(--blue); }
.fq-body {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.fq.open .fq-body { display: block; }

/* ── ОТЗЫВЫ ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.review-stars { color: #f5a623; font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; }
.review-author { font-size: 13px; font-weight: 700; color: var(--ink); }
.review-detail { font-size: 12px; color: var(--ink-muted); }

/* ── ПРОЦЕСС РАБОТЫ ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.ps {
  position: relative;
  padding: 24px;
  background: var(--sky-0);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-2);
}
.ps-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ps h4 { margin-bottom: 8px; }
.ps p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ── ЧЕК-ЛИСТЫ ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-bg);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23edf8f3'/%3E%3Cpath d='M5 9.5l2.5 2.5 5-5' stroke='%231e9e6b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ── ВАРНИНГ-БЛОК ── */
.info-box {
  background: var(--orange-bg);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.info-box.green {
  background: var(--green-bg);
  border-left-color: var(--green);
}
.info-box.blue {
  background: var(--blue-lite);
  border-left-color: var(--blue);
}

/* ── HERO (ВНУТРЕННИЕ СТРАНИЦЫ) ── */
.hero-inner {
  background: linear-gradient(155deg, #0b1f38 0%, #163560 55%, #1a4a80 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,105,187,.25) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-inner-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  position: relative;
  z-index: 1;
}
.hero-inner h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero-inner .hero-desc {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,.6);
  max-width: 620px;
  margin-bottom: 28px;
}
.hero-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
}
.hero-price small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-left: 6px;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.chip::before { content: '✓'; color: var(--sky-3); font-size: 11px; font-weight: 900; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SEO СЕКЦИЯ ── */
.seo-section {
  background: var(--sky-0);
  padding: 48px 0;
  border-top: 1px solid var(--border-2);
}
.seo-section h2 { font-size: 22px; margin-bottom: 16px; }
.seo-section p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 820px;
}

/* ── АДАПТИВ ── */
@media (max-width: 768px) {
  :root { --section-gap: 52px; --wrap-pad: 18px; }
  .trust-in { gap: 10px 20px; }
  .trust-item { font-size: 12px; }
  .fg { padding-bottom: 36px; }
  .cta-band { padding: 44px 0; }
  .pest-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 40px 0 44px; }
  .hero-price { font-size: 24px; }
}
@media (max-width: 480px) {
  .pest-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .price-table { font-size: 13px; }
  .price-table thead th, .price-table td { padding: 10px 12px; }
}

/* ── УТИЛИТЫ ── */
.text-center { text-align: center; }
.text-center .sh-lead { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }

/* Двуколоночная сетка */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Карточка-контейнер */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.card-dark {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 24px;
}

/* JS-helper для FAQ */
.js-faq { cursor: pointer; }
