/* ---------- hero slideshow ---------- */
.hero-slideshow {
  position: relative; width: 100%; aspect-ratio: 1600 / 583; max-height: 620px; min-height: 220px;
  overflow: hidden; background: var(--primary-deep);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-slide-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(20,15,35,0.55) 0%, rgba(20,15,35,0.02) 35%, transparent 55%);
}
.hero-slide-content { position: absolute; left: 40px; bottom: 28px; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; right: 40px; bottom: 16px; display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 26px; height: 4px; background: rgba(253,252,251,0.4); border-radius: 2px; }
.hero-dot.active { background: var(--accent); }
@media (max-width: 640px) {
  .hero-slideshow { aspect-ratio: auto; height: 42vh; min-height: 260px; }
  .hero-slide-content { left: 20px; bottom: 20px; }
  .hero-dots { right: 20px; bottom: 10px; }
}

/* ---------- stats ---------- */
.stats-section { padding: 56px 0; border-bottom: 1px solid rgba(30,27,46,0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-entry { display: flex; gap: 14px; align-items: flex-start; }
.stat-num { font-family: 'IBM Plex Mono', monospace; color: var(--accent); font-size: 13px; padding-top: 4px; }
.stat-value { font-family: 'Fraunces', serif; font-size: 30px; color: var(--primary); }
.stat-label { font-size: 13.5px; color: #566; margin-top: 2px; }
.stat-mono { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; color: #9a927a; margin-top: 4px; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- EMI calculator ---------- */
.calculator-wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  border-radius: 10px; overflow: hidden; box-shadow: 0 20px 50px rgba(30,27,46,0.1);
}
.calculator-inputs { background: var(--paper); border: 1px solid rgba(30,27,46,0.1); padding: 40px; display: flex; flex-direction: column; gap: 32px; justify-content: center; }
.calc-field-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.calc-field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.calc-value { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: var(--primary); font-weight: 600; }
.calc-field input[type="range"] { width: 100%; height: 6px; border-radius: 3px; appearance: none; background: var(--sand); outline: none; }
.calc-field input[type="range"]::-webkit-slider-thumb {
  appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  border: 3px solid var(--paper); box-shadow: 0 2px 8px rgba(0,0,0,0.25); cursor: pointer;
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  border: 3px solid var(--paper); box-shadow: 0 2px 8px rgba(0,0,0,0.25); cursor: pointer;
}
.calculator-result { background: var(--primary-deep); color: var(--paper); padding: 40px; display: flex; flex-direction: column; }
.calc-emi-value { font-family: 'Fraunces', serif; font-size: 44px; color: var(--paper); margin-top: 10px; }
.calc-emi-label { font-size: 13px; color: rgba(253,252,251,0.6); margin-top: 2px; }
.calc-disclaimer { font-size: 11.5px; color: rgba(253,252,251,0.45); margin-top: 14px; text-align: center; }
.ledger-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed rgba(30,27,46,0.14); font-size: 14px; }
.field-num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; }
@media (max-width: 860px) { .calculator-wrap { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { background: rgba(253,252,251,0.05); border: 1px solid rgba(253,252,251,0.14); padding: 26px; border-radius: 5px; color: var(--paper); }
.process-num { font-family: 'IBM Plex Mono', monospace; color: var(--accent-light); font-size: 13px; display: block; margin-bottom: 10px; }
.process-card svg { width: 22px; height: 22px; color: var(--paper); }
.process-card .icon-badge { margin-bottom: 6px; }
.process-card .icon-badge svg { width: 19px; height: 19px; color: var(--accent-light); }
.process-card h4 { color: var(--paper); margin: 12px 0 8px; font-size: 18px; }
.process-card p { color: rgba(253,252,251,0.65); font-size: 14px; margin: 0; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--sand); padding: 28px; border-radius: 5px; }
.testimonial-card svg { width: 22px; height: 22px; color: var(--accent); }
.testimonial-card p { font-size: 15px; margin: 14px 0 20px; color: #33413a; }
.testimonial-meta { display: flex; flex-direction: column; font-size: 13.5px; }
.testimonial-meta span { color: #7a7358; font-size: 12.5px; margin-top: 2px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-item { text-align: center; }
.why-icon-ring {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  color: #fff;
  box-shadow: 0 0 0 7px var(--sand), 0 14px 26px rgba(241,137,46,0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-item:hover .why-icon-ring { transform: translateY(-4px); box-shadow: 0 0 0 7px var(--sand), 0 20px 32px rgba(241,137,46,0.42); }
.why-icon-ring svg { width: 30px; height: 30px; }
.why-glyph { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; line-height: 1; }
.why-item h4 { font-size: 15.5px; margin-bottom: 8px; }
.why-item p { font-size: 13.5px; color: #566; margin: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }