/* Process Section Styles */
.process-section {
  padding: 8rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.process-header {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}

.process-section .section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .process-section .section-title {
    font-size: 3rem;
  }
}

.highlight-text {
  color: #4f46e5;
}

.process-section .section-subtitle {
  font-size: 1.125rem;
  color: #475569;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.connector-line {
  display: none;
}

@media (min-width: 768px) {
  .connector-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 0;
  }
}

.process-step {
  position: relative;
  z-index: 10;
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-0.25rem);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #4f46e5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(248, 250, 252, 1);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.step-description {
  color: #64748b;
  line-height: 1.7;
}

/* Dark Mode Overrides */
body.dark-mode .process-section {
  background: var(--dark-bg);
}
body.dark-mode .process-section .section-title {
  color: var(--dark-heading);
}
body.dark-mode .process-section .section-subtitle {
  color: var(--dark-desc);
}
body.dark-mode .connector-line {
  background: var(--dark-border);
}
body.dark-mode .process-step {
  background: var(--dark-bg-secondary);
  border-color: var(--dark-border);
}
body.dark-mode .step-title {
  color: var(--dark-heading);
}
body.dark-mode .step-description {
  color: var(--dark-desc);
}
body.dark-mode .step-number {
  color: rgba(255, 255, 255, 0.05);
}

