/* Cooperation Process Page Specific Styles */
.process-page {
    padding-bottom: 0;
}

/* Page Hero */
.process-hero {
    position: relative;
    height: 480px;
    background: #0f0524;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.process-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/banner.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: 1;
}

.process-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 5, 36, 0.8) 0%, rgba(58, 21, 128, 0.6) 100%);
}

.process-hero .container {
    position: relative;
    z-index: 2;
}

.process-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.process-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* Steps Visualization Section */
.steps-visual-section {
    padding: 120px 0;
    background: #fff;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.steps-container::after {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed rgba(124, 58, 237, 0.2);
    z-index: 1;
}

.step-visual-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2px solid #f3efff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    font-size: 32px;
    font-weight: 800;
    color: #7c3aed;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
}

.step-visual-item:hover .step-circle {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
}

.step-visual-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-visual-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    padding: 0 15px;
}

/* Detailed Process Sections */
.process-detail-item {
    padding: 120px 0;
}

.process-detail-item:nth-child(even) {
    background: #fbfaff;
}

.detail-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.process-detail-item:nth-child(even) .detail-flex {
    flex-direction: row-reverse;
}

.detail-img {
    flex: 0 0 550px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-text {
    flex: 1;
}

.step-num-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7c3aed;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.step-num-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, transparent);
    border-radius: 2px;
}

.detail-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.detail-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.feature-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #7c3aed;
    border-radius: 50%;
}

/* Service Guarantee Bar */
.guarantee-section {
    padding: 120px 0;
    background: #0f0524;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}

.guarantee-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.guarantee-item {
    padding: 20px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    background: #7c3aed;
    transform: translateY(-10px);
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
}

.guarantee-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.guarantee-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
