/* =========================
   PROS SECTION (IMAGE + 2-COLUMN TEXT)
   (DO NOT AFFECT OTHER SECTIONS)
========================= */

.pros {
    padding: 96px 0;
    background: #fff;
}

.pros-inner {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(360px, 520px) 1fr;
    gap: 64px;
    align-items: center;
}

/* LEFT IMAGE CARD */
.pros-photo {
    border-radius: 34px;
    overflow: hidden;
    background: #f2f6fb;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.pros-photo img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* RIGHT CONTENT */
.pros-content {
    max-width: 720px;
}

.pros-content p {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    font-weight: 600;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.pros-title {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.05;
    color: #121212;
    margin: 0 0 26px;
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 44px;
}

.pros-card {
    position: relative;
    padding-left: 34px;
}

.pros-card::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(236, 140, 53, 0.15);
    color: #e51b27;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pros-card h3 {
    margin: 0 0 8px;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #121212;
}

.pros-card p {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
    color: #1f2937;
}

.pros-cta {
    margin-top: 34px;
}

.pros-btn {
    background: #e51b27;
    color: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 420px;
    transition: transform .18s ease, filter .18s ease;
    box-shadow: 0 5px 15px rgba(229, 27, 39, .45);
}

.pros-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .pros {
        padding: 80px 0;
    }

    .pros-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        align-items: start;
    }

    .pros-content {
        max-width: 820px;
    }

    .pros-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .pros {
        padding: 56px 0;
    }

    .pros-inner {
        width: min(1250px, calc(100% - 32px));
        gap: 22px;
    }

    .pros-title {
        font-size: 32px;
        text-align: center;
    }

    .pros-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pros-btn {
        width: 100%;
        min-width: 0;
        font-size: 14px;
        padding: 14px 14px;
    }
}