/* Homepage FAQ — below blog & news */
#home .itm-home-faq {
    float: none !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 calc(50% - 50vw) !important;
    padding: clamp(48px, 6vw, 72px) 16px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-sizing: border-box;
}

#home .itm-home-faq__shell {
    width: min(100%, 880px);
    margin: 0 auto;
}

#home .itm-home-faq__head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 36px);
}

#home .itm-home-faq__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

#home .itm-home-faq__head h2 {
    margin: 0 0 10px !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
}

#home .itm-home-faq__head p {
    margin: 0 auto !important;
    max-width: 42rem;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #64748b !important;
}

#home .itm-home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#home .itm-home-faq__item {
    background: #ffffff;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(20, 27, 45, 0.05);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#home .itm-home-faq__item[open] {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.1);
}

#home .itm-home-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

#home .itm-home-faq__item summary::-webkit-details-marker {
    display: none;
}

#home .itm-home-faq__q {
    flex: 1;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
    color: #0f172a;
    text-align: left;
}

#home .itm-home-faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0369a1;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#home .itm-home-faq__item[open] .itm-home-faq__icon {
    transform: rotate(180deg);
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
}

#home .itm-home-faq__a {
    padding: 0 20px 18px;
}

#home .itm-home-faq__a p {
    margin: 0 !important;
    border-top: 1px solid #eef2f7;
    padding-top: 14px;
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    text-align: left !important;
}

@media (max-width: 640px) {
    #home .itm-home-faq__item summary {
        padding: 16px;
    }

    #home .itm-home-faq__a {
        padding: 0 16px 16px;
    }

    #home .itm-home-faq__q {
        font-size: 0.92rem;
    }
}

html.itm-dark-mode #home .itm-home-faq {
    background: linear-gradient(180deg, #0c1222 0%, #111827 100%);
}

html.itm-dark-mode #home .itm-home-faq__label {
    background: rgba(56, 189, 248, 0.12);
    color: #7dd3fc;
}

html.itm-dark-mode #home .itm-home-faq__head h2 {
    color: #f1f5f9 !important;
}

html.itm-dark-mode #home .itm-home-faq__head p {
    color: #94a3b8 !important;
}

html.itm-dark-mode #home .itm-home-faq__item {
    background: #151d35;
    border-color: #334155;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

html.itm-dark-mode #home .itm-home-faq__item[open] {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

html.itm-dark-mode #home .itm-home-faq__q {
    color: #f1f5f9;
}

html.itm-dark-mode #home .itm-home-faq__icon {
    background: #1e293b;
    color: #7dd3fc;
}

html.itm-dark-mode #home .itm-home-faq__item[open] .itm-home-faq__icon {
    background: rgba(56, 189, 248, 0.14);
    color: #38bdf8;
}

html.itm-dark-mode #home .itm-home-faq__a p {
    border-top-color: #334155;
    color: #cbd5e1 !important;
}
