:root
{
    --bg: #050509;
    --bg-alt: #0b0b12;
    --card: #11111b;
    --accent: #ff4ecd;
    --accent-soft: rgba(255, 78, 205, .18);
    --accent-2: #6b68ff;
    --text-main: #f5f5ff;
    --text-soft: #a3a3c2;
    --border-subtle: #252538;
    --radius-xl: 18px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, .7);
}

body
{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro', 'Segoe UI', sans-serif;

    min-height: 100vh;
    margin: 0;

    color: var(--text-main);
    background: radial-gradient(circle at top, #131324, #050509 55%);
}

.pk-faq-page
{
    padding: 80px 20px 96px;
}

.pk-faq-inner
{
    max-width: 1120px;
    margin: 0 auto;
}

/* Badge reused from About/Contact */
.pk-badge
{
    font-size: 11px;

    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;
    padding: 4px 11px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 78, 205, .16), rgba(107, 104, 255, .12));

    gap: 8px;
}

.pk-badge-dot
{
    width: 7px;
    height: 7px;

    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, #ff4ecd);
    box-shadow: 0 0 10px rgba(255, 78, 205, .8);
}

.pk-faq-hero
{
    margin-bottom: 56px;
}

.pk-faq-hero h1
{
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.15;

    margin: 0 0 12px;
}

.pk-faq-hero-title-accent
{
    color: transparent;
    background: linear-gradient(120deg, #ff4ecd, #ffc764, #6b68ff);
    -webkit-background-clip: text;
}

.pk-faq-hero p
{
    font-size: 15px;
    line-height: 1.8;

    max-width: 600px;
    margin: 0 0 20px;

    color: var(--text-soft);
}

.pk-faq-meta
{
    font-size: 13px;

    display: flex;
    flex-wrap: wrap;

    color: var(--text-soft);

    gap: 16px;
}

.pk-faq-meta span
{
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.pk-faq-meta strong
{
    font-weight: 600;

    color: var(--text-main);
}

/* Section shell (matches About page spacing) */
.pk-section
{
    margin-bottom: 72px;
}

.pk-section-header
{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 24px;

    gap: 24px;
}

.pk-section-title
{
    font-size: 22px;

    margin: 0 0 4px;
}

.pk-section-sub
{
    font-size: 13px;

    max-width: 460px;

    color: var(--text-soft);
}

.pk-section-tag
{
    font-size: 11px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--text-soft);
}

/* FAQ layout */
.pk-faq-grid
{
    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
}

.pk-faq-column
{
    display: grid;

    gap: 18px;
}

.pk-faq-group
{
    padding: 18px 20px 16px;

    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    background: var(--bg-alt);
    box-shadow: var(--shadow-soft);
}

.pk-faq-group-header
{
    margin-bottom: 14px;
}

.pk-faq-group-label
{
    font-size: 11px;

    margin-bottom: 4px;

    letter-spacing: .16em;
    text-transform: uppercase;

    color: var(--text-soft);
}

.pk-faq-group-title
{
    font-size: 16px;

    margin: 0;
}

.pk-faq-group-sub
{
    font-size: 13px;

    margin: 4px 0 0;

    color: var(--text-soft);
}

/* FAQ items using <details> */
.pk-faq-item
{
    margin: 0;
    padding: 10px 12px;

    transition: border-color .18s ease-out, background .18s ease-out, box-shadow .18s ease-out;

    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    background: #11111b;
}

.pk-faq-item + .pk-faq-item
{
    margin-top: 10px;
}

.pk-faq-item[open]
{
    border-color: rgba(255, 78, 205, .7);
    background: radial-gradient(circle at top left, rgba(255, 78, 205, .14), #0b0b12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .7);
}

.pk-faq-item summary
{
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    list-style: none;

    cursor: pointer;

    gap: 10px;
}

.pk-faq-item summary::-webkit-details-marker
{
    display: none;
}

.pk-faq-question
{
    font-weight: 500;
}

.pk-faq-toggle
{
    font-size: 14px;

    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;

    width: 22px;
    height: 22px;

    transition: transform .17s ease-out, border-color .17s ease-out, background .17s ease-out;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(0, 0, 0, .4);
}

.pk-faq-item[open] .pk-faq-toggle
{
    transform: rotate(45deg);

    color: #ffd5f3;
    border-color: rgba(255, 78, 205, .8);
    background: rgba(255, 78, 205, .2);
}

.pk-faq-answer
{
    font-size: 13px;
    line-height: 1.7;

    margin-top: 8px;
    padding-top: 6px;

    color: var(--text-soft);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.pk-faq-answer p
{
    margin: 0 0 6px;
}

.pk-faq-answer p:last-child
{
    margin-bottom: 0;
}

.pk-faq-chip-row
{
    display: flex;
    flex-wrap: wrap;

    margin-top: 10px;

    gap: 6px;
}

.pk-faq-chip
{
    font-size: 11px;

    padding: 3px 9px;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(5, 5, 9, .9);
}

/* Helpful links panel */
.pk-faq-help-card
{
    padding: 18px 18px 16px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, rgba(255, 78, 205, .22), #050509 65%);
    box-shadow: var(--shadow-soft);
}

.pk-faq-help-card h3
{
    font-size: 15px;

    margin: 0 0 6px;
}

.pk-faq-help-card p
{
    font-size: 13px;

    margin: 0 0 10px;

    color: var(--text-soft);
}

.pk-faq-help-links
{
    font-size: 13px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.pk-faq-help-links a
{
    padding: 6px 12px;

    transition: border-color .16s ease-out, background .16s ease-out, color .16s ease-out;
    text-decoration: none;

    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(10, 10, 18, .95);
}

.pk-faq-help-links a:hover
{
    color: #ffd5f3;
    border-color: rgba(255, 78, 205, .8);
    background: rgba(255, 78, 205, .18);
}

/* CTA reuse from About page */
.pk-cta
{
    display: grid;
    align-items: center;

    padding: 22px 20px 22px;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(255, 78, 205, .24), #050509 60%);

    grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
    gap: 24px;
}

.pk-cta h2
{
    font-size: 20px;

    margin: 0 0 6px;
}

.pk-cta p
{
    font-size: 13px;

    margin: 0;

    color: var(--text-soft);
}

.pk-cta-actions
{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 12px;
}

.pk-btn-primary,
.pk-btn-ghost
{
    font-size: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 16px;

    cursor: pointer;
    transition: transform .13s ease-out, box-shadow .13s ease-out, background .13s ease-out, border-color .13s ease-out;
    white-space: nowrap;
    text-decoration: none;

    border: 1px solid transparent;
    border-radius: 999px;

    gap: 6px;
}

.pk-btn-primary
{
    font-weight: 600;

    color: #120815;
    background: linear-gradient(120deg, #ff4ecd, #ff9b47);
    box-shadow: 0 14px 30px rgba(255, 78, 205, .5);
}

.pk-btn-primary:hover
{
    transform: translateY(-1px);

    box-shadow: 0 18px 40px rgba(255, 78, 205, .7);
}

.pk-btn-ghost
{
    color: var(--text-soft);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(4, 4, 10, .85);
}

.pk-btn-ghost:hover
{
    border-color: rgba(255, 255, 255, .3);
    background: rgba(10, 10, 18, 1);
}

.pk-cta-meta
{
    font-size: 11px;

    margin-top: 8px;

    color: var(--text-soft);
}

.pk-cta-meta span
{
    opacity: .8;
}

.pk-cta-meta strong
{
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 900px)
{
    .pk-faq-page
    {
        padding-top: 60px;
    }

    .pk-faq-grid
    {
        grid-template-columns: minmax(0, 1fr);
    }

    .pk-cta
    {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px)
{
    .pk-section
    {
        margin-bottom: 56px;
    }

    .pk-section-header
    {
        align-items: flex-start;
        flex-direction: column;
    }

    .pk-section-title
    {
        font-size: 20px;
    }

    .pk-cta-actions
    {
        justify-content: flex-start;

        width: 100%;
    }

    .pk-btn-primary,
    .pk-btn-ghost
    {
        flex: 1;
        justify-content: center;
    }
}
