.elementor-2201 .elementor-element.elementor-element-b4c993e{--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-2201 .elementor-element.elementor-element-c2e56bb{--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: #f4f1ea;
  --panel: #fffdfa;
  --panel-2: #f9f5ef;
  --text: #1d232f;
  --muted: #5c667a;
  --line: #e3dccf;
  --brand: #0f5f67;
  --brand-2: #cf5f3f;
  --ok: #1f7a50;
  --warn: #a74d2a;
  --shadow: 0 14px 36px rgba(18, 35, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Heebo", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 18%, rgba(207, 95, 63, 0.17), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(15, 95, 103, 0.14), transparent 32%),
    linear-gradient(135deg, #f8f5ee 0%, #f3eee2 55%, #f6f2ea 100%);
}

.calculator-wrap {
  width: min(1120px, 94vw);
  margin: 42px auto 58px;
}

.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.8rem;
}

.hero h1 {
  margin: 0;
  font-family: "Secular One", "Heebo", sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.1;
}

.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 16px;
  font-size: 1.25rem;
}

.panel-inputs {
  background: linear-gradient(180deg, #fffdfa 0%, #fbf7f0 100%);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  font-weight: 700;
  color: #2c3749;
  font-size: 0.95rem;
}

.field input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d7d0c2;
  padding: 11px 12px;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field input::placeholder {
  color: #8c93a4;
}

.field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 95, 103, 0.15);
  transform: translateY(-1px);
}

.field-full {
  grid-column: 1 / -1;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 800;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #24767f 100%);
}

.btn-secondary {
  color: #223042;
  background: #ece4d5;
}

.form-message {
  min-height: 1.5rem;
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--warn);
  font-weight: 700;
}

.panel-results {
  background: linear-gradient(180deg, #fffefb 0%, #fff9f1 100%);
}

.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-card {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid #e8decd;
  background: var(--panel-2);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
}

.accent-a::before { background: #d88654; }
.accent-b::before { background: #15747e; }
.accent-c::before { background: #6e6f79; }
.accent-d::before { background: #b08c2b; }

.result-card p {
  margin: 0;
  color: #4f596e;
  font-size: 0.9rem;
  font-weight: 700;
}

.result-card strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.15rem, 2vw, 1.58rem);
  font-weight: 800;
}

.formula-note {
  margin-top: 16px;
  border: 1px dashed #dbcfb8;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fffdf8;
}

.formula-note h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.formula-note ul {
  margin: 0;
  padding-inline-start: 18px;
  color: #4f596e;
  font-size: 0.92rem;
}

.disclaimer {
  margin-top: 16px;
  border: 1px solid #e1d5be;
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff8ee 0%, #fff3e2 100%);
  box-shadow: 0 8px 20px rgba(36, 27, 12, 0.08);
}

.disclaimer h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #7a3f21;
}

.disclaimer p {
  margin: 0;
  color: #4e3e30;
  font-size: 0.93rem;
  font-weight: 500;
}

.disclaimer ul {
  margin: 8px 0 0;
  padding-inline-start: 18px;
  color: #5f4a37;
  font-size: 0.9rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .calculator-wrap {
    margin-top: 24px;
  }

  .field-grid,
  .result-cards {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .disclaimer {
    padding: 12px;
  }
}/* End custom CSS */