body { font-family: 'Poppins', sans-serif; }

/* ── BREADCRUMB ── */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}
.breadcrumb-nav a { color: #6c757d; text-decoration: none; transition: color 0.2s; }
.breadcrumb-nav a:hover { color: #252F52; }
.breadcrumb-nav i.sep { font-size: 0.55rem; opacity: 0.4; }
.breadcrumb-nav .current { color: #252F52; font-weight: 600; }
[data-theme="dark"] .breadcrumb-nav a:hover  { color: #60a5fa; }
[data-theme="dark"] .breadcrumb-nav .current { color: #60a5fa; }

/* ── HERO ── */
.utile-hero {
    padding: 4rem 0 3.5rem;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(25,135,84,0.08);
    color: #146c43;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .hero-badge {
    background: rgba(52,211,153,0.12);
    color: #34d399;
}
.utile-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #212529;
    line-height: 1.15;
    margin-bottom: 1rem;
}
[data-theme="dark"] .utile-hero h1 { color: #f1f5f9; }
.utile-hero .lead {
    font-size: 1rem;
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: rgba(25,135,84,0.05);
    border: 1px solid rgba(25,135,84,0.12);
    border-radius: 16px;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3.5rem;
}
[data-theme="dark"] .stats-strip {
    background: rgba(25,135,84,0.07);
    border-color: rgba(52,211,153,0.15);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #212529;
}
[data-theme="dark"] .stat-item { color: #f1f5f9; }
.stat-num { font-size: 1.4rem; font-weight: 800; color: #198754; line-height: 1; }
.stat-item i { color: #198754; }
[data-theme="dark"] .stat-num { color: #34d399; }
[data-theme="dark"] .stat-item i { color: #34d399; }

/* ── SECTION LABEL ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.section-label h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
    white-space: nowrap;
}
[data-theme="dark"] .section-label h2 { color: #f1f5f9; }
.section-label::after { content: ''; flex: 1; height: 1px; background: #dee2e6; }
[data-theme="dark"] .section-label::after { background: #2d3748; }

/* ── UTILE CARD ── */
.utile-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    border-left: 4px solid #198754;
    display: flex;
    flex-direction: column;
}
[data-theme="dark"] .utile-card {
    background: #161b2e;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.utile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(25,135,84,0.12);
}
.utile-card.c-info   { border-left-color: #0dcaf0; }
.utile-card.c-warn   { border-left-color: #ffc107; }
.utile-card.c-purple { border-left-color: #6f42c1; }
.utile-card.c-sky    { border-left-color: #252F52; }
.utile-card.c-orange { border-left-color: #fd7e14; }
[data-theme="dark"] .utile-card.c-sky { border-left-color: #4a6cf7; }

.utile-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
    flex-shrink: 0;
}
.utile-card:not([class*="c-"]) .utile-icon { background: rgba(25,135,84,0.1);   color: #198754; }
.utile-card.c-info   .utile-icon            { background: rgba(13,202,240,0.1);  color: #099ab5; }
.utile-card.c-warn   .utile-icon            { background: rgba(255,193,7,0.12);  color: #d49000; }
.utile-card.c-purple .utile-icon            { background: rgba(111,66,193,0.12); color: #6f42c1; }
.utile-card.c-sky    .utile-icon            { background: rgba(37,47,82,0.08);   color: #252F52; }
.utile-card.c-orange .utile-icon            { background: rgba(253,126,20,0.1);  color: #c96000; }
[data-theme="dark"] .utile-card:not([class*="c-"]) .utile-icon { color: #34d399; background: rgba(52,211,153,0.1); }
[data-theme="dark"] .utile-card.c-info   .utile-icon { color: #22d3ee; background: rgba(34,211,238,0.1); }
[data-theme="dark"] .utile-card.c-warn   .utile-icon { color: #fbbf24; background: rgba(251,191,36,0.1); }
[data-theme="dark"] .utile-card.c-purple .utile-icon { color: #a78bfa; background: rgba(167,139,250,0.1); }
[data-theme="dark"] .utile-card.c-sky    .utile-icon { color: #93c5fd; background: rgba(74,108,247,0.12); }
[data-theme="dark"] .utile-card.c-orange .utile-icon { color: #fb923c; background: rgba(251,146,60,0.1); }

.utile-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.3rem;
}
[data-theme="dark"] .utile-card h3 { color: #f1f5f9; }
.utile-desc {
    font-size: 0.81rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0.9rem;
    flex: 1;
}
[data-theme="dark"] .utile-desc { color: #94a3b8; }

.utile-footer { margin-top: auto; }
.utile-cmd {
    display: inline-block;
    border-radius: 6px;
    padding: 0.2rem 0.55rem;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(25,135,84,0.08);
    color: #198754;
}
[data-theme="dark"] .utile-cmd { background: rgba(52,211,153,0.12); color: #34d399; }
.utile-card.c-info   .utile-cmd { background: rgba(13,202,240,0.1);  color: #099ab5; }
.utile-card.c-warn   .utile-cmd { background: rgba(255,193,7,0.1);   color: #997404; }
.utile-card.c-purple .utile-cmd { background: rgba(111,66,193,0.1);  color: #6f42c1; }
.utile-card.c-sky    .utile-cmd { background: rgba(37,47,82,0.08);   color: #252F52; }
.utile-card.c-orange .utile-cmd { background: rgba(253,126,20,0.1);  color: #c96000; }
[data-theme="dark"] .utile-card.c-info   .utile-cmd { background: rgba(34,211,238,0.12);  color: #22d3ee; }
[data-theme="dark"] .utile-card.c-warn   .utile-cmd { background: rgba(251,191,36,0.12);  color: #fbbf24; }
[data-theme="dark"] .utile-card.c-purple .utile-cmd { background: rgba(167,139,250,0.12); color: #a78bfa; }
[data-theme="dark"] .utile-card.c-sky    .utile-cmd { background: rgba(74,108,247,0.12);  color: #93c5fd; }
[data-theme="dark"] .utile-card.c-orange .utile-cmd { background: rgba(251,146,60,0.12);  color: #fb923c; }

/* ── FEATURED ── */
.utile-card.utile-featured {
    background: linear-gradient(135deg, #252F52 0%, #1a2040 100%);
    border-left-color: #198754;
    box-shadow: 0 8px 30px rgba(37,47,82,0.2);
}
.utile-card.utile-featured:hover { box-shadow: 0 16px 40px rgba(25,135,84,0.2); }
.utile-card.utile-featured h3    { color: #fff; }
.utile-card.utile-featured .utile-desc { color: rgba(255,255,255,0.6); }
.utile-card.utile-featured .utile-icon { background: rgba(25,135,84,0.25); color: #6ee7b7; }
.utile-card.utile-featured .utile-cmd  { background: rgba(25,135,84,0.25); color: #6ee7b7; }

/* ── CTA ── */
.utile-cta {
    background: linear-gradient(135deg, #252F52 0%, #1a3a2a 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}
.utile-cta h3 {
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, #ffffff 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.utile-cta p { opacity: 0.75; margin-bottom: 1.5rem; max-width: 440px; margin-left:auto; margin-right:auto; }
.btn-sky {
    background: white;
    color: #252F52;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-sky:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #252F52;
    text-decoration: none;
}