.sc-solar-calculator {
  font-family: 'Poppins', sans-serif;
}

.sc-card h1 { color: #EE6124; margin: 0 0 6px; }
.sc-sub { color: #666; margin-bottom: 20px; }

.sc-box {
  background: #f8faf9;
  border: 1px solid #e3e7e5;
  padding: 20px;
  border-radius: 14px;
  transition: all 0.4s ease;
}

.sc-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.sc-toggle-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #dfe5e2;
  cursor: pointer;
}

.sc-toggle-btn.sc-active {
  border: 2px solid #EE6124;
  background: #fdece3;
}

.sc-input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #dfe5e2;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.sc-input.sc-error {
  border-color: #e04b4b;
}

.sc-field-error {
  color: #e04b4b;
  font-size: 12px;
  margin: -10px 0 12px;
  display: none;
}

.sc-btn-main {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg,#EE6124,#286EAD);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sc-btn-main:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sc-result { margin-top: 25px; }

.sc-grid {
  display: flex;
  gap: 10px;
}

.sc-card-small {
  flex: 1;
  background: #e8f0f8;
  padding: 12px;
  border-radius: 12px;
}

.sc-card-small.sc-light {
  background: #fdece3;
}

.sc-big {
  margin-top: 20px;
  background: #f8faf9;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #e3e7e5;
}

.sc-invest {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  gap: 6px;
}

.sc-invest div span {
  display: block;
  font-size: 12px;
  color: #777;
  font-weight: normal;
}

.sc-final {
  background: #e8f0f8;
  padding: 10px;
  border-radius: 10px;
}

.sc-green-box {
  margin-top: 15px;
  background: linear-gradient(90deg,#286EAD,#EE6124);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 14px;
}

.sc-btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.sc-btn-secondary {
  background: #286EAD;
  color: #fff;
}

.sc-note {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
}

.sc-email-status {
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}

.sc-email-status.sc-ok { color: #2e7d32; }
.sc-email-status.sc-fail { color: #e04b4b; }

/* honeypot field - hidden from real users, bots fill it in */
.sc-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
