/* Lead Magnet CTA Styles */
.lead-magnet-cta {
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid #00ff41;
    border-left: 4px solid #00ff41;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.lead-magnet-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 255, 65, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 65, 0.03) 50%, transparent 52%);
    background-size: 30px 30px;
    pointer-events: none;
}

.lead-magnet-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.lead-magnet-icon {
    font-size: 3rem;
    color: #00ff41;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.4));
}

.lead-magnet-text h3 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.lead-magnet-text p {
    color: #a8b2d1;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.lead-magnet-form {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.lead-magnet-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #233554;
    color: #e6f1ff;
    padding: 0.75rem 1rem;
    border-radius: 3px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.lead-magnet-input:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

.lead-magnet-btn {
    background: transparent;
    color: #64ffda;
    border: 1px solid #64ffda;
    padding: 0.75rem 1.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.lead-magnet-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
    transform: translateY(-1px);
}

.lead-magnet-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.lead-magnet-success {
    display: none;
    text-align: center;
    color: #64ffda;
    padding: 1rem;
    border: 1px dashed #64ffda;
    border-radius: 4px;
    background: rgba(100, 255, 218, 0.05);
}

.lead-magnet-success a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lead-magnet-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lead-magnet-form {
        flex-direction: column;
    }

    .lead-magnet-btn {
        width: 100%;
    }
}

.spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    border-top-color: #64ffda;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}