/* Pricing Page Specific Styles */
.plan-card {
    transition: all 0.3s ease;
    border: 1px solid #3a3a3a;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 24px;
}

.plan-card:hover {
    border-color: #ec4899;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.2);
}

.plan-card.popular {
    border-color: #ec4899;
    position: relative;
}

.plan-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.plan-features svg {
    flex-shrink: 0;
}

.pricing-tabs {
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 9999px;
    padding: 4px;
    display: inline-flex;
}

.pricing-tab {
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    color: #94a3b8;
}

.pricing-tab.active {
    background: #ec4899;
    color: white;
}

.pricing-tab:hover:not(.active) {
    color: white;
    background: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-tabs {
        width: 100%;
    }
    
    .pricing-tab {
        flex: 1;
        text-align: center;
        padding: 8px 12px;
    }
    
    .plan-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 16px;
    }
    
    .plan-price {
        font-size: 1.5rem;
    }
}

/* Animation for popular badge */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.popular-badge {
    animation: pulse 2s ease-in-out infinite;
}

/* FAQ Section */
.faq-item {
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.faq-summary {
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-summary:hover {
    background: #252525;
}

.faq-content {
    padding: 0 16px 16px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.faq-content p {
    margin: 0;
}

/* Details element styling */
details[open] > .faq-summary {
    background: #252525;
}

details > .faq-content {
    display: none;
}

details[open] > .faq-content {
    display: block;
}

/* Button Styles */
.pricing-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #db2777, #e84d9e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
