.troo-advanced-pricing-box {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 522px;
    overflow: visible;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: #1c2541;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.troo-advanced-pricing-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 1px solid #45c39e;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.troo-advanced-pricing-box:hover {
    border-color: #45c39e;
}

.troo-advanced-pricing-box:hover::after {
    opacity: 1;
    left: 10px;
    top: 10px;
}

.troo-advanced-pricing-box__header {
    padding: 24px 32px 27px;
    border-radius: 5px 5px 0 0;
    background-color: #e8e8e8;
    text-align: center;
    transition: background-color 0.3s ease;
}

.troo-advanced-pricing-box:hover .troo-advanced-pricing-box__header {
    background-color: #1c2541;
}

.troo-advanced-pricing-box__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 22px;
    padding: 3px 9px;
    border-radius: 3px;
    background-color: #45c39e;
    color: #1c2541;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.troo-advanced-pricing-box__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 17px;
    color: #1c2541;
}

.troo-advanced-pricing-box__price {
    color: inherit;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.troo-advanced-pricing-box__currency {
    color: inherit;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.troo-advanced-pricing-box__period {
    color: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.troo-advanced-pricing-box__description {
    max-width: 270px;
    margin: 8px auto 0;
    color: #1c2541;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.troo-advanced-pricing-box:hover .troo-advanced-pricing-box__currency,
.troo-advanced-pricing-box:hover .troo-advanced-pricing-box__price,
.troo-advanced-pricing-box:hover .troo-advanced-pricing-box__period,
.troo-advanced-pricing-box:hover .troo-advanced-pricing-box__description {
    color: #ffffff;
}

.troo-advanced-pricing-box__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 39px 45px;
}

.troo-advanced-pricing-box__benefits-title {
    margin: 0 0 19px;
    color: #1c2541;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.troo-advanced-pricing-box__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.troo-advanced-pricing-box__feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 20px;
    color: #1c2541;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.troo-advanced-pricing-box__feature.is-unavailable {
    opacity: 0.2;
}

.troo-advanced-pricing-box__feature-text {
    min-width: 0;
}

.troo-advanced-pricing-box__feature-icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 15px;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #45c39e;
}

.troo-advanced-pricing-box__feature-icon::before {
    content: "";
    width: 7px;
    height: 4px;
    border-bottom: 2px solid #1c2541;
    border-left: 2px solid #1c2541;
    transform: rotate(-45deg) translate(1px, -1px);
}

.troo-advanced-pricing-box__feature-icon.has-custom-icon {
    overflow: hidden;
    border: 0;
    background-color: transparent;
}

.troo-advanced-pricing-box__feature-icon.has-custom-icon::before {
    display: none;
}

.troo-advanced-pricing-box__feature-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}




.troo-advanced-pricing-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 31px;
    margin-top: auto;
    padding: 6px 14px;
    border: 1px solid #1c2541;
    border-radius: 3px;
    background-color: transparent;
    color: #1c2541;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.troo-advanced-pricing-box:hover .troo-advanced-pricing-box__button,
.troo-advanced-pricing-box__button:hover,
.troo-advanced-pricing-box__button:focus {
    border-color: #45c39e;
    background-color: #45c39e;
    color: #1c2541;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .troo-advanced-pricing-box {
        min-height: 500px;
    }

    .troo-advanced-pricing-box__header {
        padding: 23px 24px 26px;
    }

    .troo-advanced-pricing-box__body {
        padding: 18px 30px 38px;
    }
}

@media screen and (max-width: 767px) {
    .troo-advanced-pricing-box {
        min-height: auto;
    }

    .troo-advanced-pricing-box__header {
        padding: 22px 22px 24px;
    }

    .troo-advanced-pricing-box__body {
        padding: 18px 24px 32px;
    }

    .troo-advanced-pricing-box__currency,
    .troo-advanced-pricing-box__price {
        font-size: 30px;
    }

    .troo-advanced-pricing-box__features {
        gap: 13px;
    }

    .troo-advanced-pricing-box__button {
        margin-top: 32px;
    }
}