/*** APPLICATION ***/
section.application {
    padding: 40px 0 48px;
    overflow: hidden;
}

.app_any_param_head svg path {
    stroke: var(--theme-text-color, currentColor);
    fill: var(--theme-text-color, currentColor);
}

.application_top {
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.application_img {
    flex: 0 0 300px;
    max-width: 300px;
    align-self: center;
}

.application_img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.application_content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.application_content h1 {
    margin-bottom: 12px;
}

.application_text {
    line-height: 1.7;
    color: var(--wh-80);
    margin-bottom: 24px;
}

.application_text p:last-child {
    margin-bottom: 0;
}

.app_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a.app_any_btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: box-shadow 0.15s, transform 0.15s;
    border: 1px solid transparent;
}

a.app_any_btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

a.app_any_btn svg:not(.app_btn_arrow) {
    margin-right: 12px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

a.app_any_btn span {
    flex: 1;
}

.app_btn_arrow {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    flex-shrink: 0;
    opacity: 0.6;
    stroke: currentColor;
}

a.app_any_btn.app_ios {
    border-color: var(--gray);
}

.application_params {
    display: flex;
    gap: 0;
    margin-top: 32px;
    background: var(--bg-gray);
    border: 1px solid var(--gray);
    border-radius: 14px;
    overflow: hidden;
}

.app_any_param {
    flex: 1 1 0;
    min-width: 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--gray);
}

.app_any_param:last-child {
    border-right: none;
}

.app_any_param_icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.app_any_param_icon svg {
    width: 18px;
    height: 18px;
    color: var(--ye);
}

.app_any_param_value {
    font-size: 18px;
    font-weight: 700;
    color: var(--wh);
    margin-bottom: 4px;
    line-height: 1.2;
}

.app_any_param_label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--wh-50);
    font-weight: 500;
}

.stars {
    display: flex;
    position: relative;
    line-height: 1;
    margin-bottom: 8px;
}

.stars svg {
    margin-right: 1px;
    position: relative;
    display: none;
}

.stars_bg {
    position: absolute;
    height: 100%;
    background: var(--ye);
}

.stars svg path {
    fill: transparent;
    stroke: var(--bl);
}

.stars:before {
    font-size: 20px;
    content: "\2605\2605\2605\2605\2605";
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--ye) var(--rating), var(--wh-30) var(--rating));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 600px) {
    section.application {
        padding: 28px 0 36px;
    }

    .application_top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .application_img {
        flex: none;
        max-width: 200px;
        width: 100%;
    }

    .application_params {
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .app_any_param {
        flex: 1 1 50%;
        min-width: 50%;
        border-right: 1px solid var(--gray);
        border-bottom: 1px solid var(--gray);
        padding: 16px 12px;
    }

    .app_any_param:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .app_any_param:nth-child(even) {
        border-right: none;
    }

    a.app_any_btn {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/*** END APPLICATION ***/
