/* ============================================================
   ImoStand — Calculator CSS
   /proprietati/css/calculator.css
   ============================================================ */

/* ROOT & BODY */
body {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  color: #182333;
}

/* ── HERO ────────────────────────────────────────────────── */
.calc-hero {
  background: linear-gradient(135deg, #182333 0%, #1e2f42 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.calc-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(204,172,102,0.12);
}
.calc-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(204,172,102,0.07);
}
.calc-hero::before,
.calc-hero::after {
  pointer-events: none;
}
.ch-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ccac66;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ch-line {
  display: block;
  width: 28px;
  height: 1px;
  background: #ccac66;
  flex-shrink: 0;
}
.ch-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ch-title em {
  color: #ccac66;
  font-style: italic;
}
.ch-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

/* Badge proprietate */
.ch-prop-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(204,172,102,0.1);
  border: 1px solid rgba(204,172,102,0.25);
  border-radius: 4px;
  padding: 14px 20px;
  margin-top: 28px;
  max-width: 700px;
}
.ch-badge-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ch-badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.ch-badge-title {
  font-size: 17px;
  font-weight: 500;
  color: #ccac66;
}
.ch-badge-sep {
  color: rgba(255,255,255,0.15);
  font-size: 20px;
}
.ch-badge-price {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}
.ch-back-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.ch-back-link:hover { color: #ccac66; }
.ch-back-link i { margin-right: 6px; font-size: 11px;}

/* Badge noindex */
.ch-noindex-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.ch-noindex-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── PAGE LAYOUT ─────────────────────────────────────────── */
.calc-page {
  padding: 48px 0 80px;
  background: #fff;
}

/* ── BLOCKS ──────────────────────────────────────────────── */
.calc-block {
  background: #fff;
  border: 1px solid #e8e3d8;
  border-radius: 4px;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(24,35,51,0.08), 0 1px 4px rgba(24,35,51,0.04);
}
.calc-block-header {
  padding: 24px 32px;
  border-bottom: 1px solid #e8e3d8;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cb-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #182333;
  color: #ccac66;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cb-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #182333;
}
.cb-sub {
  font-size: 14px;
  color: #182333;
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.calc-block-body {
  padding: 32px;
}

/* ── CALCULATOR GRID ──────────────────────────────────────── */
.calc-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .calc-main-grid { grid-template-columns: 1fr; }
}

/* ── FORM FIELDS ─────────────────────────────────────────── */
.field-group { margin-bottom: 20px; }
.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5e5b5b;
  margin-bottom: 8px;
}
.badge-optional {
  font-size: 10px;
  background: rgba(204,172,102,0.12);
  color: #ccac66;
  border-radius: 2px;
  padding: 2px 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.input-wrap { position: relative; }
.input-wrap input,
.input-wrap select {
  width: 100%;
  height: 46px;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 0 52px 0 14px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
  color: #182333;
  background: rgba(24,35,51,0.03);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.input-wrap input:focus,
.input-wrap select:focus { border-color: #ccac66; }
.input-wrap select { padding-right: 14px; cursor: pointer; }
.input-addon {
  position: absolute;
  right: 0; top: 0;
  height: 46px; width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #ccac66;
  border-left: 1px solid #e8e3d8;
  pointer-events: none;
}
.field-hint {
  font-size: 13px;
  color: #5e5b5b;
  margin-top: 6px;
  line-height: 1.5;
}
.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .field-row-2 { grid-template-columns: 1fr; }
}

/* ── TAXE TOGGLES ────────────────────────────────────────── */
.taxe-placeholder {
  padding: 20px;
  background: #faf7f2;
  border: 1px dashed #e8e3d8;
  border-radius: 3px;
  font-size: 13px;
  color: #8a8a8a;
  text-align: center;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #faf7f2;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
}
.toggle-row:hover { border-color: #ccac66; }
.toggle-row:last-child { margin-bottom: 0; }
.toggle-info { flex: 1; min-width: 0; }
.toggle-name {
  font-size: 15px;
  font-weight: 500;
  color: #182333;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.toggle-badge-rec {
  font-size: 10px;
  background: rgba(204,172,102,0.12);
  color: #ccac66;
  border-radius: 2px;
  padding: 2px 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.toggle-local {
  font-size: 12px;
  color: #5e5b5b;
  margin-top: 2px;
  line-height: 1.4;
}
.toggle-pct {
  font-size: 15px;
  font-weight: 600;
  color: #ccac66;
  margin: 0 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.toggle-sw {
  width: 36px; height: 20px;
  border-radius: 10px;
  background: #e8e3d8;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toggle-sw.on { background: #ccac66; }
.toggle-sw::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 2px; left: 2px;
  transition: transform 0.2s;
}
.toggle-sw.on::after { transform: translateX(16px); }

/* Disclaimer */
.calc-disclaimer {
  background: rgba(24,35,51,0.04);
  border-left: 3px solid #ccac66;
  border-radius: 0 3px 3px 0;
  padding: 12px 16px;
  font-size: 12px;
  color: #5e5b5b;
  line-height: 1.6;
  margin-top: 16px;
}
.calc-disclaimer strong { color: #182333; font-weight: 600; }

/* ── RESULT CARD ─────────────────────────────────────────── */
.calc-result-wrap { position: sticky; top: 80px; }
.result-card {
  background: #182333;
  border-radius: 4px;
  padding: 28px;
}
.rc-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.rc-prop {
  font-size: 13px;
  color: #ccac66;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.4;
}
.rc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rc-line:last-of-type { border-bottom: none; }
.rc-line-name {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 180px;
  line-height: 1.4;
}
.rc-line-val {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  margin-left: 10px;
}
.rc-line-val.gold { color: #ccac66; }
.rc-empty {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  padding: 12px 0;
  text-align: center;
}
.rc-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 14px 0;
}
.rc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.rc-total-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.rc-total-val {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: #ccac66;
}
.rc-total-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.rc-imm-box {
  background: rgba(204,172,102,0.1);
  border-radius: 3px;
  padding: 12px 14px;
}
.rc-imm-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ccac66;
  margin-bottom: 4px;
}
.rc-imm-val {
  font-size: 18px;
  font-weight: 600;
  color: #ccac66;
}
.rc-imm-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}
.rc-rest-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}
.rc-rest-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.rc-rest-val {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.btn-pdf-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(204,172,102,0.3);
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-pdf-calc:hover {
  border-color: #ccac66;
  color: #ccac66;
}

/* ── PLAN DE PLATĂ ────────────────────────────────────────── */
.plan-tabs {
  display: flex;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 24px;
}
.plan-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  background: #faf7f2;
  color: #8a8a8a;
  border: none;
  transition: all 0.2s;
}
.plan-tab.active { background: #182333; color: #ccac66; }
.plan-panel { display: none; }
.plan-panel.active { display: block; }
.plan-desc {
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 20px;
  line-height: 1.6;
}
.stadii-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) {
  .stadii-grid { grid-template-columns: 1fr; }
}
.stage-card {
  background: #faf7f2;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 18px;
}
.stage-name {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5e5b5b;
  margin-bottom: 10px;
  line-height: 1.4;
}
.stage-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stage-pct {
  width: 72px;
  height: 38px;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  outline: none;
  color: #182333;
}
.stage-pct:focus { border-color: #ccac66; }
.stage-unit { font-size: 14px; color: #5e5b5b; }
.stage-amount {
  font-size: 22px;
  font-weight: 600;
  color: #182333;
  margin-top: 10px;
  float: right;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
}
.stadii-warn {
  margin-top: 14px;
  padding: 10px 16px;
  background: #fff3cd;
  border-radius: 3px;
  font-size: 12px;
  color: #856404;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rate-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rate-select {
  height: 44px;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 0 16px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #182333;
  outline: none;
  cursor: pointer;
  background: #fff;
}
.rate-select:focus { border-color: #ccac66; }
.rate-result {
  background: #faf7f2;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 12px 20px;
  flex: 1;
  min-width: 160px;
}
.rate-amount {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #182333;
}
.rate-sub {
  font-size: 12px;
  color: #8a8a8a;
  margin-top: 2px;
}
.rate-total-wrap { font-size: 13px; color: #8a8a8a; }
.rate-total-wrap strong { color: #182333; }

/* ── APRECIERE ────────────────────────────────────────────── */
.apr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 720px) {
  .apr-grid { grid-template-columns: 1fr; }
}
.slider-group { margin-bottom: 30px; }
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.slider-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5e5b5b;
}
.slider-val {
  font-size: 15px;
  font-weight: 600;
  color: #ccac66;
}
input[type="range"] {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #dbd6cb;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ccac66;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(24,35,51,0.15);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ccac66;
  border: none;
  cursor: pointer;
}
.slider-hints {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #5e5b5b;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.apr-result-box {
  background: #faf7f2;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 18px;
}
.arb-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5e5b5b;
  margin-bottom: 10px;
}
.arb-val {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: #182333;
}
.arb-gain {
  font-size: 15px;
  font-weight: 600;
  color: #006400;
  margin-top: 6px;
}
.arb-note {
  font-size: 12px;
  color: #5e5b5b;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.apr-chart-title {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5e5b5b;
  margin-bottom: 14px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.bar-yr {
  font-size: 11px;
  color: #8a8a8a;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  background: #e8e3d8;
  border-radius: 2px;
  height: 8px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #ccac66;
  border-radius: 2px;
  transition: width 0.4s ease;
}
.bar-val {
  font-size: 14px;
  color: #182333;
  font-weight: 600;
  width: 90px;
  text-align: right;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* ── CHIRIE ───────────────────────────────────────────────── */
.chirie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 720px) {
  .chirie-grid { grid-template-columns: 1fr; }
}
.period-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.period-btn {
  flex: 1;
  padding: 10px 8px;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  background: #faf7f2;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #8a8a8a;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  min-width: 58px;
}
.period-btn.active {
  background: #182333;
  color: #ccac66;
  border-color: #182333;
}
.chirie-lunar-box {
  background: #faf7f2;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 18px;
  margin-top: 8px;
}
.clb-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5e5b5b;
  margin-bottom: 8px;
}
.clb-val {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #182333;
}
.clb-note {
  font-size: 12px;
  color: #5e5b5b;
  margin-top: 4px;
}
.chirie-result-card {
  background: #182333;
  border-radius: 4px;
  padding: 28px;
  text-align: center;
}
.crc-period {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.crc-amount-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.crc-amount {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #ccac66;
  line-height: 1;
}
.crc-cur {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.crc-yield-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}
.crc-annual {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.crc-annual-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  float: left;
}
.crc-annual-val {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  float: right;
}

/* ── OFF-PLAN ─────────────────────────────────────────────── */
.offplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.offplan-card {
  background: #faf7f2;
  border: 1px solid #e8e3d8;
  border-radius: 3px;
  padding: 20px;
}
.oc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(204,172,102,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ccac66;
  font-size: 15px;
}
.oc-title {
  font-size: 13px;
  font-weight: 600;
  color: #182333;
  margin-bottom: 8px;
  line-height: 1.3;
}
.oc-text {
  font-size: 12px;
  color: #8a8a8a;
  line-height: 1.65;
}

/* ── CTA FINAL ───────────────────────────────────────────── */
.calc-cta-section {
  background: linear-gradient(135deg, #182333 0%, #1e2f42 100%);
  border-radius: 4px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(24,35,51,0.12), 0 1px 4px rgba(24,35,51,0.06);
}
.calc-cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(204,172,102,0.08);
}
.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ccac66;
  margin-bottom: 16px;
  position: relative;
}
.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}
.cta-title em { color: #ccac66; font-style: italic; }
.cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ccac66;
  color: #182333;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta-gold:hover { background: #b89a55; color: #182333; }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cta-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .calc-block-header { padding: 18px 20px; }
  .calc-block-body { padding: 20px; }
  .calc-cta-section { padding: 40px 24px; }
  .calc-hero { padding: 40px 0 36px; }
}
@media (max-width: 480px) {
  .calc-main-grid { gap: 24px; }
  .calc-result-wrap { position: static; }
}
