/* === HERO SECTION V4 (Full Background Image) === */
.hero-v4 {
    position: relative;
    width: 100%;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}
@media(max-width: 768px) {
    .hero-v4 {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-v4-content {
        padding: 40px 15px;
    }
    .hero-v4-content h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .hero-v4-content .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-v4-content .hero-trust {
        gap: 15px;
        padding-top: 20px;
    }
    .hero-v4-content .trust-item {
        font-size: 0.85rem;
    }
}
.hero-v4-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}
.relative-z {
    position: relative;
    z-index: 2;
}
.hero-v4-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 80px 0;
}
.hero-v4-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.hero-v4-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-v4-content .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-v4-content .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--blue-900);
}
.hero-v4-content .hero-trust {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
}
.hero-v4-content .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}
.hero-v4-content .trust-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}
