/* faq page */
/* ── FAQ Page ── */
.faq-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* Hero */
.faq-hero {
    text-align: center;
    margin-bottom: 56px;
}
.faq-hero h1 {
    font-size: 40px;
    font-weight: normal;
    color: #111;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}
.faq-hero p {
    font-size: 17px;
    color: #000;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

/* Search bar */
.faq-search-wrap {
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}
.faq-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 14px;
    pointer-events: none;
}
.faq-search-input {
    width: 100%;
    height: 44px;
    padding: 0 16px 0 40px;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    background: #f5f5f5;
    border: 1.5px solid transparent;
    border-radius: 999px;
    outline: none;
    transition: background .15s, border-color .15s, box-shadow .15s;
}
.faq-search-input::placeholder { color: #555; }
.faq-search-input:focus {
    background: #fff;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}

/* Category nav pills */
.faq-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    justify-content: center;
}
.faq-cat-btn {
    padding: 7px 16px;
    font-size: 13px;
    font-weight: normal;
    color: #000;
    background: #f5f5f5;
    border: 1.5px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
    white-space: nowrap;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
    background: #ecfdf5;
    border-color: #059669;
    color: #059669;
}

/* Section */
.faq-section {
    margin-bottom: 52px;
}
.faq-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}
.faq-section-icon { font-size: 22px; }
.faq-section-header h2 {
    font-size: 18px;
    font-weight: normal;
    color: #111;
    margin: 0;
}
.faq-section-count {
    margin-left: auto;
    font-size: 12px;
    color: #555;
    font-weight: normal;
}

/* Accordion item */
.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow .15s;
}
.faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.faq-item.open   { border-color: #a7f3d0; box-shadow: 0 2px 12px rgba(5,150,105,.08); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: normal;
    color: #111;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background .12s;
}
.faq-question:hover { background: #fafafa; }
.faq-item.open .faq-question { background: #fff8f7; color: #059669; }

.faq-chevron {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, transform .25s;
}
.faq-chevron i { font-size: 10px; color: #737373; transition: color .15s; }
.faq-item.open .faq-chevron { background: #059669; transform: rotate(180deg); }
.faq-item.open .faq-chevron i { color: #fff; }

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 14.5px;
    color: #000;
    line-height: 1.75;
    background: #fff8f7;
    border-top: 1px solid #a7f3d0;
}
.faq-answer p  { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 8px 0 10px 18px; }
.faq-answer li { margin-bottom: 5px; }
.faq-answer a  { color: #059669; text-decoration: underline; }
.faq-item.open .faq-answer { display: block; }

/* No results */
.faq-no-results { text-align: center; padding: 48px 20px; color: #555; display: none; }
.faq-no-results i { font-size: 32px; margin-bottom: 12px; display: block; }

/* Bottom CTA section */
.faq-bottom {
    margin-top: 72px;
}
.faq-bottom-label {
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #059669;
    margin-bottom: 10px;
}
.faq-bottom h2 {
    font-size: 26px;
    font-weight: normal;
    color: #111;
    letter-spacing: -.3px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.faq-bottom > p {
    font-size: 15px;
    color: #737373;
    margin-bottom: 32px;
}
.faq-action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.faq-action-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .15s, box-shadow .15s, transform .12s;
    background: #fff;
}
.faq-action-card:hover {
    border-color: #059669;
    box-shadow: 0 4px 18px rgba(5,150,105,.12);
    transform: translateY(-2px);
}
.faq-action-card.primary {
    background: #059669;
    border-color: #059669;
}
.faq-action-card.primary:hover {
    background: #047857;
    border-color: #047857;
    box-shadow: 0 4px 18px rgba(5,150,105,.35);
}
.faq-action-icon {
    font-size: 26px;
    line-height: 1;
}
.faq-action-card h3 {
    font-size: 16px;
    font-weight: normal;
    color: #111;
    margin: 0;
}
.faq-action-card p {
    font-size: 13.5px;
    color: #737373;
    line-height: 1.55;
    margin: 0;
}
.faq-action-card.primary h3,
.faq-action-card.primary p {
    color: #fff;
}
.faq-action-card.primary p { color: rgba(255,255,255,.8); }
.faq-action-arrow {
    font-size: 13px;
    color: #059669;
    font-weight: normal;
    margin-top: auto;
    padding-top: 6px;
}
.faq-action-card.primary .faq-action-arrow { color: rgba(255,255,255,.9); }

@media (max-width: 768px) {
    .faq-wrap { padding: 40px 18px 60px; }
    .faq-hero h1 { font-size: 28px; }
    .faq-question { font-size: 14px; padding: 15px 16px; }
    .faq-answer { padding: 0 16px 16px; }
    .faq-action-cards { grid-template-columns: 1fr; }
}
