/* Blog Lead Generation Styles */
.blog-lead-generation {
    margin: 3rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-text {
    flex: 1;
    min-width: 250px;
}

.cta-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cta-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    white-space: nowrap;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Exit Intent Popup - Removed to prevent white bar issues */
.exit-intent-popup {
    display: none !important;
}

.popup-overlay {
    display: none !important;
}

.popup-content {
    display: none !important;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.popup-header h3 {
    margin: 0;
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f1f5f9;
    color: #334155;
}

.popup-body {
    padding: 2rem;
    text-align: center;
}

.popup-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.popup-body h4 {
    margin: 0 0 1rem 0;
    color: #334155;
    font-size: 1.4rem;
    font-weight: 600;
}

.popup-body p {
    margin: 0 0 1.5rem 0;
    color: #64748b;
    line-height: 1.6;
}

.popup-benefits {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
}

.popup-benefits li {
    margin-bottom: 0.75rem;
    color: #334155;
    font-weight: 500;
}

.popup-benefits i {
    color: #10b981;
    margin-right: 0.5rem;
}

.popup-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.popup-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.popup-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.popup-footer {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Content Upgrade CTA */
.content-upgrade-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.upgrade-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.upgrade-icon {
    font-size: 2rem;
    color: #f59e0b;
}

.upgrade-text {
    flex: 1;
    min-width: 250px;
}

.upgrade-text h5 {
    margin: 0 0 0.5rem 0;
    color: #334155;
    font-size: 1.2rem;
    font-weight: 600;
}

.upgrade-text p {
    margin: 0;
    color: #64748b;
    line-height: 1.5;
}

.upgrade-form {
    min-width: 200px;
}

.newsletter-form-inline .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form-inline .form-control {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.newsletter-form-inline .btn {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Related Services CTA */
.related-services-cta {
    margin: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-card h5 {
    margin: 0 0 0.75rem 0;
    color: #334155;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    margin: 0 0 1.5rem 0;
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-card .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header,
    .popup-body {
        padding: 1rem;
    }
    
    .upgrade-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inline-cta,
    .content-upgrade-cta {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .popup-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .popup-body h4 {
        font-size: 1.2rem;
    }
    
    .inline-cta,
    .content-upgrade-cta {
        padding: 1rem;
        margin: 1rem 0;
    }
}

/* Print Styles */
@media print {
    .inline-cta,
    .exit-intent-popup,
    .content-upgrade-cta,
    .related-services-cta {
        display: none;
    }
} 