
.pricing-header {
    display: grid;
    margin-top: var(--top-nav-height);

    position: relative;
    z-index: 10;
}

.pricing-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pricing-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-header__bg-mobile {
    display: none;
}

@media screen and (max-width: 800px) {
    .pricing-header__bg-mobile {
        display: block;
    }
    .pricing-header__bg-desktop {
        display: none;
    }
}

.pricing-header__content {
    position: relative;
    z-index: 50;

    margin: 0 auto;
    max-width: 1230px;

    color: #fff;
    text-align: center;
}

h1.pricing-header__title,
h2.pricing-header__title,
h3.pricing-header__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 90px;
    padding: 0 20px;
}

.pricing-header__subtitle {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 0 20px;
}

.pricing-header__subtitle,
.pricing-header__subtitle p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.pricing-header__plan-subtitle-link.pricing-header__plan-subtitle-link {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 5px 14px;
    margin-left: 2em;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;

    white-space: nowrap;

    transition: all 0.14s ease-in-out;
}

.pricing-header__plan-subtitle-link.pricing-header__plan-subtitle-link:hover,
.pricing-header__plan-subtitle-link.pricing-header__plan-subtitle-link:focus {
    background-color: #fff;
    color: #446DDE;
}

.pricing-header__plans {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 80px;
    gap: 60px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

@media screen and (max-width: 1260px) {
    .pricing-header__plans {
        gap: 30px;
    }   
}

@media screen and (max-width: 800px) {
    .pricing-header__plans {
        flex-direction: column;
    }
}

.pricing-header__plan {
    flex: 1;
    border-radius: 16px;
    padding: 30px;

    display: flex;
    flex-direction: column;
}


.pricing-header__plan {
    /* background: linear-gradient(205deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%) !important; */
    background: linear-gradient(152.97deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%) !important;

    backdrop-filter: blur(12px);
    border-radius: 16px;
    
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    position: relative;
}

.pricing-header__plan--enterprise {
    background: 
        linear-gradient(220deg, rgba(255, 255, 255, 0.28) -23.81%, rgba(255, 255, 255, 0.0538707) 33.8%, rgba(255, 255, 255, 0) 54.45%),
        linear-gradient(148.35deg, rgba(7, 218, 255, 0.056) -16.43%, rgba(7, 218, 255, 0.14) 15.56%, rgba(7, 218, 255, 0.137071) 57.13%, rgba(7, 218, 255, 0) 106.12%) !important;
}

.pricing-header__plan > * {
    position: relative;
}

.pricing-header__plan::before {
    border-radius: 16px;
    padding: 1px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(69.43% 69.43% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(60% 51.57% at 50% 50%, #0938DF 0%, rgba(9, 56, 223, 0) 100%),
        radial-gradient(54.8% 53% at 50% 50%, #151515 0%, rgba(21, 21, 21, 0) 100%); */

    background: radial-gradient(69.43% 69.43% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(60% 51.57% at 50% 50%, #17B384 0%, rgba(23, 179, 132, 0) 100%),
        radial-gradient(54.8% 53% at 50% 50%, #151515 0%, rgba(21, 21, 21, 0) 100%);


    /* z-index: -1; */
    pointer-events: none;

    mask: 
        linear-gradient(#000 0 0) exclude, 
        linear-gradient(#000 0 0) content-box;
}

.pricing-header__plan--enterprise {
    /* background-color: #FFF;
    color: #000;
    border: 1px solid #FFF; */
}

.pricing-header__plan > h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
}

.pricing-header__plan-subtitle {
    --line-height: 20px;
    font-size: 15px;
    line-height: var(--line-height);
    min-height: calc(var(--line-height) * 2);
    margin-bottom: 8px;
}

.pricing-header__plan-price {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 8px;
}

.pricing-header__plan-price-type {
    font-size: 16px;
    line-height: 24px;
    margin-left: 8px;
}

.pricing-header__plan-price-description p {
    margin: 0;
    font-size: 12px;
    line-height: 16px;
}

.pricing-header__plan-features {
    margin-bottom: 40px;
}

.pricing-header__plan-features-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 16px;
    margin-top: 20px;
}

.pricing-header__plan-features-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-header__plan-features-item:not(:last-child) {
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 18px;
}
.pricing-header__plan-lets-talk {
    /* color: #446DDE; */
    font-size: 35px;
    font-weight: 500;
    line-height: 40px;
    margin-top: 4px;
    margin-bottom: 12px;
}

.pricing-header__plan-features-description {
    /* color: #2C2C2C; */
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.pricing-header__plan-features-get-started.pricing-header__plan-features-get-started {
    color: #446DDE;
    background-color: #FFF;
    border-radius: 4px;
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 10px;
    font-weight: 600;

    transition: all .15s ease-in-out;
}

.pricing-header__plan-features-get-started.pricing-header__plan-features-get-started:hover,
.pricing-header__plan-features-get-started.pricing-header__plan-features-get-started:focus {
    color: #FFF;
    background-color: #446DDE;
}


.pricing-header__plan--enterprise .pricing-header__plan-features-get-started.pricing-header__plan-features-get-started {
    color: #FFF;
    background-color: #446DDE;
}

.pricing-header__plan--enterprise .pricing-header__plan-features-get-started.pricing-header__plan-features-get-started:hover,
.pricing-header__plan--enterprise .pricing-header__plan-features-get-started.pricing-header__plan-features-get-started:focus {
    background-color: #2253db;
}

.pricing-header__footer-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.pricing-header__footer-content,
.pricing-header__footer-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.pricing-header__footer-content a {
    color: #FFF;
    font-weight: 500;
    transition: all .15s ease-in-out;
}

.pricing-header__footer-content a:hover,
.pricing-header__footer-content a:focus {
    color: rgba(255, 255, 255, .75);
}

.pricing-header__plan-features-title-toggle {
    display: none;
}

.pricing-header__plan-features-title {
    pointer-events: none;
}

@media screen and (max-width: 800px) {
    .pricing-header__plan-features-list {
        overflow-y: hidden;
        transition: height 0.35s ease-in-out;
        /* height: 0; */
    }
    
    .pricing-header__plan-features-title:has(+ .pricing-header__plan-features-list) {
        pointer-events: auto;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pricing-header__plan-features-title:has(+ .pricing-header__plan-features-list) .pricing-header__plan-features-title-toggle {
        display: block;
        transition: transform 0.35s ease-in-out;
    }  

    .pricing-header__plan-features-title-toggle.rotate-180 {
        transform: rotate(180deg);
    }
}