body {
    background: #f6f8fb;
}
.brand-logo {
    height: 42px;
    width: auto;
}
.card {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.badge-status {
    text-transform: capitalize;
}
.step-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
}
.signature-pad {
    border: 1px dashed #cbd5f5;
    border-radius: 8px;
    width: 100%;
    height: 180px;
    background: #fff;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.progress {
    height: 12px;
}
.watermark {
    position: absolute;
    top: 40%;
    left: 10%;
    font-size: 56px;
    color: rgba(220, 38, 38, 0.2);
    transform: rotate(-20deg);
}
.document-content {
    max-height: 520px;
    overflow: auto;
}
.document-text {
    white-space: pre-wrap;
    margin: 0;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
}
.contract-reader {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 20px;
}
.contract-heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 1.2rem 0 0.75rem;
    color: #0f172a;
    letter-spacing: 0.02em;
}
.contract-heading:first-child {
    margin-top: 0;
}
.contract-paragraph {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: #1f2937;
    font-size: 0.95rem;
}
.induction-meta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 18px;
    margin-bottom: 24px;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.3;
}
.checklist-item input {
    margin-top: 3px;
}
.induction-questions {
    display: grid;
    gap: 18px;
}
.induction-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}
.induction-question {
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.induction-number {
    font-weight: 700;
    color: #0f172a;
}
.induction-choices {
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
    white-space: nowrap;
}
.declaration-list {
    margin: 6px 0 0 18px;
    padding: 0;
    line-height: 1.7;
    color: #1f2937;
    font-size: 0.95rem;
}
.declaration-list li {
    margin-bottom: 0.6rem;
}
.induction-page {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
}
.induction-hero {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.induction-hero h5 {
    margin-bottom: 6px;
}
.induction-section {
    margin-top: 18px;
}
.induction-section h6 {
    font-weight: 700;
    margin-bottom: 10px;
}
.induction-table {
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
}
.induction-table th,
.induction-table td {
    vertical-align: middle;
}
@media (max-width: 720px) {
    .induction-hero {
        flex-direction: column;
    }
}
@media (max-width: 720px) {
    .induction-row {
        grid-template-columns: 1fr;
    }
    .induction-choices {
        justify-content: flex-start;
    }
}
