    background: white;
    border-radius: 16px;
    padding: 25px;
    min-width: 120px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.flow-step.planning {
    border: 3px solid #0B1220;
}

.flow-step.design {
    border: 3px solid #2563EB;
}

.flow-step.development {
    border: 3px solid #FACC15;
}

.flow-step.marketing {
    border: 3px solid #10B981;
}

.flow-step.branding {
    border: 3px solid #8B5CF6;
}

.flow-step:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.flow-step .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flow-step.planning .step-icon {
    background: #0B1220;
    color: white;
}

.flow-step.design .step-icon {
    background: #2563EB;
    color: white;
}

.flow-step.development .step-icon {
    background: #FACC15;
    color: #1f2937;
}

.flow-step.marketing .step-icon {
    background: #10B981;
    color: white;
}

.flow-step.branding .step-icon {
    background: #8B5CF6;
    color: white;
}

.flow-step span {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.flow-arrow {
    color: #D1D5DB;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.flow-arrow.animate {
    opacity: 1;
    transform: translateX(0);
}

/* 6섹션 - 결과 중심의 실행력 */
.results-focused {
    padding: 120px 10%;
    background: #FFFFFF;
    color: #1a1a1a;
}

.results-focused .section-title {
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.results-focused .section-description {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* 결과 포인트 카드 */
.results-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.results-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.results-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
    background: #FEF2F2;
}

.results-icon {
    color: #DC2626;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.results-point:hover .results-icon {
    color: #B91C1C;
    transform: scale(1.1);
}

.results-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.results-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* KPI 대시보드 */
.kpi-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 500px;
}

.kpi-chart {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.kpi-chart h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.chart-container {
    position: relative;
    height: 120px;
    margin-bottom: 15px;
}

.chart-line {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    padding: 0 10px;
}

.line-segment {
    width: 60px;
    background: linear-gradient(180deg, #D1D5DB 0%, #9CA3AF 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.8s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.line-segment.before {
    height: var(--height);
}

.line-segment.after {
    background: linear-gradient(180deg, #2563EB 0%, #1D4ED8 100%);
    height: var(--height);
}

.line-segment::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
}

.line-segment.before::after {
    background: #6B7280;
}

.line-segment.after::after {
    background: #DC2626;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
}

.chart-labels span {
    flex: 1;
    padding: 0 5px;
}

/* 7섹션 - 검증된 전문가 네트워크 */
.expert-network {
    padding: 120px 10%;
    background: #F9FAFB;
    color: #1a1a1a;
}

.expert-network .section-title {
    color: #0B1220;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.expert-network .section-description {
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* 네트워크 포인트 카드 */
.network-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.network-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.network-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.network-icon {
    color: #2563EB;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.network-point:hover .network-icon {
    color: #1D4ED8;
    transform: scale(1.1);
}

.network-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.network-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* 전문가 쇼케이스 */
.expert-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 800px;
}

/* 팀 프로필 카드 */
.team-profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.profile-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
