/* Seasonal cleanup landing pages. Reuses css/pages/index.css for the nav, hero,
   .quote-box card, .quote-input/.quote-btn/.quote-label/.req/.field-err/.lead-row
   field styling; this file only adds the cleanup-estimate widget pieces (scope
   controls, the estimate range readout, the lead form + success containers).
   Visibility is toggled in JS via the `hidden` attribute, so nothing here sets
   `display` on the toggled containers (the UA [hidden]{display:none} wins). */

.cl-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.cl-field {
  flex: 1 1 180px;
  min-width: 0;
}
select.quote-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.cl-loading {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.cl-result {
  margin-top: 1.25rem;
  padding: 1.1rem;
  border: 1px solid var(--border, #e2e8e4);
  border-radius: 12px;
  background: var(--primary-pale, #f1f7f4);
}
.cl-est-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.cl-range {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cl-meta {
  font-size: 0.85rem;
  color: var(--text);
  margin-top: 0.35rem;
}
.cl-scope-out {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.cl-disclaimer {
  font-size: 0.75rem;
  color: var(--faint, #8a958f);
  margin-top: 0.6rem;
}

.cl-lead {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border, #e2e8e4);
}
.cl-lead-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.cl-lead-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.85rem; }

.cl-success {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--primary-pale, #f1f7f4);
  text-align: center;
}
.cl-success-title { font-weight: 700; color: var(--primary-dark); font-size: 1rem; }
.cl-success-sub { color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }

.cl-error {
  margin-top: 0.85rem;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Seasonal "what's included" + steps content blocks (mirrors the homepage tone). */
.cl-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.cl-include-card {
  padding: 1.1rem;
  border: 1px solid var(--border, #e2e8e4);
  border-radius: 12px;
  background: #fff;
}
.cl-include-card h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cl-include-card h3 i { color: var(--primary); width: 18px; height: 18px; }
.cl-include-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }
