/* =======================================================
   WIP & PROCESS SECTION STYLES
   ======================================================= */
.wip-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    /* background-color: white; */
}

.wip-title {
    font-size: clamp(0.5rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: black;
    -webkit-text-stroke: 1.5px #ffffff;
    margin-bottom: 12px;
    transition: color 0.4s ease;
    width: 100%;
}

.wip-title progress{
    width: 100%;
}

.wip-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #888888;
    /* max-width: 400px; */
    line-height: 1.5;
}

.process-section {
    width: 100%;
    background: #f4f4f4;
    padding: 100px 24px;
    display: flex;
    justify-content: center;
}

.process-container {
    width: 100%;
    max-width: 1200px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.process-card {
    background: #ffffff;
    padding: 48px 36px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #000000;
    transition: width 0.4s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: #d0d0d0;
}

.process-card:hover::before {
    width: 100%;
}

.step-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 24px;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #000000;
}

.process-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
}

@media (max-width: 960px) {
    .process-section { padding: 60px 20px; }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .process-card { padding: 36px 28px; }
}