/*inject image to hero banner*/
.hero-microfinancing{
	background: 
  radial-gradient(rgba(0, 138, 68, 0.5), rgba(0, 0,0, 1)),
  url('../images/microfinancing/banner.webp') center/cover no-repeat;
}




/* ==========================================================================
   IMPORTANT CLARIFICATION (MATCHING SECTION 6 DISCLAIMER STYLE)
   ========================================================================== */
.top-clarification-section {
  padding: 32px 24px 10px 24px;
}

.top-clarification-banner {
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.top-clarification-banner .info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  align-self: flex-start;
  margin-top:5px;      /* Fine-tunes alignment with the first line of text */
}

.clarification-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clarification-headline {
  font-size: 1rem;
  color: #0c4a6e;
  margin: 0;
  line-height: 1.4;
}

.clarification-body {
  font-size: 0.92rem;
  color: #0369a1;
  line-height: 1.55;
  margin: 0;
}

.clarification-role {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 4px 0 0 0;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .top-clarification-banner {
    padding: 16px 20px;
  }
}







/* SECTION 2 STYLES (LIGHT THEME) */
.who-we-support-section {
  background-color: #f8fafc;
  padding: 80px 24px;
  color: #0f172a;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* Grid Layout */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.support-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.support-card:hover {
  border-color: #059669;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.12);
}

.support-card img{
	display:block;
	margin:auto;
	width:100%;
	max-width:100px;
	margin-bottom:20px;
}





/* Responsive tweaks */
@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
}





/* SECTION 3 STYLES (DARK THEME) */
.financing-flow-section {
  background-color: #0d1117;
  padding: 80px 24px;
  color: #ffffff;
  position: relative;
  background: 
  radial-gradient(rgba(0, 138, 68, 0.2), rgba(0, 0,0, 1)),
  url('../images/microfinancing/section-hero1.webp') center/cover no-repeat;	
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

/* Flow Container */
.flow-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  display: flex;
  align-items: center;
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 24px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.flow-step:hover {
  border-color: #10b981;
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.flow-step.highlight-step {
  border-left: 4px solid #10b981;
}

.flow-step.provider-step {
  border-left: 4px solid var(--color-blue-lighter); /* Subtle blue indicator for external partner responsibility */
}

/* Step Number */
.step-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #10b981;
  min-width: 60px;
  font-family: monospace;
}

/* Step Content */
.step-content {
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 6px 0;
}

.step-content p {
  font-size: 0.95rem;
  color: #8b949e;
  margin: 0;
  line-height: 1.5;
}

/* Category Tags */
.step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.callisto-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.partner-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.user-tag {
  background: rgba(139, 148, 158, 0.15);
  color: #c9d1d9;
}

/* Arrow Connectors */
.flow-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0; /* Changed from left padding to vertical padding */
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .flow-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .step-number {
    margin-bottom: 10px;
  }
  
  .flow-connector {
    display: none;
  }
}




/* SECTION 4 STYLES (LIGHT THEME) */
.callisto-role-section {
  background-color: #ffffff;
  padding: 80px 24px;
  color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}



/* Layout Grid */
.role-grid-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

/* Summary Card */
.role-summary-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #059669;
  border-radius: 12px;
  padding: 36px 28px;
}

.summary-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.role-summary-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.role-summary-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.summary-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

/* 8 Areas Grid */
.support-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.support-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  transition: all 0.25s ease;
}

.support-item:hover {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.item-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: #059669;
  font-family: monospace;
  background: #ecfdf5;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.item-text p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .role-grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .support-areas-grid {
    grid-template-columns: 1fr;
  }
}





/* SECTION 5 STYLES (DARK THEME) */
.provider-handles-section {
  padding: 80px 24px;
  color: #ffffff;
  position: relative;
  background: 
  radial-gradient(rgba(0, 138, 68, 0.2), rgba(0, 0,0, 1)),
  url('../images/microfinancing/section-hero2.webp') center/cover no-repeat;	
}


.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}





/* Provider Grid Layout */
.provider-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Left Card: Responsibilities */
.provider-responsibilities-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 36px 32px;
	z-index: 2;
}

.provider-responsibilities-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.card-intro {
  font-size: 0.95rem;
  color: #8b949e;
  margin-bottom: 24px;
}

.provider-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.provider-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.list-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.list-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list-text strong {
  font-size: 1.05rem;
  color: #f0f6fc;
  font-weight: 600;
}

.list-text span {
  font-size: 0.9rem;
  color: #8b949e;
  line-height: 1.5;
}

/* Right Card: Disclaimer */
.provider-disclaimer-card {
  background-color: #161b22;
  border: 1px solid #b45309;
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 40px;
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #30363d;
}

.warning-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f59e0b;
  margin: 0;
}

.disclaimer-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c9d1d9;
}

.disclaimer-highlight {
  color: #ffffff;
  background: rgba(245, 158, 11, 0.08);
  padding: 12px 16px;
  border-left: 3px solid #f59e0b;
  border-radius: 0 6px 6px 0;
  margin: 0;
}

.disclaimer-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #30363d;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8b949e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
  .provider-grid {
    grid-template-columns: 1fr;
  }
  
  .provider-disclaimer-card {
    position: static;
  }
}










/* SECTION 6 STYLES (LIGHT THEME) */
.readiness-section {
  background-color: #f8fafc;
  padding: 80px 24px;
  color: #0f172a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}


/* Container */
.readiness-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Checklist Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.checklist-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.checklist-item:hover {
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.check-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.item-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.item-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Disclaimer Banner */
.readiness-disclaimer {
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  align-self: flex-start;
  margin-top:5px;
}

.readiness-disclaimer p {
  font-size: 0.9rem;
  color: #0369a1;
  line-height: 1.5;
  margin: 0;
}

.readiness-disclaimer strong {
  color: #0c4a6e;
}

/* Responsive */
@media (max-width: 768px) {
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .readiness-disclaimer {
    align-items: flex-start;
  }
}



