/* =========================================
   PROCESS PAGE — PREMIUM LUXURY THEME
========================================= */

/* Page Background */
.page-process {
  background:
    radial-gradient(circle at top left, rgba(240, 183, 107, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(240, 183, 107, 0.04), transparent 55%),
    var(--bg-dark);
  color: #f7f7ff;
}

/* =========================================
   PROCESS HERO
========================================= */

.page-process .hero-premium {
  padding: 84px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(240, 183, 107, 0.18), transparent 55%),
    linear-gradient(135deg, #050816 0%, #02030a 55%, #050816 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-process .hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-process .hero-tag {
  display: inline-flex;
  padding: 4px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(240, 183, 107, 0.08);
  border: 1px solid rgba(240, 183, 107, 0.4);
  margin-bottom: 16px;
}

.page-process .hero-title-lg {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.page-process .hero-lead {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(232, 235, 245, 0.9);
}

/* =========================================
   PROCESS / CALCULATOR SECTION
========================================= */

.page-process .process-steps-editorial {
  width: 90%;
  max-width: 860px;
  margin: 80px auto 110px;
}

/* Step Row */
.page-process .step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(240, 183, 107, 0.12);
}

.page-process .step-index {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: rgba(240, 183, 107, 0.9);
}

.page-process .step-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.page-process .step-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(226, 230, 245, 0.92);
}

/* =========================================
   CALCULATOR — INTERACTIVE STRUCTURE
========================================= */

.calc-block,
.calc-grid,
.calc-result {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(240, 183, 107, 0.14);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 18px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Labels */
.calc-label,
.calc-field label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 183, 107, 0.95);
  margin-bottom: 8px;
  display: block;
}

/* Inputs */
.calc-field input[type="number"] {
  width: 100%;
  padding: 11px 12px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.9rem;
}

.calc-field input:focus {
  outline: none;
  border-color: rgba(240, 183, 107, 0.9);
}

/* Inline years/months */
.calc-inline {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Slider */
input[type="range"] {
  width: 100%;
}

.range-value {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(240, 183, 107, 1);
}

/* Radio Options */
.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.calc-options label:hover {
  background: rgba(240, 183, 107, 0.12);
}

/* Insights */
.calc-insights {
  margin-top: 14px;
}

.insight-text {
  font-size: 0.88rem;
  opacity: 0.85;
}

/* Hint */
.calc-hint {
  font-size: 0.88rem;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* Action */
.calc-action {
  margin-top: 22px;
}

/* =========================================
   RESULT ZONE
========================================= */

.calc-result {
  margin-top: 30px;
  background:
    radial-gradient(circle at top, rgba(240, 183, 107, 0.18), transparent 65%);
}

.calc-result p {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

#gain {
  color: #f0b76b;
  font-weight: 600;
}

#topupDelta {
  margin-top: 6px;
  color: rgba(240, 183, 107, 0.95);
}

/* Chart */
#breakupChart {
  max-width: 240px;
  margin-top: 18px;
}

/* Utility */
.hidden {
  display: none;
}

/* =========================================
   CTA SECTION
========================================= */

.page-process .section-cta-gold {
  padding: 72px 0 78px;
  margin-top: 80px;
  background:
    radial-gradient(circle at top, rgba(240, 183, 107, 0.18), transparent 60%),
    linear-gradient(135deg, #101523 0%, #050816 60%, #03040b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-process .cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-process .cta-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.page-process .cta-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
}
