/* =====================================================================
   Help Page Styles (ats-help.css)
   ===================================================================== */

/* ── Page-level layout ─────────────────────────────────────────────── */

.help-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

/* ── Hero banner ───────────────────────────────────────────────────── */

.help-hero {
    text-align: center;
    padding: 48px 24px 36px;
    border-bottom: 2px solid #e8edf2;
    margin-bottom: 36px;
}

.help-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #1a2b3c;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.help-subtitle {
    font-size: 1.1em;
    color: #5a7a96;
    margin: 0;
}

/* ── Table of contents ─────────────────────────────────────────────── */

.help-toc {
    background: #f0f6fb;
    border-left: 4px solid #5B9BD5;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 48px;
}

.help-toc-title {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5a7a96;
    margin: 0 0 12px;
}

.help-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    flex-direction: column;
}

.help-toc li {
    margin: 0;
}

.help-toc a {
    color: #1a6ab0;
    text-decoration: none;
    font-size: 0.95em;
    padding: 2px 0;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}

.help-toc a:hover {
    color: #0e4d82;
    border-bottom-color: #0e4d82;
}

/* ── Sections ──────────────────────────────────────────────────────── */

.help-section {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8edf2;
    line-height: 1.7;
    color: #333;
}

.help-section:last-of-type {
    border-bottom: none;
}

.help-section-icon {
    font-size: 2em;
    margin-bottom: 8px;
    line-height: 1;
}

.help-section-title {
    font-size: 1.55em;
    font-weight: 700;
    color: #1a2b3c;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.help-section p {
    margin-bottom: 14px;
}

/* ── Highlight box ─────────────────────────────────────────────────── */

.help-highlight-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff8e6;
    border: 1px solid #f0c040;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 20px;
}

.help-highlight-icon {
    font-size: 1.3em;
    flex-shrink: 0;
    margin-top: 2px;
}

.help-highlight-box p {
    margin: 0;
    color: #5a4500;
    font-size: 0.95em;
}

/* ── List with icons ───────────────────────────────────────────────── */

.help-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.help-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f7fafd;
    border: 1px solid #dce8f0;
    border-radius: 8px;
    padding: 14px 18px;
}

.help-list-icon {
    font-size: 1.3em;
    flex-shrink: 0;
    margin-top: 1px;
}

.help-list li div {
    font-size: 0.97em;
    color: #333;
}

/* ── Comparison cards ──────────────────────────────────────────────── */

.help-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

@media (max-width: 640px) {
    .help-comparison {
        grid-template-columns: 1fr;
    }
}

.help-comparison-card {
    border-radius: 10px;
    padding: 24px;
    position: relative;
    border: 2px solid transparent;
}

.help-comparison-quick {
    background: #f7fafd;
    border-color: #a8c8e8;
}

.help-comparison-full {
    background: #f0f8f0;
    border-color: #7ec87e;
}

.help-comparison-badge {
    display: inline-block;
    font-size: 0.72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.help-comparison-quick .help-comparison-badge {
    background: #5B9BD5;
    color: white;
}

.help-comparison-full .help-comparison-badge {
    background: #3a9c3a;
    color: white;
}

.help-comparison-card h3 {
    font-size: 1.15em;
    font-weight: 700;
    color: #1a2b3c;
    margin: 0 0 10px;
}

.help-comparison-card p {
    font-size: 0.93em;
    color: #444;
    margin-bottom: 14px;
}

.help-comparison-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.help-comparison-list li {
    font-size: 0.88em;
    color: #333;
    padding-left: 4px;
}

.help-comparison-when {
    font-size: 0.88em;
    color: #555;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 12px;
    margin-top: 4px;
    margin-bottom: 0 !important;
}

/* ── Numbered steps ────────────────────────────────────────────────── */

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 20px;
}

.help-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.help-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #5B9BD5;
    color: white;
    font-weight: 700;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.help-step-content h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: #1a2b3c;
    margin: 0 0 8px;
}

.help-step-content p {
    font-size: 0.95em;
    color: #444;
    margin: 0 0 10px;
}

.help-step-content p:last-child {
    margin-bottom: 0;
}

/* ── Example blockquotes ───────────────────────────────────────────── */

.help-example {
    background: #f7fafd;
    border: 1px solid #dce8f0;
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 12px;
}

.help-example-label {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #5a7a96;
    margin: 0 0 4px !important;
}

.help-example blockquote {
    margin: 0 0 12px;
    padding: 8px 14px;
    border-left: 3px solid #5B9BD5;
    background: white;
    border-radius: 0 4px 4px 0;
    font-size: 0.92em;
    color: #333;
    font-style: italic;
}

.help-example blockquote:last-child {
    margin-bottom: 0;
}

/* ── Tips list ─────────────────────────────────────────────────────── */

.help-tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.help-tips-list li {
    padding: 14px 18px 14px 46px;
    background: #f7fafd;
    border: 1px solid #dce8f0;
    border-radius: 8px;
    font-size: 0.95em;
    color: #333;
    line-height: 1.6;
    position: relative;
}

.help-tips-list li::before {
    content: "→";
    position: absolute;
    left: 18px;
    top: 14px;
    color: #5B9BD5;
    font-weight: 700;
}
