/* Blog Content Enhancement Styles */
.blog-content-enhancement {
    margin: 3rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Interactive Content Summary */
.content-summary {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    overflow: hidden;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.summary-header:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.summary-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.summary-toggle.active {
    transform: rotate(180deg);
}

.summary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.summary-content.active {
    max-height: 600px;
}

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

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: #eff6ff;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.summary-icon {
    font-size: 1.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.summary-text h5 {
    margin: 0 0 0.5rem 0;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-text p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Interactive Checklist */
.interactive-checklist {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    overflow: hidden;
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.checklist-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.checklist-progress {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.checklist-items {
    padding: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #eff6ff;
    border-color: #10b981;
}

.checklist-item.completed {
    background: #f0fdf4;
    border-color: #10b981;
}

.checklist-item.completed .checklist-text {
    text-decoration: line-through;
    color: #059669;
}

.checklist-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.checklist-item.completed .checklist-checkbox {
    background: #10b981;
    border-color: #10b981;
}

.checklist-text {
    flex: 1;
    color: #334155;
    font-weight: 500;
}

.checklist-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

/* Interactive Quiz */
.interactive-quiz {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
    overflow: hidden;
}

.quiz-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-align: center;
}

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

.quiz-header p {
    margin: 0;
    opacity: 0.9;
}

.quiz-content {
    padding: 2rem;
}

.quiz-question {
    margin-bottom: 2rem;
}

.quiz-question h5 {
    margin: 0 0 1rem 0;
    color: #334155;
    font-size: 1.1rem;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.quiz-option:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.quiz-option.selected {
    border-color: #f59e0b;
    background: #fef3c7;
}

.quiz-option.correct {
    border-color: #10b981;
    background: #f0fdf4;
}

.quiz-option.incorrect {
    border-color: #ef4444;
    background: #fef2f2;
}

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

/* Content Upgrade Offers */
.content-upgrade-offers {
    margin: 3rem 0;
}

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

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

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

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

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

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

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

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

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

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

.upgrade-features li {
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 0.9rem;
}

.upgrade-features i {
    color: #10b981;
    margin-right: 0.5rem;
}

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

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

.consultation-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

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

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

.consultation-benefits {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-weight: 500;
}

.consultation-benefits i {
    color: #10b981;
    font-size: 1.1rem;
}

.consultation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* Case Studies */
.case-studies {
    margin: 3rem 0;
}

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

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

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

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

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

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

.case-study-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h5 {
    margin: 0 0 0.75rem 0;
    color: #334155;
    font-size: 1.1rem;
    font-weight: 600;
}

.case-study-content p {
    margin: 0 0 1rem 0;
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

.case-study-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-study-metric {
    text-align: center;
    flex: 1;
}

.case-study-metric .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.case-study-metric .label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

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

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

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

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #eff6ff;
}

.faq-question h5 {
    margin: 0;
    color: #334155;
    font-size: 1rem;
    font-weight: 600;
}

.faq-toggle {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .upgrade-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consultation-actions {
        flex-direction: column;
    }
    
    .consultation-actions .btn {
        width: 100%;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expert-consultation {
        padding: 2rem 1rem;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .summary-header,
    .checklist-header,
    .quiz-header {
        padding: 1rem;
    }
    
    .summary-header h3,
    .checklist-header h4,
    .quiz-header h4 {
        font-size: 1rem;
    }
    
    .summary-grid,
    .checklist-items,
    .quiz-content {
        padding: 1rem;
    }
    
    .upgrade-card {
        padding: 1.5rem;
    }
    
    .consultation-icon {
        font-size: 3rem;
    }
    
    .consultation-text h4 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .content-summary,
    .interactive-checklist,
    .interactive-quiz,
    .content-upgrade-offers,
    .expert-consultation,
    .case-studies,
    .faq-section {
        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;
    }
} 