/* ==========================================
   PDFico — Global Styles
   ========================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg: #fafbff;
    --bg-card: #ffffff;
    --bg-dark: #0f0f23;
    --text: #1e1e2e;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 251, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge svg {
    color: var(--warning);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-text strong {
    color: var(--text);
    display: block;
}

/* ==========================================
   Tools Grid
   ========================================== */
.tools-section {
    padding: 60px 0 80px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.tool-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    color: var(--primary);
}

.tool-card[data-color="blue"] .tool-icon { color: #3b82f6; }
.tool-card[data-color="purple"] .tool-icon { color: #8b5cf6; }
.tool-card[data-color="green"] .tool-icon { color: #10b981; }
.tool-card[data-color="orange"] .tool-icon { color: #f59e0b; }
.tool-card[data-color="red"] .tool-icon { color: #ef4444; }
.tool-card[data-color="teal"] .tool-icon { color: #14b8a6; }
.tool-card[data-color="pink"] .tool-icon { color: #ec4899; }
.tool-card[data-color="indigo"] .tool-icon { color: #6366f1; }

.tool-icon svg {
    width: 100%;
    height: 100%;
}

.tool-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================
   Privacy Section
   ========================================== */
.privacy-section {
    padding: 60px 0 80px;
}

.privacy-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.privacy-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.privacy-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.privacy-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.comparison-box {
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.comparison-box:last-child {
    margin-bottom: 0;
}

.comparison-box.them {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-box.us {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.comp-header {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.comp-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.comp-flow svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.comp-warning {
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 600;
}

.comp-success {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

/* ==========================================
   Pricing
   ========================================== */
.pricing-section {
    padding: 60px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.pro {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text);
}

.pricing-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li strong {
    color: var(--text);
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
}

.pricing-btn.free {
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
}

.pricing-btn.free:hover {
    background: var(--border-light);
}

.pricing-btn.pro {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
}

.pricing-btn.pro:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-guarantee svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: #cbd5e1;
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* ==========================================
   Tool Page Styles
   ========================================== */
.tool-page-hero {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
}

.tool-page-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.tool-page-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.tool-workspace {
    padding: 0 0 80px;
}

/* Drop Zone */
.drop-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    background: var(--bg-card);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.03);
}

.drop-zone.dragover {
    transform: scale(1.01);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.drop-zone-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.drop-zone-icon svg {
    width: 100%;
    height: 100%;
}

.drop-zone-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.drop-zone-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.drop-zone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}

.drop-zone-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* File List */
.file-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: grab;
}

.file-item:active {
    cursor: grabbing;
}

.file-item.dragging {
    opacity: 0.5;
    box-shadow: var(--shadow-lg);
}

.file-item-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
}

.file-item-info {
    flex: 1;
    min-width: 0;
}

.file-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-item-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.file-item-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.file-item-remove:hover {
    background: #fef2f2;
    color: var(--danger);
}

.file-item-handle {
    color: var(--text-muted);
    cursor: grab;
    flex-shrink: 0;
}

/* Action Button */
.action-bar {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.action-btn.success {
    background: linear-gradient(135deg, var(--success), #059669);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-light);
    border-radius: 100px;
    overflow: hidden;
    margin-top: 16px;
    display: none;
}

.progress-bar.active {
    display: block;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Result Section */
.result-section {
    display: none;
    margin-top: 32px;
    padding: 32px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-lg);
    text-align: center;
}

.result-section.active {
    display: block;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.result-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 4px;
}

.result-info {
    color: #047857;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--success);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.download-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Settings Panel */
.settings-panel {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.settings-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.setting-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.setting-input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text);
    min-width: 120px;
}

.setting-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

select.setting-input {
    cursor: pointer;
}

/* Page Thumbnails */
.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.page-thumb {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.page-thumb:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.page-thumb.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.page-thumb canvas {
    width: 100%;
    display: block;
}

.page-thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-thumb-actions {
    display: flex;
    gap: 4px;
}

.page-thumb-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background var(--transition);
}

.page-thumb-btn:hover {
    background: rgba(255,255,255,0.4);
}

.page-thumb-btn.delete:hover {
    background: var(--danger);
}

/* Privacy Banner (small) */
.privacy-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #ecfdf5;
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 0.85rem;
    color: #047857;
    font-weight: 500;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 900px) {
    .privacy-card {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .privacy-card {
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav {
        gap: 16px;
    }
    .drop-zone {
        padding: 40px 20px;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tool-card {
    animation: fadeInUp 0.4s ease backwards;
}

.tool-card:nth-child(1) { animation-delay: 0.05s; }
.tool-card:nth-child(2) { animation-delay: 0.1s; }
.tool-card:nth-child(3) { animation-delay: 0.15s; }
.tool-card:nth-child(4) { animation-delay: 0.2s; }
.tool-card:nth-child(5) { animation-delay: 0.25s; }
.tool-card:nth-child(6) { animation-delay: 0.3s; }
.tool-card:nth-child(7) { animation-delay: 0.35s; }
.tool-card:nth-child(8) { animation-delay: 0.4s; }

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* AdSense container */
.ad-space {
    margin: 32px 0;
    min-height: 90px;
    text-align: center;
    overflow: hidden;
}
.ad-space ins { display: block; }

/* ==========================================
   Pro Badge & Status
   ========================================== */
.pro-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 8px;
}

/* Hide ads when Pro is active (CSS fallback) */
body.pdfico-pro-active .ad-space {
    display: none !important;
}

/* ==========================================
   SEO Content Section
   ========================================== */
.seo-content {
    padding: 48px 0 60px;
    border-top: 1px solid var(--border-light);
    margin-top: 40px;
}

.seo-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text);
}

.seo-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.seo-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 720px;
}

.seo-content ul,
.seo-content ol {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 16px;
    max-width: 720px;
}

.seo-content li {
    margin-bottom: 6px;
}

.seo-content li strong {
    color: var(--text);
}
