/* ============================================================
   MFI INVESTMENTS — COLLABORATION PAGE (PITCH REDESIGN)
   ============================================================ */

/* ── Pitch Hero Section ── */
.pitch-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--color-navy);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.pitch-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pitch-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.pitch-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.8) 50%, rgba(10,22,40,0.3) 100%);
}
.pitch-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pitch-cta {
  margin-top: 2rem;
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
}
.pitch-cta:hover {
  background: var(--color-white-pure);
  color: var(--color-navy);
}

/* Glass Stats Card */
.glass-stats-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.glass-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(200,165,92,0.3) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.stat-row {
  margin-bottom: 2rem;
}
.stat-row:last-child {
  margin-bottom: 0;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: var(--fs-body);
  color: var(--color-white-pure);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  opacity: 0.9;
}

/* ── Advantage Section ── */
.advantage-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.advantage-card {
  background: var(--color-white-pure);
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
  border-color: transparent;
}
.advantage-card:hover::before {
  transform: scaleX(1);
}
.advantage-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 165, 92, 0.1);
  color: var(--color-gold);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}
.advantage-card:hover .advantage-icon {
  background: var(--color-navy);
  color: var(--color-white-pure);
  transform: rotate(5deg) scale(1.1);
}
.advantage-card h3 {
  font-size: var(--fs-h4);
  color: var(--color-navy);
  margin-bottom: 1rem;
}
.advantage-card p {
  color: var(--color-gray-700);
  line-height: var(--lh-relaxed);
}

/* ── Process Timeline ── */
.process-section {
  background: var(--color-white);
  padding: var(--section-padding) 0;
}
.timeline-container {
  max-width: 800px;
  margin: 4rem auto 0;
  position: relative;
}
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: var(--color-gray-200);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  top: 0;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 4px solid var(--color-white-pure);
  box-shadow: 0 0 0 4px rgba(200, 165, 92, 0.2);
  transition: all 0.4s ease;
}
.timeline-item:hover .timeline-dot {
  background: var(--color-navy);
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(10, 22, 40, 0.1);
}
.timeline-step {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--color-gold);
  font-weight: var(--fw-bold);
  margin-bottom: 0.5rem;
}
.timeline-content h3 {
  font-size: var(--fs-h4);
  color: var(--color-navy);
  margin-bottom: 1rem;
}
.timeline-content p {
  color: var(--color-gray-700);
  line-height: var(--lh-relaxed);
}

/* ── Premium CTA ── */
.cta-premium-section {
  background: var(--color-navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-premium-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,165,92,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-premium-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta-premium-content h2 {
  color: var(--color-white-pure);
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}
.cta-premium-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
}
.btn-glow {
  box-shadow: 0 0 20px rgba(200, 165, 92, 0.4);
  animation: pulseGlow 2s infinite alternate;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(200, 165, 92, 0.4); }
  100% { box-shadow: 0 0 40px rgba(200, 165, 92, 0.8); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pitch-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pitch-hero-overlay {
    background: linear-gradient(180deg, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.95) 100%);
  }
  .advantage-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .advantage-premium-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2.5rem;
  }
}
