/**
 * ============================================================================
 * REUSABLE LOAN LANDING PAGE STYLESHEET - Financier Buzz
 * Luxury Navy (#0a2540) & Gold (#d4af37) | Modular Architecture | Responsive
 * ============================================================================
 */

:root {
  --ll-primary: #0a2540;
  --ll-primary-dark: #06182a;
  --ll-gold: #d4af37;
  --ll-gold-light: #fef08a;
  --ll-gold-bg: rgba(212, 175, 55, 0.12);
  --ll-emerald: #10b981;
  --ll-border: #e2e8f0;
  --ll-card-bg: #ffffff;
  --ll-radius: 1.25rem;
  --ll-radius-sm: 0.75rem;
  --ll-shadow: 0 20px 45px -15px rgba(10, 37, 64, 0.12);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.ll-hero-section {
  background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
              linear-gradient(135deg, #061727 0%, #0a2540 60%, #163e68 100%);
  color: #ffffff;
  padding: 4.5rem 0 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.ll-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--ll-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.ll-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.ll-hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 620px;
}

.ll-hero-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ll-hero-kpi-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--ll-radius-sm);
  padding: 0.85rem 1rem;
}

.ll-hero-kpi-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ll-gold-light);
  line-height: 1.1;
}

.ll-hero-kpi-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   2. BENEFITS SECTION
   ========================================================================== */
.ll-section {
  padding: 5rem 0;
}

.ll-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.ll-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ll-gold);
  background: var(--ll-gold-bg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.ll-section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--ll-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.ll-section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.ll-benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ll-radius);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ll-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--ll-gold), var(--ll-primary));
  transition: height 0.3s ease;
}

.ll-benefit-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px -15px rgba(10, 37, 64, 0.15);
}

.ll-benefit-card:hover::before {
  height: 100%;
}

.ll-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--ll-radius-sm);
  background: var(--ll-gold-bg);
  color: var(--ll-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.ll-benefit-card:hover .ll-benefit-icon {
  background: var(--ll-primary);
  color: var(--ll-gold);
  transform: scale(1.08);
}

.ll-benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ll-primary);
  margin-bottom: 0.65rem;
}

.ll-benefit-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   3. ELIGIBILITY CRITERIA SECTION
   ========================================================================== */
.ll-eligibility-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ll-radius);
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--ll-shadow);
}

.ll-eligibility-box-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.ll-eligibility-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.08);
  color: var(--ll-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.ll-eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #334155;
}

.ll-eligibility-item i {
  color: var(--ll-emerald);
  margin-top: 0.2rem;
  font-size: 1rem;
}

/* ==========================================================================
   4. INTEREST INFO & COMPARISON MATRIX
   ========================================================================== */
.ll-rate-matrix-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ll-radius);
  overflow: hidden;
  box-shadow: var(--ll-shadow);
}

.ll-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ll-table thead {
  background: var(--ll-primary-dark);
  color: #ffffff;
}

.ll-table th {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.ll-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.ll-table tbody tr:hover {
  background: #f8fafc;
}

/* ==========================================================================
   5. DOCUMENTS CHECKLIST SECTION
   ========================================================================== */
.ll-doc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.ll-doc-tab-btn {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  background: #f8fafc;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ll-doc-tab-btn:hover {
  background: #f1f5f9;
  color: var(--ll-primary);
  border-color: #cbd5e1;
}

.ll-doc-tab-btn.active {
  background: var(--ll-primary);
  color: #ffffff;
  border-color: var(--ll-primary);
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.25);
}

.ll-doc-tab-btn.active i {
  color: var(--ll-gold);
}

.ll-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.ll-doc-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ll-radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s ease;
}

.ll-doc-item:hover {
  border-color: var(--ll-gold);
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.08);
}

.ll-doc-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  background: var(--ll-gold-bg);
  color: var(--ll-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ==========================================================================
   6. BANK PARTNERS STRIP
   ========================================================================== */
.ll-partners-strip {
  background: #06182a;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ll-partner-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ll-radius-sm);
  padding: 0.85rem 1.25rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
}

.ll-partner-badge:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--ll-gold);
  transform: translateY(-3px);
}

/* ==========================================================================
   7. FAQ ACCORDION
   ========================================================================== */
.ll-accordion .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--ll-radius-sm) !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.ll-accordion .accordion-button {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ll-primary);
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  box-shadow: none;
}

.ll-accordion .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: var(--ll-gold);
  border-bottom: 1px solid #e2e8f0;
}

.ll-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  background: #ffffff;
}

/* ==========================================================================
   9. CALL TO ACTION BANNER (CTA)
   ========================================================================== */
.ll-cta-banner {
  background: linear-gradient(135deg, #06182a 0%, #0a2540 60%, #1e3a8a 100%);
  border-radius: var(--ll-radius);
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(10, 37, 64, 0.4);
}

.ll-cta-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.ll-cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.ll-cta-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ==========================================================================
   10. RELATED LOANS
   ========================================================================== */
.ll-related-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--ll-radius);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.ll-related-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: var(--ll-shadow);
}

.ll-related-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--ll-radius-sm);
  background: var(--ll-gold-bg);
  color: var(--ll-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .ll-hero-title {
    font-size: 2.2rem;
  }
  .ll-hero-kpi-grid {
    grid-template-columns: 1fr;
  }
  .ll-cta-banner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  .ll-cta-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
