/* =============================================================
   FIX ALIGNEMENT FIELD-ROW
============================================================= */

.field-row .field {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.field-row .field label {
  min-height: 2.4em;
  display: flex;
  align-items: flex-end;
  margin-bottom: 7px;
}


/* =============================================================
   RÉSULTATS — BLOC PRINCIPAL
============================================================= */

.calc-results {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1.5px solid #e0ddd6;
}

.result-main {
  background:
    radial-gradient(circle at top right, rgba(201, 146, 62, 0.18), transparent 60%),
    linear-gradient(135deg, #181818, #2a241c);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 24px;
  text-align: center;
}

.result-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9923e;
  margin-bottom: 10px;
}

.result-amount {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
}


/* =============================================================
   RÉSULTATS — GRILLE 4 CASES
============================================================= */

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.result-item {
  background: white;
  border: 1.5px solid #e0ddd6;
  border-radius: 14px;
  padding: 18px 20px;
}

.result-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 8px;
}

.result-item-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #181818;
  letter-spacing: -0.5px;
}

.result-item-value.highlight {
  color: #c9923e;
}


/* =============================================================
   RÉSULTATS — BARRE CAPITAL / INTÉRÊTS
============================================================= */

.result-bar-wrap {
  margin-bottom: 20px;
}

.result-bar {
  display: flex;
  height: 10px;
  border-radius: 99px;
  overflow: hidden;
  background: #e0ddd6;
  margin-bottom: 12px;
}

.result-bar-capital {
  background: #181818;
  border-radius: 99px 0 0 99px;
  transition: width 0.4s ease;
}

.result-bar-interet {
  background: #c9923e;
  border-radius: 0 99px 99px 0;
  transition: width 0.4s ease;
}

.result-bar-legend {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #555;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.dot-capital { background: #181818; }
.dot-interet { background: #c9923e; }


/* =============================================================
   RÉSULTATS — DISCLAIMER
============================================================= */

.result-disclaimer {
  font-size: 0.78rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 0;
}


/* =============================================================
   RESPONSIVE — 750px
============================================================= */

@media (max-width: 750px) {
  .result-grid {
    grid-template-columns: 1fr;
  }

  .result-main {
    padding: 24px 22px;
  }
}