@charset "UTF-8";
/* Cost Estimator styles (source for cost-estimator.css, keep both in sync) */
.ce-wrapper {
  max-width: 600px;
  background: #FFFFFF;
  border: 1px solid #E7E9EE;
  border-radius: 24px;
  padding: 36px;
  font-family: "Inter", sans-serif;
  margin: auto;
}

.ce-heading {
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #2B2B33;
  margin: 0 0 8px;
}

.ce-subheading {
  color: #8A8F98;
  font-size: 15px;
  margin: 0 0 28px;
}

.ce-field-label {
  font-weight: 700;
  color: #2B2B33;
  font-size: 15px;
  margin: 0 0 12px;
}

/* ── Tiles ────────────────────────────────────────────────────────────── */
.ce-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.ce-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 8px;
  background: #FFFFFF;
  border: 1px solid #E7E9EE;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ce-tile:hover {
  border-color: #4B3D8F;
  transform: translateY(-2px);
}

.ce-tile-number {
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #004974;
}

.ce-tile-save {
  font-size: 12px;
  color: #8A8F98;
}

.ce-tile.is-selected {
  background: #4B3D8F;
  border-color: #4B3D8F;
}

.ce-tile.is-selected .ce-tile-number,
.ce-tile.is-selected .ce-tile-save {
  color: #FFFFFF;
}

.ce-tile-custom.is-selected {
  background: #FFFFFF;
  border-color: #4B3D8F;
  border-width: 2px;
}

.ce-tile-custom.is-selected .ce-tile-number,
.ce-tile-custom.is-selected .ce-tile-save {
  color: #004974;
}

/* ── Price panel ──────────────────────────────────────────────────────── */
.ce-panel {
  background: #F4F2FB;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ce-panel-price {
  flex: 1 1 260px;
}

.ce-panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ce-panel-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8A8F98;
  font-weight: 600;
}

.ce-billing-pill {
  background: #E4DFF7;
  color: #4B3D8F;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.ce-price-amount {
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #4B3D8F;
  line-height: 1.1;
  margin-bottom: 8px;
  transition: opacity 0.125s ease;
}

.ce-price-detail {
  font-size: 14px;
  color: #004974;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  transition: opacity 0.125s ease;
}

.ce-price-detail.is-fading,
.ce-price-amount.is-fading {
  opacity: 0;
}

.ce-bullet {
  color: #B8B4CC;
}

.ce-base-price {
  text-decoration: line-through;
  color: #A9A6BC;
}

.ce-total-price strong,
.ce-save strong {
  color: #4B3D8F;
}

.ce-panel-custom {
  flex: 1 1 260px;
}

.ce-custom-text {
  font-size: 16px;
  font-weight: 600;
  color: #004974;
  margin: 0;
}

.ce-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #8BC251;
  color: #FFFFFF;
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.ce-cta-button:hover {
  background: #7AAE44;
  color: #FFFFFF;
}

/* ── Quote line ───────────────────────────────────────────────────────── */
.ce-quote-line {
  text-align: center;
  color: #2B2B33;
  font-size: 15px;
  margin: 24px 0 0;
}

.ce-quote-line a {
  color: #0168A5;
  font-weight: 600;
  text-decoration: none;
}

.ce-quote-line a:hover {
  text-decoration: underline;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .ce-wrapper {
    padding: 24px;
  }
  .ce-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
  .ce-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .ce-cta-button {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .ce-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=cost-estimator.css.map */