/* ============================================
   PROCESS PAGE STYLES
   ============================================ */

/* ============ PAGE HERO ============ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-glow-1 { width: 500px; height: 500px; top: -100px; right: -50px; }
.page-hero-glow-2 { width: 400px; height: 400px; bottom: -50px; left: -100px; }

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title { font-size: var(--fs-h1); margin-bottom: var(--space-lg); }
.page-hero-subtitle { font-size: var(--fs-body-lg); color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-xl); }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.page-hero-breadcrumb a { color: var(--clr-primary-light); }
.page-hero-breadcrumb a:hover { color: var(--clr-secondary); }

/* ============ TIMELINE ============ */
.journey-section {
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(108, 60, 225, 0.1);
  transform: translateX(-50%);
}

.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: height 0.1s linear;
  z-index: 1;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item--left {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.timeline-item--right {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(108, 60, 225, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition-base);
}

.timeline-dot span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--clr-primary-light);
}

.timeline-dot--final {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-glow-primary);
}

.timeline-dot--final span {
  color: #fff;
}

.timeline-item:hover .timeline-dot {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-glow-primary);
  transform: translateX(-50%) scale(1.1);
}

/* Timeline Card */
.timeline-card {
  background: var(--bg-card);
  border: 1px solid rgba(108, 60, 225, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 2px;
  background: rgba(108, 60, 225, 0.15);
}

.timeline-item--left .timeline-card::before {
  right: -20px;
}

.timeline-item--right .timeline-card::before {
  left: -20px;
}

.timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 60, 225, 0.2);
  box-shadow: var(--shadow-lg);
}

.timeline-card--final {
  background: linear-gradient(145deg, rgba(108, 60, 225, 0.08), var(--bg-card));
  border-color: rgba(108, 60, 225, 0.15);
}

.timeline-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.timeline-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
}

.timeline-card p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ LEAD SECTION ============ */
.lead-section {
  position: relative;
  overflow: hidden;
}

.lead-glow {
  width: 500px;
  height: 500px;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.lead-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.lead-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid rgba(108, 60, 225, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.lead-check-item:hover {
  border-color: rgba(108, 60, 225, 0.2);
  transform: translateY(-3px);
}

.lead-check-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(108, 60, 225, 0.12);
  color: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-check-icon--secondary {
  background: rgba(0, 212, 170, 0.12);
  color: var(--clr-secondary);
}

.lead-check-icon--accent {
  background: rgba(255, 107, 53, 0.12);
  color: var(--clr-accent);
}

.lead-check-item h4 {
  font-size: var(--fs-body);
  margin-bottom: 2px;
}

.lead-check-item p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ============ FAQ ============ */
.faq-section {
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(108, 60, 225, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(108, 60, 225, 0.15);
}

.faq-item.active {
  border-color: rgba(108, 60, 225, 0.25);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  color: var(--text-primary);
  font-size: var(--fs-body);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
}

.faq-question:hover {
  color: var(--clr-primary-light);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--clr-primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  }

  /* Stack timeline vertically */
  .timeline-line,
  .timeline-progress {
    left: 22px;
  }

  .timeline-item--left,
  .timeline-item--right {
    padding-left: 70px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 22px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
  }

  .timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.1);
  }

  .timeline-card::before {
    display: none;
  }

  .lead-checklist {
    grid-template-columns: 1fr;
  }
}
