.section-faq {
    background: #F1F1EF;
    padding: 100px 0 280px;
}

@media (max-width: 768px) {
    /* Generous bottom room — mandatory scroll-snap otherwise yanks you into
       the next section before you've finished reading the last item. */
    .section-faq { padding: 60px 0 280px; }
}

/* ===== ACCORDION ===== */

.faq-list {
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    -webkit-appearance: none;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--black);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 16px;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 800px;
}

.faq-answer-inner {
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--logo-gray);
    margin-bottom: 0;
}

/* Consistent breathing room between any two blocks inside an answer
   (paragraph-to-paragraph, list-to-paragraph, etc) — same gap used
   between the question and the start of its answer. */
.faq-answer-inner > * + * {
    margin-top: 24px;
}

/* ===== SUB-LISTS (Konstrukcija / Iekšējā apdare / Inženierkomunikācijas) ===== */

.faq-sublist {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    /* No margin-top here — let .faq-answer-inner > * + * (same specificity,
       defined earlier) apply its 24px unopposed instead of ties-by-source-
       order silently zeroing it back out. */
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-sublist li {
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e2df;
    color: #444;
    font-size: 0.92rem;
    line-height: 1.5;
}

.faq-sublist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-sublist li strong {
    display: block;
    color: var(--logo-green);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.faq-sublist li em {
    font-style: normal;
    font-weight: 600;
    color: var(--black);
}

/* ===== RELOCATED DATA VISUALS (from the old efficiency info-blocks) —
   no card backgrounds, just spacing/dividers/typography ===== */

.insulation-data-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.data-point {
    padding-left: 22px;
    border-left: 2px solid #ddd;
}

.data-point:first-child {
    padding-left: 0;
    border-left: none;
}

.data-point span { display: block; font-size: 0.7rem; text-transform: uppercase; color: #888; }
.data-point strong { font-size: 1.1rem; color: var(--black); }
