/* Pricing 페이지 전용 스타일 */

/* 가격 카드 호버 효과 */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

/* 인기 플랜 강조 */
.popular-badge {
    position: relative;
}

.popular-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6);
    border-radius: inherit;
    z-index: -1;
}

/* 가격 애니메이션 */
.price-highlight {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* FAQ 아코디언 효과 */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

/* 반응형 조정 */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* 다크모드 지원 (선택사항) */
@media (prefers-color-scheme: dark) {
    .pricing-card {
        background-color: #1F2937;
        border-color: #374151;
    }
    
    .pricing-card h4 {
        color: #F9FAFB;
    }
    
    .pricing-card p {
        color: #D1D5DB;
    }
}