/* pricing.css - Full-width section + wider cards in ONE ROW on desktop – with CSS variables */

.pricing-section {
    position: relative;
    padding: 140px 5% 0px;
    /* background: var(--bg-primary, #ffffff); */
    background: var(--bg-primary, --bg-primary);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

#pricing-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.pricing-content {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-heading {
    font-size: clamp(2.4rem, 3vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5.5rem;
    color: var(--text-heading, #000);
    position: relative;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4.5rem;
    padding-bottom: 1rem;
    justify-content: center;
}

.pricing-card {
    /* background: var(--card-bg, #fff); */
    background: var(--card-bg, --card-bg);
    border-radius: 24px;
    padding: 3.5rem 2.5rem 4rem;
    box-shadow: var(--shadow-card, 0 16px 60px rgba(0, 0, 0, 0.10));
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.08));
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    flex: 1 0 440px;
    min-width: 370px;
    max-width: 380px;
}

.pricing-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-hover, 0 28px 80px rgba(0, 0, 0, 0.18));
}

.plan-tag {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* background: var(--tag-bg, #e0e0e0); */
    background: var(--tag-bg, --tag-bg);
    color: var(--text-muted, #555);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1.3rem;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-tag.recommended {
    background: var(--success, #34a853);
    color: white;
}

.plan-tag.preview {
    background: var(--warning, #fbbc05);
    color: var(--text-primary, #333);
}

.plan-tag.coming {
    background: var(--accent, #4285f4);
    color: white;
}

.pricing-card h3 {
    font-size: 1.9rem;
    margin: 3.5rem 0 1.3rem;
    color: var(--text-heading, #000);
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent, #1a73e8);
    margin-bottom: 1.4rem;
}

.plan-desc {
    font-size: 1.15rem;
    color: var(--text-secondary, #555);
    margin-bottom: 2.2rem;
    min-height: 50px;
}

.Download-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--btn-secondary-bg, #d8d8d8);
    color: var(--text-primary, black);
    text-align: center;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-btn,
.free-plan-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--btn-primary-bg, #000);
    color: var(--btn-primary-text, white);
    text-align: center;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    margin: 2rem 0 2.2rem;
    transition: all 0.3s ease;
}

.plan-btn:hover,
.free-plan-btn:hover {
    background: var(--btn-primary-hover, #111);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn-hover, 0 4px 12px rgba(0, 0, 0, 0.15));
}

.Download-btn:hover {
    background: var(--btn-secondary-hover, #222);
    color: white;
    transform: translateY(-3px);
}

.plan-btn.disabled,
.free-plan-btn.disabled {
    background: var(--btn-disabled-bg, #000000);
    cursor: not-allowed;
    pointer-events: none;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    flex-grow: 1;
}

.plan-features li {
    font-size: 1.08rem;
    color: var(--text-secondary, #444);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li::before {
    content: "✓";
    color: var(--success, #34a853);
    font-weight: bold;
}

.business-model {
    font-size: 1.2rem;
    color: var(--text-muted, #555);
    margin: 2rem 0rem;
}

/* Responsive */
@media (max-width: 1400px) {
    .pricing-cards {
        gap: 2rem;
    }

    .pricing-card {
        flex: 1 0 360px;
        min-width: 360px;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .pricing-section {
        padding: 120px 5% 100px;
    }

    .pricing-cards {
        gap: 3rem;
    }

    .pricing-card {
        min-height: 520px;
        flex: 1 1 100%;
        max-width: none;
    }

    .pricing-heading {
        font-size: clamp(2.4rem, 8vw, 2rem);
    }
}