/**
 * Pricing page — CTA buttons
 *
 * @package NourishLearnEngage
 */

.nle-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nle-pricing-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.nle-pricing-btn--primary {
    background-color: #909a78;
    border-color: #909a78;
    color: #fff;
    box-shadow: 0 10px 25px rgba(144, 154, 120, 0.35);
}

.nle-pricing-btn--primary:hover {
    background-color: #7f8968;
    border-color: #7f8968;
    color: #fff;
    box-shadow: 0 14px 28px rgba(144, 154, 120, 0.42);
}

.nle-pricing-btn--outline {
    background-color: #fff;
    border-color: #dcded6;
    color: rgb(42, 37, 34);
}

.nle-pricing-btn--outline:hover {
    background-color: #f6f6f1;
    border-color: #909a78;
    color: rgb(42, 37, 34);
}

.nle-pricing-btn--muted {
    background-color: #f6f6f1;
    border-color: #e5e5e5;
    color: rgb(42, 37, 34);
}

.nle-pricing-btn--muted:hover {
    background-color: #ecece6;
    border-color: #cfcfc4;
    color: rgb(42, 37, 34);
}

.nle-pricing-btn--block {
    display: flex;
    width: 100%;
}

.nle-pricing-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .nle-pricing-cta__actions {
        flex-direction: row;
        gap: 1rem;
    }
}
