.elementor-1207 .elementor-element.elementor-element-65e80e9{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );line-height:var( --e-global-typography-primary-line-height );color:var( --e-global-color-primary );}@media(min-width:768px){.elementor-1207 .elementor-element.elementor-element-65e80e9{--content-width:700px;}}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{line-height:var( --e-global-typography-primary-line-height );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{line-height:var( --e-global-typography-primary-line-height );}}/* Start custom CSS for html, class: .elementor-element-7d7c4ed *//* ================================================
   REPU KALKULÁTOR – Elementor Custom CSS
   Beillesztés: Elementor > Site Settings > Custom CSS
   vagy az adott Section > Advanced > Custom CSS
   ================================================ */

:root {
  --repu-ink: #1a1a18;
  --repu-ink-muted: #6b6b67;
  --repu-ink-faint: #a8a8a3;
  --repu-surface: #ffffff;
  --repu-surface-soft: #f7f6f2;
  --repu-border: #e2e0d8;
  --repu-accent: #2a6b4f;
  --repu-accent-light: #e8f2ed;
  --repu-accent-mid: #c6dfd4;
  --repu-radius: 12px;
  --repu-radius-sm: 8px;
}

.calc-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 3rem;
   color: var(--repu-ink);
  -webkit-font-smoothing: antialiased;
}

/* FORM CARD */
.calc-wrap .form-card {
  background: var(--repu-surface-soft);
  border: 1px solid var(--repu-border);
  border-radius: var(--repu-radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

/* MODE TOGGLE */
.calc-wrap .mode-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--repu-border);
}
.calc-wrap .mode-toggle span {
  font-size: 13px;
  color: var(--repu-ink-muted);
  cursor: default;
}
.calc-wrap .mode-active {
  color: var(--repu-ink) !important;
  font-weight: 500;
}
.calc-wrap .toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.calc-wrap .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.calc-wrap .toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--repu-border);
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.2s;
}
.calc-wrap .toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.calc-wrap .toggle-switch input:checked + .toggle-slider {
  background: var(--repu-accent);
}
.calc-wrap .toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

/* FIELDS */
.calc-wrap .fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calc-wrap .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.calc-wrap .form-group label {
  font-size: 13px;
  color: var(--repu-ink-muted);
  line-height: 1.4;
}
.calc-wrap .form-group .hint-text {
  font-size: 11px;
  color: var(--repu-ink-faint);
  line-height: 1.4;
}

/* INPUTS */
.calc-wrap .input-wrap {
  position: relative;
}
.calc-wrap .input-wrap input {
  width: 100%;
  padding: 10px 48px 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--repu-ink);
  background: var(--repu-surface);
  border: 1px solid var(--repu-border);
  border-radius: var(--repu-radius-sm);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.calc-wrap .input-wrap input:focus {
  border-color: var(--repu-accent);
  box-shadow: none;
}
.calc-wrap .input-wrap .unit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--repu-ink-faint);
  pointer-events: none;
  white-space: nowrap;
}

/* CONV DISPLAY */
.calc-wrap .conv-display {
  background: var(--repu-surface);
  border: 1px dashed var(--repu-accent-mid);
  border-radius: var(--repu-radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--repu-ink-muted);
  min-height: 42px;
  display: flex;
  align-items: center;
}
.calc-wrap .conv-display strong {
  color: var(--repu-accent);
  font-weight: 500;
}

/* GOOGLE ROW */
.calc-wrap .google-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--repu-border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.calc-wrap .google-row label {
  font-size: 13px;
  color: var(--repu-ink-muted);
}
.calc-wrap .google-row input {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--repu-ink);
  background: var(--repu-surface);
  border: 1px solid var(--repu-border);
  border-radius: var(--repu-radius-sm);
  outline: none;
  transition: border-color 0.15s;
  box-shadow: none;
}
.calc-wrap .google-row input:focus {
  border-color: var(--repu-accent);
}
.calc-wrap .google-row .hint {
  font-size: 11px;
  color: var(--repu-ink-faint);
}

/* BUTTON */
.calc-wrap .calc-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--repu-accent);
  border: none;
  border-radius: var(--repu-radius-sm);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.calc-wrap .calc-btn:hover {
  background: #235c42;
}
.calc-wrap .calc-btn:active {
  transform: scale(0.99);
}

/* RESULTS */
.calc-wrap .results-section {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.calc-wrap .results-section.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.calc-wrap .results-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--repu-ink-faint);
  margin-bottom: 1rem;
}

/* SUMMARY BAR */
.calc-wrap .summary-bar {
  background: var(--repu-surface-soft);
  border: 1px solid var(--repu-border);
  border-radius: var(--repu-radius);
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.calc-wrap .summary-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.calc-wrap .summary-stat .slbl {
  font-size: 11px;
  color: var(--repu-ink-faint);
}
.calc-wrap .summary-stat .sval {
    font-size: 16px;
  color: var(--repu-ink);
  font-weight:600;
}
.calc-wrap .ltv-explain {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 4px;
  font-style: italic;
}

/* SCENARIO CARDS */
.calc-wrap .scenarios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-wrap .scenario-card {
  border: 1px solid var(--repu-border);
  border-radius: var(--repu-radius);
  overflow: hidden;
  background: var(--repu-surface);
}
.calc-wrap .scenario-card.highlight {
  border-color: var(--repu-accent-mid);
  background: var(--repu-accent-light);
}
.calc-wrap .scenario-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--repu-border);
  flex-wrap: wrap;
  gap: 8px;
}
.calc-wrap .scenario-card.highlight .scenario-head {
  border-color: var(--repu-accent-mid);
}
.calc-wrap .scenario-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--repu-ink-muted);
}
.calc-wrap .scenario-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--repu-ink-faint);
}
.calc-wrap .scenario-card.highlight .scenario-badge {
  color: var(--repu-accent);
}
.calc-wrap .scenario-card.highlight .dot {
  background: var(--repu-accent);
}
.calc-wrap .best-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--repu-accent);
  background: var(--repu-accent-mid);
  border-radius: 20px;
  padding: 3px 10px;
}
.calc-wrap .scenario-annual {
   font-size: 16px;
   font-weight:600;
  color: var(--repu-ink);
}
.calc-wrap .scenario-card.highlight .scenario-annual {
  color: var(--repu-accent);
}
.calc-wrap .scenario-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.calc-wrap .stat-cell {
  padding: 0.85rem 1.25rem;
  border-right: 1px solid var(--repu-border);
}
.calc-wrap .stat-cell:last-child {
  border-right: none;
}
.calc-wrap .scenario-card.highlight .stat-cell {
  border-color: var(--repu-accent-mid);
}
.calc-wrap .stat-cell .slbl {
  font-size: 11px;
  color: var(--repu-ink-faint);
  margin-bottom: 4px;
  line-height: 1.3;
}
.calc-wrap .stat-cell .sval {
  font-size: 13px;
  font-weight: 500;
  color: var(--repu-ink-muted);
}
.calc-wrap .scenario-explain {
  padding: 0.75rem 1.25rem;
  font-size: 16px;
  color: var(--repu-ink);
  line-height: 1.6;
  border-bottom: 1px solid var(--repu-border);
  background: var(--repu-surface-soft);
}
.calc-wrap .highlight-explain {
  border-color: var(--repu-accent-mid);
  background: #dff0e9;
  color: var(--repu-accent);
}

/* RESULTS NOTE */
.calc-wrap .results-note {
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--repu-ink-faint);
  line-height: 1.6;
  text-align: center;
}
.calc-wrap .results-note a {
  color: var(--repu-accent);
  text-decoration: none;
}
.calc-wrap .results-note a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 520px) {
  .calc-wrap .scenario-body {
    grid-template-columns: 1fr;
  }
  .calc-wrap .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--repu-border);
  }
  .calc-wrap .stat-cell:last-child {
    border-bottom: none;
  }
  .calc-wrap .summary-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  #fields-simple > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}/* End custom CSS */