@charset "UTF-8";

/* ==========================================================================
   Process Section (How We Work)
   ========================================================================== */
.main-process {
    padding: 150px 0;
    background-color: #0a0a0a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-title {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.process-header .section-desc {
    font-size: 18px;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.process-header .section-desc strong {
    color: #fff;
    font-weight: 700;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 40px;
}

.process-line {
    position: absolute;
    top: 75px; /* 아이콘 중앙 높이 맞춤 */
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 800;
    color: var(--electric-blue);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 25px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.process-step:hover .step-card {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 102, 255, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: #111;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.process-step:hover .step-icon {
    color: var(--electric-blue);
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.step-title {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    word-break: keep-all;
}

@media (max-width: 991px) {
    .process-timeline { grid-template-columns: 1fr; gap: 20px; }
    .process-line { display: none; }
    .process-step { display: flex; align-items: center; text-align: left; }
    .step-number { margin-bottom: 0; margin-right: 20px; font-size: 24px; opacity: 0.5; }
    .step-card { flex: 1; display: flex; align-items: center; padding: 25px; }
    .step-icon { margin: 0 20px 0 0; width: 50px; height: 50px; flex-shrink: 0; }
    .step-icon svg { width: 24px; height: 24px; }
    .step-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
    .step-title { margin-bottom: 5px; font-size: 18px; }
    .step-desc { margin: 0; font-size: 13px; line-height: 1.5; br { display: none; } }
}
