/* 패키지 카드 스타일 */
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(56, 102, 255, 0.15);
}

.package-card.featured {
    border-color: #3866FF;
    box-shadow: 0 0 0 4px rgba(56, 102, 255, 0.1);
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3866FF, #2F6F59);
}

.price-tag {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: #2A2A2A;
}

.price-unit {
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B7280;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-content.open {
    max-height: 2000px;
}

.accordion-button {
    transition: all 0.3s ease;
}

.accordion-button.open svg {
    transform: rotate(180deg);
}

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

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
    background: #F9FAFB;
    font-weight: 600;
    color: #2A2A2A;
}

.comparison-table td {
    color: #6B7280;
}

.check-icon {
    color: #10B981;
    font-weight: 600;
}

.x-icon {
    color: #EF4444;
    font-weight: 600;
}

