/* 내부 사이트 (비즈니스) 전용 스타일 */

/* ===== 히어로 섹션 (비즈니스) ===== */
.hero-business {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.hero-content-business {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-business {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title-business {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-description-business {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons-business {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-business .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.hero-business .btn-primary:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

.hero-business .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-business .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== 특징 카드 (비즈니스) ===== */
.feature-card-business {
    text-align: center;
    padding: 40px 30px;
}

.feature-icon-business {
    font-size: 56px;
    margin-bottom: 24px;
}

.feature-card-business h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card-business p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== 서비스 개요 ===== */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-overview-card {
    padding: 40px 30px;
}

.service-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-overview-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.service-list li {
    padding: 10px 0 10px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

/* ===== 성과 지표 ===== */
.metrics-grid {
    margin-top: 60px;
}

.metric-card {
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-secondary) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.metric-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== 성공사례 카드 ===== */
.success-cases-preview {
    margin-top: 60px;
}

.success-case-card {
    padding: 30px;
}

.case-tag {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.success-case-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.success-case-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.case-period {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== 요금 카드 ===== */
.pricing-preview-grid {
    margin-top: 60px;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-card.recommended {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0 12px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

/* ===== CTA 섹션 (비즈니스) ===== */
.cta-section-business {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.cta-content-business h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-content-business p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section-business .btn-primary {
    background-color: white;
    color: #059669;
}

.cta-section-business .btn-primary:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

.cta-section-business .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section-business .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== 폼 스타일 (비즈니스) ===== */
.inquiry-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.form-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-primary);
}

.form-section-description {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
}

.inquiry-form {
    background-color: var(--bg-primary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== 대시보드 스타일 ===== */
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-card {
    background-color: var(--bg-primary);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dashboard-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-card-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dashboard-card-change {
    font-size: 14px;
    font-weight: 600;
}

.dashboard-card-change.positive {
    color: var(--success-color);
}

.dashboard-card-change.negative {
    color: var(--error-color);
}

/* ===== 데이터 테이블 ===== */
.data-table {
    background-color: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.table-header {
    background-color: var(--bg-secondary);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.table-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.table-content {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: var(--bg-secondary);
}

th {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 16px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: var(--bg-secondary);
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 768px) {
    .hero-title-business {
        font-size: 32px;
    }

    .hero-description-business {
        font-size: 16px;
    }

    .hero-buttons-business {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons-business .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-content-business h2 {
        font-size: 28px;
    }

    .cta-content-business p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .inquiry-form {
        padding: 24px;
    }
}
