/* 통합 솔루션 전용 스타일 */
.solution-hero {
    background: linear-gradient(135deg, #000000 0%, #2C2C2C 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.solution-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.solution-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.solution-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #333;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.solution-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.solution-card ul li:last-child {
    border-bottom: none;
}

.solution-card ul li:before {
    content: "✓ ";
    color: #1E90FF;
    font-weight: bold;
    margin-right: 0.5rem;
}

.process-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, #666666 100%);
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

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

.process-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 2rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #2C2C2C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #1E90FF;
    transform: scale(1.05);
}

.pricing-card.featured {
    border-color: #1E90FF;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin: 1.5rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #999;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:before {
    content: "✓ ";
    color: #1E90FF;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #000000 0%, #2C2C2C 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .solution-hero h1 {
        font-size: 2rem;
    }

    .solution-hero p {
        font-size: 1rem;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .process-number {
        left: 20px;
        transform: none;
    }

    .process-content {
        margin-left: 80px;
        margin-right: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
