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

.pricing {
    padding: 5rem 2rem;
    background: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #5DBAAC 0%, #4BA89C 100%);
    color: white;
    transform: scale(1.05);
    border: none;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-card .period {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5DBAAC;
    font-weight: bold;
}

.pricing-card.featured li:before {
    color: white;
}

.cta-button {
    background: #E74C3C;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.pricing-card.featured .cta-button {
    background: white;
    color: #5DBAAC;
}
