/* inovcom.ru — FAQ accordion. Extracted from etalon, de-demo'd.
   Enqueue once via wp_enqueue_style only on pages that have FAQ data. */
.ino-faq-section {
    padding: 3rem 0 3.5rem;
    background-color: #f5f6f8;
}
.ino-faq {
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
    color: #3a3c3e;
}
.ino-faq__header { margin: 0 0 2rem; }
.ino-faq__label { display: none; }
.ino-faq__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: #1a1c1e;
    letter-spacing: -.01em;
}
.ino-faq__list { border-top: 1px solid rgba(0,0,0,.12); }
.ino-faq__item {
    border-bottom: 1px solid rgba(0,0,0,.12);
    transition: background-color .2s ease;
}
.ino-faq__item.is-open { background-color: #fff; }
.ino-faq__trigger {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    width: 100%;
    padding: 1.1rem 1rem 1.1rem .75rem;
    margin: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: #3a3c3e;
    transition: color .18s ease;
}
.ino-faq__trigger:hover { color: #1a1c1e; }
.ino-faq__trigger:focus-visible { outline: 2px solid #2563eb; outline-offset: 2px; }
.ino-faq__n { display: none; }
.ino-faq__q {
    flex: 1 1 auto;
    font-weight: 500;
    font-size: 1.025rem;
    line-height: 1.45;
    color: #3a3c3e;
    transition: color .18s ease;
}
.ino-faq__item.is-open .ino-faq__q { color: #1a1c1e; font-weight: 600; }
.ino-faq__trigger:hover .ino-faq__q { color: #1a1c1e; }
.ino-faq__chevron {
    flex: 0 0 auto;
    width: 1.3rem;
    height: 1.3rem;
    margin-top: .2rem;
    stroke: #5a5e63;
    stroke-width: 2;
    transition: transform .22s ease, stroke .18s ease;
}
.ino-faq__item.is-open .ino-faq__chevron { transform: rotate(180deg); stroke: #2c5282; }
.ino-faq__trigger:hover .ino-faq__chevron { stroke: #1a1c1e; }
.ino-faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.ino-faq__item.is-open .ino-faq__body { grid-template-rows: 1fr; }
.ino-faq__body-inner { overflow: hidden; min-height: 0; }
.ino-faq__answer {
    padding: .1rem 1rem 1.25rem .75rem;
    font-size: .95rem;
    line-height: 1.7;
    color: #4a4e54;
}
.ino-faq__answer p { margin: 0 0 .6rem; }
.ino-faq__answer p:last-child { margin-bottom: 0; }
/* No-JS fallback: keep all answers open. Mirror with <noscript> in template. */
.no-js .ino-faq__body { grid-template-rows: 1fr !important; }
.no-js .ino-faq__chevron { display: none; }
