/* Core Styles from Design */
.awea-cta-hero-section {
    position: relative;
    overflow: hidden;
}
.awea-cta-hero-bg-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    z-index: -1; filter: blur(80px);
}
.awea-cta-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99, 102, 241, 0.05);
    font-size: 0.8rem; font-weight: 700; color: #6366f1;
    letter-spacing: 1px; text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.1);
    margin-bottom: 32px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.awea-cta-hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 800;
    letter-spacing: -3px; line-height: 1.05; color: #0f172a;
    margin-bottom: 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.awea-cta-hero-title span {
    background: linear-gradient(90deg, #6366f1, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.awea-cta-hero-desc {
    font-size: 1.25rem; color: #64748b; line-height: 1.6;
    font-weight: 500; margin-bottom: 48px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.awea-cta-hero-actions {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.awea-cta-btn {
    text-decoration: none; padding: 20px 42px; border-radius: 100px;
    font-weight: 700; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
    background: #0f172a; color: #fff;
}
.awea-cta-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .awea-cta-hero-actions { flex-direction: column; }
    .awea-cta-btn { width: 100%; justify-content: center; }
}