/* Page-specific styles for /mold-inspection-testing-pueblo-co (Wave 1 demo, 23 Sep 2026).
   Ported from the original hand-designed Mold Testing & Inspections page, where these
   lived in an inline <style> block: the "No more guesswork" pillar pair and the 3-up
   Testing Options grid. Shared chrome (hero, stages, closing CTA, areas, review cards,
   FAQ, health cards) stays in service-page.css / site.css. */

/* ── Pillar cards (inspection vs test; where moisture hides) ─────── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-top: 3px solid transparent;
  border-radius: var(--radius-card-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.pillar-card.fade-up.soft:hover {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-brand) border-box;
  box-shadow: 0 14px 26px -18px rgba(10,37,65,0.28);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-surface-subtle);
  color: var(--color-brand-primary-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.35s var(--ease-brand), color 0.35s var(--ease-brand);
}
.pillar-card.fade-up.soft:hover .pillar-icon {
  background: var(--gradient-brand-deep);
  color: #fff;
}
.pillar-icon.accent { color: var(--color-brand-secondary); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card h3 {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--color-text-primary);
}
.pillar-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}
.pillar-card a:not(.btn),
.test-option-body a {
  color: var(--color-brand-primary-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pillar-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.9375rem;
}
.pillar-link svg { width: 16px; height: 16px; }
.pillar-cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 1.75rem; }
}

/* ── Testing Options 3-up grid ────────────────────────────────── */
.test-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.test-option {
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-brand);
}
.test-option:hover {
  border-color: var(--color-border-brand-30);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.test-option-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface-subtle);
}
.test-option-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.test-option:hover .test-option-photo img { transform: scale(1.04); }
.test-option-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.test-option-body h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--color-text-primary);
}
.test-option-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0;
}
.test-option-body p:last-child { margin-top: auto; padding-top: 0.25rem; }
@media (max-width: 1100px) {
  .test-options-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .test-options-grid { grid-template-columns: 1fr; }
}

/* Stage bullets that carry a link (room-by-room inspection children). */
.stage-copy .stage-bullets a {
  color: var(--color-brand-primary-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
