/* =========================================================
   SERVICE OVERVIEW BLOCK — BEM
   Dark bg | LEFT: image + bottom overlay | RIGHT: tag + h2 + body + CTA + features
   ========================================================= */

.smartfix-sov {
    background: var(--sf-bg-dark-1);
    padding: var(--sf-padding-section) 0;
}

.smartfix-sov__inner {
    padding: 0 var(--sf-padding-section);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* =========================================================
   LEFT — image + overlay
   ========================================================= */

.smartfix-sov__img-col {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.smartfix-sov__img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay: gradient + content at bottom */
.smartfix-sov__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.smartfix-sov__overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 18, 18, 0.90) 0%,
        rgba(7, 18, 18, 0.30) 55%,
        transparent 100%
    );
}

.smartfix-sov__overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: auto;
}

.smartfix-sov__overlay-headline {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: var(--sf-text-white);
    margin: 0;
}

.smartfix-sov__overlay-body {
    font-family: var(--sf-font-body);
    font-size: var(--sf-fs-body);
    line-height: var(--sf-lh-body);
    color: var(--sf-text-white-72);
    margin: 0;
}

/* Overlay pills: ● Installation ● Maintenance … */
.smartfix-sov__overlay-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}

.smartfix-sov__overlay-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sf-font-body);
    font-size: var(--sf-fs-body);
    font-weight: 500;
    color: var(--sf-text-white);
}

.smartfix-sov__overlay-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sf-text-white);
    flex-shrink: 0;
}

/* =========================================================
   RIGHT — content
   ========================================================= */

.smartfix-sov__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.smartfix-sov__headline {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: clamp(32px, 3vw, var(--sf-fs-h2));
    line-height: 1.12;
    color: var(--sf-text-white);
    margin: 0;
}

.smartfix-sov__headline .sf-highlight {
    color: var(--sf-color-primary);
}

.smartfix-sov__body {
    font-family: var(--sf-font-body);
    font-size: var(--sf-fs-body);
    line-height: var(--sf-lh-body);
    color: var(--sf-text-white-72);
    margin: 0;
}

/* Feature list */
.smartfix-sov__features {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.smartfix-sov__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.smartfix-sov__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--sf-color-primary-12);
    color: var(--sf-color-primary);
    border: 1px solid rgba(12, 174, 157, 0.25);
    flex-shrink: 0;
}

.smartfix-sov__feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
}

.smartfix-sov__feature-title {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: var(--sf-fs-h4);
    color: var(--sf-text-white);
    margin: 0;
}

.smartfix-sov__feature-desc {
    font-family: var(--sf-font-body);
    font-size: var(--sf-fs-body);
    line-height: var(--sf-lh-body);
    color: var(--sf-text-white-72);
    margin: 0;
}

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

@media (max-width: 1280px) {
    .smartfix-sov__inner {
        padding: 0 48px;
        gap: 48px;
    }

    .smartfix-sov__img {
        height: 560px;
    }
}

@media (max-width: 1024px) {
    .smartfix-sov__inner {
        gap: 36px;
    }

    .smartfix-sov__img {
        height: 500px;
    }
}

@media (max-width: 834px) {
    .smartfix-sov {
        padding: 48px 0;
    }

    .smartfix-sov__inner {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .smartfix-sov__img {
        height: 360px;
    }

    .smartfix-sov__overlay-headline {
        font-size: 22px;
    }

    .smartfix-sov__overlay-pills {
        gap: 12px;
    }

    .smartfix-sov__overlay-pill {
        font-size: 14px;
    }

    .smartfix-sov__headline {
        font-size: clamp(26px, 6vw, 36px);
    }
}

@media (max-width: 375px) {
    .smartfix-sov__inner {
        padding: 0 16px;
    }

    .smartfix-sov__img {
        height: 280px;
    }
}
