/* FAQ section homepage */
.section-faq {
 padding-block: clamp(3rem, 8vw, 5rem);
}

.faq-grid {
 max-width: 720px;
 margin: 2rem auto 0;
 display: flex;
 flex-direction: column;
 gap: 0.65rem;
}

.faq-item {
 border: 1px solid var(--border);
 border-radius: var(--r);
 background: var(--surf);
 overflow: hidden;
 transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.faq-item[open] {
 border-color: var(--border-h);
 box-shadow: 0 4px 24px oklch(0% 0 0 / 0.25);
}

.faq-item summary {
 list-style: none;
 cursor: pointer;
 padding: 1rem 1.15rem;
 font-weight: 700;
 font-size: 1.02rem;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 min-height: 48px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
 content: "+";
 flex-shrink: 0;
 width: 1.75rem;
 height: 1.75rem;
 display: grid;
 place-items: center;
 border-radius: var(--r-sm);
 background: var(--cyan-dim);
 color: var(--cyan);
 font-size: 1.1rem;
 font-weight: 800;
 transition: transform var(--dur) var(--ease);
}

.faq-item[open] summary::after {
 content: "−";
 transform: rotate(180deg);
}

.faq-body {
 padding: 0 1.15rem 1rem;
}

.faq-body-inner p {
 margin: 0;
 color: var(--muted);
 font-size: 0.98rem;
 line-height: 1.65;
}

.faq-cta {
 text-align: center;
 margin-top: 2rem;
}

.faq-cta a {
 color: var(--cyan);
 font-weight: 700;
 text-decoration: underline;
 text-underline-offset: 3px;
}
