/* ===== PAGE-SPECIFIC SECTIONS ===== */

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 6rem 0;
    background: var(--surface);
}

/* ===== MODULES SECTION ===== */
.modules-section {
    padding: 6rem 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.module-card {
    position: relative;
    overflow: hidden;
}

.module-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.module-grid .module-tag { background: var(--bg-energy-soft); color: var(--energy-green-dark); }
.module-empresas .module-tag { background: var(--bg-blue-soft); color: var(--energy-blue-dark); }
.module-acl .module-tag { background: #E0F2FE; color: var(--energy-blue); }

.module-grid { border-top: 4px solid var(--energy-green); }
.module-empresas { border-top: 4px solid var(--energy-blue); }
.module-acl { border-top: 4px solid var(--energy-cyan); }

.module-features {
    margin-top: 1.5rem;
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.module-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.module-features li::before {
    content: '✓';
    color: var(--brand-navy);
    font-weight: bold;
}

/* ===== WORKFLOW / CONNECT ===== */
.workflow-section {
    padding: 6rem 0;
    background: var(--surface);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.premium-card:hover .step-number {
    color: var(--energy-blue);
}

/* ===== DATABASES SECTION ===== */
.databases-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
    color: white;
}

.databases-section .section-header h2 { color: white; }
.databases-section .section-header p { color: rgba(255,255,255,0.8); }

.db-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.db-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.db-card h3 {
    color: var(--energy-cyan);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.db-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
