/* ===========================
   RESET + BASE
=========================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: "Inter", system-ui, sans-serif;
  background: #f5f6f8;
  color: #01184b;
}

/* ===========================
   HERO
=========================== */
.hero {
  padding: 40px 20px;
  text-align: center;
  background: #01184b;
  color: #fff;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.hero .subtitle {
  opacity: 0.85;
  margin-top: 6px;
  font-size: 1rem;
}

/* ===========================
   WRAPPER
=========================== */
.calc-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
}

.calc {
  width: 100%;
  max-width: 900px;
}

/* ===========================
   PROGRESS BAR
=========================== */
.progress {
  width: 100%;
  height: 8px;
  background: #d9dce2;
  border-radius: 4px;
  margin-bottom: 24px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #fb9206;
  border-radius: 4px;
  transition: width .35s ease;
}

/* ===========================
   CARD / STEP
=========================== */
.step {
  display: none;
  background: #fff;
  border-radius: 14px;
  padding: 34px;
  border: 1px solid #e3e4e8;
}

.step.active {
  display: block;
}

.step-title {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 22px;
  color: #01184b;
  font-weight: 600;
}

/* ===========================
   OPTIONS
=========================== */
.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.option-btn {
  padding: 18px;
  text-align: center;
  background: #f0f1f3;
  border: 1px solid #cfd1d6;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #01184b;
  transition: background .2s ease, border-color .2s ease;
}

.option-btn:hover {
  background: #e7e9ec;
}

.option-btn.active {
  background: #01184b;
  color: #fff;
  border-color: #01184b;
}

/* ===========================
   NAV BUTTONS
=========================== */
.nav-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 12px;
}

.btn-secondary {
  padding: 12px 16px;
  background: #e3e4e8;
  border: none;
  border-radius: 8px;
  color: #01184b;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #cfd1d6;
}

.btn-next {
  padding: 12px 20px;
  background: #fb9206;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-next:hover {
  background: #e88305;
}

.btn-next[disabled] {
  background: #ffcc8a;
  cursor: not-allowed;
}

/* ===========================
   RESULT CARD
=========================== */
.result-card {
  display: flex;
  gap: 22px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e3e4e8;
}

.result-left {
  width: 40%;
  display: flex;
  justify-content: center;
}

.result-image {
  width: 100%;
  max-width: 320px;
  background: #f5f6f8;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #dcdfe4;
}

.result-image img {
  width: 100%;
  border-radius: 8px;
}

.result-right {
  width: 60%;
}

.result-right h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 600;
}

.result-details {
  color: #40444d;
  margin-top: 10px;
}

.result-details .line {
  margin-bottom: 8px;
}

/* CTA */
.result-cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.btn-contact {
  background: #01184b;
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-contact:hover {
  background: #fb9206;
}

/* ===========================
   LEAD FORM
=========================== */
.lead-capture {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #e3e4e8;
  padding: 18px;
  border-radius: 12px;
}

.lead-capture input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd1d6;
  background: #f5f6f8;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #01184b;
}

.lead-capture button {
  background: #fb9206;
  border: none;
  padding: 12px 18px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.lead-feedback {
  margin-top: 10px;
  color: #2bbf62;
}

/* ===========================
   FOOTER
=========================== */
.powered {
  text-align: center;
  color: #40444d;
  margin: 60px 0 20px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .result-card {
    flex-direction: column;
  }
  .result-left, .result-right {
    width: 100%;
  }
}
