/* ── Tutorial Penggunaan ──────────────────────────────────── */
@keyframes tpFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

body {
    font-family: var(--font-family);
    background: #f1f5f9;
    min-height: 100vh;
    color: var(--text-primary);
    margin: 0; padding: 0; line-height: 1.6;
}

/* ── Hero ── */

/* ── Page ── */
.tp-page {
    max-width: 1100px; margin: 0 auto;
    padding: 28px 24px 48px;
    animation: tpFadeUp 0.35s ease;
}

/* ── Card ── */
.tp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px; padding: 28px;
    box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.tp-section-title {
    font-size: 18px; font-weight: 800; color: var(--text-primary);
    margin: 0 0 24px; padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

/* ── Step cards ── */
.step-card {
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 20px 22px; margin-bottom: 20px;
}
.step-1 { border-left-color: var(--primary); }
.step-2 { border-left-color: #f59e0b; }
.step-3 { border-left-color: #22c55e; }
.step-4 { border-left-color: #8b5cf6; }
.step-5 { border-left-color: #06b6d4; }

.step-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 800; color: var(--text-primary);
    margin-bottom: 12px;
}
.step-content { font-size: 13.5px; color: var(--text-secondary); line-height: 1.7; }
.step-content ol, .step-content ul { margin: 10px 0 0 20px; }
.step-content li { margin-bottom: 4px; }
.step-content p  { margin: 0 0 8px; }

/* ── Example box ── */
.example-box {
    background: #f1f5f9;
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px; margin-top: 12px;
    font-size: 13px; color: var(--text-secondary); line-height: 1.7;
}

/* ── Highlight ── */
.highlight {
    background: #eef2ff; color: var(--primary);
    padding: 2px 7px; border-radius: 5px;
    font-weight: 700; font-size: 13px;
}

/* ── Info cards ── */
.info-card {
    border-radius: 10px; padding: 20px 22px; margin-bottom: 16px;
    border: 1px solid;
}
.info-warning { background: #fffbeb; border-color: #fde68a; }
.info-tip     { background: #eff6ff; border-color: #bfdbfe; }
.info-title {
    font-size: 14px; font-weight: 800; color: var(--text-primary);
    margin-bottom: 12px;
}
.info-card ul { margin: 0 0 0 18px; padding: 0; }
.info-card li { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.6; }
.info-card p  { font-size: 13.5px; color: var(--text-secondary); margin: 0 0 8px; }
.info-faq { background: #fff7ed; border-color: #fed7aa; }

/* ── FAQ ── */
.faq-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: 10px; padding: 16px 18px; margin-bottom: 10px;
}
.faq-question { font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.faq-answer   { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── Footer ── */
.tp-footer { border-top: 1px solid #e2e8f0; padding-top: 24px; margin-top: 8px; text-align: center; }
.tp-footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.tp-footer-links a {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12.5px; color: var(--text-muted); text-decoration: none; transition: color 0.15s;
}
.tp-footer-links a:hover { color: var(--primary); }
.tp-footer-copy { font-size: 12px; color: var(--text-muted); margin: 0; }

@media (max-width: 640px) {
    .tp-page { padding: 20px 16px 40px; }
    .tp-card { padding: 18px 16px; }
}
