/*
 * @package BusinessSaleTheme
 * Extracted from: sections-cta-band.css
 */
/* ── Section ── */
.cta-band {
    position: relative;
    padding: 4rem 0;
    background: #050505;
    overflow: hidden;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* Fades */
.cta-band-fade-top,
.cta-band-fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 3;
}
.cta-band-fade-top {
    top: 0;
    background: linear-gradient(to bottom, #050505, transparent);
}
.cta-band-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, #050505, transparent);
}

/* Ambient glow */
.cta-band-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* ── Infinite Marquee ── */
.cta-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0;
    z-index: 1;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.cta-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: ctaMarquee 40s linear infinite;
}
.cta-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes ctaMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.cta-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: #52525b;
    white-space: nowrap;
    padding: 0 1rem;
    transition: color 0.2s;
}
.cta-marquee-track:hover .cta-marquee-item {
    color: #a1a1aa;
}
.cta-marquee-item svg {
    color: #3f3f46;
    flex-shrink: 0;
}
.cta-marquee-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #27272a;
    flex-shrink: 0;
}

/* ── CTA Card ── */
.cta-band-container {
    position: relative;
    z-index: 2;
    max-width: 44rem;
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
}
.cta-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.cta-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(139,92,246,0.15), rgba(59,130,246,0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
}
.cta-card.visible .cta-card-glow {
    opacity: 1;
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; filter: blur(16px); }
    50% { opacity: 1; filter: blur(20px); }
}

.cta-card-inner {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 4px 32px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-card-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    background: rgba(250,204,21,0.08);
    border: 1px solid rgba(250,204,21,0.12);
    border-radius: 100px;
    color: #facc15;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

/* Headline */
.cta-headline {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.cta-headline-accent {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Body */
.cta-body {
    margin: 0 auto;
    max-width: 28rem;
    font-size: 1rem;
    color: #a1a1aa;
    line-height: 1.65;
}

/* ── Buttons ── */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* Primary */
.cta-btn-primary {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    overflow: hidden;
    transition: all 0.3s;
}
.cta-btn-primary-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}
.cta-btn-primary:hover .cta-btn-primary-inner {
    background: linear-gradient(135deg, #818cf8, #8b5cf6);
}
.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99,102,241,0.35);
}
.cta-btn-primary:active {
    transform: translateY(0);
}

/* Shine sweep */
.cta-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0.15) 55%,
        transparent 60%
    );
    z-index: 2;
    pointer-events: none;
}
.cta-btn-primary:hover .cta-btn-shine {
    animation: shineSweep 0.8s ease-out;
}
@keyframes shineSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Secondary */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.9375rem 1.5rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a1a1aa;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
}
.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #d4d4d8;
    transform: translateY(-2px);
}
.cta-btn-secondary:active {
    transform: translateY(0);
}
.cta-btn-secondary svg {
    transition: transform 0.2s;
}
.cta-btn-secondary:hover svg {
    transform: translateX(2px);
}

/* ── Trust ── */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 1.5rem;
}
.cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #3f3f46;
}
.cta-trust-item svg {
    color: #27272a;
}
.cta-trust-sep {
    color: #1c1c1e;
    font-size: 0.625rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .cta-band {
        padding: 3rem 0;
    }
    .cta-band-container {
        margin-top: 1.25rem;
        padding: 0 1rem;
    }
    .cta-card-inner {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    .cta-card {
        border-radius: 17px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .cta-btn-primary-inner {
        justify-content: center;
        flex: 1;
    }
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    .cta-trust-sep {
        display: none;
    }
    .cta-body {
        font-size: 0.9375rem;
    }
}

