/* =========================================================
   SERVICES HERO BLOCK — BEM
   Mirror of home hero:
   TOP: tag + full-width headline
   GRID: bg image | TOP-LEFT white body box | BOTTOM: pills(L) + accent(R,white,20%)
   ========================================================= */

.smartfix-shero {
    background: var(--sf-bg-white);
    padding: var(--sf-padding-section) 0;
}

.smartfix-shero__inner {
    padding: 0 var(--sf-padding-section);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Tag + Headline (full width above grid) ── */
.smartfix-shero__top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.smartfix-shero__headline {
    font-family: var(--sf-font-heading);
    font-size: var(--sf-fs-h1);
    font-weight: 700;
    line-height: var(--sf-lh-h1);
    color: var(--sf-text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

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

.smartfix-shero__headline-after {
    display: block;
    color: var(--sf-text-dark);
}

/* ── Grid: full bg image ── */
.smartfix-shero__grid {
    position: relative;
    height: 580px;
    background-size: cover;
    background-position: center 55%;
    overflow: hidden;
}

/* ── TOP-LEFT: white body box (mirror of home's top-right) ── */
.smartfix-shero__body-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: calc(100% - 200px);
    max-height: 270px;
    background: var(--sf-bg-white);
    padding: 32px 48px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.smartfix-shero__body {
    font-family: var(--sf-font-body);
    font-size: var(--sf-fs-body-lg);
    line-height: var(--sf-lh-body-lg);
    color: var(--sf-text-muted);
    margin: 0;
}

.smartfix-shero__body p { margin: 0; }

/* ── Bottom row: pills (LEFT) + white accent (RIGHT) ── */
.smartfix-shero__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 170px;
    display: flex;
}

/* Pills — left side, exact same as home hero pills */
.smartfix-shero__pills {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 16px;
    background: transparent;
    align-items: stretch;
}

.smartfix-shero__pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 16px 8px;
    max-width: 210px;
    background: rgba(7, 18, 18, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.smartfix-shero__pill-number {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: var(--sf-text-white);
}

.smartfix-shero__pill-label {
    font-family: var(--sf-font-body);
    font-weight: 700;
    font-size: 11px;
    line-height: 1.4;
    color: var(--sf-text-white-72);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* White accent box — RIGHT (mirror: home has it on left) */
.smartfix-shero__accent {
    width: 20%;
    flex-shrink: 0;
    background: var(--sf-bg-white);
}

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

@media (max-width: 1280px) {
    .smartfix-shero__inner {
        padding: 0 40px;
    }

    .smartfix-shero__headline {
        font-size: clamp(42px, 5vw, var(--sf-fs-h1));
        line-height: 1.08;
    }
}

@media (max-width: 1024px) {
    .smartfix-shero__grid {
        height: 520px;
    }

    .smartfix-shero__body-wrap {
        padding: 28px 36px 28px 32px;
    }

    .smartfix-shero__bottom {
        height: 160px;
    }
}

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

    .smartfix-shero__inner {
        padding: 0 20px;
        gap: 20px;
    }

    .smartfix-shero__headline {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.1;
    }

    .smartfix-shero__grid {
        height: auto;
        min-height: 520px;
    }

    .smartfix-shero__body-wrap {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: none;
        height: auto;
        padding: 24px 20px;
        gap: 16px;
    }

    .smartfix-shero__body {
        font-size: var(--sf-fs-body);
    }

    .smartfix-shero__bottom {
        position: relative;
        bottom: auto;
        height: auto;
    }

    .smartfix-shero__accent {
        display: none;
    }

    .smartfix-shero__pills {
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .smartfix-shero__pill {
        flex-basis: 50%;
        max-width: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 14px 8px;
    }

    .smartfix-shero__pill:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .smartfix-shero__pill-number {
        font-size: 20px;
    }

    .smartfix-shero__pill-label {
        font-size: 10px;
    }
}

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

    .smartfix-shero__body-wrap {
        padding: 20px 16px;
    }
}
