/* Pricing Section Component */
.pricing-section {
    background: #5b3df5;
    color: white;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: white;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.pricing-plan-name {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-cta-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pricing-note-inline {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 20px;
    color: var(--text-secondary);
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    min-height: 280px;
}

.pricing-features p {
    font-weight: 600;
    margin-top: 16px;
    color: var(--text-primary);
}

.pricing-features-intro {
    font-weight: 500;
    margin-bottom: 16px !important;
    color: var(--text-secondary) !important;
}

.pricing-features ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-note {
    color: var(--text-secondary);
    margin-top: 16px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 48px auto 0;
    }
}

