/* ------------------------------------------------
Shared shell (FAQ / Contact / Auth)
------------------------------------------------ */
.wk-page {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    display: grid;
    place-items: center;
    padding: 28px 0;
}

.wk-page img {
    display: block;
    max-width: 100%
}

.wk-shell {
    width: min(1120px, 92vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.wk-aside {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: radial-gradient(900px 420px at 20% 0%, rgba(255, 255, 255, .10), transparent 60%),
        rgba(255, 255, 255, .03);
    padding: 28px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.wk-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 13px;
    width: fit-content;
}

.wk-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--logo-bg);
}

.wk-aside h1 {
    margin: 6px 0 6px 0;
    font-size: 38px;
    letter-spacing: -.03em;
    line-height: 1.15;
}

.wk-aside p {
    color:var(--muted);
    max-width:52ch;
    line-height:1.6;
    margin: 10px 0px;
}

.wk-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    padding: 22px;
    display: grid;
    align-content: center;
}

.wk-card {
    width: 100%;
    margin: 0 auto;
    max-width: 720px;
    /* FAQ/Contact default */
}

/* Buttons/links reuse your auth styles */
.wk-btn {
    /* same as .auth-btn */
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 650;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
}

.wk-btn:hover {
    transform: translateY(0);
}

.wk-link {
    /* same as .auth-link */
    color: var(--muted);
    font-size: 14px;
    width: fit-content;
    cursor: pointer;
}

.wk-link:hover {
    color: var(--text);
}
/* ------------------------------------------------
------------------FAQ------------------------------
------------------------------------------------ */
.wk-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.wk-faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    overflow: hidden;
}

.wk-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.wk-faq-a {
    padding: 0 14px 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.wk-faq p strong {
    color: var(--text);
    fill: var(--text);
}

.wk-faq-chevron {
    width: 18px;
    height: 18px;
    opacity: .85;
    transition: transform .18s ease;
}

.wk-faq-item[aria-expanded="true"] .wk-faq-chevron {
    transform: rotate(180deg);
}

/* ------------------------------------------------
------------------CONTACT--------------------------
------------------------------------------------ */
.wk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
    margin-top: 6px;
}

.wk-contact-meta {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.wk-meta-k {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.wk-meta-v {
    font-weight: 600;
}

.wk-form {
    display: grid;
    gap: 10px;
}

.wk-form label {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

.wk-form input,
.wk-form textarea {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    outline: none;
    font-family: inherit;
}

.wk-form textarea {
    min-height: 140px;
    resize: none;
}

.wk-form input:focus,
.wk-form textarea:focus {
    border-color: rgba(255, 255, 255, .22);
}

.is-hidden{
    opacity: 0;
    overflow: hidden;
    display: none;
}

.is-visible{
    opacity: 1;
}


@media (max-width:980px) {
    .wk-shell {
        grid-template-columns: 1fr;
    }

    .wk-contact-grid {
        grid-template-columns: 1fr;
    }
}