/* ─── Hero ──────────────────────────────────────────────────────────────── */
.oi-hero {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: #fff;
  padding: 5rem 1rem;
}
.oi-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.oi-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.oi-hero__title span { color: #6ee7b7; }

/* ─── Stat bar ──────────────────────────────────────────────────────────── */
.oi-stats {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: #fff;
}
.oi-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #6ee7b7;
  line-height: 1;
}

/* ─── Section labels ─────────────────────────────────────────────────────── */
.oi-section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
}

/* ─── Feature cards ─────────────────────────────────────────────────────── */
.oi-feature-card {
  border: none;
  border-radius: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.oi-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09) !important;
}
.oi-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ─── Steps ─────────────────────────────────────────────────────────────── */
.oi-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1fae5;
  color: #065f46;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.oi-cta__lead { max-width: 500px; margin-left: auto; margin-right: auto; }

.oi-cta {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  border-radius: 1.5rem;
  color: #fff;
  padding: 4rem 2rem;
}

/* ─── Spacing ────────────────────────────────────────────────────────────── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
