/* Services Page Styles */

/* 서비스 카드 섹션 */
.services-card-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    background: #f9f9f9;
    padding: 40px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* 투명한 비용 구조 섹션 */
.pricing-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.pricing-row {
    border-bottom: 1px solid #e0e0e0;
    display: flex;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    width: 100%;
}

.pricing-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.pricing-value {
    font-size: 1rem;
    color: #666;
}

/* 추가 서비스 섹션 */
.additional-services-section {
    padding: 80px 0;
    background: white;
}

.additional-service-item {
    margin-bottom: 40px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ff9500;
    position: relative;
}

.additional-service-item:nth-child(2) {
    border-left-color: #0066cc;
}

.service-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 8px 0 0 8px;
}

.service-accent.orange {
    background: #ff9500;
}

.service-accent.blue {
    background: #0066cc;
}

.additional-service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.additional-service-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* 출판 프로세스 섹션 */
.process-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ff9500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-title {
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 600;
    max-width: 100px;
    line-height: 1.4;
}

.process-arrow {
    font-size: 1.5rem;
    color: #999;
    flex: 0 0 auto;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px;
    }

    .pricing-label {
        margin-bottom: 8px;
    }

    .process-flow {
        gap: 10px;
    }

    .process-arrow {
        font-size: 1.25rem;
    }

    .step-title {
        max-width: 80px;
        font-size: 0.8125rem;
    }

    .services-card-section,
    .pricing-section,
    .process-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .additional-service-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
        gap: 20px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .pricing-table {
        border-radius: 0;
    }

    .pricing-item {
        padding: 12px 16px;
    }

    .pricing-label,
    .pricing-value {
        font-size: 0.9375rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .step-title {
        max-width: 70px;
        font-size: 0.75rem;
    }
}
