/* ═══════════════════════════════════════════════════════
   sections/process.css — AJG AI Solutions
   Process section
   ═══════════════════════════════════════════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(33.33% - 9px);
  right: calc(33.33% - 9px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(53,216,255,.0) 0%,
    rgba(53,216,255,.3) 20%,
    rgba(53,216,255,.3) 80%,
    rgba(53,216,255,.0) 100%
  );
  pointer-events: none;
}

.process-card {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,22,40,0.42);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  box-shadow: 0 10px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 26px;
  transition: .3s ease;
  min-height: 250px;
}
.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103,232,249,.16);
  background: rgba(255,255,255,.05);
}

.process-num {
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #dde9ff 0%, #35d8ff 30%, #1e50d0 60%, #35d8ff 85%, #dde9ff 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-gradient 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(56,189,248,0.20));
  user-select: none;
  display: block;
  margin-bottom: 4px;
}

/* ocultar la flecha → que vivía dentro del número */
.process-num .process-arrow { display: none !important; }

.process-title {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  display: block;
}
.process-title.highlight-grey {
  color: transparent;
}

.process-text {
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.72;
}
