/* FAQ page — NDA brand canon. Light + dark theme supported via html.agntix-*. */

.faq-page {
    padding: 0 0 120px;
}

.faq-hero {
    padding: 160px 0 70px;
    background: #F5F7F9;
}
html.agntix-dark .faq-hero { background: #0F1113; }

.faq-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E56A2E;
}
.faq-hero__kicker::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E56A2E;
}

.faq-hero__title {
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0 0 20px;
    color: #0F1113;
}
html.agntix-dark .faq-hero__title { color: #FFFFFF; }

.faq-hero__lead {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.65;
    color: #6B7280;
    margin: 0;
}
html.agntix-dark .faq-hero__lead { color: rgba(255,255,255,0.65); }

.faq-section {
    padding: 80px 0 0;
}

.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid #E9EDF1;
}
html.agntix-dark .faq-accordion { border-top-color: rgba(255,255,255,0.08); }

.faq-item {
    border-bottom: 1px solid #E9EDF1;
}
html.agntix-dark .faq-item { border-bottom-color: rgba(255,255,255,0.08); }

.faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 26px 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #0F1113;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}
html.agntix-dark .faq-item__button { color: #FFFFFF; }
.faq-item__button:hover { color: #E56A2E; }

.faq-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #E9EDF1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
html.agntix-dark .faq-item__icon { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
.faq-item__button[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
    background: #E56A2E;
    border-color: #E56A2E;
    color: #FFFFFF;
}

.faq-item__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item__panel.is-open {
    max-height: 1200px; /* enough for any answer; transitions cleanly */
}

.faq-item__panel-inner {
    padding: 0 0 28px;
    max-width: 720px;
}

.faq-item__panel-inner p,
.faq-item__panel-inner li {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
}
html.agntix-dark .faq-item__panel-inner p,
html.agntix-dark .faq-item__panel-inner li { color: rgba(255,255,255,0.72); }

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

.faq-item__panel-inner strong { color: #0F1113; font-weight: 700; }
html.agntix-dark .faq-item__panel-inner strong { color: #FFFFFF; }

.faq-item__panel-inner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.faq-item__panel-inner ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}
.faq-item__panel-inner ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E56A2E;
}

.faq-item__panel-inner a {
    color: #E56A2E;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.faq-item__panel-inner a:hover { color: #0F1113; }
html.agntix-dark .faq-item__panel-inner a:hover { color: #FFFFFF; }

/* CTA block at the bottom of FAQ */
.faq-cta {
    margin: 100px auto 0;
    max-width: 880px;
    padding: 56px 48px;
    border-radius: 28px;
    background: #0F1113;
    color: #FFFFFF;
    text-align: center;
}
html.agntix-dark .faq-cta { background: #1A1B1E; border: 1px solid rgba(255,255,255,0.08); }

.faq-cta__kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E56A2E;
    margin: 0 0 14px;
}

.faq-cta__title {
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 14px;
    color: #FFFFFF;
}

.faq-cta__lead {
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
}

.faq-cta__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.faq-cta__actions .tp-btn-black { min-width: 220px; }

@media (max-width: 720px) {
    .faq-hero { padding: 120px 0 50px; }
    .faq-section { padding: 50px 0 0; }
    .faq-item__button { padding: 22px 0; font-size: 16px; gap: 14px; }
    .faq-cta { padding: 40px 24px; margin-top: 70px; border-radius: 22px; }
}
