﻿.pricing-section {
    padding: 80px 20px;
    /* background: linear-gradient(180deg, #f4fbf9, #ffffff); */
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

    .pricing-header h1 {
        font-size: 36px;
        color: #0400ff;
        margin-bottom: 12px;
        font-weight: 700;
        
    }

    .pricing-header p {
        font-size: 20px;
        color: #000000;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

.plan-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: 22px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.plan-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

    .plan-features li {
        margin-bottom: 10px;
        color: #333;
        font-size: 16px;
        font-weight: 400;
    }

.pricing-btn {
    padding: 12px 26px;
    border-radius: 30px;
    border: 2px solid #1abc9c;
    background: transparent;
    color: #1abc9c;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .pricing-btn:hover {
        background: #1abc9c;
        color: #ffffff;
    }

    .pricing-btn.primary {
        background: linear-gradient(135deg, #1abc9c, #2ecc71);
        color: #ffffff;
        border: none;
    }

.featured {
    transform: scale(1.03);
    border: 2px solid #1abc9c;
}

.pricing-addons {
    margin-top: 80px;
    text-align: center;
}

    .pricing-addons h2 {
        font-size: 26px;
        color: #3560ab;
        margin-bottom: 25px;
        font-weight: 500;
    }

.addons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 40px;
}

    .addons-list span {
        font-size: 14px;
        color: #ffffff;
        background: #797c53;
        padding: 10px 16px;
        border-radius: 20px;
        FONT-WEIGHT: 500;
    }

.quote-cta {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1abc9c, #2ecc71);
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .quote-cta:hover {
        transform: translateY(-3px);
    }

/* Mobile */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 28px;
    }

    .featured {
        transform: none;
    }
}
