/* ============================================
   SUCCESS STORY SECTION STYLES
   ============================================ */

.content7 {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.content7 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.content7 .section-title {
    margin-bottom: 50px;
}

.content7 .section-headline {
    text-align: center;
    margin: 0 auto;
    max-width: 820px;
}

.content7 .headline-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(233, 60, 26, 0.1);
    color: #e93c1a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.content7 .headline-title {
    margin-top: 20px;
    margin-bottom: 24px;
    font-family: 'GmarketSans', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #222;
}

.content7 .headline-title .headline-accent {
    display: inline-block;
    color: #e93c1a;
    border-bottom: 6px solid #e93c1a;
    padding-bottom: 6px;
}

.content7 .headline-lead {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #404040;
}

.content7 .headline-desc {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #626262;
}

/* Title Banner */
.ss-title-banner {
    background: #e93c1a;
    border-radius: 12px;
    padding: 20px 40px;
    margin-bottom: 50px;
    display: inline-block;
}

.ss-title-banner h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

/* Process Flow */
.ss-process-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.ss-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ss-step {
    display: flex;
    align-items: center;
}

.ss-step-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e93c1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.ss-step-final {
    background: #e93c1a !important;
    border-color: #e93c1a !important;
}

.ss-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #e93c1a;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
}

.ss-step-final .ss-step-title {
    color: #ffffff;
}

.ss-step-line {
    width: 60px;
    height: 2px;
    background: #e93c1a;
    margin-bottom: 8px;
}

.ss-step-final .ss-step-line {
    background: #ffffff;
}

.ss-step-desc {
    font-size: 13px;
    color: #333333;
    text-align: center;
    line-height: 1.4;
    font-family: 'Noto Sans KR', sans-serif;
}

.ss-step-final .ss-step-desc {
    color: #ffffff;
}

.ss-arrow {
    font-size: 24px;
    color: #666666;
    font-weight: bold;
    margin: 0 10px;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .ss-row {
        gap: 15px;
    }
    
    .ss-step-circle {
        width: 180px;
        height: 180px;
    }
    
    .ss-step-title {
        font-size: 16px;
    }
    
    .ss-step-desc {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .content7 {
        padding: 60px 0;
    }
    
    .content7 .container {
        padding: 0 20px;
    }

    .content7 .section-title {
        margin-bottom: 40px;
    }

    .content7 .headline-title {
        font-size: 32px;
    }

    .content7 .headline-lead,
    .content7 .headline-desc {
        font-size: 16px;
    }
    
    .ss-title-banner {
        padding: 15px 30px;
        margin-bottom: 40px;
    }
    
    .ss-title-banner h2 {
        font-size: 24px;
    }
    
    .ss-process-flow {
        gap: 20px;
    }
    
    .ss-row {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .ss-arrow {
        transform: rotate(90deg);
        font-size: 20px;
    }
    
    .ss-step { width: 100%; }
    .ss-step-circle {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 120px;
        border-radius: 12px;
        padding: 20px 24px;
    }
    
    .ss-step-title {
        font-size: 20px;
    }
    
    .ss-step-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content7 .headline-title {
        font-size: 26px;
    }

    .content7 .headline-lead,
    .content7 .headline-desc {
        font-size: 15px;
    }

    .ss-title-banner h2 {
        font-size: 20px;
    }
    
    .ss-step { width: 100%; }
    .ss-step-circle {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 110px;
        border-radius: 12px;
        padding: 16px 20px;
    }
    
    .ss-step-title {
        font-size: 20px;
    }
    
    .ss-step-desc {
        font-size: 16px;
    }
}