/* Banner container */
.ifunds-banner {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(120deg, #154f46, #307c70, #1c544c);
    font-family: Inter, system-ui, sans-serif;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    margin-bottom: 20px;
}

/* Coupon label */
.ifunds-coupon-label {
    position: absolute;
    top: 10px;
    left: 14px;
    z-index: 3;
    font-size: 12px;
    font-weight: 700;
    color: #eafff6;
    background: rgba(0,0,0,.25);
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.ifunds-coupon-label .highlight {
    color: #7dffda;
}

/* Shine animation overlay */
.shine-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,255,170,.18), transparent);
    animation: shine 4s infinite;
}

/* Banner content */
.ifunds-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: #eafff6;
}

/* Left section */
.ifunds-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ifunds-logo {
    height: 46px;
    border-radius: 8px;
}

.ifunds-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .3px;
    color: #caffec;
}

.ifunds-subtext {
    font-size: 13px;
    margin-top: 3px;
    color: #b8efe0;
}

.fade-text {
    animation: textFade 3.5s infinite;
}

.fade-text.delay-1 {
    animation-delay: 1.2s;
    color: #6fffd2;
}

.fade-text.delay-2 {
    animation-delay: 2.4s;
    color: #f4d47a;
}

/* Right section */
.ifunds-right {
    text-align: right;
}

.ifunds-right-title {
    font-size: 16px;
    font-weight: 700;
    color: #9fffe1;
    margin-bottom: 6px;
}

/* CTA Button */
.ifunds-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e8fff6, #bfffe9);
    color: #00382a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9),
                0 6px 18px rgba(0,255,170,.25);
    transition: all .25s ease;
}

.cta-arrow {
    font-size: 15px;
}

/* Animations */
@keyframes shine {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes textFade {
    0% { opacity: .35; }
    30% { opacity: 1; }
    60% { opacity: .35; }
    100% { opacity: .35; }
}
