* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
}

body {
    background: #ffffff;
    color: #333333;
}

.fix-page {
    width: 100%;
}

.fix-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 20px 35px;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.fix-hero h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 12px;
}

.fix-hero p {
    max-width: 750px;
    margin: 0 auto 28px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* TABS */

.fix-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 11px 25px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: .2s;
}

.tab-btn:hover {
    background: #e0f2fe;
    color: #0284c7;
}

.tab-btn.active {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

/* GRID */

.models-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 25px 80px;
}

.fix-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* CARD */

.fix-card {
    min-width: 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    transition: .25s ease;
    overflow: hidden;
}

.fix-card:hover {
    transform: translateY(-5px);
    border-color: #7dd3fc;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .10);
}

/* IMAGE */

.fix-card-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.fix-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    display: block;
    transition: transform .25s ease;
}

.fix-card:hover .fix-card-image img {
    transform: scale(1.04);
}

.fix-card-title {
    display: block;
    font-size: 15px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.4;
    min-height: 42px;
}

/* NO RESULTS */

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #64748b;
    font-size: 16px;
    padding: 60px 0;
}

/* MODAL */

.services-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 15px;
}

.services-modal.hidden {
    display: none;
}

.services-content {
    background: white;
    padding: 30px;
    border-radius: 18px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .2);
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    color: #64748b;
}

.close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

#modal-title {
    font-size: 20px;
    color: #0ea5e9;
    margin-bottom: 8px;
    padding-right: 35px;
}

.modal-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
}

.services-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
    gap: 15px;
    font-size: 14px;
}

.service-name {
    flex-grow: 1;
}

.services-list .price {
    font-weight: 700;
    color: #0ea5e9;
    white-space: nowrap;
}

.modal-footer {
    margin-top: 20px;
}

.disclaimer {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* TABLET */

@media (max-width: 1100px) {

    .fix-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* MOBILE */

@media (max-width: 750px) {

    .fix-hero {
        padding: 40px 15px 25px;
    }

    .fix-hero h2 {
        font-size: 30px;
    }

    .fix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .models-grid-wrapper {
        padding: 10px 15px 60px;
    }

    .fix-card-image {
        height: 180px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .fix-grid {
        grid-template-columns: 1fr;
    }

    .fix-card-image {
        height: 230px;
    }

    .fix-hero h2 {
        font-size: 26px;
    }

}