/* ===== FINANCE.HTML STYLESHEET ===== */
.page-hero {
  background: var(--honda-black);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1400&q=80")
    center/cover;
  opacity: 0.2;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honda-red);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.page-hero p {
  color: #aaa;
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 500px;
}
.emi-section {
  padding: 80px 0;
  background: var(--honda-light-gray);
}
.emi-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 50px;
}
.emi-calculator {
  background: white;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.emi-result {
  background: var(--honda-black);
  padding: 40px;
  color: white;
}
.calc-group {
  margin-bottom: 28px;
}
.calc-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--honda-black);
  margin-bottom: 10px;
}
.calc-group .value-display {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--honda-red);
  float: right;
}
.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  outline: none;
  margin-top: 10px;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--honda-red);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(204, 0, 0, 0.4);
}
.emi-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--honda-red);
  line-height: 1;
}
.emi-breakdown {
  margin-top: 32px;
}
.emi-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.emi-row:last-child {
  border: none;
}
.emi-row .lbl {
  color: #aaa;
  font-size: 0.9rem;
}
.emi-row .val {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}
.emi-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #666;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-left: 3px solid var(--honda-red);
}
.features-bar {
  background: var(--honda-red);
  padding: 50px 0;
}
.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.feat-item:last-child {
  border: none;
}
.feat-item i {
  font-size: 2rem;
  color: white;
  opacity: 0.9;
  margin-bottom: 12px;
}
.feat-item h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.feat-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.apply-section {
  padding: 80px 0;
  background: white;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}
.apply-form {
  background: var(--honda-light-gray);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--honda-black);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: white;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--honda-red);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.banks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.bank-card {
  border: 1px solid #eee;
  padding: 16px;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
  background: #f9f9f9;
}
.bank-card .rate {
  display: block;
  font-size: 1.3rem;
  color: var(--honda-red);
  margin-top: 6px;
}
.steps-list {
  list-style: none;
  padding: 0;
}
.steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--honda-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1rem;
}
.steps-list li div strong {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.steps-list li div span {
  color: #666;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .emi-wrapper,
  .apply-grid {
    grid-template-columns: 1fr;
  }
  .features-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
