/* ═══════════════════════════════════════════════════════════════════════════
   faq.css — peer v2 FAQ page
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/css/fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --brand:   #f97316;
    --brand-d: #ea6a08;
    --text:    #0a0a0a;
    --muted:   #666;
    --line:    #e8e8e8;
    --bg:      #f5f5f5;
    --surface: #ffffff;
    --font:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius:  10px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.fq-header {
    height: 58px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px;
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.fq-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.fq-logo-mark {
    width: 26px; height: 26px; background: var(--brand);
    border-radius: 5px; display: flex; align-items: center; justify-content: center;
}
.fq-logo-mark svg { width: 14px; height: 14px; fill: #fff; }
.fq-logo-name { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -.4px; }
.fq-logo-name span { color: var(--brand); }
.fq-nav { display: flex; align-items: center; gap: 8px; }
.fq-nav a {
    font-size: 12px; font-weight: 700; color: var(--muted);
    letter-spacing: .5px; text-transform: uppercase;
    padding: 7px 14px; border-radius: 6px;
    transition: color .2s, background .2s;
}
.fq-nav a:hover { color: var(--text); background: #f5f5f5; text-decoration: none; }
.fq-nav a.active { color: var(--text); }
.fq-btn-login {
    font-family: var(--font); font-size: 12px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    color: #fff; background: var(--brand);
    border: none; border-radius: 7px; padding: 7px 16px;
    cursor: pointer; text-decoration: none; transition: background .2s;
}
.fq-btn-login:hover { background: var(--brand-d); text-decoration: none; color: #fff; }

/* ── Page content ─────────────────────────────────────────────────────────── */
.fq-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 52px 24px 80px;
}

.fq-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--brand);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.fq-eyebrow::before {
    content: ''; width: 20px; height: 2px;
    background: var(--brand); border-radius: 1px; display: block;
}
.fq-title {
    font-size: 38px; font-weight: 900; letter-spacing: -1.5px;
    color: var(--text); margin-bottom: 10px; line-height: 1.1;
}
.fq-sub {
    font-size: 15px; color: var(--muted); margin-bottom: 44px; line-height: 1.6;
}

/* ── Section label ────────────────────────────────────────────────────────── */
.faq-section {
    font-size: 10px; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; color: var(--brand);
    margin: 32px 0 10px;
}
.faq-section:first-of-type { margin-top: 0; }

/* ── FAQ accordion ────────────────────────────────────────────────────────── */
.faq-item {
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item:hover { border-color: #d0d0d0; }
.faq-item.open  { border-color: var(--brand); }

.faq-q {
    width: 100%; text-align: left; background: none; border: none;
    padding: 17px 20px;
    font-family: var(--font); font-size: 14px; font-weight: 700;
    color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    transition: background .15s;
}
.faq-q:hover { background: #fafafa; }
.faq-item.open .faq-q { color: var(--brand); }

.faq-chevron {
    flex-shrink: 0; transition: transform .22s ease; color: #bbb;
    width: 18px; height: 18px; stroke: currentColor; stroke-width: 2;
    fill: none;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--brand); }

.faq-a {
    display: none;
    padding: 0 20px 20px;
    font-size: 13px; line-height: 1.8; color: var(--muted);
    border-top: 1px solid #f5f5f5;
}
.faq-item.open .faq-a { display: block; }
.faq-a p  { margin: 12px 0 0; }
.faq-a p:first-child { margin-top: 14px; }
.faq-a ol, .faq-a ul { margin: 10px 0 0 20px; }
.faq-a li  { margin-bottom: 6px; }
.faq-a a   { color: var(--brand); font-weight: 600; }
.faq-a strong { color: var(--text); font-weight: 700; }

/* Tip box */
.faq-tip {
    background: #fff8f3;
    border-left: 3px solid var(--brand);
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin-top: 14px;
    font-size: 12px; color: var(--muted);
    line-height: 1.6;
}

/* ── Viber button ─────────────────────────────────────────────────────────── */
.btn-viber {
    display: inline-flex; align-items: center; gap: 8px;
    background: #7360f2; color: #fff !important;
    border: none; border-radius: 10px;
    padding: 12px 20px;
    font-family: var(--font); font-size: 13px; font-weight: 700;
    cursor: pointer; text-decoration: none !important;
    margin-top: 10px; transition: opacity .15s;
}
.btn-viber:hover { opacity: .88; }

/* ── Bottom CTA ───────────────────────────────────────────────────────────── */
.fq-bottom {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.fq-bottom p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.fq-btn-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 14px; font-weight: 800;
    color: #fff; background: var(--text);
    border: none; border-radius: var(--radius); padding: 13px 28px;
    cursor: pointer; text-decoration: none; transition: background .2s;
}
.fq-btn-back:hover { background: #222; text-decoration: none; color: #fff; }
.fq-btn-back svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.5; fill: none; }
