:root {
    --repair-bg: linear-gradient(120deg, #f1f5f9 0%, #e2e8f0 100%);
}

.repair-phone-page .repair-phone-intro {
    padding: 20px 0;
}

.repair-phone-page .padding {
    padding: 20px 0;
}

.repair-phone-page .bg-gray {
    background: var(--repair-bg);
}

.repair-phone-page .h2 {
    font-family: "Exo 2", "Inter", sans-serif;
    font-size: 32px;
    text-align: center;
    margin: 0 0 28px;
}

.repair-phone-page .services__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.repair-phone-page .services__item {
    margin: 0;
}

.repair-phone-page .services-item {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 12px;
    background: var(--surface);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
    min-height: 190px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.repair-phone-page .services-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
}

.repair-phone-page .services-item__image img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.repair-phone-page .services-item__title {
    font-weight: 600;
    color: #1f2937;
    text-align: center;
}

.repair-phone-page .flex {
    display: flex;
}

.repair-phone-page .price_block_banner {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    flex-wrap: wrap;
}

.repair-phone-page .banner_img {
    width: min(200px, 35vw);
    height: auto;
}

.repair-phone-page .banner_text {
    flex: 1 1 260px;
}

.repair-phone-page .banner_title {
    font-size: 28px;
    margin: 0 0 10px;
}

.repair-phone-page .banner_desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.repair-phone-page .banner_btn {
    background: #fff;
    color: #0f172a;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .repair-phone-page .services__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .repair-phone-page .price_block_banner {
        text-align: center;
    }

    .repair-phone-page .banner_img {
        margin: 0 auto;
    }

    .repair-phone-page .banner_btn {
        width: 100%;
    }
}
