.block-pricing-cards {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media screen and (min-width: 960px) {
    .block-pricing-cards {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.block-pricing-cards .intro {
    max-width: 730px;
    text-align: center;
    margin: 0 auto 60px auto;
}

.block-pricing-cards .intro > :first-child {
    margin-top: 0;
}

.block-pricing-cards .intro > :last-child {
    margin-bottom: 0;
}

.block-pricing-cards .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media screen and (min-width: 640px) {
    .block-pricing-cards .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .block-pricing-cards .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-top: 4px solid #00437b;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 67, 123, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 67, 123, 0.14);
}

.pricing-card.is-popular {
    border-top-color: #3465cd;
    box-shadow: 0 8px 28px rgba(52, 101, 205, 0.14);
}

.pricing-card__popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #3465cd;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    transform: translateY(-50%);
}

.pricing-card__title {
    color: #00437b;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.pricing-card__return {
    margin-bottom: 18px;
}

.pricing-card__return-value {
    color: #00437b;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card__return-label {
    color: #415464;
    font-size: 16px;
    margin-left: 6px;
}

.pricing-card__duration {
    display: inline-block;
    color: #fff;
    background: #00437b;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    margin-bottom: 22px;
}

.pricing-card__features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    flex: 1 1 auto;
}

.pricing-card__features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e4ea;
    font-size: 14px;
    color: #415464;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li strong {
    color: #00437b;
    font-weight: 600;
}

.pricing-card__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 45px;
    color: #fff;
    font: 14px/1 "Gotham Book", sans-serif;
    text-decoration: none;
    text-align: center;
    background: #3465cd;
    border: 1px solid #3465cd;
    padding: 10px 15px;
    transition: 0.125s;
    cursor: pointer;
}

.pricing-card__cta:hover {
    background: #2956b5;
    border-color: #2956b5;
}

.pricing-card__cta::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 14px;
    -webkit-mask: url("/_clanding/wp-content/themes/landing/dist/images/icon-chevron.svg") center/contain no-repeat;
    mask: url("/_clanding/wp-content/themes/landing/dist/images/icon-chevron.svg") center/contain no-repeat;
    background: #fff;
    opacity: 0;
    margin-left: -5px;
    margin-bottom: -1px;
    transition: 0.125s;
}

.pricing-card__cta:hover::after {
    opacity: 1;
    margin-left: 6px;
}

.pricing-card__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #415464;
    font-size: 16px;
}

.pricing-card__empty p {
    margin: 0;
}
