.rcd-hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(71,91,255,.3), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(158,72,255,.25), transparent 35%);
    animation: heroGlow 12s ease infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-size: clamp(48px, 5vw, 88px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: clamp(18px, 1.5vw, 24px);
    max-width: 700px;
    opacity: .9;
}

/* SUBTITLE */

.hero-eyebrow {
    display: inline-block;
    color: #3f83ff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #3f83ff,
        #6d4bff
    );
    border-radius: 100px;
    padding: 18px 40px;
    transition: .4s;
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(63,131,255,.4);
}

.hero-btn-secondary {
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 18px 40px;
    transition: .4s;
}

.hero-btn-secondary:hover {
    transform: translateY(-5px);
    border-color: #3f83ff;
}

/* HERO IMAGE */

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* GLASS CARDS */

.hero-glass-card {
    position: absolute;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.2);
    animation: floatCard 8s ease infinite;
}

@keyframes floatCard {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* BADGE */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 30px;
}

/* TRUST ROW */

.hero-trust {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: .85;
    font-size: 15px;
}

/* SECTION ENTRANCE */

.hero-content > * {
    opacity: 0;
    transform: translateY(40px);
}

.hero-content.animate > * {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.hero-content.animate > *:nth-child(2) {
    transition-delay: .15s;
}

.hero-content.animate > *:nth-child(3) {
    transition-delay: .3s;
}

.hero-content.animate > *:nth-child(4) {
    transition-delay: .45s;
}

.hero-content.animate > *:nth-child(5) {
    transition-delay: .6s;
}

.card-1{
    top:5%;
    left:-50px;
    width:180px;
    height:100px;
}

.card-2{
    top:60%;
    left:-80px;
    width:220px;
    height:120px;
}

.card-3{
    top:15%;
    right:-60px;
    width:160px;
    height:90px;
}


/* MOBILE */

@media (max-width: 1024px) {

    .rcd-hero-banner {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
        line-height: 1;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-glass-card {
        display: none;
    }
}