
.aok-cta-glow {
    display: inline-block;
    padding: 10px 22px;
    background: #e8860c;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: aokGlow 2s ease-in-out infinite;
    transition: background 0.2s;
}
.aok-cta-glow:hover {
    background: #d07a0a;
    color: #fff !important;
}
@keyframes aokGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(232, 134, 12, 0.4); }
    50% { box-shadow: 0 0 20px rgba(232, 134, 12, 0.8), 0 0 40px rgba(232, 134, 12, 0.3); }
}
/* Fix btn-navy hover: orange background with white text (2026-04-02) */
.btn.btn-navy {
    background: #1a1a2e;
    color: #fff !important;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn.btn-navy:hover, .btn.btn-navy:focus {
    background: #e8860c !important;
    color: #fff !important;
}
/* "Please wait..." loading state for CTA buttons */
.aok-btn-loading {
    pointer-events: none !important;
    opacity: 0.8 !important;
}
