.elementor-1232 .elementor-element.elementor-element-e0ecc38{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-83e160e *//*!
 * FinancialCalculator — styles
 * All brand colors live in CSS variables on :root so the palette can be
 * changed from one place. Mobile-first; enhanced at wider breakpoints.
 */
:root {
  --primary-color: #0f5c4c;      /* main brand color — change this to re-theme */
  --primary-color-dark: #0b4438;
  --primary-color-light: #e6f0ed;
  --secondary-color: #1c2b2a;
  --accent-color: #c99a3e;       /* used sparingly for highlights / second chart segment */
  --accent-color-light: #f7ecd6;
  --danger-color: #b3402a;
  --danger-color-light: #fbeae6;
  --text-color: #1a2422;
  --text-muted: #5b6a67;
  --border-color: #e1e7e5;
  --background-color: #ffffff;
  --surface-color: #f7f9f8;
  --chart-neutral: #d8dee2;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(16, 24, 22, 0.04), 0 8px 24px rgba(16, 24, 22, 0.06);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fc-root {
  --fc-max-width: 1180px;
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

.fc-root * {
  box-sizing: border-box;
}

.fc-root img,
.fc-root svg {
  max-width: 100%;
}

.fc-container {
  max-width: var(--fc-max-width);
  margin: 0 auto;
  padding: 24px 16px 56px;
}

/* ---------- Header ---------- */
.fc-header {
  text-align: center;
  margin-bottom: 28px;
}

.fc-header__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text-color);
}

.fc-header__intro {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Dashboard nav (cards) ---------- */
.calc-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.calc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  font: inherit;
  color: var(--text-color);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.calc-card:hover {
  border-color: var(--primary-color);
  background: var(--primary-color-light);
}

.calc-card:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

.calc-card--active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.calc-card__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calc-card__icon svg {
  width: 26px;
  height: 26px;
}

.calc-card__label {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .calc-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 980px) {
  .calc-nav {
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
  }
  .calc-card {
    padding: 18px 10px;
  }
}

/* ---------- Calculator panel ---------- */
.calc-panel {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 16px 28px;
}

@media (min-width: 640px) {
  .calc-panel {
    padding: 28px 28px 32px;
  }
}

.calc-panel__title {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 6px;
}

.calc-panel__intro {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 20px;
  max-width: 720px;
}

.calc-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .calc-panel__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }
}

.calc-panel__col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 16px;
}

/* ---------- Fields ---------- */
.fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.field__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-color);
}

.field__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 1px 8px;
  white-space: nowrap;
}

.field__input-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field__control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--background-color);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__control:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-color-light);
}

.field__affix {
  padding: 0 10px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  user-select: none;
}

.field__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 11px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  width: 100%;
}

.field__control--currency .field__input {
  padding-left: 0;
}

.field__input:focus {
  outline: none;
}

.field__input--text {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  width: 100%;
  background: var(--background-color);
}

.field__input--text:focus-visible {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-color-light);
}

/* Range slider */
.field__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--border-color);
  outline: none;
  margin: 4px 0;
}

.field__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border-color);
  cursor: pointer;
}

.field__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--border-color);
  cursor: pointer;
}

.field__slider:focus-visible {
  box-shadow: 0 0 0 3px var(--primary-color-light);
}

/* ---------- Actions ---------- */
.calc-panel__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  font: inherit;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  min-height: 44px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--primary-color);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-color-dark);
}

.btn--primary:focus-visible {
  outline: 3px solid var(--primary-color-light);
  outline-offset: 2px;
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-color);
}

.btn--ghost:hover {
  background: var(--surface-color);
}

.btn--ghost:focus-visible {
  outline: 3px solid var(--primary-color-light);
  outline-offset: 2px;
}

/* ---------- Results ---------- */
.results {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}

@media (min-width: 640px) {
  .results {
    padding: 24px 22px;
  }
}

.results__goal-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.results__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.result-item__label {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.result-item__value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-color);
  white-space: nowrap;
}

.result-item--highlight {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.result-item--highlight .result-item__label {
  color: rgba(255, 255, 255, 0.85);
}

.result-item--highlight .result-item__value {
  color: #fff;
  font-size: 24px;
}

.results__note {
  margin: 14px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-color-dark);
  background: var(--primary-color-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.results__errors {
  background: var(--danger-color-light);
  border: 1px solid var(--danger-color);
  color: var(--danger-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
}

.results__errors-title {
  font-weight: 700;
  margin: 0 0 6px;
}

.results__errors ul {
  margin: 0;
  padding-left: 18px;
}

/* ---------- Chart ---------- */
.chart-wrap {
  position: relative;
  margin-top: 20px;
  height: 220px;
}

.chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 640px) {
  .chart-wrap {
    height: 260px;
  }
}

.chart-fallback {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.chart-fallback-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}

.chart-fallback-label {
  color: var(--text-muted);
  font-weight: 600;
}

.chart-fallback-track {
  height: 8px;
  border-radius: 999px;
  background: var(--border-color);
  overflow: hidden;
}

.chart-fallback-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 999px;
}

.chart-fallback-value {
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Disclaimer ---------- */
.fc-disclaimer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 380px) {
  .result-item__value {
    font-size: 15.5px;
  }
  .result-item--highlight .result-item__value {
    font-size: 20px;
  }
}/* End custom CSS */