.pricing-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 100px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 199, 56, 0.3);
}

.pricing-card.featured {
    background: rgba(229, 199, 56, 0.03);
    border: 2px solid rgba(229, 199, 56, 0.3);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wfs-yellow);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-desc {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(229, 199, 56, 0.1);
}

.currency {
    color: var(--wfs-light-gray);
    font-size: 1rem;
    vertical-align: top;
}

.amount {
    color: var(--wfs-yellow);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 5px;
}

.period {
    color: var(--wfs-light-gray);
    font-size: 1rem;
}

.custom-price {
    color: var(--wfs-yellow);
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    color: var(--wfs-light-gray);
    padding: 12px 0;
    border-bottom: 1px solid rgba(229, 199, 56, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 15px;
}

.pricing-note {
    text-align: center;
    color: var(--wfs-light-gray);
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.8;
}

.pricing-info {
    margin-top: 80px;
    text-align: center;
}

.pricing-info h3 {
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    text-align: center;
}

.included-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.included-item h4 {
    color: var(--wfs-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.included-item p {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .included-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Full price table */
.full-pricing-table {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
}

.full-pricing-table h3 {
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.full-pricing-table p {
    color: var(--wfs-light-gray);
    margin-bottom: 30px;
}

.price-table {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 20px;
    padding: 20px;
    overflow-x: auto;
}

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

.price-table th {
    background: rgba(229, 199, 56, 0.1);
    color: var(--wfs-yellow);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 12px 15px;
    color: var(--wfs-light-gray);
    border-bottom: 1px solid rgba(229, 199, 56, 0.05);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr.highlighted {
    background: rgba(229, 199, 56, 0.05);
}

.price-table tr.highlighted td {
    color: var(--wfs-white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .included-features {
        grid-template-columns: 1fr;
    }
}
