/* =====================================================
   SI FINMART — INNER PAGES STYLESHEET V3
   ===================================================== */

/* Inner Hero */
.inner-hero {
  background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-dark) 50%, var(--teal-mid) 100%);
  padding: 110px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 20%);
}
.inner-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.inner-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 6px 14px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; margin-bottom: 18px;
}
.inner-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; color: white; line-height: 1.1; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.inner-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.78);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
  position: relative; z-index: 1;
}
.inner-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-top: 20px;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  position: relative; z-index: 1;
}
.inner-breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.inner-breadcrumb a:hover { color: white; }
.inner-breadcrumb span { color: rgba(255,255,255,0.35); }

/* Plan cards grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.plan-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.plan-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--teal));
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.featured-plan { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow); }
.plan-icon { font-size: 2rem; }
.plan-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.plan-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.plan-features { display: flex; flex-direction: column; gap: 7px; }
.plan-feature { display: flex; align-items: center; gap: 9px; font-size: 0.83rem; color: var(--text-body); }
.plan-feature-check {
  width: 17px; height: 17px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: white; flex-shrink: 0;
}

/* Why choose section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px 22px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* Fund category cards */
.fund-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fund-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative; overflow: hidden;
}
.fund-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, var(--teal));
}
.fund-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fund-icon { font-size: 2rem; }
.fund-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.fund-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.fund-risk-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  padding: 4px 11px; border-radius: 100px; width: fit-content;
}

/* SIP calculator on inner page */
.sip-mini-calc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
}
.sip-mini-calc h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }

/* Contact page strip */
.contact-strip {
  display: flex; align-items: center; padding: 28px 0;
  flex-wrap: wrap; gap: 16px; border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.cstrip-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 160px; }
.cstrip-icon { font-size: 1.5rem; }
.cstrip-item strong { display: block; font-size: 0.8rem; color: var(--text-dark); margin-bottom: 2px; }
.cstrip-item p, .cstrip-item a { font-size: 0.84rem; color: var(--text-muted); }
.cstrip-item a { color: var(--teal); }
.cstrip-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Process steps */
.process-section { background: var(--off-white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { text-align: center; padding: 24px 16px; }
.process-num {
  width: 56px; height: 56px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: white;
  margin: 0 auto 16px; box-shadow: var(--shadow-teal);
}
.process-step h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: white; line-height: 1.25; }
.cta-banner p  { font-size: 0.9rem; color: rgba(255,255,255,0.78); margin-top: 8px; line-height: 1.6; }
.cta-banner .btn-white { flex-shrink: 0; }

/* Stats bar */
.stats-bar {
  background: var(--teal-dark);
  padding: 40px 0;
}
.stats-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stats-bar-item { padding: 0 40px; text-align: center; }
.stats-bar-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: white; }
.stats-bar-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.stats-bar-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* Responsive inner pages */
@media (max-width: 768px) {
  .plans-grid     { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .fund-grid      { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr 1fr; }
  .cta-banner     { text-align: center; justify-content: center; }
  .stats-bar-item { padding: 16px 24px; }
  .contact-strip  { flex-direction: column; align-items: flex-start; }
  .cstrip-divider { display: none; }
}
@media (max-width: 480px) {
  .why-grid     { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
