/* ================= PRICING PAGE ================= */

.pricing-hero {
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f7f7 100%
    );
}

.pricing-hero h1 {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    font-weight: 800;
}

.pricing-hero p {
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.6);
}

.pricing-section {
    padding: 120px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricing-card {
    padding: 40px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-card .desc {
    color: #555;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
