/* ═══════════════════════════════════════════════════════
   ДезинСПб — pest.css
   Стили для детальных страниц насекомых
   ═══════════════════════════════════════════════════════ */

/* ── HERO СТРАНИЦ НАСЕКОМЫХ ── */
.pest-hero {
  background: linear-gradient(155deg, #0a1c33 0%, #14315e 55%, #1b4982 100%);
  padding: 52px 0 60px;
  position: relative;
  overflow: hidden;
}
.pest-hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,105,187,.22) 0%, transparent 68%);
  top: -280px; right: -120px;
  pointer-events: none;
}
.pest-hero-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .pest-hero-wrap { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .pest-hero { padding: 38px 0 44px; }
}

.pest-hero h1 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.pest-hero h1 span { color: var(--sky-3); }

.pest-hero-desc {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,.62);
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-price-block {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hpb-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.8px;
}
.hpb-price sup { font-size: 16px; font-weight: 700; color: var(--orange); vertical-align: super; }
.hpb-price small { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.5); margin-left: 4px; }
.hpb-note {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* Quick card (справа в hero) */
.pest-quick-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  padding: 26px;
}
.pqc-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.pqc-items { display: flex; flex-direction: column; }
.pqci {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pqci:last-child { border-bottom: none; padding-bottom: 0; }
.pqci-title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 3px; }
.pqci-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ── ДВУХКОЛОНОЧНЫЙ КОНТЕНТ ── */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .content-2col { grid-template-columns: 1fr; gap: 32px; }
}

/* Боковая карточка */
.side-card {
  background: var(--sky-0);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.side-card-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

/* ── ПРИЗНАКИ (SIGNS) ── */
.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .signs-grid { grid-template-columns: 1fr; } }

.sign-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
}
.sign-card-ico { font-size: 24px; margin-bottom: 10px; }
.sign-card h4 { margin-bottom: 6px; font-size: 14.5px; }
.sign-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ── МЕТОДЫ ОБРАБОТКИ ── */
.methods-list { display: flex; flex-direction: column; gap: 14px; }
.method-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: border-color .18s, box-shadow .18s;
}
.method-item:hover { border-color: var(--sky-2); box-shadow: var(--sh); }
.method-ico {
  width: 40px; height: 40px;
  background: var(--blue-lite);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.method-body h4 { margin-bottom: 5px; }
.method-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.method-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 9px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
}

/* ── ПРАЙС ДЕТАЛЬНЫЙ ── */
.price-section-wrap {
  background: var(--ink);
  color: var(--white);
  padding: var(--section-gap) 0;
}
.price-section-wrap h2 { color: var(--white); }
.price-section-wrap .sh-lead { color: rgba(255,255,255,.5); }
.price-section-wrap .stag { color: var(--sky-3); }

.price-main-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-main-table thead th {
  background: rgba(255,255,255,.08);
  padding: 13px 18px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
}
.price-main-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.price-main-table tbody tr:last-child { border-bottom: none; }
.price-main-table td {
  padding: 14px 18px;
  font-size: 14.5px;
  color: rgba(255,255,255,.8);
}
.price-main-table td:last-child {
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
  white-space: nowrap;
}
.price-main-table tbody tr:hover td { background: rgba(255,255,255,.04); }

.price-notes { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.price-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.price-note::before {
  content: 'ℹ';
  color: var(--sky-3);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── ПОДГОТОВКА К ОБРАБОТКЕ ── */
.prep-steps { display: flex; flex-direction: column; gap: 12px; }
.prep-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--sky-0);
  border-radius: var(--r);
  border-left: 3px solid var(--orange);
}
.prep-step-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  width: 20px;
  margin-top: 1px;
}
.prep-step-text h4 { font-size: 14.5px; margin-bottom: 4px; }
.prep-step-text p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

/* ── ОТЗЫВЫ В ТЕМЕ ВРЕДИТЕЛЕЙ ── */
.pest-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 860px) { .pest-reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pest-reviews { grid-template-columns: 1fr; } }

/* ── ПЕРЕЛИНКОВКА ── */
.related-pests {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-pest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-mid);
  transition: background .15s, border-color .15s, color .15s;
}
.related-pest-link:hover { background: var(--blue-lite); border-color: var(--sky-2); color: var(--blue); }

/* ── БЕЗОПАСНОСТЬ ── */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .safety-grid { grid-template-columns: 1fr; } }

.safety-card {
  background: var(--green-bg);
  border: 1.5px solid rgba(30, 158, 107, .2);
  border-radius: var(--r);
  padding: 18px 20px;
}
.safety-card h4 { color: var(--green); font-size: 14.5px; margin-bottom: 6px; }
.safety-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ── КОМПАКТНАЯ СТРАНИЦА (для заготовок) ── */
.compact-hero {
  background: linear-gradient(155deg, #0a1c33 0%, #14315e 60%, #1b4982 100%);
  padding: 44px 0 50px;
  position: relative;
  overflow: hidden;
}
.compact-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,105,187,.2) 0%, transparent 70%);
  top: -180px; right: -60px;
  pointer-events: none;
}
.compact-hero-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.compact-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 14px;
}
.compact-hero p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}

/* ── FAQ (pest pages) ── */
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .18s;
}
.faq-item.open { border-color: var(--sky-2); }
.faq-q {
  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;
}
.faq-q::after {
  content: '+';
  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;
  line-height: 1;
  text-align: center;
}
.faq-q:hover { background: var(--sky-0); }
.faq-item.open .faq-q { background: var(--sky-1); color: var(--blue); }
.faq-item.open .faq-q::after { transform: rotate(45deg); background: var(--blue); color: var(--white); border-color: var(--blue); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-a p { margin: 0; }
.faq-item.open .faq-a { display: block; }

/* ── ОТЗЫВЫ (pest pages) ── */
.pest-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 860px) { .pest-reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pest-reviews { grid-template-columns: 1fr; } }
.prev-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prev-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }
.prev-card p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-soft); font-style: italic; }
.prev-meta { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 12.5px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); }
.prev-name { font-weight: 700; color: var(--ink); }
.prev-loc { color: var(--ink-soft); }
.prev-date { color: var(--ink-soft); margin-left: auto; }

/* ── ПРИЗНАКИ / ПОДГОТОВКА ── */
.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) { .signs-grid { grid-template-columns: 1fr; gap: 32px; } }
.signs-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signs-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.signs-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

/* ── БЕЗОПАСНОСТЬ ── */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 760px) { .safety-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .safety-grid { grid-template-columns: 1fr; } }
.safety-item {
  background: var(--gray-1);
  border-radius: var(--r-lg);
  padding: 24px;
}
.safety-ico { font-size: 28px; margin-bottom: 12px; }
.safety-item h4 { font-size: 15px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.safety-item p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ── ПЕРЕЛИНКОВКА ── */
.related-pests {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.rp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .15s;
}
.rp-item:hover { border-color: var(--sky-2); box-shadow: var(--sh); transform: translateY(-2px); color: var(--blue); }
.rp-ico { font-size: 18px; }

/* ── FOOTER (pest pages shared) ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { min-width: 0; overflow: hidden; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-desc { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.45); margin: 12px 0 0; word-break: break-word; }
.footer-nav-col { min-width: 0; }
.footer-nav-col { display: flex; flex-direction: column; gap: 8px; }
.fn-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer-nav-col a { font-size: 13.5px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-nav-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
}

/* ── CTA SECTION (pest pages) ── */
.cta-section {
  background: var(--blue-deep);
  padding: 56px 0;
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-wrap h2 { color: var(--white); margin: 0 0 10px; font-size: 28px; }
.cta-wrap p { color: rgba(255,255,255,.55); margin: 0; font-size: 15px; max-width: 520px; }
@media (max-width: 760px) { .cta-wrap { flex-direction: column; align-items: flex-start; } }

/* ── HERO CHECKS (вместо chips) ── */
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-checks li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  padding-left: 20px;
  position: relative;
}
.hero-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sky-3);
  font-weight: 700;
}

/* ── ВИДЫ (species grid) ── */
.species-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 700px) { .species-grid { grid-template-columns: 1fr; } }
.species-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
}
.species-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lite);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.species-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px;
}
.species-latin {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.species-card > p:not(.species-latin) {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.species-warn {
  background: var(--sky-0);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
}
.species-warn strong { color: var(--blue); }

/* ── QUICK CARD DOT (вместо плитки) ── */
.pqci-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-3);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── МЕТОДЫ с номером вместо эмодзи ── */
.method-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── ПОРЯДОК РАБОТЫ ── */
.process-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-row {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-row:last-child { border-bottom: none; }
.process-row:hover { background: var(--sky-0); }
.pr-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pr-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.pr-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 560px) {
  .process-row { padding: 18px 20px; gap: 16px; }
}

/* ── ПОДГОТОВКА (двухколоночный текст) ── */
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 28px;
}
@media (max-width: 680px) { .prep-grid { grid-template-columns: 1fr; gap: 0; } }
.prep-col p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.prep-col p:last-child { margin-bottom: 0; }

/* ── QUICK CARD DOT (без иконок-плиток) ── */
.pqci-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-3);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── HOW STEPS ── */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.how-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.how-step-item:last-child { border-bottom: none; }
.hs-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hs-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.hs-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ── TWO COLUMN LAYOUT ── */
.pest-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) { .pest-two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ── COMPARE TABLE ── */
.compare-table {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ct-head {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  background: var(--sky-1);
  padding: 12px 20px;
  gap: 8px;
}
.ct-bad {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
}
.ct-good {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 14px 20px;
  border-top: 1px solid var(--border-2);
  gap: 8px;
  align-items: center;
}
.ct-row:nth-child(even) { background: var(--sky-0); }
.ct-label {
  font-size: 14px;
  color: var(--ink);
}
.ct-val {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.ct-yes { color: var(--green); }
.ct-no { color: #e05252; }

/* ── PREP LIST ── */
.prep-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 600px) { .prep-list { grid-template-columns: 1fr; } }
.prep-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--sky-0);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
}
.prep-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prep-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-top: 4px;
}

/* ── FOOTER WRAPPER ── */
.fw {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* ── LOGO IN DARK FOOTER ── */
footer .logo-name { color: var(--white); }
footer .logo-name b { color: var(--tg); }
footer .logo-sub { color: rgba(255,255,255,.4); }
