/* ── FAQ Page ──────────────────────────────────────────────────────────── */
.ssh-faq-section {
    padding: 56px 0 72px;
    background: #f8f9fa;
    min-height: 50vh;
}

.ssh-faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.ssh-faq-empty {
    text-align: center;
    color: #9ca3af;
    font-size: 15px;
    padding: 40px 0;
}

/* ── Accordion item ── */
.ssh-faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.ssh-faq-item.open {
    box-shadow: 0 4px 20px rgba(14,158,142,0.12);
}

/* ── Question row ── */
.ssh-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.ssh-faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    font-family: 'Inter', sans-serif;
    line-height: 1.45;
    flex: 1;
}

.ssh-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0fdfb;
    border: 1.5px solid #0e9e8e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
}

.ssh-faq-item.open .ssh-faq-icon {
    background: #0e9e8e;
    transform: rotate(45deg);
}

.ssh-faq-icon svg {
    stroke: #0e9e8e;
    transition: stroke 0.2s;
}

.ssh-faq-item.open .ssh-faq-icon svg {
    stroke: #fff;
}

/* ── Answer ── */
.ssh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 22px;
}

.ssh-faq-item.open .ssh-faq-answer {
    max-height: 600px;
    padding: 0 22px 18px;
}

.ssh-faq-answer-inner {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    border-top: 1px solid #f0fdfb;
    padding-top: 14px;
    font-family: 'Inter', sans-serif;
}

.ssh-faq-answer-inner p  { margin: 0 0 8px; }
.ssh-faq-answer-inner ul { padding-left: 20px; margin: 6px 0; }
.ssh-faq-answer-inner a  { color: #0e9e8e; }

@media (max-width: 600px) {
    .ssh-faq-question      { padding: 14px 16px; }
    .ssh-faq-question-text { font-size: 14px; }
    .ssh-faq-item.open .ssh-faq-answer { padding: 0 16px 14px; }
}
