.apropos-hero {
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content-box {
    max-width: 900px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(248, 152, 0, 0.5);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-primary);
}

.apropos-hero h1 {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
    color: #fff;
}

.text-reveal {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

.hero-features-wrapper {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(248, 152, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.feature-tag i {
    color: var(--color-primary);
    background: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

.feature-tag:hover i {
    color: var(--color-primary);
}

@keyframes mouseScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-explore .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #444;
    opacity: 0.8;
}

.scroll-explore:hover {
    bottom: 35px;
    opacity: 1;
}

.scroll-explore .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: white;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

@media (max-width: 768px) {
    .apropos-hero {
        padding: 80px 0 40px;
    }

    .apropos-hero h1 {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
        margin-bottom: 1.25rem;
    }

    .apropos-hero h1 br {
        display: none;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        padding: 0.3rem 0.9rem;
        margin-bottom: 1.25rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 0.5rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
        border-radius: 8px;
    }

    .feature-tag i {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .apropos-hero {
        padding: 70px 0 30px;
    }

    .apropos-hero h1 {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
}