.home-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    background:
        url("../../images/large_pour.53e6503259d6.jpg") center center / cover no-repeat;
    border-bottom: 1px solid var(--border-muted);
}

/* Dark orange overlay over the concrete image */
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.9) 0%,
            rgba(18, 10, 6, 0.86) 42%,
            rgba(74, 34, 8, 0.58) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.2) 0%,
            rgba(5, 5, 5, 0.82) 100%
        ),
        radial-gradient(
            circle at 76% 44%,
            rgba(255, 106, 0, 0.24),
            transparent 42%
        );
    z-index: 1;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.18;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03) 0,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 12px
        );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: min(100% - 32px, var(--container-width));
    margin: 0 auto;
    padding: 92px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr);
    align-items: center;
    gap: 72px;
}

.hero-content {
    max-width: 860px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--mcg-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-kicker span {
    width: 44px;
    height: 3px;
    background: var(--mcg-orange);
    display: inline-block;
}

.home-hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
    color: var(--mcg-white);
    font-size: clamp(2.8rem, 4.3vw, 4.3rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.42);
}

.hero-lead {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.75;
    font-weight: 500;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-1px);
}

.hero-btn-primary {
    background: var(--mcg-orange);
    color: var(--mcg-white);
    border: 1px solid var(--mcg-orange);
}

.hero-btn-primary:hover {
    background: var(--mcg-orange-dark);
    border-color: var(--mcg-orange-dark);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--mcg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    border-color: var(--mcg-orange);
    background: rgba(255, 106, 0, 0.12);
}

/* Fixed for 4 proof items */
.hero-proof {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
    min-width: 0;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div:first-child {
    padding-left: 0;
}

.hero-proof div:last-child {
    border-right: 0;
    padding-right: 0;
}

.hero-proof strong {
    display: block;
    margin-bottom: 6px;
    color: var(--mcg-white);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.055em;
    line-height: 1.3;
}

.hero-proof span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* Right logo only, no card/background */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-logo {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.42));
}

/* Responsive */
@media (max-width: 1180px) {
    .hero-proof {
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: var(--radius-lg);
        background: rgba(5, 5, 5, 0.16);
        backdrop-filter: blur(6px);
    }

    .hero-proof div {
        padding: 20px;
    }

    .hero-proof div:first-child {
        padding-left: 20px;
    }

    .hero-proof div:last-child {
        padding-right: 20px;
    }

    .hero-proof div:nth-child(2) {
        border-right: 0;
    }

    .hero-proof div:nth-child(1),
    .hero-proof div:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 1080px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 76px 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-main-logo {
        max-width: 320px;
    }
}

@media (max-width: 760px) {
    .home-hero {
        min-height: auto;
        background-position: center center;
    }

    .home-hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.88) 0%,
                rgba(22, 12, 6, 0.84) 52%,
                rgba(5, 5, 5, 0.92) 100%
            ),
            radial-gradient(
                circle at 80% 28%,
                rgba(255, 106, 0, 0.22),
                transparent 44%
            );
    }

    .hero-container {
        width: min(100% - 24px, var(--container-width));
        padding: 62px 0;
        gap: 38px;
    }

    .hero-kicker {
        align-items: flex-start;
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .hero-kicker span {
        width: 30px;
        margin-top: 8px;
        flex-shrink: 0;
    }

    .home-hero h1 {
        font-size: clamp(2.45rem, 13vw, 4.1rem);
        line-height: 1;
    }

    .hero-lead {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        margin-top: 30px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .hero-proof div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-proof div:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-proof div:last-child {
        border-bottom: 0;
    }

    .hero-main-logo {
        max-width: 260px;
    }
}

@media (max-width: 420px) {
    .hero-main-logo {
        max-width: 100%;
    }

    .hero-proof strong {
        font-size: 0.76rem;
    }

    .hero-proof span {
        font-size: 0.82rem;
    }
}