/* =========================================================
   HERO BLOCK — BEM
   ========================================================= */

.smartfix-hero {
    position: relative;
    background-color: var(--sf-bg-dark-1);
    overflow: hidden;
}

/* Hero Image */
.smartfix-hero__image-wrap {
    position: relative;
    width: 100%;
    max-height: 760px;
    overflow: hidden;
}

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

.smartfix-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,18,18,0.1) 0%, rgba(7,18,18,0.6) 100%);
    pointer-events: none;
}

/* Content Overlay (tag + headline + pills) */
.smartfix-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 var(--sf-padding-section) 60px;
    z-index: 2;
}

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

.smartfix-hero__tag {
    color: var(--sf-text-white);
}

.smartfix-hero__tag::before {
    background-color: var(--sf-color-primary);
}

.smartfix-hero__headline {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: var(--sf-fs-h1);
    line-height: var(--sf-lh-h1);
    color: var(--sf-text-white);
    max-width: 1000px;
    margin: 0;
}

/* Service Pills */
.smartfix-hero__pills {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.smartfix-hero__pill {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--sf-card-radius);
    min-width: 200px;
    flex: 1;
}

.smartfix-hero__pill-number {
    font-family: var(--sf-font-heading);
    font-weight: 700;
    font-size: var(--sf-fs-card-nr);
    line-height: var(--sf-lh-h3);
    color: var(--sf-text-white);
}

.smartfix-hero__pill-label {
    font-family: var(--sf-font-body);
    font-weight: 700;
    font-size: var(--sf-fs-card-label);
    line-height: var(--sf-lh-card-label);
    color: var(--sf-text-white);
}

/* Below-Hero Body */
.smartfix-hero__body-wrap {
    background-color: var(--sf-bg-white);
    padding: var(--sf-padding-section);
    padding-top: 60px;
}

.smartfix-hero__body-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.smartfix-hero__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);
    max-width: 625px;
    margin: 0;
    flex: 1;
}

.smartfix-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

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

@media (max-width: 1440px) {
    .smartfix-hero__content {
        padding: 0 40px 60px;
    }

    .smartfix-hero__body-wrap {
        padding: 60px 40px;
    }
}

@media (max-width: 834px) {
    .smartfix-hero__content {
        padding: 0 24px 40px;
    }

    .smartfix-hero__headline {
        font-size: 42px;
        line-height: 46px;
    }

    .smartfix-hero__pills {
        gap: 10px;
    }

    .smartfix-hero__pill {
        min-width: 140px;
        padding: 14px 16px;
    }

    .smartfix-hero__body-wrap {
        padding: 40px 24px;
    }

    .smartfix-hero__body-inner {
        flex-direction: column;
        gap: 32px;
    }

    .smartfix-hero__ctas {
        width: 100%;
    }

    .smartfix-hero__ctas .sf-btn {
        flex: 1;
        justify-content: center;
    }
}

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

    .smartfix-hero__headline {
        font-size: 32px;
        line-height: 36px;
    }

    .smartfix-hero__pills {
        flex-direction: column;
    }

    .smartfix-hero__pill {
        width: 100%;
        min-width: unset;
    }

    .smartfix-hero__body-wrap {
        padding: 32px 16px;
    }

    .smartfix-hero__ctas .sf-btn {
        width: 100%;
        justify-content: center;
    }
}
