/* ══════════════════════════════════════════════
   Process Page Styles
   ============================================== */

.process-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.process-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.process-detail__number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: rgba(37, 99, 235, 0.08);
  line-height: 1;
}

.process-detail h2 { margin: 8px 0 12px; }
.process-detail p { margin-bottom: 16px; }

/* ── Detail Cards ── */
.detail-cards { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }

.detail-card {
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.detail-card h4 { font-size: 0.92rem; margin-bottom: 2px; }
.detail-card p { font-size: 0.82rem; margin: 0; }

/* ── Timeline ── */
.timeline-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 64px 0;
}

.timeline-step { text-align: center; flex: 1; position: relative; }

.timeline-step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.timeline-step:first-child::before { left: 50%; }
.timeline-step:last-child::before { right: 50%; }

.timeline-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}

.timeline-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Tools Grid ── */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.tool-card {
  padding: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-fast);
}

.tool-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.tool-card__name { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 2px; }
.tool-card__desc { font-size: 0.72rem; color: var(--text-muted); }

/* ── Responsive ── */
@media (min-width: 768px) {
  .process-detail { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .detail-cards { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Section Variants ── */
.section--tight { padding-top: 48px; padding-bottom: 48px; }
.section--no-pt { padding-top: 0; }

/* ── Process CTA Button ── */
.process-cta-btn { margin-top: 8px; }

/* ── Detail Card Icon Colors ── */
.detail-card__icon--blue   { background: rgba(37, 99, 235, 0.1); }
.detail-card__icon--cyan   { background: rgba(6, 182, 212, 0.1); }
.detail-card__icon--purple { background: rgba(168, 85, 247, 0.1); }
.detail-card__icon--green  { background: rgba(16, 185, 129, 0.1); }
.detail-card__icon--orange { background: rgba(249, 115, 22, 0.1); }

/* ── Dark Mode ── */
[data-theme="dark"] .detail-card { background: var(--bg-white); border-color: var(--border); }
[data-theme="dark"] .process-detail { border-bottom-color: var(--border); }
[data-theme="dark"] .process-detail h2 { color: var(--text); }
[data-theme="dark"] .tool-item { background: var(--bg-white); border-color: var(--border); }
