/* Energy Calculator Styles - Shared for both real-time calc and results display */

/* Solar Results Container */
.solar-results {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.solar-header {
  text-align: center;
  margin-bottom: 40px;
}

.solar-header h2 {
  color: #02506e;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.solar-header p {
  color: #02506e;
  font-size: 1.4em;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px and max-width: 1023px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid .result-box:nth-child(-n + 3) {
    grid-column: span 2; /* 3 boxes across 6 columns */
  }
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .results-grid .result-box {
    grid-column: span 4; /* 4 columns each = 3 boxes per row */
    min-width: 0; /* critical */
    width: 100%;
    box-sizing: border-box;
  }

  .results-grid .result-box:first-child {
    grid-column: span 12;
  }
}

/* Result Box Styles */
.result-box {
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 220px;
  transition: all 0.3s ease;
}

.result-box.result-box-money {
  flex-direction: row;
  gap: 2em;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .result-box.result-box-money {
    flex-direction: column;
    gap: 1em;
  }
}

.result-box-savings-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}
.result-box-savings {
  display: flex;
  align-items: center;
  gap: 20px;
}
.result-box-savings .result-label {
  max-width: 150px;
}
.result-box3 {
  max-width: 380px;
}

#energy-bill-input {
  text-align: center !important;
}

.result-box.white {
  background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
  color: #333;
}

.result-box.cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.result-box.blue {
  background: linear-gradient(135deg, #245670 0%, #183e53 100%);
}

.result-box.yellow {
  background: linear-gradient(135deg, #fbba00 0%, #f49600 100%);
}

.result-box.orange {
  background: linear-gradient(135deg, #f49600 0%, #d97706 100%);
}

.result-box.gray {
  background: linear-gradient(135deg, #787878 0%, #808080 100%);
}

.result-box.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.result-label {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 500;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-value {
  font-size: 3em;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  justify-content: center;
}

.result-unit {
  font-size: 0.75em;
  opacity: 0.9;
}

.result-value .result-unit {
  font-size: 0.5em;
}

.result-box.white .result-value {
  color: #02506e;
}

.result-box.white .result-label {
  color: #02506e;
  opacity: 0.9;
}

.result-box.white .result-unit {
  color: #02506e;
  opacity: 0.8;
}
/* Empty State Styles */
.result-box.empty-state {
  opacity: 0.5;
  background: linear-gradient(135deg, #d1d5db 0%, #e5e7eb 100%) !important;
  color: #9ca3af;
}

.result-box.empty-state .result-label,
.result-box.empty-state .result-value,
.result-box.empty-state .result-unit {
  color: #9ca3af;
}

.result-box.empty-state.blue {
  background: linear-gradient(135deg, #cbd5e1 0%, #e2e8f0 100%) !important;
  color: #94a3b8;
}

.result-box.empty-state.yellow {
  background: linear-gradient(135deg, #fde3b0 0%, #fecb81 100%) !important;
  color: #b68121;
}

.result-box.empty-state.white {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%) !important;
  color: #9ca3af;
}
/* CTA and Modal Styles */
.credit-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fbba00 0%, #f49600 100%);
  color: white;
  padding: 18px 40px;
  border: 0;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.credit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.credit-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 760px;
  width: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.credit-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f3f4f6;
  color: #02506e;
  font-weight: 600;
}

.credit-modal-close {
  background: transparent;
  border: 0;
  font-size: 1.4em;
  cursor: pointer;
  line-height: 1;
  color: #02506e;
}

.credit-modal-close:hover {
  background: transparent;
  color: #012f41;
}

.credit-modal-body {
  padding: 0;
}

.credit-iframe {
  border: 0;
  width: 100%;
  height: 70vh;
  min-height: 600px;
}

@media (max-width: 768px) {
  .credit-iframe {
    height: 80vh;
    min-height: 520px;
  }
}

.cta-box {
  border: 1px solid #f39600;
  border-radius: 6px;
  text-align: center;
  margin: auto;
  max-width: 380px;
  line-height: 1;
  margin-top: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.2s ease;
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(243, 150, 0, 0.1);
}

.cta-box a {
  padding: 20px;
  font-size: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
}

/* Animations */
@keyframes pulse-scale {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-box.animate {
  animation: pulse-scale 0.4s ease-in-out;
}

.result-box.animate-value {
  animation: pulse-scale 0.5s ease-in-out;
}

/* Energy Calculator Input Section */
.energy-calculator-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f4c81 0%, #00b0d6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  color: #1f2937;
}

.energy-calculator-wrapper {
  max-width: 900px;
  width: 100%;
  background: white;
  border-radius: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 40px 30px;
}

@media (max-width: 768px) {
  .energy-calculator-wrapper {
    padding: 24px 16px;
  }
}

.energy-calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .energy-calculator-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Input Section */
.energy-calculator-input-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.energy-calculator-label {
  display: block;
  text-align: center;
  color: #374151;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}

.energy-calculator-input {
  width: 100%;
  /* max-width: 280px; */
  margin: 0 auto;
  padding: 16px 24px !important;
  border: 4px solid #02506e !important;
  color: #02506e !important;
  border-radius: 50px !important;
  font-size: 32px !important;
  font-weight: bold;
  text-align: center;
  focus: ring 4px #a5f3fc;
  outline: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.energy-calculator-input:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(6, 182, 212, 0.3),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.energy-calculator-consumption-box {
  background: #ecf9ff;
  padding: 24px 20px;
  border-radius: 24px;
  text-align: center;
}

.energy-calculator-consumption-label {
  font-size: 14px;
  color: #0891b2;
  font-weight: 500;
}

.energy-calculator-consumption-value {
  font-size: 40px;
  font-weight: bold;
  color: #0891b2;
  margin-top: 8px;
}

/* Results Section */
.energy-calculator-results-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.energy-calculator-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #1f2937;
}

.energy-calculator-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.energy-calculator-result-box {
  padding: 20px 16px;
  border-radius: 24px;
  text-align: center;
  font-weight: bold;
  color: white;
}

.energy-calculator-result-box.cyan {
  background: linear-gradient(to bottom right, #0891b2, #0284c7);
}

.energy-calculator-result-box.green {
  background: linear-gradient(to bottom right, #10b981, #059669);
}

.energy-calculator-result-box.purple {
  background: linear-gradient(to bottom right, #9333ea, #db2777);
}

.energy-calculator-result-box.yellow {
  background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
  color: #78350f;
  grid-column: span 2;
}

@media (max-width: 768px) {
  .energy-calculator-result-box.yellow {
    grid-column: span 1;
  }
}

.energy-calculator-result-value {
  font-size: 36px;
  line-height: 1.2;
  margin: 8px 0;
}

.energy-calculator-result-label {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
}

.energy-calculator-result-unit {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
  margin-top: 4px;
}

/* Comparison Section */
.energy-calculator-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .energy-calculator-comparison {
    grid-template-columns: 1fr;
  }
}

.energy-calculator-comparison-box {
  padding: 20px 16px;
  border-radius: 24px;
  text-align: center;
  color: white;
  font-weight: bold;
}

.energy-calculator-comparison-box.current {
  background: linear-gradient(to bottom right, #f87171, #ef4444);
}

.energy-calculator-comparison-box.new {
  background: linear-gradient(to bottom right, #34d399, #10b981);
}

.energy-calculator-comparison-label {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.energy-calculator-comparison-value {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}

/* Savings Highlight */
.energy-calculator-savings {
  background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
  color: #78350f;
  padding: 24px 20px;
  border-radius: 24px;
  text-align: center;
  font-weight: bold;
  grid-column: span 2;
}

@media (max-width: 768px) {
  .energy-calculator-savings {
    grid-column: span 1;
  }
}

.energy-calculator-savings-label {
  font-size: 14px;
  margin-bottom: 8px;
}

.energy-calculator-savings-value {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

/* CTA Button */
.energy-calculator-cta {
  background: #22c55e;
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.energy-calculator-cta:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.energy-calculator-cta-container {
  text-align: center;
  margin-top: 20px;
}

.energy-calculator-cta-subtitle {
  font-size: 13px;
  color: #999;
  margin-top: 10px;
}

/* Footer Notes */
.energy-calculator-footer {
  text-align: center;
  color: #666;
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.6;
}

.energy-calculator-footer p {
  margin: 5px 0;
}

/*  */
.wpforms-container input.wpforms-field-medium,
.wpforms-container select.wpforms-field-medium,
.wpforms-container .wpforms-field-row.wpforms-field-medium,
.wp-core-ui div.wpforms-container input.wpforms-field-medium,
.wp-core-ui div.wpforms-container select.wpforms-field-medium,
.wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}

div.wpforms-container-full input[type="submit"]:not(:hover):not(:active),
div.wpforms-container-full button[type="submit"]:not(:hover):not(:active),
div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active),
.wp-core-ui
  div.wpforms-container-full
  input[type="submit"]:not(:hover):not(:active),
.wp-core-ui
  div.wpforms-container-full
  button[type="submit"]:not(:hover):not(:active),
.wp-core-ui
  div.wpforms-container-full
  .wpforms-page-button:not(:hover):not(:active) {
  display: inline-block;
  background: linear-gradient(135deg, #fbba00 0%, #f49600 100%);
  color: white;
  padding: 18px 40px !important;
  border: 0;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 55px !important;
  width: 200px !important;
}

div.wpforms-container-full input[type="submit"]:hover,
div.wpforms-container-full input[type="submit"]:active,
div.wpforms-container-full button[type="submit"]:hover,
div.wpforms-container-full button[type="submit"]:active,
div.wpforms-container-full .wpforms-page-button:hover,
div.wpforms-container-full .wpforms-page-button:active,
.wp-core-ui div.wpforms-container-full input[type="submit"]:hover,
.wp-core-ui div.wpforms-container-full input[type="submit"]:active,
.wp-core-ui div.wpforms-container-full button[type="submit"]:hover,
.wp-core-ui div.wpforms-container-full button[type="submit"]:active,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:hover,
.wp-core-ui div.wpforms-container-full .wpforms-page-button:active {
  /* background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); */
  transform: translateY(-2px);
  padding: 18px 40px !important;
  height: 55px !important;
  width: 200px !important;
}

#wpforms-form-282 .wpforms-field[data-field-id="9"] {
  display: none !important;
}

/* ---- 3-card layout (energy_bill_calculator) ---- */
.calc-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.calc-card {
  border-radius: 16px;
  padding: 28px 32px;
  transition: opacity 0.3s ease;
}

.calc-card.empty-state {
  opacity: 0.45;
  filter: saturate(0.3);
}

/* Card 1 — secondary/compact (system sizing details) */
.calc-card--orange {
  background: transparent;
  border: 2px solid rgba(244, 150, 0, 0.45);
  color: #7a4800;
  padding: 18px 24px;
}

/* Cards 2 & 3 — primary, full weight */
.calc-card--blue {
  background: linear-gradient(135deg, #23516c 0%, #183e53 100%);
  color: #fff;
}

.calc-card--green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}

.calc-card__title {
  font-size: 1.15em;
  font-weight: 800;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  opacity: 1;
}

.calc-card--orange .calc-card__title {
  color: #b85e00;
}

.calc-card--blue .calc-card__title,
.calc-card--green .calc-card__title {
  font-size: 1.2em;
  margin-bottom: 24px;
  color: #fff;
  opacity: 1;
}

.calc-card__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calc-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-card--orange .calc-card__row {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  padding: 7px 0;
}

.calc-card__label {
  font-size: 0.9em;
  font-weight: 500;
  opacity: 0.8;
}

.calc-card__value {
  font-size: 1.4em;
  font-weight: 700;
  text-align: right;
}

/* Bigger values on the important cards */
.calc-card--blue .calc-card__value,
.calc-card--green .calc-card__value {
  font-size: 2.4em;
}

.calc-card--blue .calc-card__label,
.calc-card--green .calc-card__label {
  font-size: 1em;
}

.calc-card--orange .calc-card__label,
.calc-card--orange .calc-card__value {
  color: #7a4800;
}

.calc-card__footnote {
  margin: 16px 0 0 0;
  font-size: 0.78em;
  opacity: 0.65;
  line-height: 1.5;
}

@keyframes calc-card-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.015); }
  100% { transform: scale(1); }
}

.calc-card.animate-value {
  animation: calc-card-pop 0.4s ease;
}

/* ==============================================
   Energy Bill Calculator — ebc-* redesign
   Fintech / Solar card layout (March 2026)
   ============================================== */

.ebc-wrapper {
  max-width: 480px;
  width: 100%;
  margin: 40px auto 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 520px) {
  .ebc-wrapper {
    margin: 20px auto 0;
    border-radius: 0;
  }
}

/* ── Input Section ── */
.ebc-input-section {
  background: #fff;
  padding: 40px 28px 100px;
  margin-bottom: -50px;
  /* make bottom corner 0 radius */
  border-radius: 24px 24px 0 0;
  border: 4px solid #2f5b78;
  border-bottom:0;
  text-align: center;
}

.ebc-headline {
  font-size: 26px;
  font-weight: 800;
  color: #2f5b78;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.ebc-sublabel {
  font-size: 21px;
  color: #5a7a8e;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.ebc-pill-wrap {
  display: flex;
  justify-content: center;
}

#energy-bill-input.ebc-pill-input {
  background: #fff !important;
  color:  #2f5b78 !important;
  border: 4px solid #2f5b78 !important;
  border-radius: 100px !important;
  font-size: 46px !important;
  font-weight: 700 !important;
  text-align: center !important;
  padding: 14px 36px !important;
  max-width: 300px !important;
  width: 100% !important;
  box-shadow: 0 0 0 5px rgba(244, 150, 0, 0.18),
    0 6px 20px rgba(47, 91, 120, 0.3) !important;
  outline: none !important;
}

#energy-bill-input.ebc-pill-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

#energy-bill-input.ebc-pill-input:focus {
  box-shadow: 0 0 0 7px rgba(244, 150, 0, 0.28),
    0 6px 20px rgba(47, 91, 120, 0.35) !important;
}

/* ── Base Card ── */
.ebc-card {
  position: relative;
  transition: opacity 0.3s ease, filter 0.3s ease;
  border-radius: 24px 24px 0 0;
  padding-bottom: 100px !important;
}
.ebc-card + .ebc-card {
  margin-top: -74px !important;
}

#calc-card-1 {
  z-index: 1;
}
#calc-card-2 {
  z-index: 2;
}
#calc-card-3 {
  z-index: 3;
  border-radius: 24px;
  padding-bottom: 28px !important;
}


.ebc-card.empty-state {
  /* card keeps full background */
}

.ebc-card.empty-state .ebc-card__title,
.ebc-card.empty-state .ebc-card__subtitle,
.ebc-card.empty-state .ebc-card__label,
.ebc-card.empty-state .ebc-card__value,
.ebc-card.empty-state .ebc-card__big-price,
.ebc-card.empty-state .ebc-card__note,
.ebc-card.empty-state .ebc-info-icon {
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

/* ── Card 1: Light gray — Sistema Solar Ideal ── */
.ebc-card--gray {
  background: #eeeeee; 
  padding: 24px 28px;
}

/* ── Card 2: Dark blue — Préstamo Solar ── */
.ebc-card--blue {
  background: #224f69;
  padding: 36px 28px;
  text-align: center;
}

/* ── Card 3: Lime green — Ahorros ── */
.ebc-card--green {
  background: #c0d953; /*linear-gradient(135deg, #d6ea6b 0%, #c5d945 100%); */
  padding: 24px 28px;
}

/* ── Card Header (title + info icon) ── */
.ebc-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:4px;
  margin-bottom: 16px;
}

/* ── Card Title ── */
.ebc-card__title {
  font-size: 23px;
  line-height: 25px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: #2f5b78;
  max-width:85%;
  margin:auto;
}

.ebc-card__title .ebc-info-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 4px;
}

.ebc-card--blue .ebc-card__title {
  display: block;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  margin-bottom: 4px;
  font-size: 23px;
}

/* ── Subtitle & Big Price (blue card) ── */
.ebc-card__subtitle {
  color: rgba(255, 255, 255, 1);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 10px 0;
  text-align: center;
}

.ebc-card__big-price {
  font-size: 92px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.ebc-card__note {
  margin: 10px 0 0 0;
  font-size: 10.5px;
  color: #8aa3b1;
  line-height: 1.35;
  text-align: center;
}

/* ── Rows ── */
.ebc-card__rows {
  display: flex;
  flex-direction: column;
}

.ebc-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #23516c;
}

.ebc-card--green .ebc-card__row {
  border-bottom-color: rgba(47, 91, 120, 0.2);
}

.ebc-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ebc-card__row--emphasis .ebc-card__value {
  font-size: 2em;
}

/* ── Labels & Values ── */
.ebc-card__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 17.5px;
  font-weight: 500;
  color: #4a6a80;
}

.ebc-card--green .ebc-card__label {
  font-size: 17px;
  font-weight: 700;
  color: #23516c;
}

.ebc-card__value {
  font-size: 17.5px;
  font-weight: 800;
  color: #2f5b78;
  text-align: right;
}

.ebc-card--green .ebc-card__value {
  font-size: 28px;
  color: #23516c;
}

.ebc-card--green .ebc-card__row--emphasis .ebc-card__value {
  /* font-size: 28px; */
}

/* ── Info Icon ── */
.ebc-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #8aabbd;
  cursor: help;
  flex-shrink: 0;
  user-select: none;
  vertical-align: middle;
}

.ebc-info-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ebc-info-icon--sm {
  width: 14px;
  height: 14px;
  color: #9dbdcc;
}

/* ── CTA Section ── */
.ebc-cta-section {
  background: #fff;
  padding: 36px 28px 28px;
  text-align: center;
}

.ebc-cta-title {
  font-size: 1.35em;
  font-weight: 800;
  color: #2f5b78;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.ebc-cta-subtitle {
  font-size: 0.88em;
  color: #8aabbd;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.ebc-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f49600 0%, #fbba00 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 60px;
  font-size: 1.15em;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(244, 150, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.03em;
}

.ebc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244, 150, 0, 0.45);
}

.ebc-cta-note {
  margin: 16px 0 0 0;
  font-size: 0.82em;
  color: #bbb;
}

/* ── Disclaimer ── */
.ebc-disclaimer {
  padding: 0 28px 28px;
  background: #fff;
  text-align: center;
}

.ebc-disclaimer p {
  font-size: 0.76em;
  color: #bbb;
  margin: 4px 0;
  line-height: 1.5;
}

/* ── Animations ── */
@keyframes ebc-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.012); }
  100% { transform: scale(1); }
}

.ebc-card.animate-value {
  animation: ebc-pop 0.4s ease;
}


.ebc-wrapper .img-circle {
  position: absolute;
    left: 50%;
    transform: translate(-66%, -37%);
    max-width: 100px;
}

.ebc-card__empty-img {
  width: 50px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -80%);
  z-index: 0;
  pointer-events: none;
}

.ebc-card__header,
.ebc-card__title,
.ebc-card__rows,
.ebc-card__subtitle,
.ebc-card__big-price,
.ebc-card__note {
  position: relative;
  z-index: 1;
}