.work-process {
    padding: 100px 0;
    background: radial-gradient(circle at top center, var(--bg-04) 0%, var(--bg-06) 100%);
    position: relative;
    overflow: hidden;
}

/* --- ENCABEZADO --- */
.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background-color: var(--tq-04);
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--tq-01);
    background-color: transparent;
}

.eyebrow-text {
    color: var(--tq-01);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.title {
    font-size: 3.5rem;
    color: var(--text-01);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.title .highlight {
    color: var(--tq-01);
    text-shadow: 0 0 15px var(--tr-tq-25);
}

.subtitle {
    color: var(--text-02);
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
}

/* --- CONTENEDOR DE PASOS --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* --- ELEMENTOS VISUALES (Círculos y Números) --- */
.step-visual {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

/* Línea Conectora central basada en el cálculo exacto de la tarjeta y el gap */
.step:not(:last-child) .step-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: 1px;
    background-color: var(--tq-04);
    z-index: -1;
}

/* Flecha de la Línea Conectora */
.step:not(:last-child) .step-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--tq-01);
    border-right: 2px solid var(--tq-01);
    z-index: 0;
}

/* Número del Paso */
.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-02);
    border: 1px solid var(--tq-01);
    color: var(--text-01);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 1.05rem;
    z-index: 3;
    font-weight: 500;
    box-shadow: 0 0 10px var(--tr-tq-25);
}

/* Círculo Principal */
.step-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--bg-01);
    border: 1px solid var(--tr-tq-35);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 25px var(--tr-tq-25), 0 0 20px var(--tr-dark-55);
    transition: all 0.3s ease;
}

/* Puntos Laterales en los bordes de los Círculos */
.step-circle::before,
.step-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--tq-01);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--tq-01);
}

.step-circle::before { left: -3px; }
.step-circle::after { right: -3px; }

/* Anulando el punto de inicio del paso 1 y el final del paso 5 */
.step:first-child .step-circle::before { display: none; }
.step:last-child .step-circle::after { display: none; }

/* Anillo Interno */
.step-circle-inner {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px dashed var(--az-02);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Efectos Hover Visuales */
.step:hover .step-circle {
    border-color: var(--tq-01);
    box-shadow: inset 0 0 30px var(--tr-tq-35), 0 0 25px var(--tr-dark-55);
}

.step:hover .step-circle-inner {
    border-color: var(--tq-01);
    border-style: solid;
}

/* Contenedor Vacío para el futuro Icono/Recurso */
.icon-placeholder {
    width: 40px;
    height: 40px;
}

/* --- TARJETAS --- */
.step-card {
    background-color: var(--tr-bg-78);
    border: 1px solid var(--az-01);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.step:hover .step-card {
    border-color: var(--tq-04);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--tr-dark-55), inset 0 0 15px var(--tr-tq-25);
}

.step-title {
    font-size: 1.25rem;
    color: var(--text-01);
    margin-bottom: 12px;
    font-weight: 500;
}

.step-divider {
    width: 25px;
    height: 2px;
    background-color: var(--tq-01);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.step:hover .step-divider {
    width: 40px;
    box-shadow: 0 0 8px var(--tq-01);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-02);
    line-height: 1.6;
}
