/* =========================================
   5. ІНШІ СЕКЦІЇ
   ========================================= */
section {
    padding: 100px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #1a1a1a;
}

section:nth-child(odd) { background-color: var(--bg-dark); }
section:nth-child(even) { background-color: var(--bg-card); }

.section-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.placeholder-box {
    height: 350px;
    background: #111;
    border: 2px dashed #333;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.placeholder-box:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.02);
}