/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8f9fb 100%
    );
}

.hero__wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
}

.hero__content{
    max-width:650px;
    padding-right:48px;
}

.hero__eyebrow{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border:1px solid rgba(215,155,43,.14);

    border-radius:999px;

    background:#FBF7F0;

    color:#B77C17;

    font-size:13px;
    font-weight:700;

    letter-spacing:.35px;

    margin-bottom:28px;

}

.hero__eyebrow svg{

    width:18px;
    height:18px;

    stroke:#D79B2B;

}

.hero__eyebrow span{

    color:#A56D0A;

}

.hero h1{
    margin-bottom:24px;
}

.hero p{
    margin-bottom:40px;

    color:var(--color-muted);

    font-size:18px;
    line-height:1.8;
}

.hero__actions{
    display:flex;
    margin-top:42px;
    gap:18px;
    flex-wrap:wrap;
}

.hero__image{
    position:relative;
}

.hero__image img{

    display:block;

    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
        0 35px 80px rgba(15,46,99,.14);

    transition:.6s ease;

}

.hero__image:hover img{

    transform:scale(1.02);

}
.hero__image{

    position:relative;

}

.hero__image::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0) 55%,
        rgba(15,46,99,.08) 100%
    );

    pointer-events:none;

}

@media (max-width:1024px){

    .hero{
        padding:80px 0;
    }

    .hero__wrapper{
        grid-template-columns:1fr;
        gap:60px;
    }

}

@media (max-width:768px){

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .hero__actions{
        flex-direction:column;
    }

    .hero .btn{
        width:100%;
    }

}

/* ==========================================
   HERO FLOATING CARD
========================================== */

.hero__image{
    position:relative;
    overflow:visible;
}

.hero-card{

    position:absolute;

    left:-32px;
    bottom:42px;

    width:220px;

    padding:20px 22px;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.65);

    border-radius:20px;

    box-shadow:
        0 22px 55px rgba(15,46,99,.16),
        0 2px 10px rgba(0,0,0,.04);

    z-index:5;
}

.hero-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.55),
        rgba(255,255,255,0)
    );

    pointer-events:none;
}

.hero-card__number{

    display:block;

    font-size:42px;

    font-weight:800;

    color:#0F2E63;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:10px;
}

.hero-card__text{

    display:block;

    font-size:14px;

    line-height:1.45;

    font-weight:500;

    color:#5F6675;
}