.what-you-get {
    padding: 80px 0;
}

.what-you-get__inner {
    padding: 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 50%, rgba(219, 234, 254, 0.5) 100%);
    border: 1px solid #BEDBFF;
    box-shadow: 0px 4px 6px -4px #DBEAFE66,
        0px 10px 15px -3px #DBEAFE66;
}

.what-you-get__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 80px;
}

.what-you-get__title {
    font-family: Suisse Intl;
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    color: var(--Secondary-500-Text-Heading, #474766);
    margin: 0;
}

.what-you-get__link {
    font-weight: 400;
    font-size: 13.3px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--Brand-500-Main-Accent, #258BFF);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.what-you-get__link::after {
    content: url('/img/icon/arrow-tail.svg');
    font-size: 18px;
    line-height: 1;
}

.what-you-get__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.what-you-get__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #E6ECF7;
    background: #ffffff;
    min-height: 100%;
}

.what-you-get__card--blue {
    background: #EFF6FF;
    border-color: #BEDBFF99;
}

.what-you-get__card--green {
    background: #ECFDF5;
    border-color: #A4F4CF99;
}

.what-you-get__card--purple {
    background: #F5F3FF;
    border-color: #DDD6FF99;
}

.what-you-get__pill {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 400;
    font-size: 10px;
    line-height: 150%;
    letter-spacing: 0.25px;
    vertical-align: middle;
    text-transform: uppercase;
}

.what-you-get__pill--blue {
    background: #E7F1FF;
    color: #2A7CFF;
}

.what-you-get__pill--green {
    background: #DFF8EB;
    color: #00A86B;
}

.what-you-get__pill--purple {
    background: #EEE7FF;
    color: #7B4BFF;
}

.what-you-get__value {
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
    color: #2A7CFF;
}

.what-you-get__card--green .what-you-get__value {
    color: #00A86B;
}

.what-you-get__card--purple .what-you-get__value {
    color: #7B4BFF;
}

.what-you-get__subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: var(--Secondary-500-Text-Heading, #474766);
}

.what-you-get__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--Secondary-400-Text-Base, #8787AB);
    margin: 0 0 8px;
}

.what-you-get__img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1100px) {
    .what-you-get__inner {
        padding: 40px;
    }

    .what-you-get__title {
        font-size: 30px;
        line-height: 36px;
    }

    .what-you-get__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .what-you-get__card:last-child {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 800px) {
    .what-you-get {
        padding: 60px 0;
    }

    .what-you-get__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .what-you-get__cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .what-you-get {
        padding: 40px 0;
    }

    .what-you-get__inner {
        padding: 20px;
        border-radius: 20px;
    }

    .what-you-get__title {
        font-size: 24px;
        line-height: 30px;
    }

    .what-you-get__value {
        font-size: 36px;
        line-height: 40px;
    }

    .what-you-get__head {
        margin-bottom: 20px;
    }

    .what-you-get__card--blue {
        padding: 12px;
        border-radius: 8px;
    }
}
