/* ── Our Work Process ── */

#process {
  background: rgb(2, 18, 17);
  padding: 5rem 0;
  position: relative;
}

#process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='300' opacity='0.02'%3E%3Cpath d='M110 50 L90 120 L130 120 Z' fill='%2300F5C4'/%3E%3Cline x1='70' y1='120' x2='70' y2='200' stroke='%2300F5C4' stroke-width='2'/%3E%3Cline x1='150' y1='120' x2='150' y2='200' stroke='%2300F5C4' stroke-width='2'/%3E%3Cline x1='50' y1='200' x2='170' y2='200' stroke='%2300F5C4' stroke-width='2'/%3E%3Cline x1='70' y1='200' x2='60' y2='250' stroke='%2300F5C4' stroke-width='1.5'/%3E%3Cline x1='150' y1='200' x2='160' y2='250' stroke='%2300F5C4' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 220px 300px;
  pointer-events: none;
}

.process-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
}

.process-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.process-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, #F8F8F4 30%, #00F5C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.process-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Timeline ── */

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 54px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(0,245,196,0.2) 0px,
    rgba(0,245,196,0.2) 8px,
    transparent 8px,
    transparent 14px
  );
  pointer-events: none;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  /* GPU layer for GSAP stagger entrance */
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.process-step-number {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--deep-navy);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -10px;
  position: relative;
  z-index: 2;
  line-height: 1;
  box-shadow: 0 0 10px rgba(0,245,196,0.3);
}

.process-icon-circle {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(0,245,196,0.3);
  border-radius: 50%;
  background: rgba(0,245,196,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process-icon-circle svg {
  width: 34px;
  height: 34px;
}

.process-step:hover .process-icon-circle {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(0,245,196,0.12), 0 0 20px rgba(0,245,196,0.1);
}

.process-connector {
  width: 2px;
  height: 20px;
  background: rgba(0,245,196,0.25);
  margin: 0.75rem auto 0.5rem;
}

.process-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.process-step-line {
  width: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 8px rgba(0,245,196,0.3);
}

.process-step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 160px;
  margin: 0 auto;
}
