/* Page vitrine investisseurs — complète landing.css / theme */
.investors-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #0f2940 45%, #123a52 100%);
  color: #fff;
  overflow: hidden;
}
.investors-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(48, 171, 219, 0.18), transparent 55%);
  pointer-events: none;
}
.investors-hero .container { position: relative; z-index: 1; }
.investors-hero h1 {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.investors-hero .lead { max-width: 38rem; opacity: 0.92; }
.investors-stat-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}
.investors-badge-row .badge {
  font-weight: 600;
  padding: 0.5em 0.85em;
}
@keyframes investorsFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.investors-reveal {
  animation: investorsFadeUp 0.7s ease-out both;
}
.investors-reveal:nth-child(2) { animation-delay: 0.08s; }
.investors-reveal:nth-child(3) { animation-delay: 0.16s; }
.investors-timeline {
  position: relative;
  padding-left: 2rem;
}
.investors-timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--bs-primary, #30abdb), rgba(48,171,219,0.15));
  border-radius: 2px;
}
.investors-step {
  position: relative;
  padding-bottom: 2rem;
}
.investors-step::before {
  content: "";
  position: absolute;
  left: -1.42rem;
  top: 0.2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bs-primary, #30abdb);
  box-shadow: 0 0 0 4px rgba(48,171,219,0.25);
}
.investors-card {
  border: 1px solid rgba(15, 41, 64, 0.08);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.investors-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 41, 64, 0.1);
}
.investors-logo-strip .logo-tile {
  border: 1px solid rgba(15,41,64,0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  background: #fff;
}
.investors-section { padding: 4.5rem 0; }
.investors-section-alt { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }
.investors-faq .accordion-button:not(.collapsed) {
  background: rgba(48, 171, 219, 0.1);
  color: #0f2940;
}
.investors-cta-final {
  background: linear-gradient(120deg, #0f2940, #164a6b);
  color: #fff;
  border-radius: 1.25rem;
  padding: 3rem 2rem;
}
