/* ===== Pest Control Pricing System ===== */
.pricing-page { padding: 28px 0 56px; }
.pricing-hero {
  background: linear-gradient(135deg, #003366 0%, #247047 100%);
  color: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: var(--shadow2);
}
.pricing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .9fr);
  gap: 28px;
  align-items: center;
}
.pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 6px 13px;
  font-weight: 800;
  font-size: .88em;
}
.pricing-hero h1 { margin: 14px 0 12px; font-size: clamp(1.8em, 4vw, 3em); line-height: 1.15; }
.pricing-hero p { margin: 0; color: rgba(255,255,255,.9); line-height: 1.8; font-size: 1.05em; }
.pricing-hero__panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  padding: 20px;
}
.pricing-hero__panel strong { display:block; font-size: 1.15em; margin-bottom: 8px; }
.pricing-hero__panel ul { margin: 0; padding-right: 18px; line-height: 2; color: rgba(255,255,255,.9); }
.pricing-section { margin-top: 34px; }
.pricing-section h2 { color: var(--navy); font-size: 1.55em; margin: 0 0 14px; }
.pricing-section > p { color: var(--muted); line-height: 1.8; margin-top: 0; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pricing-card:hover { transform: translateY(-2px); border-color: #b9e3ca; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.pricing-card__top { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.pricing-card__icon { width: 42px; height: 42px; display:grid; place-items:center; background:#eaf6ee; border-radius:8px; font-size:1.45em; }
.pricing-card h3 { color: var(--navy); margin: 0; font-size: 1.05em; }
.pricing-card p { color: var(--muted); margin: 0 0 12px; line-height: 1.65; font-size: .94em; }
.pricing-card__price { color: var(--greenDark); font-weight: 900; }
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: start;
}
.pricing-info,
.pricing-calculator,
.pricing-admin {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.pricing-info { padding: 24px; }
.pricing-info h2, .pricing-info h3 { color: var(--navy); }
.pricing-info p, .pricing-info li { color: #374151; line-height: 1.85; }
.price-answer-box {
  background: linear-gradient(135deg, #f0f9f4, #e8f4fd);
  border: 1.5px solid #b9e3ca;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.price-answer-label {
  display: inline-flex;
  background: #fff;
  color: var(--greenDark);
  border: 1px solid #cfe7d8;
  border-radius: 999px;
  padding: 4px 11px;
  font-weight: 900;
  font-size: .84em;
  margin-bottom: 8px;
}
.price-answer-box p { margin: 0; font-size: 1.03em; }
.price-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}
.price-snapshot div {
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
}
.price-snapshot span {
  display: block;
  color: #64748b;
  font-size: .82em;
  font-weight: 700;
  margin-bottom: 3px;
}
.price-snapshot strong {
  display: block;
  color: var(--navy);
  font-size: 1.02em;
}
.query-list {
  background: #fbfcfe;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 26px 14px 14px;
}
.price-situations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 20px;
}
.price-situation-card {
  background: #fff;
  border: 1.5px solid #dfe7ef;
  border-radius: 8px;
  padding: 14px;
}
.price-situation-card span {
  display: block;
  color: #64748b;
  font-size: .86em;
  font-weight: 800;
  margin-bottom: 4px;
}
.price-situation-card strong {
  display: block;
  color: var(--greenDark);
  font-size: 1.22em;
  margin-bottom: 5px;
}
.price-situation-card p {
  margin: 0;
  font-size: .88em;
  line-height: 1.55;
  color: #5b6476;
}
.authority-box {
  background: #fff;
  border-right: 4px solid var(--green);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  margin-top: 18px;
}
.authority-box strong { color: var(--navy); }
.authority-box p { margin: 6px 0 0; }
.pricing-calculator { overflow: hidden; }
.pc-head {
  background: linear-gradient(135deg, #f0f9f4, #e8f4fd);
  border-bottom: 1.5px solid #d7eadf;
  padding: 18px 20px;
}
.pc-head h2 { margin: 0 0 5px; color: var(--navy); font-size: 1.25em; }
.pc-head p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .94em; }
.pc-progress { height: 5px; background: #e2e8f0; }
.pc-progress span { display:block; height:100%; width:16.6%; background:linear-gradient(90deg,#36a56a,#25d366); transition:width .25s ease; }
.pc-body { padding: 20px; }
.pc-step { display: none; }
.pc-step.active { display: block; }
.pc-step h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.12em; }
.pc-options { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.pc-option {
  border: 1.5px solid #dfe7ef;
  background: #f8fafc;
  border-radius: 8px;
  padding: 11px 12px;
  cursor: pointer;
  color: #1e293b;
  font-family: inherit;
  font-weight: 800;
  text-align: right;
}
.pc-option:hover, .pc-option.selected { border-color: var(--green); background: #eaf6ee; color: var(--greenDark); }
.pc-field { margin-bottom: 12px; }
.pc-field label { display:block; color:#374151; font-weight:800; margin-bottom:6px; }
.pc-field input, .pc-field textarea, .pc-field select {
  width: 100%;
  border: 1.5px solid #dfe7ef;
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1em;
}
.pc-select-field { margin-bottom: 4px; }
.pc-select {
  min-height: 48px;
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}
.pc-select:focus {
  border-color: var(--green);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(54,165,106,.14);
}
.pc-field textarea { min-height: 76px; resize: vertical; }
.pc-footer {
  display:flex;
  gap: 10px;
  padding: 14px 20px 20px;
}
.pc-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
}
.pc-btn--next { flex:1; background: linear-gradient(90deg,var(--green),var(--greenDark)); color:#fff; }
.pc-btn--back { background:#fff; border:1.5px solid #dfe7ef; color:var(--navy); }
.pc-result {
  border: 1.5px solid #cfe7d8;
  background: #f0f9f4;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 16px;
}
.pc-result--lead {
  text-align: center;
  border-color: #9bd8b2;
  background: linear-gradient(135deg, #f0f9f4, #e8f4fd);
}
.pc-result__range { color: var(--greenDark); font-size: 2em; font-weight: 900; line-height: 1.2; }
.pc-disclaimer { color:#5b6476; line-height:1.7; font-size:.92em; margin:10px 0 0; }
.pc-disclaimer--small { font-size: .84em; }
.pc-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.pc-actions .btn { padding: 10px 18px; }
.pc-actions--lead { flex-direction: column; }
.pc-primary-wa {
  width: 100%;
  min-height: 52px;
  font-size: 1.02em;
}
.pc-lead-note {
  color: #64748b;
  font-size: .86em;
  line-height: 1.65;
  margin: 10px 0 0;
  text-align: center;
}
.price-faq details {
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:8px;
  margin-bottom:10px;
  overflow:hidden;
}
.price-faq summary { padding:14px 18px; cursor:pointer; font-weight:900; color:var(--navy); }
.price-faq p { padding:0 18px 16px; margin:0; color:#374151; line-height:1.8; }
.pricing-admin { padding: 22px; }
.admin-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.admin-row { border:1px solid var(--border); border-radius:8px; padding:12px; margin-bottom:10px; }
@media (max-width: 900px) {
  .pricing-hero__grid, .pricing-layout { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .pricing-page { padding-top: 16px; }
  .pricing-hero { padding: 24px 18px; border-radius: 14px; }
  .pricing-cards, .pc-options, .admin-grid { grid-template-columns: 1fr; }
  .pc-footer { flex-direction: column-reverse; }
  .pc-btn { width: 100%; }
  .price-snapshot { grid-template-columns: 1fr; }
  .price-situations { grid-template-columns: 1fr; }
}
