/* ─── Modern Simple Section ────────────────────────────────── */
.modern-simple-section {
    background: var(--surface, #f8fafc);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.modern-simple-section.has-grid-bg {
    background-image:
        linear-gradient(rgba(0, 85, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 85, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

.modern-simple-section.theme-dark.has-grid-bg,
html[data-theme="dark"] .modern-simple-section.has-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.simple-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-title, var(--text-main));
}

.simple-section-title strong,
.simple-section-title b,
.simple-section-title span {
    color: var(--primary-color);
}

.simple-section-lead {
    font-size: 1.1rem;
    color: var(--text-body);
    opacity: 0.8;
    line-height: 1.6;
}

/* Theme Dark — via class (set by theme param) */
.modern-simple-section.theme-dark {
    background: #0F172A;
    border-color: rgba(255, 255, 255, 0.05);
}

.modern-simple-section.theme-dark .simple-section-title {
    color: #fff;
}

.modern-simple-section.theme-dark .simple-section-lead {
    color: rgba(255, 255, 255, 0.7);
}

/* Theme Dark — via global html toggle */
html[data-theme="dark"] .modern-simple-section {
    background: var(--surface, #111827);
    border-color: rgba(255, 255, 255, 0.05);
}

html[data-theme="dark"] .modern-simple-section .simple-section-title {
    color: var(--text-main, #e5e7eb);
}

html[data-theme="dark"] .modern-simple-section .simple-section-lead {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 767px) {
    .simple-section-title {
        font-size: 1.8rem;
    }

    .py-80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}