/* Premium Pricing Table Styles - Sales-Oriented Design */

/* Main feature items - Bright, attention-grabbing */
.feature-main {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-left: 3px solid #3b82f6;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: 0.01em;
}

.feature-main:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    transform: translateX(4px);
    border-left-color: #06b6d4;
}

.feature-main-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}

/* Hidden features - Subtle, professional */
.feature-hidden {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    margin-bottom: 6px;
    background: rgba(30, 41, 59, 0.3);
    border-left: 2px solid rgba(100, 116, 139, 0.3);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 0;
}

.feature-hidden:hover {
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    border-left-color: rgba(148, 163, 184, 0.5);
}

.feature-hidden-icon {
    width: 16px;
    height: 16px;
    color: #64748b;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Hidden features container */
.features-hidden-container {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(100, 116, 139, 0.2);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show More Button - Innovative Design */
.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.show-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.show-more-btn:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-color: rgba(139, 92, 246, 0.6);
    color: #c4b5fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.show-more-btn span {
    position: relative;
    z-index: 1;
}

.show-more-btn i {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.show-more-btn.active i {
    transform: rotate(180deg);
}

/* Pricing Card Enhanced Styles */
.pricing-card-premium {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card-premium:hover::before {
    opacity: 1;
}

.pricing-card-premium:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

/* Popular Badge Enhanced */
.popular-badge-glow {
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    height: 40px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(245, 158, 11, 0.7);
    }
}

/* Specs Grid Enhanced */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(71, 85, 105, 0.2);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(51, 65, 85, 0.5);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.spec-icon {
    width: 20px;
    height: 20px;
    color: #60a5fa;
    margin-bottom: 6px;
}

.spec-value {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}

/* Price Display Enhanced */
.price-display {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .feature-main {
        font-size: 14px;
        padding: 10px 14px;
    }

    .price-amount {
        font-size: 40px;
    }
}
