/* ── Dashboards & Analytics page ────────────────────────────────────── */

.dm-hero {
    padding: 64px 40px 48px;
    background: linear-gradient(135deg, #FEF6F3 0%, #FAE8E0 100%);
}
.dm-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.15;
    max-width: 680px;
}
.dm-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 580px;
    margin: 0;
}

/* ── Cards section ───────────────────────────────────────────────────── */
.dm-section {
    padding: 64px 40px;
    background: #F8FAFC;
}
.dm-section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 32px;
}
.dm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.dm-card {
    background: white;
    border: 1.5px solid #E8DDD6;
    border-radius: 14px;
    padding: 32px 28px;
    border-top: 4px solid #3A5C1A;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(58,92,26,0.1);
}
.dm-card-icon { font-size: 2rem; margin-bottom: 14px; }
.dm-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3A5C1A;
    margin-bottom: 10px;
}
.dm-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ── How it works section ────────────────────────────────────────────── */
.dm-how-section {
    padding: 64px 40px;
    background: #F5EDE6;
}
.dm-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 8px;
}
.dm-step {
    background: white;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1.5px solid #E8DDD6;
    transition: transform 0.2s ease;
}
.dm-step:hover { transform: translateY(-3px); }
.dm-step-num {
    font-size: 2rem;
    font-weight: 800;
    color: #F59E0B;
    margin-bottom: 12px;
    line-height: 1;
}
.dm-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3A5C1A;
    margin-bottom: 10px;
}
.dm-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ── Outcome strip ───────────────────────────────────────────────────── */
.dm-outcome-strip {
    padding: 48px 40px;
    background: linear-gradient(135deg, #2B4513 0%, #3A5C1A 100%);
}
.dm-outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.dm-outcome-item { color: white; }
.dm-outcome-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.dm-outcome-item strong { display: block; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.dm-outcome-item p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.6; }

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .dm-hero { padding: 32px 16px 28px; }
    .dm-title { font-size: 1.75rem; }
    .dm-section { padding: 40px 16px; }
    .dm-how-section { padding: 40px 16px; }
    .dm-outcome-strip { padding: 40px 16px; }
    .dm-cards,
    .dm-steps { grid-template-columns: 1fr; gap: 14px; }
    .dm-section-title { font-size: 1.5rem; }
}
