.process {
    padding: var(--section-pad) 0;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process__step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.process__step-num {
    width: 44px; height: 44px;
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--red);
    transition: all 0.3s ease;
}
.process__step:hover .process__step-num {
    background: var(--red);
    color: var(--white);
}

.process__step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.process__step-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .process__timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
    .process__timeline::before { display: none; }
}
@media (max-width: 768px) {
    .process__timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .process__timeline { grid-template-columns: 1fr; }
}
