/* ═══════════════════════════════════════════════════════════════════════
   Talk-to-Expert — FAQ + intro section (Doc 515 Step 1 support.blade tail).
   Screen 3 (/get-started/why) token parity — dashed separator, no border,
   Screen 3 typography scale (H1 22/26, body 14.5/15.5, muted #475569 ink-2).
   Native <details>/<summary> accordion — zero JS, keyboard/screen-reader ready.

   Palette:
     ink #0F172A · ink-2 #475569 · line #E2E8F0
     primary #2563EB · primary-2 #1D4ED8 · bg-soft-blue #F8FBFF
   ═══════════════════════════════════════════════════════════════════════ */

.mz-tte-faq {
    max-width: 720px;
    margin-inline: auto;
    padding: 24px 16px 32px 16px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0F172A;
}

/* ── Intro block ─────────────────────────────────────────────────────── */
.mz-tte-faq-intro {
    margin-bottom: 24px;
}

.mz-tte-faq-intro-title {
    margin: 0 0 12px;
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    color: #0F172A;
}
@media (min-width: 640px) {
    .mz-tte-faq-intro-title { font-size: 26px; }
}

.mz-tte-faq-intro-p {
    margin: 0 0 12px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.55;
    color: #475569;
}
@media (min-width: 640px) {
    .mz-tte-faq-intro-p { font-size: 15.5px; }
}
.mz-tte-faq-intro-p:last-child {
    margin-bottom: 0;
}

/* ── Section title ("Frequently Asked Questions") ────────────────────── */
.mz-tte-faq-section-title {
    margin: 32px 0 12px;
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #0F172A;
}
@media (min-width: 640px) {
    .mz-tte-faq-section-title { font-size: 20px; }
}

/* ── FAQ list — dashed separator between items, no border ────────────── */
.mz-tte-faq-list {
    display: block;
}

.mz-tte-faq-item {
    border: none;
    border-bottom: 1px dashed #E2E8F0;
    background: transparent;
}
.mz-tte-faq-item:last-child {
    border-bottom: none;
}

/* Kill default disclosure triangle */
.mz-tte-faq-item summary {
    list-style: none;
}
.mz-tte-faq-item summary::-webkit-details-marker { display: none; }
.mz-tte-faq-item summary::marker { display: none; }

/* ── Question (summary) — grid title + chevron ───────────────────────── */
.mz-tte-faq-q {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    transition: background-color 150ms ease;
    -webkit-tap-highlight-color: transparent;
}
.mz-tte-faq-item:hover .mz-tte-faq-q {
    background: #FAFCFF;
}
.mz-tte-faq-item summary:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
    border-radius: 4px;
}

.mz-tte-faq-q-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #0F172A;
}
@media (min-width: 640px) {
    .mz-tte-faq-q-text { font-size: 15.5px; }
}

/* Chevron — Screen 3 verbatim, rotate 90° on open */
.mz-tte-faq-chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #2563EB;
    flex-shrink: 0;
    transition: transform 200ms ease, color 150ms ease;
}
.mz-tte-faq-chev svg { display: block; }
.mz-tte-faq-item[open] .mz-tte-faq-chev {
    transform: rotate(90deg);
    color: #1D4ED8;
}
.mz-tte-faq-item:hover .mz-tte-faq-chev {
    color: #1D4ED8;
}

/* ── Answer body ──────────────────────────────────────────────────────── */
.mz-tte-faq-a {
    padding: 0 0 16px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: #475569;  /* ink-2 — soluk YASAK */
}
@media (min-width: 640px) {
    .mz-tte-faq-a { font-size: 14.5px; }
}

/* Mobile compact — iPhone SE 375px effective */
@media (max-width: 400px) {
    .mz-tte-faq { padding: 20px 16px 24px 16px; }
    .mz-tte-faq-intro-title { font-size: 20px; }
    .mz-tte-faq-intro-p { font-size: 14px; }
    .mz-tte-faq-section-title { font-size: 17px; }
    .mz-tte-faq-q-text { font-size: 14.5px; }
    .mz-tte-faq-a { font-size: 13.5px; }
}
