/* ── help.css → css/help.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ── LAYOUT ── */
.hlp-main { padding: 2.5rem 0 3.5rem; }
.hlp-container {
    max-width: 100%;
    padding: 0 1.5rem;
}

/* ── INTRO ── */
.hlp-intro {
    display: flex; align-items: flex-start; gap: .65rem;
    background: #eff6ff; border: 1px solid #bfdbfe;
    border-radius: var(--r2); padding: 1rem 1.2rem;
    font-size: .9rem; color: #1e40af; line-height: 1.75;
    margin-bottom: 1.3rem;
}
.hlp-intro i { font-size: .92rem; flex-shrink: 0; margin-top: .18rem; }
.hlp-intro p  { margin: 0; }
.hlp-intro strong { color: #1e3a8a; }

/* ── CARD ── */
.hlp-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden; margin-bottom: 1.3rem;
}
.hlp-card::before { content: ''; display: block; height: 4px; background: var(--G); }

.hlp-card-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.6rem; background: var(--G);
}
.hlp-card-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.hlp-card-icon--amber { background: rgba(255,255,255,.18); }
.hlp-card-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.hlp-card-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .05rem; }

/* ── SECTION LINKS ── */
.hlp-links-list { padding: .3rem 0; }

.hlp-link-row {
    display: flex; align-items: center; gap: 1rem;
    padding: .95rem 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .18s, transform .2s;
}
.hlp-link-row:last-child { border-bottom: none; }
.hlp-link-row:hover { background: var(--xpale); transform: translateX(4px); }
.hlp-link-row:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }

.hlp-link-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--G); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem; flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(30,58,138,.18);
    transition: var(--t);
}
.hlp-link-row:hover .hlp-link-icon { opacity: .88; transform: scale(1.05); }

.hlp-link-text { flex: 1; }
.hlp-link-title {
    font-size: .9rem; font-weight: 700; color: var(--t1);
    transition: color .18s; margin-bottom: .15rem;
}
.hlp-link-desc  { font-size: .78rem; color: var(--t3); line-height: 1.4; }
.hlp-link-row:hover .hlp-link-title { color: var(--blue); }

.hlp-link-arrow {
    font-size: .82rem; color: var(--t3); flex-shrink: 0;
    transition: transform .2s, color .2s;
}
.hlp-link-row:hover .hlp-link-arrow { transform: translateX(4px); color: var(--blue); }

/* ── FILE FORMATS ── */
.hlp-formats-list { padding: .6rem 1.5rem 1rem; }

.hlp-format-row {
    display: flex; align-items: center; gap: 1rem;
    background: var(--xpale); border: 1px solid var(--pale);
    border-radius: var(--r2); padding: 1rem 1.2rem;
}
.hlp-format-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.hlp-format-icon--red { background: #fee2e2; color: #dc2626; }

.hlp-format-info { flex: 1; }
.hlp-format-name {
    font-size: .9rem; font-weight: 700; color: var(--t1); margin-bottom: .25rem;
}
.hlp-format-desc {
    font-size: .82rem; color: var(--t2); line-height: 1.5;
}
.hlp-format-desc strong { color: var(--t1); font-weight: 700; }

.hlp-format-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--G); color: var(--white);
    border-radius: 8px; padding: .5rem 1.2rem;
    font-size: .78rem; font-weight: 700;
    text-decoration: none; transition: var(--t);
    box-shadow: 0 3px 10px rgba(30,58,138,.2);
    white-space: nowrap; flex-shrink: 0;
}
.hlp-format-btn:hover { opacity: .88; transform: translateY(-2px); color: var(--white); }
.hlp-format-btn:focus-visible { outline: 3px solid var(--mid); outline-offset: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hlp-format-row { flex-wrap: wrap; gap: .8rem; }
    .hlp-format-btn { width: 100%; justify-content: center; }
    .hlp-link-row   { padding: .8rem 1rem; gap: .75rem; }
    .hlp-link-desc  { display: none; }
}
@media print {
    .hlp-card { box-shadow: none; border: 1px solid #ccc; }
    .hlp-format-btn { background: none; color: var(--blue); box-shadow: none; }
}