/* ===== Help Page Styles ===== */

:root {
    --primary: hsl(200, 100%, 40%);
    --primary-light: hsl(200, 100%, 95%);
    --secondary: hsl(260, 60%, 55%);
}

/* ── FAQ Accordion ── */

.faq-item {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.4;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { content: ''; }

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: #94a3b8;
}
.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

/* ── Guide Timeline ── */

.guide-timeline {
    position: relative;
    padding-left: 2.5rem;
}

.guide-timeline::before {
    content: '';
    position: absolute;
    left: 1.125rem;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 1px;
}

.guide-step {
    position: relative;
    padding-bottom: 1.5rem;
}
.guide-step:last-child {
    padding-bottom: 0;
}

.guide-num {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1;
}

.guide-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Responsive ── */

@media (max-width: 640px) {
    .guide-timeline {
        padding-left: 2rem;
    }
    .guide-num {
        left: -2rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    .guide-timeline::before {
        left: 0.8125rem;
    }
    .faq-summary {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }
    .faq-answer {
        padding: 0 1rem 0.875rem;
    }
}
