/* Hero Card Styles */
.hero-card-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-card {
    background: 
        radial-gradient(at 0% 0%, hsla(210, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 0.15) 0px, transparent 50%),
        radial-gradient(at 29% 55%, hsla(331, 90%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 79% 53%, hsla(202, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 15% 100%, hsla(222, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 100%, hsla(210, 100%, 50%, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(339, 49%, 30%, 0.15) 0px, transparent 50%),
        #ffffff;
    background-blend-mode: multiply;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 500px;
    text-align: center;
    transform: scale(0.9);
    opacity: 0;
    animation: slideUpScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
}

.hero-card h2 {
    color: #000;
    font-family: "ATTAleckSans_W_Bd", Arial, sans-serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-hero {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    font-family: inherit;
    display: inline-block;
}

.btn-hero-primary {
    background-color: #0057b8; /* AT&T Blue */
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 87, 184, 0.3);
}

.btn-hero-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 87, 184, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #0057b8;
    border: 2px solid #0057b8;
}

.btn-hero-secondary:hover {
    background-color: rgba(0, 87, 184, 0.05);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .hero-card-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-hero {
        flex: 1;
    }
}

/* Close button (optional but good for UX) */
.hero-card-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
}
