/* ── FAQ ITEMS ── */
.faq-item { background: #fff; border: 1px solid rgba(11,27,43,0.1); margin-bottom: 1rem; }
.faq-question { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.8rem; cursor: pointer; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--l-teal); white-space: nowrap; padding-top: 0.15rem; min-width: 50px; }
.faq-q-text { flex: 1; font-size: 1rem; font-weight: 600; color: var(--l-navy); line-height: 1.4; }
.faq-arrow { font-size: 1.1rem; color: var(--l-teal); transition: transform 0.25s; flex-shrink: 0; margin-top: 0.1rem; }
details[open] .faq-arrow { transform: rotate(180deg); }
details[open] .faq-item { border-color: var(--l-teal); }

.faq-answer { padding: 0 1.8rem 1.6rem 1.8rem; border-top: 1px solid rgba(11,27,43,0.07); padding-top: 1.2rem; }
.faq-answer p { font-size: 0.92rem; line-height: 1.85; color: #3a4f62; margin-bottom: 0.9rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0.5rem 0 0.9rem 1.4rem; }
.faq-answer ul li { font-size: 0.92rem; line-height: 1.8; color: #3a4f62; margin-bottom: 0.35rem; }
.faq-answer strong { color: var(--l-navy); font-weight: 600; }

.faq-steps { counter-reset: steps; margin: 0.8rem 0 1rem; list-style: none; }
.faq-steps li { counter-increment: steps; display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.92rem; line-height: 1.8; color: #3a4f62; margin-bottom: 0.7rem; }
.faq-steps li::before { content: counter(steps); display: inline-flex; align-items: center; justify-content: center; width: 1.6rem; height: 1.6rem; flex-shrink: 0; background: var(--l-teal); color: #fff; font-size: 0.72rem; font-weight: 700; border-radius: 50%; margin-top: 0.1rem; }

/* ── CONTACT CARD ── */
.contact-card { background: var(--l-navy); padding: 2.5rem 2.5rem; margin-top: 3rem; text-align: center; }
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--l-warm-white); margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.88rem; color: rgba(253,250,246,0.6); line-height: 1.7; margin-bottom: 1.2rem; }
.contact-channels { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.channel-item { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.25); padding: 0.9rem 1.4rem; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.channel-item:hover { border-color: var(--l-gold); background: rgba(201,168,76,0.06); }
.channel-ico { font-size: 1.3rem; }
.channel-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(253,250,246,0.45); margin-bottom: 0.1rem; }
.channel-val { font-size: 0.95rem; font-weight: 600; color: var(--l-warm-white); }

.trust-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.8rem; }
.trust-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253,250,246,0.35); }
.trust-tag::before { content: '·'; margin-right: 0.4rem; color: var(--l-gold); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .faq-question { padding: 1.2rem 1.2rem; }
  .faq-answer { padding: 0 1.2rem 1.4rem; padding-top: 1rem; }
}
