p {
    margin: 0;
}

.pricing-section {
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    background: #313134;
    margin: 0 -16px 32px -16px;
    padding: 16px;
    border-radius: 32px;
}

.price-container {
    background-color: #313134;
    border-radius: 48px;
    color: #313134;
    margin: auto;
    max-width: 1432px;
}

.price-header {
    display: flex;
    padding: 32px;
    justify-content: center;
    position: relative;
}

.price-header .illustration-left, .price-header .illustration-right {
    position: absolute;
}

.price-header .illustration-left {
    left: 64px;
    bottom: -15px;
}

.price-header .illustration-right {
    right: 64px;
    bottom: 0;
}

.price-header-title {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 48px 32px;
    align-items: center;
}

.price-header-title img, .price-header-title button {
    align-self: center;
}

.price-header .price-title {
    max-width: 655px;
    font-size: 64px;
    line-height: 64px;
    color: #fff;
    text-align: center;
}

.price-title .focused-word {
    margin-left: 4px;
}

#compare-button {
    width: 194px;
    padding: 12px 20px;
}

.price-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.personal-card {
    background: #FFFFFF;
    order: 1;
}

.professional-card {
    background: #FFFEF4;
    order: 2;
}

.enterprise-card {
    background: #F6F8FF;
    order: 3;
}

.personal-row {
    background: #F8F7F5;
}

.professional-row {
    background: #FFF9C7;
}

.enterprise-row {
    background: #E3E9FF;
}

.price-card {
    padding: 24px;
    border-radius: 32px;
    box-sizing: border-box;
    flex: 30%;
}

.price-card .text-medium {
    font-size: 20px;
    line-height: 24px;
}
.price-card .text-disabled {
    color: #919199;
}

.price-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.price-card-title {
    display: flex;
    gap: 8px;
    font-size: 32px;
}

.price-card-title .extra-space {
    display: inline-block;
}

.price-card-title .popular-badge {
    padding: 4px 12px;
    color: #313134;
    background: #FFE84D;
    border-radius: 16px;
    font-size: 12px;
    height: 24px;
    display: flex;
    align-items: center;
}

.price-card-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-card-row {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-card-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-card-row .button-upgrade {
    font-size: 14px;
    line-height: 20px;
    background: #313134;
    padding: 8px 20px;
    border-radius: 24px;
    color: #fff;
    border: none;
}

.price-card-users {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media only screen and (min-width: 992px) {
    .price-cards {
        gap: 32px;
    }

    .pricing-section {
        padding: 32px;
        border-radius: 48px;
    }

    .price-card-title .extra-space {
        display: none;
    }
}

@media screen and (max-width: 1300px) {
    .price-header .price-title {
        font-size: 48px;
        line-height: 48px;
        max-width: 465px;
    }
}

@media screen and (max-width: 1200px) {
    .price-header .illustration-left, .price-header .illustration-right {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .price-cards .price-card {
        width: 100%;
    }
}

