.pricing-section {
    padding-top: 80px;
    padding-bottom: 90px;
}

.home-pricing,
.modern-pricing {
    align-items: stretch;
    gap: 28px;
}

.modern-pricing {
    max-width: 1120px;
}

.modern-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #fbfcff);
    border: 1px solid #dfe4f2 !important;
    border-radius: 22px !important;
    padding: 34px !important;
    box-shadow: 0 18px 50px rgba(36, 52, 93, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modern-price-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(36, 52, 93, 0.15);
    border-color: #aeb8ff !important;
}

.modern-price-card.popular {
    border: 2px solid var(--blue) !important;
    background: linear-gradient(180deg, #f8f9ff, #fff);
}

.popular-ribbon {
    position: absolute;
    right: -42px;
    top: 24px;
    width: 170px;
    text-align: center;
    transform: rotate(38deg);
    background: linear-gradient(135deg, #5368ff, #7a50e8);
    color: #fff;
    padding: 7px;
    font-size: 15px !important;
    font-weight: 700;
}

.plan-card-head {
    min-height: 205px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.plan-label {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    background: #eef1ff;
    padding: 7px 12px;
    border-radius: 999px;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0 10px;
}

.price-line h2,
.price-line h3 {
    font-size: 48px !important;
    line-height: 1;
    margin: 0;
    color: var(--navy);
}

.price-line small {
    color: var(--muted);
}

.plan-card-head p,
.plan-description {
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: var(--muted);
    margin-bottom: 0;
}

.check-list {
    list-style: none !important;
    padding: 24px 0 10px !important;
    margin: 0;
    display: grid;
    gap: 14px;
    flex: 1;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #44506a;
    line-height: 1.5 !important;
}

.check-list i {
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e7f8f1;
    color: #087c50;
    font-style: normal;
    font-weight: 800;
    font-family: Arial, sans-serif;
}

.price-cta {
    width: 100%;
    text-align: center;
    margin-top: 18px;
    padding: 15px 20px !important;
    border-radius: 11px !important;
    font-size: 19px !important;
}

.popular .price-cta {
    background: linear-gradient(135deg, #5368ff, #7651e9);
}

.pricing-page-head {
    padding-top: 85px;
}

.pricing-page-head h1 {
    font-size: 46px;
}

.pricing-page-head p {
    max-width: 760px;
    margin: 12px auto 0;
    font-size: 19px;
    line-height: 1.7;
}

.package-assurance {
    max-width: 1100px;
    margin: -25px auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.package-assurance div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 20px;
}

.package-assurance strong,
.package-assurance span {
    display: block;
}

.package-assurance strong {
    font-size: 19px;
}

.package-assurance span {
    color: var(--muted);
    margin-top: 6px;
    font-size: 17px;
}

@media (max-width: 800px) {
    .modern-price-card {
        padding: 27px !important;
    }

    .plan-card-head {
        min-height: auto;
    }

    .price-line h2,
    .price-line h3 {
        font-size: 42px !important;
    }

    .package-assurance {
        grid-template-columns: 1fr;
    }

    .pricing-page-head h1 {
        font-size: 37px;
    }

    .popular-ribbon {
        right: -47px;
        top: 20px;
    }
}
