/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--bg-white);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Header */
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Pricing Card */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

/* Card gradient header */
.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #f0f0ff 0%, transparent 100%);
    z-index: 0;
}

.pricing-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Plan Label */
.pricing-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

/* Price */
.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.pricing-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.pricing-btn {
    display: inline-block;
    background: var(--purple);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(106, 13, 173, 0.2);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.3);
}

/* Features List */
.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.pricing-features .check-icon {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Footer Note */
.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-price {
        font-size: 3rem;
    }
}
