/* Sezione pacchetti verticali (siti-web / crm) */
.pricing-section {
    padding: 4rem 0 3rem;
}

.pricing-intro {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.55;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    border-color: rgba(193, 255, 114, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card--highlight {
    border-color: rgba(193, 255, 114, 0.55);
    background: rgba(193, 255, 114, 0.06);
}

.pricing-card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.pricing-card .tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.pricing-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.pricing-amount-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.85;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.pricing-crosslink {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}

.pricing-crosslink a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
