.elementor-2309 .elementor-element.elementor-element-6117aa0{--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;}.elementor-2309 .elementor-element.elementor-element-a90630f{--display:flex;}.elementor-2309 .elementor-element.elementor-element-e54e928{--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 */:root {
  --bg: #f2f6f7;
  --panel: #ffffff;
  --panel-soft: #f8fbfc;
  --text: #152331;
  --muted: #5c6f7f;
  --line: #dbe5ea;
  --brand: #0d5a6b;
  --brand-2: #1a7a8c;
  --gold: #c18f2e;
  --ok: #1f7a50;
  --warn: #9a3f2b;
  --shadow: 0 14px 34px rgba(17, 34, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Heebo", "Segoe UI", sans-serif;
  background: #eef4f6;
  color: var(--text);
  line-height: 1.45;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(13, 90, 107, 0.15), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(193, 143, 46, 0.12), transparent 30%),
    linear-gradient(145deg, #f9fcfd 0%, #edf5f7 55%, #f4f8fa 100%);
}

.calculator-wrap {
  width: min(1160px, 94vw);
  margin: 36px auto 56px;
}

.hero {
  margin-bottom: 20px;
  animation: rise 520ms ease-out both;
}

.hero-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.79rem;
}

.hero h1 {
  margin: 0;
  font-family: "Secular One", "Heebo", sans-serif;
  font-weight: 400;
  font-size: clamp(1.95rem, 4.5vw, 3.1rem);
  line-height: 1.05;
}

.hero-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 66ch;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px;
  background: var(--panel);
  animation: rise 620ms ease-out both;
}

.panel h2 {
  margin: 0 0 14px;
  font-size: 1.26rem;
}

.section-title {
  margin: 20px 0 12px;
  font-size: 1.04rem;
  color: #224053;
}

.panel-inputs {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.field::after {
  content: attr(data-help);
  position: absolute;
  inset-inline-start: 0;
  top: calc(100% + 6px);
  background: #122635;
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.78rem;
  line-height: 1.35;
  width: min(280px, 88vw);
  box-shadow: 0 12px 24px rgba(11, 30, 44, 0.24);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 6;
}

.field:hover::after,
.field:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.field span {
  font-weight: 700;
  color: #23374a;
  font-size: 0.93rem;
}

.field input,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cedce2;
  padding: 11px 12px;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 90, 107, 0.14);
  transform: translateY(-1px);
}

.field-full {
  grid-column: 1 / -1;
}

.hint {
  margin: 0;
  color: #526a7b;
  font-size: 0.86rem;
  font-weight: 500;
}

.slider-wrap {
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 10px;
  align-items: center;
}

.slider-wrap input[type="range"] {
  accent-color: var(--brand-2);
  padding: 0;
}

.panel-results {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.result-card {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid #deeaef;
  background: var(--panel-soft);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
}

.accent-a::before { background: #0d5a6b; }
.accent-b::before { background: #206e80; }
.accent-c::before { background: #bd8a2f; }
.accent-d::before { background: #5f7a8f; }
.accent-e::before { background: #3f8f5d; }

.result-card p {
  margin: 0;
  color: #4f6476;
  font-size: 0.87rem;
  font-weight: 700;
}

.result-card strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.08rem, 1.9vw, 1.5rem);
  font-weight: 800;
}

.warning {
  margin-top: 10px;
  border: 1px solid #edc4b7;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff5f1;
  color: var(--warn);
  font-weight: 700;
  font-size: 0.9rem;
}

.tax-track {
  margin-top: 10px;
  border: 1px solid #d4e4ea;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f4fafc;
  color: #355367;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chart-block,
.table-block,
.formula-note {
  margin-top: 16px;
  border: 1px solid #e1eaee;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.chart-block h3,
.table-block h3,
.formula-note h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.chart-wrap {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px;
  align-items: center;
}

.pie {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(
    #0d5a6b 0deg 180deg,
    #206e80 180deg 240deg,
    #bd8a2f 240deg 300deg,
    #6b8ba1 300deg 340deg,
    #42a06d 340deg 360deg
  );
  position: relative;
  margin-inline: auto;
}

.pie::after {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e2eaee;
}

.legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.legend li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #3e5668;
  border-bottom: 1px dashed #e2eaef;
  padding-bottom: 6px;
}

.legend li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.swatch {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  margin-inline-start: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: right;
  font-size: 0.86rem;
  color: #617687;
  padding: 8px 6px;
  border-bottom: 1px solid #dfe8ed;
}

tbody td {
  padding: 8px 6px;
  border-bottom: 1px solid #edf2f5;
  font-size: 0.9rem;
}

tbody tr:last-child td {
  border-bottom: 0;
  font-weight: 800;
}

.formula-note ul {
  margin: 0;
  padding-inline-start: 18px;
  color: #4f6678;
  font-size: 0.9rem;
}

.seo-content,
.references,
.disclaimer {
  margin-top: 16px;
  border: 1px solid #dde7ec;
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 35, 48, 0.06);
}

.seo-content h2,
.references h2,
.disclaimer h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.seo-content h3 {
  margin: 14px 0 6px;
  font-size: 1rem;
  color: #274458;
}

.seo-content p,
.disclaimer p {
  margin: 0;
  color: #455b6d;
  font-size: 0.93rem;
}

.references ul {
  margin: 0;
  padding-inline-start: 18px;
}

.references li {
  margin-bottom: 6px;
}

.references a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.references a:hover {
  text-decoration: underline;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }
}

@media (max-width: 680px) {
  .calculator-wrap {
    margin-top: 24px;
  }

  .field-grid,
  .result-cards {
    grid-template-columns: 1fr;
  }

  .slider-wrap {
    grid-template-columns: 1fr 90px;
  }

  .chart-wrap {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */