/* ===== Landing Page Hero ===== */
.af-lp-hero{
    position: relative;
    overflow: hidden;
    background: #001989;
    color: #fff;
    text-align: center;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
    border-radius: 24px;
}

/* Background image (set via inline style) */
.af-lp-hero__bg{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient overlay — works great with or without bg image */
.af-lp-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,25,137,0.92), rgba(85,112,232,0.82));
    z-index: 1;
}

.af-lp-hero__inner{
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.af-lp-hero__badge{
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

/* Title */
.af-lp-hero__title{
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 16px;
    color: #fff;
}

/* Subtitle */
.af-lp-hero__sub{
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 32px;
}

/* CTA Button */
.af-lp-hero__btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #11c311;
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.15s ease;
}

.af-lp-hero__btn:hover{
    filter: brightness(1.08);
    transform: translateY(-1px);
    color: #fff;
}

.af-lp-hero__btn svg{
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px){
    .af-lp-hero{
        padding: 48px 20px;
    }
    .af-lp-hero__sub{
        margin-bottom: 24px;
    }
    .af-lp-hero__btn{
        padding: 14px 28px;
        font-size: 15px;
    }
}
