.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 110%, rgba(76, 224, 179, 0.1) 0%, transparent 55%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 35px var(--accent-glow));
    animation: logoFloat 4.5s ease-in-out infinite;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta > .cta-content > p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    margin-bottom: 38px;
    font-weight: 300;
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer {
    padding: 48px 48px 28px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-dark);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 30px;
}

.footer-brand span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.84rem;
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.3px;
}
