/* ========================================
   SEO CONTENT SECTIONS STYLING
   Modern, professional styling for SEO sections
   ======================================== */

/* Privacy Badge Banner */
.privacy-badge-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.12));
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 0 0 40px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-badge-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-badge-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.privacy-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.privacy-badge-icon svg {
    width: 28px;
    height: 28px;
}

.privacy-badge-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.privacy-badge-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.privacy-badge-description strong {
    color: #059669;
    font-weight: 600;
}

.privacy-badge-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    white-space: nowrap;
}

.privacy-indicator svg {
    flex-shrink: 0;
}

/* Mini Privacy Badge for Results */
.privacy-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    margin-bottom: 16px;
}

.privacy-mini-badge svg {
    flex-shrink: 0;
}

/* SEO Content Container */
.seo-content-section {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 24px;
}

.seo-content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.seo-content-section section {
    margin-bottom: 80px;
}

/* How-To Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.step-card {
    background: var(--bg-secondary);
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
}

.comparison-table th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.03);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 16px;
    font-size: 14px;
    color: var(--text-primary);
}

.comparison-table td.advantage {
    color: #059669;
    font-weight: 600;
    font-style: italic;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.03));
    border: 1.5px solid rgba(16, 185, 129, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.use-case-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.use-case-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-number {
    color: #10b981;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Related Tools Section */
.related-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.related-tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.related-tool-link:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Dark Mode Support */
body.dark-mode .comparison-table {
    background: var(--bg-secondary);
}

body.dark-mode .comparison-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.08);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-badge-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-badge-indicators {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .seo-content-section h2 {
        font-size: 26px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .related-tools-grid {
        grid-template-columns: 1fr;
    }
}