/* Extracted from pages/certification.html */
.header-section { text-align: center; padding: 3rem 0 2rem; max-width: 700px; margin: 0 auto; }
.header-section p { color: var(--text-dim); }
.lifecycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 2rem 0; }
.lifecycle-step {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    padding: 1.25rem; text-align: center;
}
.lifecycle-step .step-num {
    font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.lifecycle-step h3 { color: var(--accent); font-size: 1rem; margin-bottom: 0.5rem; }
.lifecycle-step p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }
.qual-table, .esc-table, .price-table, .protect-table {
    width: 100%; border-collapse: collapse; margin: 1rem 0;
}
.qual-table th, .qual-table td,
.esc-table th, .esc-table td,
.price-table th, .price-table td,
.protect-table th, .protect-table td {
    text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.qual-table th, .esc-table th, .price-table th, .protect-table th { color: var(--accent); font-weight: 600; }
.qual-table td, .esc-table td, .price-table td, .protect-table td { color: var(--text-dim); }
.section-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    padding: 1.5rem; margin: 1.5rem 0;
}
.badge-demo {
    display: inline-block; padding: 0.5rem 1.25rem; border: 2px solid var(--green);
    border-radius: 6px; font-family: var(--font-mono); font-weight: 700;
    color: var(--green); font-size: 0.9rem; letter-spacing: 0.05em;
}
.badge-probation { border-color: var(--orange); color: var(--orange); }
.badge-revoked { border-color: var(--red); color: var(--red); text-decoration: line-through; }
.immediate { color: var(--red); font-weight: 700; }
.warning-box {
    background: rgba(255,68,68,0.08); border: 1px solid var(--red); border-radius: 8px;
    padding: 1.25rem; margin: 1.5rem 0;
}
.sp-box {
    background: rgba(255,170,51,0.08); border: 1px solid var(--orange); border-radius: 8px;
    padding: 1.5rem; margin: 2rem 0;
}
@media (max-width: 768px) { .lifecycle { grid-template-columns: 1fr; } }
