/* ==========================================================
   Pricing Plans
========================================================== */
.pricing-section {
    padding: 80px 30px;
    background: #f8fafc;
}

.pricing-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.pricing-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}





.pricing-card {
    background: #fff;
    border: 1px solid #d9e2d9;
    border-radius: 12px;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.12);
}


.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
    margin: 0;

    font-size: 1.35rem;
    font-weight: 700;
}


.pricing-price {
    font-size: 1.75rem;
    font-weight: 600;

    margin-top: 0.5rem;
}

.pricing-period {
    display: block;

    font-size: 0.95rem;
    font-weight: 500;

    color: #64748b;

    margin-top: 0.15rem;
}

.pricing-projects {
    margin-top: 0.5rem;

    color: #6b7280;

    font-size: 0.95rem;
}


/* subtle plan colours */

.pricing-card-starter {
    border-top: 5px solid #5b8def;
}

.pricing-card-pro {
    border-top: 5px solid #b86fc5;
}

.pricing-card-enterprise {
    border-top: 5px solid #d4a72c;
}


/* ==========================================================
   Features
========================================================== */

.pricing-feature-list {
    list-style: none;

    padding: 0;
    margin: 0;

    flex-grow: 1;
}

.pricing-feature-list li {
    position: relative;

    padding-left: 1.4rem;

    margin-bottom: 0.75rem;

    line-height: 1.5;
}

.pricing-feature-list li::before {
    content: "•";

    position: absolute;

    left: 0;
    top: 0;

    font-size: 1.2rem;
    font-weight: bold;

    color: #28a745;
}

.pricing-actions {
    margin-top: 1.5rem;

    text-align: center;
}


/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 768px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

}


.pricing-description {
    min-height: 72px;

    margin: 0 0 22px;

    font-size: 14px;
    line-height: 1.6;

    color: #64748b;
}


/* ==========================================================
   Trial CTA
========================================================== */

.pricing-trial-section {
    padding: 80px 30px;

    background: #ffffff;

    text-align: center;
}

.pricing-trial-inner {
    max-width: 760px;
    margin: 0 auto;
}

.pricing-trial-inner h2 {
    margin: 12px 0 16px;

    font-size: clamp(32px, 4vw, 44px);

    color: #0f172a;
}

.pricing-trial-inner>p {
    margin: 0 auto 28px;

    font-size: 17px;
    line-height: 1.7;

    color: #64748b;
}

.pricing-trial-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;
}

@media (max-width: 550px) {

    .pricing-trial-actions {
        flex-direction: column;
    }

    .pricing-trial-actions .btn {
        width: 100%;
    }

}