/* ══════════════════════════════════════════════════════════════
   FINAL CTA SECTION - Join the Revolution
   ══════════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: 120px 48px;
    overflow: hidden;
}

/* Gradient background */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--bg) 0%,
        rgba(0, 255, 136, 0.03) 50%,
        var(--bg) 100%
    );
    pointer-events: none;
}

/* Top line removed */

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Glow effect */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.12) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Label */
.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}

.cta-label-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.cta-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-title .accent {
    background: linear-gradient(135deg, var(--accent) 0%, #00ddaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.cta-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 36px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Primary button */
.cta-btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, #00cc66 100%);
    color: var(--bg);
    box-shadow:
        0 8px 32px rgba(0, 255, 136, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.cta-btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.cta-btn--primary:hover::before {
    left: 100%;
}

.cta-btn--primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 255, 136, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

/* Secondary button */
.cta-btn--secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* Features row */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.15);
    color: var(--accent);
}

.cta-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: clamp(26px, 8vw, 38px);
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
        padding: 0 5px;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    .cta-features {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 32px;
    }

    .cta-feature {
        padding: 10px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .cta-feature svg {
        width: 16px;
        height: 16px;
    }

    .cta-label {
        padding: 8px 14px;
        font-size: 10px;
    }

    .cta-glow {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 12px;
    }

    .cta-features {
        gap: 8px;
    }

    .cta-feature {
        padding: 8px 12px;
        font-size: 11px;
    }
}
