/* Trellis Help Centre (/faq, /faq/<category>, /faq/<category>/<article>) styles.
   Shared by faq.html, faq/category.html, faq/article.html. Extracted from the
   former inline <style> in faq.html; new help-centre sections appended below. */

/* ── FAQ Page Styles ─────────────────────────────────────────────── */
.faq-page {
    font-family: 'Poppins', sans-serif;
    color: #00121B;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Active nav link */
.lp-header__nav a.active {
    color: #11B6E2;
    font-weight: 700;
}

/* ── Hero ── */
.faq-hero {
    background: #11B6E2;
    text-align: center;
    padding: 64px 64px 120px;
    position: relative;
}

.faq-hero__title {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    max-width: 975px;
    margin-left: auto;
    margin-right: auto;
}

.faq-hero__subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 24px 0 0;
    line-height: 1.5;
}

/* Search bar straddles the hero/page boundary */
.faq-search {
    max-width: 990px;
    margin: 40px auto 0;
    background: #FDFEFE;
    border: 1px solid #D7D7D7;
    border-radius: 50px;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 12px;
    transition: box-shadow .2s, border-color .2s;
}

.faq-search:focus-within {
    border-color: #11B6E2;
    box-shadow: 0 0 0 2px rgba(17, 182, 226, 0.15);
}

.faq-search svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #000;
}

.faq-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

.faq-search input::placeholder {
    color: #000;
    font-weight: 600;
}

.faq-suggested {
    margin-top: 48px;
}

.faq-suggested__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}

.faq-suggested__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-suggested__pill {
    background: #fff;
    border: 1px solid #CEFE05;
    border-radius: 30px;
    padding: 6px 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00121B;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .2s, transform .2s;
}

.faq-suggested__pill:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}

/* ── Section shared styles ── */
.faq-section {
    padding: 64px 64px 48px;
}

.faq-section__header {
    margin-bottom: 32px;
}

.faq-section__title {
    font-size: 24px;
    font-weight: 600;
    color: #00121B;
    margin: 0 0 6px;
}

.faq-section__subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #00121B;
    margin: 0;
}

/* ── Browse by Category grid ── */
.faq-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-cat-card {
    background: #FDFEFE;
    border: 1px solid #11B6E2;
    border-radius: 20px;
    padding: 36px 30px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s, box-shadow .25s;
    min-height: 220px;
}

.faq-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(17, 182, 226, .15);
}

.faq-cat-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.faq-cat-card__title {
    font-size: 32px;
    font-weight: 600;
    color: #11B6E2;
    margin: 0;
    line-height: 1.15;
}

.faq-cat-card__arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: #11B6E2;
    transition: transform .25s;
}

.faq-cat-card:hover .faq-cat-card__arrow {
    transform: translateX(4px);
}

.faq-cat-card__desc {
    font-size: 18px;
    font-weight: 500;
    color: #00121B;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── User Guides ── */
.faq-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-guide-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: -1px 1px 5px 2px rgba(0, 0, 0, 0.10);
    padding: 36px 32px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 316px;
    transition: transform .25s, box-shadow .25s;
}

.faq-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: -2px 2px 12px 4px rgba(0, 0, 0, .15);
}

.faq-guide-card__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #D2F1F8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11B6E2;
    font-size: 32px;
    line-height: 1;
}

.faq-guide-card__avatar svg {
    width: 36px;
    height: 36px;
}

.faq-guide-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.faq-guide-card__title {
    font-size: 32px;
    font-weight: 600;
    color: #11B6E2;
    margin: 0;
    line-height: 1.15;
}

.faq-guide-card__desc {
    font-size: 18px;
    font-weight: 500;
    color: #00121B;
    margin: 0;
    line-height: 1.5;
    max-width: 291px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Divider ── */
.faq-divider {
    border: 0;
    border-top: 1px solid #D7D7D7;
    margin: 24px 64px;
}

/* ── FAQ accordion section ── */
.faq-accordion-section {
    padding: 48px 64px 80px;
    text-align: center;
}

.faq-accordion-section__title {
    font-size: 32px;
    font-weight: 600;
    color: #00121B;
    margin: 0 0 8px;
}

.faq-accordion-section__subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #00121B;
    margin: 0 0 40px;
}

.faq-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 48px;
    max-width: 1100px;
}

.faq-pill {
    background: #FDFEFE;
    border: 2px solid #CEFE05;
    border-radius: 30px;
    padding: 10px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #00121B;
    text-decoration: none !important;
    white-space: nowrap;
    transition: filter .2s, background .2s;
}

.faq-pill:hover {
    filter: brightness(.95);
}

.faq-pill--active {
    background: #CEFE05;
    font-weight: 600;
}

/* Shareable category pill: hover reveals a cyan corner badge with a black icon */
.faq-pill-wrap {
    position: relative;
    display: inline-flex;
}

.faq-pill__share {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #11B6E2;
    color: #00121B;
    cursor: pointer;
    opacity: 0;
    transform: scale(.8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    transition: opacity .15s, transform .15s;
}

.faq-pill-wrap:hover .faq-pill__share,
.faq-pill__share:focus-visible,
.faq-pill__share.is-active {
    opacity: 1;
    transform: scale(1);
}

.faq-pill__share svg {
    width: 14px;
    height: 14px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1319px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: -1px 1px 5px 2px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: box-shadow .2s;
    /* Clear the sticky .lp-header (~70px) when scrolled to via block:'start'. */
    scroll-margin-top: 96px;
}

.faq-item:hover {
    box-shadow: -2px 2px 10px 3px rgba(0, 0, 0, 0.18);
}

.faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.faq-item__title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #000;
    transition: transform .3s ease;
}

.faq-item--open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item--open .faq-item__body {
    max-height: 3000px;
}

.faq-item__body-inner {
    padding: 0 34px 28px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.65;
}

.faq-item__body-inner > :first-child {
    margin-top: 0;
    padding-top: 22px;
    border-top: 1px solid #EEE;
}

.faq-item__body-inner p {
    margin: 0 0 14px;
}

.faq-item__body-inner p:last-child,
.faq-item__body-inner ul:last-child,
.faq-item__body-inner ol:last-child {
    margin-bottom: 0;
}

.faq-item__body-inner a {
    color: #11B6E2;
    text-decoration: none;
}

.faq-item__body-inner a:hover {
    text-decoration: underline;
}

.faq-item__body-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.faq-item__body-inner ul,
.faq-item__body-inner ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

/* ── FAQ item head: toggle + share side by side ── */
/* Wrapper that does NOT clip — lets the share badge straddle the row's corner
   (the .faq-item itself has overflow:hidden for the expand animation). */
.faq-item-wrap {
    position: relative;
}

.faq-item__head {
    display: flex;
    align-items: stretch;
}

.faq-item__button {
    flex: 1 1 auto;
    min-width: 0;
}

/* Category badge (All view only) */
.faq-item__badge {
    flex-shrink: 0;
    align-self: center;
    background: #E0F7FB;
    color: #0A7CA0;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Focus (full-screen) button: inline, takes NO space until the row is expanded —
   so the chevron sits flush right when collapsed and only shifts left to make
   room once the row opens. */
.faq-item__focus {
    flex-shrink: 0;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0 40px 0 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9D9D9D;
    transition: color .2s;
}

.faq-item--open .faq-item__focus {
    display: flex;
}

.faq-item__focus:hover {
    color: #11B6E2;
}

.faq-item__focus svg {
    width: 20px;
    height: 20px;
}

/* Share button: a cyan badge straddling the row's upper-right edge, revealed on
   hover — same treatment as the category pills. */
.faq-item__share {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #11B6E2;
    color: #00121B;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
    transition: opacity .15s, transform .15s;
}

.faq-item-wrap:hover .faq-item__share,
.faq-item__share:focus-visible,
.faq-item__share.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.faq-item__share svg {
    width: 16px;
    height: 16px;
}

/* Show-all toggle for the capped All view */
.faq-show-all {
    display: inline-block;
    margin: 28px auto 0;
    background: #FDFEFE;
    border: 2px solid #11B6E2;
    border-radius: 30px;
    padding: 10px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #11B6E2;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.faq-show-all:hover {
    background: #11B6E2;
    color: #fff;
}

.faq-show-all[hidden] {
    display: none;
}

/* ── Full-screen focused FAQ view ── */
body.faq-focus-open {
    overflow: hidden;
}

.faq-focus {
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow-y: auto;
    background: rgba(0, 18, 27, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-focus[hidden] {
    display: none;
}

.faq-focus__close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #00121B;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    transition: transform .15s, background .2s;
}

.faq-focus__close:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

.faq-focus__close svg {
    width: 22px;
    height: 22px;
}

.faq-focus__panel {
    background: #fff;
    width: 100%;
    max-width: 820px;
    min-height: 100vh;
    padding: 88px 56px 80px;
    text-align: left;
    box-shadow: 0 0 60px rgba(0, 0, 0, .25);
}

.faq-focus__badge {
    display: inline-block;
    background: #E0F7FB;
    color: #0A7CA0;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.faq-focus__badge[hidden] {
    display: none;
}

.faq-focus__title {
    font-size: 32px;
    font-weight: 600;
    color: #00121B;
    line-height: 1.25;
    margin: 0 0 28px;
}

.faq-focus__body {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.7;
}

.faq-focus__body p {
    margin: 0 0 16px;
}

.faq-focus__body a {
    color: #11B6E2;
    text-decoration: none;
}

.faq-focus__body a:hover {
    text-decoration: underline;
}

.faq-focus__body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 14px 0;
}

.faq-focus__body ul,
.faq-focus__body ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.faq-focus__copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 10px 24px;
    background: #FDFEFE;
    border: 2px solid #11B6E2;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #11B6E2;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.faq-focus__copy:hover {
    background: #11B6E2;
    color: #fff;
}

.faq-focus__copy svg {
    width: 18px;
    height: 18px;
}

/* ── Shared share menu ── */
.faq-share-menu {
    position: fixed;
    z-index: 1100;
    min-width: 188px;
    padding: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    display: flex;
    flex-direction: column;
}

.faq-share-menu[hidden] {
    display: none;
}

.faq-share-menu__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 9px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #00121B;
    text-align: left;
    transition: background .15s;
}

.faq-share-menu__item:hover {
    background: #F1F5F7;
}

.faq-share-menu__ico {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-empty {
    text-align: center;
    padding: 48px 16px;
    color: #9D9D9D;
    font-size: 18px;
    font-weight: 500;
}

.faq-no-results {
    display: none;
    text-align: center;
    padding: 32px 16px;
    color: #9D9D9D;
    font-size: 16px;
    font-weight: 500;
}

/* ── Contact Support CTA ── */
.faq-cta {
    text-align: center;
    padding: 48px 64px 88px;
}

.faq-cta__title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px;
    max-width: 584px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.faq-cta__subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 0 0 32px;
}

.faq-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: #CEFE05;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    text-decoration: none !important;
    transition: filter .2s;
}

.faq-cta__btn:hover {
    filter: brightness(.95);
}

/* ── Responsive: Tablet / small desktop ── */
@media (max-width: 1024px) {
    .faq-hero {
        padding: 48px 40px 96px;
    }

    .faq-hero__title {
        font-size: 36px;
    }

    .faq-hero__subtitle {
        font-size: 18px;
    }

    .faq-search {
        height: 68px;
        max-width: 680px;
        padding: 0 24px;
    }

    .faq-search input {
        font-size: 17px;
    }

    .faq-section {
        padding: 48px 40px 36px;
    }

    .faq-cat-grid,
    .faq-guide-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-cat-card,
    .faq-guide-card {
        padding: 28px 24px;
        min-height: 0;
    }

    .faq-cat-card__title,
    .faq-guide-card__title {
        font-size: 26px;
    }

    .faq-cat-card__desc,
    .faq-guide-card__desc {
        font-size: 16px;
    }

    .faq-divider {
        margin: 16px 40px;
    }

    .faq-accordion-section {
        padding: 40px 40px 60px;
    }

    .faq-accordion-section__title {
        font-size: 28px;
    }

    .faq-accordion-section__subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .faq-pill {
        font-size: 16px;
        padding: 8px 22px;
    }

    .faq-item__button {
        padding: 22px 26px;
    }

    .faq-item__title {
        font-size: 17px;
    }

    .faq-item__body-inner {
        font-size: 16px;
        padding: 0 26px 22px;
    }

    .faq-cta {
        padding: 40px 40px 60px;
    }

    .faq-cta__title {
        font-size: 24px;
    }

    .faq-cta__subtitle {
        font-size: 18px;
    }

    .faq-cta__btn {
        font-size: 17px;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
    .faq-hero {
        padding: 32px 20px 72px;
    }

    .faq-hero__title {
        font-size: 26px;
    }

    .faq-hero__subtitle {
        font-size: 15px;
        margin-top: 16px;
    }

    .faq-search {
        height: 56px;
        padding: 0 18px;
        margin-top: 28px;
        gap: 10px;
    }

    .faq-search svg {
        width: 20px;
        height: 20px;
    }

    .faq-search input {
        font-size: 15px;
    }

    .faq-suggested {
        margin-top: 32px;
    }

    .faq-suggested__title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .faq-suggested__pill {
        font-size: 13px;
        padding: 5px 16px;
    }

    .faq-suggested__pills {
        gap: 8px;
    }

    .faq-section {
        padding: 36px 20px 24px;
    }

    .faq-section__title {
        font-size: 20px;
    }

    .faq-section__subtitle {
        font-size: 15px;
    }

    .faq-cat-grid,
    .faq-guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-cat-card__title,
    .faq-guide-card__title {
        font-size: 22px;
    }

    .faq-cat-card__desc,
    .faq-guide-card__desc {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }

    .faq-guide-card__avatar {
        width: 56px;
        height: 56px;
    }

    .faq-guide-card__avatar svg {
        width: 28px;
        height: 28px;
    }

    .faq-divider {
        margin: 8px 20px;
    }

    .faq-accordion-section {
        padding: 32px 20px 48px;
    }

    .faq-accordion-section__title {
        font-size: 22px;
    }

    .faq-accordion-section__subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .faq-pills {
        gap: 10px;
        margin-bottom: 28px;
    }

    .faq-pill {
        font-size: 13px;
        padding: 6px 18px;
    }

    .faq-accordion {
        gap: 14px;
    }

    .faq-item__button {
        padding: 18px 20px;
    }

    .faq-item__title {
        font-size: 15px;
    }

    .faq-item__chevron {
        width: 20px;
        height: 20px;
    }

    .faq-item__badge {
        font-size: 11px;
        padding: 3px 9px;
    }

    .faq-item__share {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
    }

    .faq-item__focus {
        padding: 0 34px 0 6px;
    }

    .faq-show-all {
        font-size: 15px;
        padding: 8px 24px;
    }

    .faq-focus__panel {
        padding: 68px 20px 56px;
    }

    .faq-focus__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .faq-focus__title {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .faq-focus__body {
        font-size: 15px;
    }

    .faq-item__body-inner {
        font-size: 14px;
        padding: 0 20px 18px;
    }

    .faq-item__body-inner > :first-child {
        padding-top: 16px;
    }

    .faq-cta {
        padding: 32px 20px 48px;
    }

    .faq-cta__title {
        font-size: 20px;
    }

    .faq-cta__subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .faq-cta__btn {
        font-size: 15px;
        padding: 8px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Help-centre redesign — added sections (CTA banner, category page,
   Getting-Started hub, article page, video facade, animations).
   ═══════════════════════════════════════════════════════════════════ */

/* petite-vue: hide un-hydrated interactive chrome until mounted */
[v-cloak] { display: none !important; }

/* Reusable scroll-reveal (mirrors landing.css .lp-fade-in but local so the
   help-centre pages don't depend on load order). Honors reduced-motion below. */
.faq-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
}
.faq-reveal.is-visible { opacity: 1; transform: none; }

/* ── Lime "New to Trellis?" CTA banner (main page) ── */
.faq-cta-banner {
    margin: 48px 64px 8px;
    background: #CEFE05;
    border-radius: 24px;
    padding: 52px 40px;
    text-align: center;
}
.faq-cta-banner__title {
    font-size: 36px;
    font-weight: 600;
    color: #00121B;
    margin: 0 0 8px;
}
.faq-cta-banner__subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #00121B;
    margin: 0 0 24px;
}
.faq-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #11B6E2;
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none !important;
    transition: filter .2s, transform .2s;
}
.faq-cta-banner__btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.faq-cta-banner__btn svg { width: 20px; height: 20px; }

/* ── Breadcrumb (category + article pages) ── */
.faq-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 28px 64px 0;
    font-size: 15px;
    font-weight: 500;
    color: #6B7A82;
}
.faq-breadcrumb a { color: #11B6E2; text-decoration: none; }
.faq-breadcrumb a:hover { text-decoration: underline; }
.faq-breadcrumb__sep { color: #B7C2C8; }

/* ── Category / hub page header ── */
.faq-page-head {
    text-align: center;
    padding: 24px 64px 8px;
}
.faq-page-head__eyebrow {
    font-size: 18px;
    font-weight: 600;
    color: #00121B;
    margin: 0 0 6px;
}
.faq-page-head__title {
    font-size: 64px;
    font-weight: 600;
    color: #11B6E2;
    margin: 0;
    line-height: 1.15;
}
.faq-page-head__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #00121B;
    margin: 16px auto 0;
    max-width: 720px;
    line-height: 1.5;
}
/* Compact in-page search (reuses .faq-search look, smaller) */
.faq-search--inline {
    height: 56px;
    max-width: 620px;
    margin: 28px auto 0;
}
.faq-search--inline input { font-size: 16px; }

/* ── Top Features cyan banner (category page) ── */
/* Full-bleed cyan band; centered pill + subtitle over a row of vertical
   icon-cards (120px white rounded boxes), each with a distinct cyan glyph. */
.faq-topfeatures {
    margin: 40px 0 0;
    background: #11B6E2;
    padding: 40px 64px 48px;
    text-align: center;
}
.faq-topfeatures__pill {
    display: inline-block;
    background: #CEFE05;
    color: #00121B;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
}
.faq-topfeatures__subtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 14px 0 0;
}
.faq-topfeatures__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 96px;
    max-width: 1100px;
    margin: 32px auto 0;
}
.faq-topfeatures__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 140px;
}
.faq-topfeatures__icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #fff;
    box-shadow: -1px 1px 5px 2px rgba(0, 0, 0, .10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-topfeatures__icon svg { width: 70px; height: 70px; color: #11B6E2; }
.faq-topfeatures__label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

/* ── Article section groups (category page) ── */
.faq-group { max-width: 1319px; margin: 0 auto; text-align: left; }
.faq-group + .faq-group { margin-top: 40px; }
.faq-group__heading {
    font-size: 32px;
    font-weight: 600;
    color: #11B6E2;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E4E9EC;
}
/* "Read the full guide →" link in a category accordion body */
.faq-item__more {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: #11B6E2 !important;
    text-decoration: none !important;
}
.faq-item__more:hover { text-decoration: underline !important; }

/* Category pages render the accordion as a flat list (Figma): bare rows split by
   1px dividers, not the elevated cards used on the main FAQ page. The
   .faq-item-wrap wrapper + share-badge sibling + JS parentElement toggle are
   preserved — only the visual chrome changes. Scoped to .faq-category-page so the
   main page (.faq-page, no category class) and article pages are unaffected. */
.faq-category-page .faq-accordion { gap: 0; }
.faq-category-page .faq-item {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #E4E9EC;
}
.faq-category-page .faq-item:hover { box-shadow: none; }
.faq-category-page .faq-item__button { padding: 22px 6px; }
.faq-category-page .faq-item__title { font-weight: 500; }
.faq-category-page .faq-item__body-inner { padding: 0 6px 22px; }
.faq-category-page .faq-item__body-inner > :first-child { border-top: none; padding-top: 0; }
.faq-category-page .faq-item__share { top: -8px; right: 4px; }

/* ── "Learn by Watching" lime video row ── */
.faq-watch {
    margin: 56px 0 0;
    background: #F8F8F8;
    padding: 48px 64px 56px;
    text-align: center;
}
.faq-watch__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #00121B;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin: 0 0 14px;
}
.faq-watch__pill svg { width: 16px; height: 16px; color: #11B6E2; }
.faq-watch__title { font-size: 30px; font-weight: 600; color: #00121B; margin: 0 0 6px; }
.faq-watch__subtitle { font-size: 17px; font-weight: 500; color: #00121B; margin: 0 0 36px; }
.faq-watch__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.faq-watch__card {
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    text-decoration: none !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
}
.faq-watch__card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0, 0, 0, .12); }
.faq-watch__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #E0F7FB;
}
.faq-watch__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-watch__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(17, 182, 226, .92);
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-watch__play svg { width: 20px; height: 20px; color: #fff; margin-left: 2px; }
.faq-watch__label { font-size: 15px; font-weight: 600; color: #00121B; line-height: 1.4; }

/* ── Getting-Started hub ── */
.faq-hub__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 40px auto 0;
}
.faq-hub__card {
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    background: #fff;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-hub__card-title { font-size: 24px; font-weight: 600; color: #11B6E2; margin: 0; }
.faq-hub__card-desc { font-size: 15px; font-weight: 500; color: #5B6B73; margin: 0 0 8px; }
.faq-hub__card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 24px;
    text-decoration: none !important;
}
.faq-hub__card-btn svg { width: 24px; height: 24px; }
/* Figma shows BOTH hub-card CTAs as the lime accent — the ghost variant keeps a
   distinct class for semantics but renders identically. */
.faq-hub__card-btn--primary { background: #CEFE05; color: #00121B; }
.faq-hub__card-btn--ghost { background: #CEFE05; color: #00121B; }

/* Full-width (Figma) with a light-cyan section divider above it. */
.faq-checklist { margin: 48px 0 0; padding-top: 40px; border-top: 1px solid #C6EFFC; text-align: left; }
.faq-checklist__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.faq-checklist__title { font-size: 24px; font-weight: 600; color: #00121B; margin: 0; }
.faq-checklist__count { font-size: 15px; font-weight: 600; color: #11B6E2; }
.faq-checklist__subtitle { font-size: 16px; font-weight: 500; color: #5B6B73; margin: 0 0 16px; }
.faq-progress {
    height: 8px;
    border-radius: 6px;
    background: #C6EFFC;
    overflow: hidden;
    margin-bottom: 28px;
}
.faq-progress__bar {
    height: 100%;
    width: 0;
    border-radius: 6px;
    background: #CEFE05;
    transition: width .5s ease;
}
.faq-checklist__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.faq-step {
    position: relative;
    border: 1px solid #D7E3E8;
    border-radius: 18px;
    /* extra right padding reserves the top-right corner for the check circle */
    padding: 24px 56px 24px 24px;
    text-decoration: none !important;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.faq-step:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(17, 182, 226, .12); }
.faq-step.is-done { border-color: #CEFE05; background: #FBFFE9; }
.faq-step__check {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #C5D2D8;   /* empty gray ring until the step is done */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11B6E2;
}
.faq-step__check svg { width: 30px; height: 30px; display: none; }
/* Done → swap the empty ring for the filled cyan check-circle glyph. */
.faq-step.is-done .faq-step__check { border-color: transparent; }
.faq-step.is-done .faq-step__check svg { display: block; }
.faq-step__num { font-size: 13px; font-weight: 600; color: #11B6E2; }
.faq-step__title { font-size: 32px; font-weight: 600; color: #11B6E2; margin: 0; line-height: 1.3; }
.faq-step__desc { font-size: 14px; font-weight: 500; color: #5B6B73; margin: 0; }

/* ── Article page ── */
.faq-article { max-width: 860px; margin: 0 auto; padding: 8px 24px 24px; text-align: left; }
.faq-article__badge {
    display: inline-block;
    background: #CEFE05;
    color: #00121B;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* Category badge on a regular (non-checklist) article — light-cyan pill with a
   cyan outline (Figma), distinct from the lime "Step N of M" checklist badge. */
.faq-article__badge--cat {
    background: #D2F1F8;
    border: 1px solid #11B6E2;
    color: #00121B;
    font-weight: 500;
}
.faq-article__title {
    font-size: 48px;
    font-weight: 600;
    color: #11B6E2;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 10px;
}
.faq-article__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #5B6B73;
    text-align: center;
    margin: 0 0 28px;
}
.faq-article__topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
/* Share row above the article body — right-aligned, level with the first heading. */
.faq-article__bodybar {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 8px;
}
.faq-article__share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: #CEFE05;
    color: #00121B;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: filter .2s;
}
.faq-article__share:hover { filter: brightness(.95); }
.faq-article__share svg { width: 18px; height: 18px; }
/* "What You'll Need" intro card */
.faq-need {
    border: 1px solid #BfE9F4;
    background: #F2FBFD;
    border-radius: 16px;
    padding: 22px 26px;
    margin: 0 0 28px;
}
.faq-need__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #0A7CA0;
    margin: 0 0 12px;
}
.faq-need__title svg { width: 20px; height: 20px; }
.faq-need ul { margin: 0; padding-left: 22px; }
.faq-need li { font-size: 15px; font-weight: 500; color: #00121B; margin-bottom: 6px; }

/* Video facade wrapper (lite-youtube lives inside) */
.faq-video {
    margin: 0 0 32px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}
.faq-video lite-youtube {
    border-radius: 18px;
    max-width: 100%;
    background-color: #00121B;
}

.faq-article__body {
    font-size: 17px;
    font-weight: 500;
    color: #00121B;
    line-height: 1.7;
}
.faq-article__body h2 { font-size: 24px; font-weight: 600; color: #00121B; margin: 32px 0 14px; }
.faq-article__body h3 { font-size: 20px; font-weight: 600; color: #00121B; margin: 26px 0 12px; }
.faq-article__body p { margin: 0 0 16px; }
.faq-article__body a { color: #11B6E2; text-decoration: none; }
.faq-article__body a:hover { text-decoration: underline; }
.faq-article__body img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }
.faq-article__body ul, .faq-article__body ol { margin: 0 0 16px; padding-left: 24px; }
.faq-article__body li { margin-bottom: 8px; }

/* "You're All Set!" next-step card (checklist articles) */
.faq-allset {
    margin: 40px 0 0;
    border: 1px solid #D8F0A8;
    background: #F7FFE6;
    border-radius: 18px;
    padding: 28px 30px;
    text-align: center;
}
.faq-allset__title { font-size: 20px; font-weight: 600; color: #00121B; margin: 0 0 6px; }
.faq-allset__desc { font-size: 15px; font-weight: 500; color: #5B6B73; margin: 0 0 20px; }
.faq-allset__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.faq-allset__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 26px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}
.faq-allset__btn--primary { background: #11B6E2; color: #fff; }
.faq-allset__btn--ghost { background: #fff; border: 2px solid #11B6E2; color: #11B6E2; }

/* "Other articles in this section" (non-checklist articles) */
.faq-siblings { margin: 40px 0 0; text-align: left; }
.faq-siblings__title { font-size: 20px; font-weight: 600; color: #11B6E2; margin: 0 0 14px; }
.faq-siblings__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 4px;
    border-bottom: 1px solid #E4E9EC;
    color: #00121B;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.faq-siblings__item:hover { color: #11B6E2; }
.faq-siblings__item svg { width: 18px; height: 18px; flex-shrink: 0; }

.faq-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 32px 0 0;
    color: #11B6E2;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}
.faq-back:hover { text-decoration: underline; }
.faq-back svg { width: 18px; height: 18px; }

/* ── Tablet / small desktop ── */
@media (max-width: 1024px) {
    .faq-cta-banner { margin: 36px 40px 8px; padding: 40px 32px; }
    .faq-cta-banner__title { font-size: 30px; }
    .faq-cta-banner__subtitle { font-size: 20px; }
    .faq-breadcrumb { padding: 22px 40px 0; }
    .faq-page-head { padding: 16px 40px 8px; }
    .faq-page-head__title { font-size: 48px; }
    .faq-topfeatures { margin: 32px 0 0; padding: 36px 40px 44px; }
    .faq-watch { padding: 40px 40px 48px; }
    .faq-watch__grid { grid-template-columns: repeat(2, 1fr); }
    .faq-hub__cards { grid-template-columns: 1fr; }
    .faq-hub__card-title { font-size: 22px; }
    .faq-hub__card-btn { font-size: 20px; }
    .faq-step__title { font-size: 26px; }
    .faq-group__heading { font-size: 28px; }
    .faq-checklist__grid { grid-template-columns: repeat(2, 1fr); }
    .faq-article__title { font-size: 40px; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .faq-cta-banner { margin: 28px 20px 4px; padding: 32px 20px; border-radius: 18px; }
    .faq-cta-banner__title { font-size: 26px; }
    .faq-cta-banner__subtitle { font-size: 18px; }
    .faq-cta-banner__btn { font-size: 15px; padding: 10px 24px; }
    .faq-breadcrumb { padding: 18px 20px 0; font-size: 13px; }
    .faq-page-head { padding: 12px 20px 8px; }
    .faq-page-head__title { font-size: 38px; }
    .faq-page-head__subtitle { font-size: 15px; }
    .faq-topfeatures { margin: 24px 0 0; padding: 28px 20px 36px; }
    .faq-topfeatures__items { gap: 16px; }
    .faq-topfeatures__item { width: 104px; }
    .faq-topfeatures__icon { width: 96px; height: 96px; }
    .faq-topfeatures__icon svg { width: 46px; height: 46px; }
    .faq-group__heading { font-size: 24px; }
    .faq-step__title { font-size: 22px; }
    .faq-hub__card-title { font-size: 20px; }
    .faq-hub__card-btn { font-size: 18px; }
    .faq-watch { padding: 32px 20px 40px; }
    .faq-watch__title { font-size: 22px; }
    .faq-watch__subtitle { font-size: 15px; margin-bottom: 24px; }
    .faq-watch__grid { grid-template-columns: 1fr; gap: 16px; }
    .faq-hub__cards { gap: 16px; margin-top: 28px; }
    .faq-checklist { margin-top: 36px; }
    .faq-checklist__grid { grid-template-columns: 1fr; gap: 16px; }
    .faq-article { padding: 4px 4px 16px; }
    .faq-article__title { font-size: 30px; }
    .faq-article__subtitle { font-size: 15px; }
    .faq-article__body { font-size: 15px; }
    .faq-allset__actions { flex-direction: column; }
    .faq-allset__btn { width: 100%; justify-content: center; }
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .faq-reveal,
    .lp-fade-in,
    .faq-progress__bar,
    .faq-item__body,
    .faq-cat-card,
    .faq-guide-card,
    .faq-watch__card,
    .faq-step {
        transition: none !important;
    }
    .faq-reveal { opacity: 1; transform: none; }
}
