/* 애니메이션 초기 상태 스타일 */

/* 모든 애니메이션 요소들의 초기 상태 */
.strength-preview-card,
.data-point,
.automation-point,
.process-point,
.results-point,
.network-point,
.strategy-point,
.profile-card,
.case-thumbnail,
.kpi-chart {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* 차트 요소들의 초기 상태 */
.chart-line {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s ease;
}

.bar {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s ease;
}

.donut-segment {
    transform: scale(0);
    transition: transform 0.6s ease;
}

/* 워크플로우 요소들의 초기 상태 */
.workflow-step,
.flow-step {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.workflow-arrow,
.flow-arrow {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

/* 포스트잇 초기 상태 */
.post-it {
    opacity: 0;
    transform: translateY(20px) rotate(var(--rotation));
    transition: all 0.6s ease;
}

/* 플로우 스텝 초기 상태 */
.strategy-flow .flow-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* CTA 섹션 초기 상태 */
.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* 파트너 슬라이드 애니메이션 */
.partner-slide {
    overflow: hidden;
}

.slide-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    min-width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* 호버 효과들 */
.data-point:hover,
.automation-point:hover,
.process-point:hover,
.results-point:hover,
.network-point:hover,
.strategy-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.profile-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.kpi-chart:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 강조 효과 */
.automation-highlight {
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* 차트 라벨 스타일 */
.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 데이터 대시보드 그리드 */
.data-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 600;
}

/* 라인 차트 스타일 */
.line-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100px;
    margin: 15px 0;
}

.chart-line {
    width: 60px;
    background: linear-gradient(135deg, #00e6ff 0%, #0099cc 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
}

/* 바 차트 스타일 */
.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100px;
    margin: 15px 0;
}

.bar {
    width: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #cc5555 100%);
    border-radius: 4px 4px 0 0;
}

/* 도넛 차트 스타일 */
.donut-chart {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 15px auto;
}

.donut-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 15px solid transparent;
    border-top-color: #00e6ff;
    transform: rotate(-90deg);
}

.donut-segment:nth-child(1) {
    border-top-color: #00e6ff;
}

.donut-segment:nth-child(2) {
    border-top-color: #3b82f6;
    transform: rotate(calc(35 * 3.6deg - 90deg));
}

.donut-segment:nth-child(3) {
    border-top-color: #60a5fa;
    transform: rotate(calc(60 * 3.6deg - 90deg));
}

.donut-segment:nth-child(4) {
    border-top-color: #93c5fd;
    transform: rotate(calc(80 * 3.6deg - 90deg));
}
