/* ===== Style 1 ===== */
.style-1 {
    position: relative;
}
.style-1 .content {
    display: inline-block;
    width: 100%;
    margin: 120px 0;
    position: relative;
}
/* background word */
.style-1 .content::before {
    content: "PROCESS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 20px;
    white-space: nowrap;
}

/* ===== LINE ===== */
.style-1 .line {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
}

.style-1 .line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ff6a00;
    animation: line 2s ease forwards;
}

@keyframes line {
    to {
        width: 100%;
    }
}

/* ===== STEPS ===== */
.style-1 .steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.style-1 .step {
    width: 25%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fade 0.6s ease forwards;
}

.style-1 .step:nth-child(1) {
    animation-delay: 0.3s;
}
.style-1 .step:nth-child(2) {
    animation-delay: 0.6s;
}
.style-1 .step:nth-child(3) {
    animation-delay: 0.9s;
}
.style-1 .step:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== NUMBER ===== */
.style-1 .num {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* ===== ICON ===== */
.style-1 .icon {
    width: 64px;
    height: 64px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #222;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
    background: #fff;
}

/* dot */
.style-1 .icon::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #ff6a00;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

/* hover subtle */
.style-1 .step:hover .icon {
    transform: translateY(-4px);
    border-color: #ff6a00;
}

/* ===== ICON SVG ===== */
.style-1 .icon svg {
    width: 28px;
    height: 28px;
    stroke: #111;
    stroke-width: 1.5;
    fill: none;
}

/* ===== TITLE ===== */
.style-1 .title {
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .style-1 .content::before {
        font-size: 100px;
    }
}
@media (max-width: 980px) {
    .style-1 .content::before {
        font-size: 70px;
    }
}
@media (max-width: 640px) {
    .style-1 .content::before {
        font-size: 50px;
    }
}
@media (max-width: 480px) {
    .style-1 .title {
        font-size: 10px;
    }
    .style-1 .content::before {
        display: none;
    }
}
