/* Shared hero and landing-page building blocks. */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 12, 0.92) 0%,
            rgba(5, 8, 12, 0.70) 35%,
            rgba(5, 8, 12, 0.35) 60%,
            rgba(5, 8, 12, 0.55) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 8, 12, 0.2) 0%,
            rgba(5, 8, 12, 0.85) 100%
        ),
        url('../header.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 40px;
}

.hero-text {
    text-align: left;
    flex: 1;
}

.hero-title-industrial {
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(3rem, 10vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    padding: 0px 0;
    background: linear-gradient(
        to bottom,
        #FFF7E3 0%,
        #F5E9C8 14%,
        #F5DDB4 30%,
        #D8C3A0 44%,
        #FFF1CF 52%,
        #BFA98A 66%,
        #F5DDB4 84%,
        #AA9A86 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12),
        0 3px 10px rgba(0, 0, 0, 0.45);
}

.hero-title-industrial::after {
    content: "Friendly-Helpers";
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin: 10px 0 30px;
}

.logo-plate {
    flex: 1;
    display: grid;
    place-items: center;
    max-width: 800px;
    aspect-ratio: 1;
    transform: perspective(900px) rotateY(-15deg) rotateX(2deg);
}

.logo-plate img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .7));
}

.landing-box-stack {
    position: relative;
    z-index: 3;
    margin-top: -160px;
}

.home-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: -50px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.home-trust-card {
    border-color: rgba(197, 160, 89, 0.14);
    background: rgba(0, 0, 0, 0.05);
}

.home-trust-strip .home-trust-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding-left: 54px;
    padding-right: 54px;
    text-align: center;
}

.home-trust-card .home-trust-card-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 24px;
    height: 24px;
    display: block;
    color: var(--accent-gold);
    transform: translateY(-50%);
}

.home-trust-card-icon svg {
    width: 24px;
    height: 24px;
}

.home-trust-card-copy {
    width: 100%;
    min-width: 0;
    text-align: center;
}

.home-trust-card strong {
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .hero-layout {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 50px;
    }

    .hero-text {
        text-align: center;
    }

    .logo-plate {
        max-width: 250px;
        transform: none;
    }

    .home-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 34px;
    }
}

@media (max-width: 768px) {
    .home-trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .home-trust-strip .home-trust-card {
        padding: 14px 48px;
    }

    .home-trust-card .home-trust-card-icon {
        left: 14px;
    }
}

@media (max-width: 560px) {
    .home-trust-strip {
        grid-template-columns: 1fr;
    }
}
