/* =========================================
   AI COMPANION BANNER (Discover Page)
   ========================================= */
.ai-feature-banner {
    background: linear-gradient(135deg, var(--primary, #7366ff), #9f94ff);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 10px 30px rgba(115, 102, 255, 0.3);
    margin: 20px 0 30px 0;
    overflow: hidden;
    position: relative;
}

.ai-banner-content {
    position: relative;
    z-index: 2;
    max-width: 75%;
}

.ai-badge {
    background: rgba(255, 255, 255, 0.2); 
    color: white; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    margin-bottom: 15px; 
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.ai-banner-content h2 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.ai-banner-content p {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

.cuba-btn-white {
    background: white;
    color: var(--primary, #7366ff);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cuba-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Big faded robot icon in the background */
.ai-banner-bg-icon {
    font-size: 8rem;
    position: absolute;
    right: -10px;
    bottom: -30px;
    opacity: 0.15;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .ai-banner-content { max-width: 100%; }
    .ai-banner-content h2 { font-size: 1.5rem; }
    .ai-banner-bg-icon { right: -20px; font-size: 6rem; opacity: 0.1; }
}