/* All CSS styles from faq.html */
/* Pricing specific styles */
.pricingtab-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #e0f2fe 100%);
    padding: 40px 0;
}

.pricing-hero {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-tabs {
    padding: 40px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 25px;
    background: var(--light);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 520;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.tab:hover,
.tab.active {
    background: #8c00ffcb;
    color: white;
    box-shadow: #666666d0 0px 2px 7px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    position: relative;
    transition: transform 0.3s;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: rgb(245, 245, 10);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-top: 0;
    color: var(--primary);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
}

.price s {
    text-decoration-thickness: 3px;
    font-weight: 600;
    margin-right: 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

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

.features-list li {
    font-size: small;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list i {
    margin-right: 10px;
    color: var(--primary);
}

.bulk-discounts {
    padding: 60px 0;
    text-align: center;
    background: rgba(74, 107, 255, 0.05);
}

.discount-table {
    max-width: 600px;
    margin: 30px auto;
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
}

.table-row.header {
    background: var(--primary);
    color: var(--light);
    font-weight: 600;
}

.table-row:nth-child(even) {
    background: rgba(74, 107, 255, 0.05);
}

.note {
    font-size: 0.9rem;
    color: #666;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
}