
/* ---------- HEADER / HERO ---------- */

.hero-grid {
    position: relative;
    overflow: hidden;
}
.hero-grid::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: url('assets/img/hero-background.png'); */
    background-image: url('assets/img/hero-background2.png');
    background-size: cover;
    background-position: right;
}

.hero-content {
    width: 40%;
    width: 38%;
    position: relative;
    z-index: 3;
}
.hero-shadow {
    background-color: white;
    box-shadow: 70px 0px 65px 60px white;
    z-index: 1;
    padding-left: 1rem;
    padding: 0 0 2rem 1rem;
}

.logo {
    /* margin: 34px 0; */
    padding: 34px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .5px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    box-shadow: 0px 2px 5px 0.1px rgba(0, 0, 0, .2);

    white-space: nowrap;
    width: max-content;
}

.hero h1 {
    font-size: clamp(1rem, 2.7vw + 1rem, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    width: 160%;
}

.hero h1 .accent {
    color: var(--blue);
}

.hero p.lead {
    font-size: 1.15rem;
    color: var(--text-grey);
    /* max-width: 520px; */
    margin-bottom: 36px;
    width: 160%;
    font-size: min(max(1rem, 2vw), 1.5rem);
}

.hero .time {
    color: var(--blue-time);
}

.features-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 110px;
    gap: 10px;
}

.feature-item .icon-circle {
    width: 70px;
    height: 70px;
    background-color: white;
    box-shadow: 0px 2px 5px 0.1px rgba(0, 0, 0, .2);
}

.feature-item span {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-dark);
    
    font-size: min(max(0.8rem, 1vw), 1.2rem);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-primary .btn-main {
    font-size: min(max(.8rem, 1.2vw), 1.1rem);
}
.btn-primary .btn-sub {
    display: block;
    font-weight: 400;
    /* font-size: .78rem; */
    font-size: min(max(.5rem, 1vw), .8rem);
    opacity: .85;
}

.btn-primary .btn-icon {
    width: 36px;
    height: 36px;
    /* border-radius: 20px; */
    /* background: rgba(255, 255, 255, 0.18); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3.1;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, #dce6f8 0%, #eef2fb 55%, #e4ecfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fa3c7;
    font-weight: 700;
    font-size: .95rem;
    text-align: center;
    padding: 20px;
    border: 1px dashed #b9c8e6;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;

    font-size: min(max(.8rem, 1vw), 1.2rem);
}
@media (max-width: 860px) {
    
    .feature-item .icon-circle {
        width: 55px;
        height: 55px;
    }
    .feature-item .icon-circle .eclair {
        /* width: 55px; */
        height: 30px;
    }
    .feature-item .icon-circle .mitsubishi {
        width: 37px;
        /* height: 55px; */
    }
    .feature-item .icon-circle .bouclier {
        width: 23px;
        /* height: 55px; */
    }
    .feature-item .icon-circle .mains {
        width: 33px;
        /* height: 55px; */
    }

}