.reno-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.reno-card { max-width: 620px; display: block; }

.r-step { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.r-step:last-child { border-bottom: none; }
.r-step.hidden { display: none; }

.r-step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.r-step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.r-step-title { font-size: 1rem; font-weight: 600; color: var(--text-dark); }

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }

.room-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 1rem 0.5rem;
  border: 2px solid var(--border); border-radius: 8px;
  background: #fff; cursor: pointer; font-family: var(--font);
  transition: all 0.15s;
}
.room-btn:hover { border-color: var(--green-main); background: var(--green-pale); }
.room-btn.selected { border-color: var(--green-dark); background: var(--green-light); }

.room-icon { font-size: 1.8rem; line-height: 1; }
.room-name { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.room-range { font-size: 0.78rem; color: var(--text-muted); }

.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }

.scope-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 0.85rem 0.5rem;
  border: 2px solid var(--border); border-radius: 8px;
  background: #fff; cursor: pointer; font-family: var(--font);
  transition: all 0.15s;
}
.scope-btn:hover { border-color: var(--green-main); background: var(--green-pale); }
.scope-btn.selected { border-color: var(--green-dark); background: var(--green-light); }

.scope-name { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.scope-desc { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

.sqft-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.sqft-label { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; }
.sqft-input {
  width: 110px; padding: 0.5rem 0.75rem;
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.95rem; outline: none; font-family: var(--font);
}
.sqft-input:focus { border-color: var(--green-dark); }
.sqft-unit { font-size: 0.85rem; color: var(--text-muted); }
.sqft-hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

.r-select-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
  margin-bottom: 1rem;
}
.r-select-wrap label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 0.35rem;
}
.r-select {
  width: 100%; padding: 0.55rem 0.7rem;
  border: 1px solid var(--border); border-radius: 5px;
  font-size: 0.88rem; background: #fff; font-family: var(--font);
  outline: none;
}
.r-select:focus { border-color: var(--green-dark); }

.r-calc-btn {
  width: 100%; padding: 0.85rem;
  background: var(--green-dark); color: #fff;
  border: none; border-radius: 6px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; font-family: var(--font); transition: background 0.15s;
}
.r-calc-btn:hover { background: #1b5e20; }

.r-results { margin-top: 1.5rem; }
.r-results.hidden { display: none; }

.r-summary-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
}
.r-pill {
  background: var(--green-light); border: 1px solid var(--green-mid);
  border-radius: 20px; padding: 0.3rem 0.85rem;
  font-size: 0.82rem; font-weight: 600; color: var(--green-dark);
}

.r-total-banner {
  background: var(--green-dark); color: #fff;
  border-radius: 8px; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem;
}
.r-total-label { font-size: 0.88rem; opacity: 0.85; margin-bottom: 0.15rem; }
.r-total-amount { font-size: 2.4rem; font-weight: 700; line-height: 1; }
.r-total-note { font-size: 0.82rem; opacity: 0.75; margin-top: 0.4rem; }

.r-cost-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.r-cost-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 0.85rem 1rem; text-align: center;
}
.r-cost-card-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.3rem; }
.r-cost-card-val { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); }
.r-cost-card-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

.r-breakdown { margin-bottom: 1.25rem; }
.r-bar-row { margin-bottom: 0.75rem; }
.r-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.r-bar-track { background: #e8f5e9; border-radius: 4px; height: 10px; overflow: hidden; }
.r-bar-fill { height: 100%; background: var(--green-dark); border-radius: 4px; transition: width 0.5s ease; }

.r-contingency-note {
  background: #fff8e1; border: 1px solid #ffe082;
  border-radius: 6px; padding: 0.75rem 1rem;
  font-size: 0.85rem; color: #5d4037; margin-bottom: 1.25rem;
}
.r-contingency-note.hidden { display: none; }

.r-budget-block {
  background: var(--green-pale); border: 1px solid var(--border);
  border-radius: 6px; padding: 1rem; margin-bottom: 1rem;
}
.r-budget-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.6rem; }
.r-budget-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.r-budget-symbol { font-size: 1rem; font-weight: 600; color: var(--text-mid); }
.r-budget-input {
  width: 160px; padding: 0.5rem 0.75rem;
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.95rem; outline: none; font-family: var(--font);
}
.r-budget-input:focus { border-color: var(--green-dark); }

.r-verdict { font-size: 0.9rem; font-weight: 600; padding: 0.6rem 0.85rem; border-radius: 4px; display: none; }
.r-verdict.yes { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.r-verdict.no  { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; display: block; }

.r-restart {
  padding: 0.65rem 1.5rem;
  background: #fff; border: 2px solid var(--green-dark);
  border-radius: 5px; color: var(--green-dark);
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: var(--font); transition: all 0.15s;
}
.r-restart:hover { background: var(--green-dark); color: #fff; }

.r-seo { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--border); }
.r-seo h2 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin: 1.5rem 0 0.65rem; }
.r-seo h2:first-child { margin-top: 0; }
.r-seo p { font-size: 0.9rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 0.85rem; }
.r-seo ol { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; padding-left: 1.3rem; margin-bottom: 0.75rem; }

.r-seo-table {
  width: 100%; border-collapse: collapse; font-size: 0.87rem; margin: 0.75rem 0 1.25rem;
}
.r-seo-table th, .r-seo-table td { padding: 0.6rem 0.8rem; border: 1px solid var(--border); text-align: left; }
.r-seo-table th { background: var(--green-pale); font-weight: 600; color: var(--text-dark); }
.r-seo-table tr:nth-child(even) td { background: #fafcfa; }
.r-seo-source { font-size: 0.82rem; color: var(--text-muted); margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }

.r-info-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1rem 1.1rem; }
.r-info-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }

.r-tips { list-style: none; font-size: 0.85rem; color: var(--text-mid); }
.r-tips li { padding: 0.45rem 0; border-bottom: 1px solid #f0f4f0; line-height: 1.45; }
.r-tips li:last-child { border-bottom: none; }


.quick-answer { background: var(--green-pale); border-left: 4px solid var(--green-dark); border-radius: 4px; padding: 0.85rem 1.1rem; margin-bottom: 1.25rem; font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; }
.quick-answer strong { font-weight: 700; }
