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

/* Smart Lead Magnet System */
.smart-lead-magnets {
    margin: 3rem 0;
}

.lead-magnets-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-magnets-header h4 {
    margin: 0 0 0.5rem 0;
    color: #334155;
    font-size: 1.3rem;
    font-weight: 600;
}

.lead-magnets-header p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

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

.lead-magnet-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.lead-magnet-content h5 {
    margin: 0 0 1rem 0;
    color: #334155;
    font-size: 1.2rem;
    font-weight: 600;
}

.lead-magnet-content p {
    margin: 0 0 1.5rem 0;
    color: #64748b;
    line-height: 1.5;
}

.lead-magnet-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-align: left;
}

.lead-magnet-features li {
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lead-magnet-features i {
    color: #10b981;
    font-size: 1rem;
}

.lead-magnet-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Personalized Consultation CTA */
.personalized-consultation {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.consultation-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.consultation-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.consultation-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control option {
    background: #334155;
    color: white;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.form-guarantee i {
    color: #10b981;
}

/* Smart Popup System - Removed to prevent white bar issues */
.smart-popup-system {
    display: none !important;
}

.scroll-popup,
.time-popup {
    display: none !important;
}

.popup-content {
    padding: 1.5rem;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.popup-header h5 {
    margin: 0;
    color: #334155;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

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

.popup-cta .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Conversion Funnel */
.conversion-funnel {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
    padding: 2rem;
}

.funnel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.funnel-header h4 {
    margin: 0 0 0.5rem 0;
    color: #334155;
    font-size: 1.3rem;
    font-weight: 600;
}

.funnel-header p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

.funnel-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.funnel-step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.funnel-step.active {
    background: #eff6ff;
    border-color: #667eea;
    transform: scale(1.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.funnel-step.active .step-number {
    background: #10b981;
}

.step-content h5 {
    margin: 0 0 0.5rem 0;
    color: #334155;
    font-size: 1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.funnel-progress {
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 25%;
    transition: width 0.5s ease;
}

.progress-text {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Proof & Testimonials */
.social-proof {
    margin: 3rem 0;
}

.proof-header {
    text-align: center;
    margin-bottom: 2rem;
}

.proof-header h4 {
    margin: 0 0 0.5rem 0;
    color: #334155;
    font-size: 1.3rem;
    font-weight: 600;
}

.proof-header p {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.author-info h6 {
    margin: 0 0 0.25rem 0;
    color: #334155;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Urgency & Scarcity */
.urgency-scarcity {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.urgency-text h4 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 600;
}

.urgency-text p {
    margin: 0 0 2rem 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.spots-left {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.spots-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.urgency-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.urgency-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.urgency-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.urgency-guarantee i {
    color: #10b981;
}

/* Smart Retargeting */
.smart-retargeting {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    color: white;
}

.retargeting-content {
    max-width: 800px;
    margin: 0 auto;
}

.retargeting-header {
    text-align: center;
    margin-bottom: 2rem;
}

.retargeting-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.retargeting-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.retargeting-offer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.offer-badge {
    text-align: center;
    background: #dc2626;
    padding: 1rem;
    border-radius: 12px;
    min-width: 120px;
}

.offer-badge .discount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-badge .label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.offer-details h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.offer-details p {
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.offer-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-benefits i {
    color: #10b981;
}

.offer-actions {
    text-align: center;
}

.offer-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.offer-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.offer-timer {
    color: #e2e8f0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .funnel-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .retargeting-offer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .scroll-popup,
    .time-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .urgency-scarcity,
    .smart-retargeting {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .consultation-form {
        padding: 1.5rem;
    }
    
    .urgency-text h4 {
        font-size: 1.5rem;
    }
    
    .urgency-text p {
        font-size: 1rem;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .retargeting-offer {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .smart-lead-magnets,
    .personalized-consultation,
    .smart-popup-system,
    .conversion-funnel,
    .social-proof,
    .urgency-scarcity,
    .smart-retargeting {
        display: none;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 