/* =========================================
   GROWTH PLANS SECTION
========================================= */

.growth-plans-section {
    position: relative;
    padding: 110px 20px 100px;
    background: #f8f9fb;
    overflow: hidden;
}


/* Decorative background */

.growth-plans-section::before,
.growth-plans-section::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.45;
    background-image: radial-gradient(
        #9bb5d3 2px,
        transparent 2px
    );
    background-size: 18px 18px;
}

.growth-plans-section::before {
    left: 40px;
    top: 160px;
}

.growth-plans-section::after {
    right: 40px;
    top: 160px;
}


.plans-container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================================
   SECTION HEADING
========================================= */

.plans-heading {
    text-align: center;
    margin-bottom: 65px;
}


.section-label {
    display: block;
    color: #315f92;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 7px;
    margin-bottom: 12px;
}


.plans-heading h2 {
    margin: 0;
    color: #1c1d20;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.1;
    font-weight: 800;
}


.plans-heading h2 span {
    color: #1e65ab;
}


.plans-heading p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #58626f;
    font-size: 18px;
    line-height: 1.6;
}


/* =========================================
   PLANS GRID
========================================= */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    align-items: stretch;
}


/* =========================================
   PLAN CARD
========================================= */

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 30px 28px;
    background: #ffffff;
    border: 1px solid #e3e7ec;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(30, 55, 85, 0.06);
    transition: all 0.35s ease;
}


.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(30, 55, 85, 0.13);
}


/* =========================================
   PLAN ICON
========================================= */

.plan-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #eef4fb,
        #dce8f6
    );

    border-radius: 50%;
}


.plan-icon i {
    color: #2863a4;
    font-size: 32px;
}


/* =========================================
   PLAN TEXT
========================================= */

.plan-card h3 {
    margin: 0;
    text-align: center;

    font-size: 28px;
    font-weight: 700;
    color: #24272b;
}


.plan-description {
    min-height: 58px;

    margin: 10px 0 20px;

    text-align: center;
    color: #315f92;

    font-size: 16px;
    line-height: 1.55;
}


.plan-divider {
    width: 100%;
    height: 1px;

    margin-bottom: 20px;

    background: #e5e8ec;
}


/* =========================================
   PRICE
========================================= */

.plan-price {
    text-align: center;
    margin-bottom: 22px;
}


.plan-price .price {
    color: #2d5f9a;
    font-size: 37px;
    font-weight: 800;
}


.plan-price .duration {
    color: #4d5661;
    font-size: 16px;
}


/* =========================================
   FEATURES
========================================= */

.plan-features {
    padding: 0;
    margin: 0 0 30px;

    list-style: none;

    flex-grow: 1;
}


.plan-features li {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

    color: #3d444c;

    font-size: 15.5px;
    line-height: 1.4;
}


.plan-features li i {
    color: #2863a4;
    font-size: 17px;
    margin-top: 2px;
}


/* =========================================
   BUTTONS
========================================= */

.plan-btn {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.plan-btn span {
    font-size: 24px;
    transition: transform 0.3s ease;
}


.plan-btn:hover span,
.consultation-btn:hover span {
    transform: translateX(6px);
}


/* Outline Button */

.outline-btn {
    color: #285b95;

    border: 1.5px solid #285b95;

    background: transparent;
}


.outline-btn:hover {
    color: #ffffff;
    background: #285b95;
}


/* Primary Button */

.primary-btn {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #2f67a2,
        #1f5793
    );

    box-shadow: 0 10px 25px rgba(40, 91, 149, 0.25);
}


.primary-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 15px 30px rgba(40, 91, 149, 0.35);
}


/* =========================================
   POPULAR PLAN
========================================= */

.growth-plan {
    border: 2px solid #1e65ab;
    transform: translateY(-8px);
}


.growth-plan:hover {
    transform: translateY(-16px);
}


.popular-badge {
    position: absolute;

    top: -17px;
    left: 50%;

    transform: translateX(-50%);

    white-space: nowrap;

    padding: 9px 25px;

    border-radius: 30px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #1e65ab,
        #1f5793
    );

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    box-shadow: 0 8px 20px rgba(40, 91, 149, 0.25);
}


.popular-badge i {
    margin-right: 6px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.plans-bottom-cta {
    max-width: 1120px;

    margin: 70px auto 0;

    padding: 20px 22px;

    display: flex;
    align-items: center;

    gap: 20px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 10px 35px rgba(30, 55, 85, 0.08);
}


.cta-icon {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #eef4fb;
}


.cta-icon i {
    color: #2863a4;
    font-size: 31px;
}


.cta-content {
    flex: 1;
}


.cta-content h4 {
    margin: 0 0 6px;

    color: #252a30;

    font-size: 18px;
    font-weight: 700;
}


.cta-content p {
    margin: 0;

    color: #68717c;

    font-size: 14px;
    line-height: 1.5;
}


.consultation-btn {
    min-width: 285px;
    min-height: 58px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #2f67a2,
        #1f5793
    );

    border-radius: 9px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: all 0.3s ease;
}


.consultation-btn span {
    font-size: 23px;
    transition: transform 0.3s ease;
}


.consultation-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(40, 91, 149, 0.25);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .scale-plan {
        grid-column: span 2;
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

}


@media (max-width: 768px) {

    .growth-plans-section {
        padding: 80px 15px;
    }


    .plans-heading {
        margin-bottom: 45px;
    }


    .section-label {
        font-size: 13px;
        letter-spacing: 4px;
    }


    .plans-heading p {
        font-size: 15px;
    }


    .plans-heading p br {
        display: none;
    }


    .plans-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .growth-plan {
        transform: none;
    }


    .growth-plan:hover {
        transform: translateY(-8px);
    }


    .scale-plan {
        grid-column: auto;
        max-width: none;
    }


    .plan-card {
        padding: 40px 24px 25px;
    }


    .plans-bottom-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 25px;
    }


    .consultation-btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .plans-heading h2 {
        font-size: 46px;
    }


    .plan-price .price {
        font-size: 32px;
    }


    .plan-card h3 {
        font-size: 25px;
    }


    .plans-bottom-cta {
        text-align: center;
        align-items: center;
    }


    .cta-content p {
        font-size: 13px;
    }

}