/* ============================================================
   AM Pest Control Baltimore — Service-page additions
   Loaded AFTER blog.css. Add only what blog.css doesn't cover.
   Light base per DESIGN-color-system.md
   ============================================================ */

/* Stat grid — used on service pages */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 28px 0 36px;
}
.stat-grid .stat {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
}
.stat-grid .stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.05;
  color: var(--red);
  margin-bottom: 8px;
}
.stat-grid .stat span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* Numbered process steps */
.process-steps {
  list-style: none;
  counter-reset: step;
  margin: 28px 0 36px;
  padding: 0;
}
.process-steps li {
  counter-increment: step;
  position: relative;
  padding: 22px 22px 22px 78px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
}
.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: 0 4px 14px rgba(196,30,30,0.25);
}
.process-steps h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.process-steps p {
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}

/* Pricing summary panel (single card) */
.pricing-summary {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 32px;
  align-items: center;
}
.pricing-summary .price-headline {
  text-align: center;
  border-right: 1px solid var(--line-2);
  padding-right: 28px;
}
.pricing-summary .price-headline .from {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.pricing-summary .price-headline .num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold-ink);
  line-height: 1;
  text-shadow: 0 1px 0 rgba(184,128,8,0.20);
}
.pricing-summary .price-headline .unit {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.pricing-summary .price-detail h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 10px;
}
.pricing-summary .price-detail ul {
  margin: 0 0 0 18px;
  color: var(--ink);
}
.pricing-summary .price-detail li { margin-bottom: 8px; font-size: 15px; }
.pricing-summary .price-detail li strong { color: var(--ink); }

/* Neighborhood chip cloud */
.neighborhood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}
.neighborhood-chips a,
.neighborhood-chips span {
  display: inline-block;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color 150ms ease-out, color 150ms ease-out;
}
.neighborhood-chips a:hover,
.neighborhood-chips span:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Why-us mini-grid (4-up condensed version of index.html) */
.why-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}
.why-mini .why-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-mini .why-item:hover {
  border-color: var(--red);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.why-mini .why-item .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--trust-soft);
  color: var(--trust);
  display: grid; place-items: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.why-mini .why-item .title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.why-mini .why-item .text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Related services grid (cards row below content) */
.related-services {
  margin: 60px 0 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.related-card {
  display: block;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  color: var(--ink);
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.related-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.related-card .name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}
.related-card .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.related-card .arrow {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}
.related-card .price {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--gold-ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: #fff8e1;
  border: 1px solid #f0d97a;
  border-radius: 999px;
}

/* Card-link override on light: keep accent on hover red, not glow */
.card-link:hover { border-color: var(--red); }

/* Responsive */
@media (max-width: 600px) {
  .pricing-summary {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }
  .pricing-summary .price-headline {
    border-right: none;
    border-bottom: 1px solid var(--line-2);
    padding-right: 0;
    padding-bottom: 22px;
  }
  .pricing-summary .price-headline .num { font-size: 46px; }
  .process-steps li {
    padding: 22px 18px 22px 70px;
  }
  .process-steps li::before {
    width: 38px; height: 38px; font-size: 17px; left: 16px;
  }
}
