/* SSS — Premium minimal */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #fff; color: #222; -webkit-font-smoothing: antialiased; }
.faq-page { overflow-x: hidden; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Page Header */
.page-header { padding: 72px 24px 56px; max-width: 1120px; margin: 0 auto; border-bottom: 1px solid #EBEBEB; }
.page-header-label { font-size: 13px; font-weight: 600; color: #717171; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.page-header h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #222; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.page-header p { font-size: 17px; color: #484848; line-height: 1.7; max-width: 560px; }

/* Search */
.faq-search-wrap { padding: 32px 0; border-bottom: 1px solid #EBEBEB; }
.faq-search-inner { max-width: 560px; position: relative; }
.faq-search-inner i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 16px; color: #717171; pointer-events: none; }
.faq-search-inner input { width: 100%; padding: 14px 16px 14px 44px; border: 1px solid #EBEBEB; border-radius: 8px; font-size: 15px; color: #222; background: #F7F7F7; outline: none; transition: all .2s; }
.faq-search-inner input::placeholder { color: #717171; }
.faq-search-inner input:focus { background: #fff; border-color: #222; box-shadow: 0 0 0 3px rgba(34,34,34,.06); }

/* Category Pills */
.quick-categories { padding: 32px 0; border-bottom: 1px solid #EBEBEB; }
.categories-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.category-card { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: #F7F7F7; border: 1px solid transparent; border-radius: 100px; cursor: pointer; transition: all .2s; text-decoration: none; }
.category-card:hover { background: #fff; border-color: #222; }
.category-card.active { background: #222; border-color: #222; }
.category-icon { width: 28px; height: 28px; border-radius: 50%; background: #EBEBEB; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.category-card.active .category-icon { background: rgba(255,255,255,.15); }
.category-icon i { font-size: 13px; color: #484848; }
.category-card.active .category-icon i { color: #fff; }
.category-card h3 { font-size: 14px; font-weight: 600; color: #222; margin: 0; }
.category-card.active h3 { color: #fff; }
.category-card p { font-size: 12px; color: #717171; margin: 0; }
.category-card.active p { color: rgba(255,255,255,.7); }

/* FAQ Content */
.faq-content { padding: 64px 0 96px; }
.faq-category { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid #EBEBEB; }
.faq-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.category-icon-large { width: 44px; height: 44px; border-radius: 50%; background: #F7F7F7; border: 1px solid #EBEBEB; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.category-icon-large i { font-size: 18px; color: #484848; }
.category-header h2 { font-size: 22px; font-weight: 700; color: #222; margin-bottom: 2px; letter-spacing: -.3px; }
.category-header p { font-size: 14px; color: #717171; margin: 0; }

/* FAQ Accordion — minimal, no heavy borders */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #EBEBEB; }
.faq-item:first-child { border-top: 1px solid #EBEBEB; }

.faq-question { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 24px; }
.faq-question h3 { font-size: 16px; font-weight: 600; color: #222; margin: 0; line-height: 1.4; flex: 1; }
.faq-item.active .faq-question h3 { color: var(--color-primary, #222); }

/* SVG arrow icon */
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.faq-icon svg { width: 16px; height: 16px; stroke: #717171; transition: transform .3s ease; }
.faq-item.active .faq-icon svg { transform: rotate(180deg); stroke: var(--color-primary, #222); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.active .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 0 0 24px; }
.faq-answer > p, .faq-answer > ul, .faq-answer > ol { padding-bottom: 24px; }
.faq-answer p { font-size: 15px; color: #484848; line-height: 1.8; margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { padding-left: 20px; margin: 12px 0; }
.faq-answer li { font-size: 15px; color: #484848; line-height: 1.7; margin-bottom: 6px; }

/* Contact CTA */
.contact-cta { padding: 64px 0; border-top: 1px solid #EBEBEB; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: 24px; font-weight: 700; color: #222; letter-spacing: -.3px; margin-bottom: 8px; }
.cta-text p { font-size: 15px; color: #717171; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all .2s; border: 1px solid transparent; }
.btn-primary { background: #222; color: #fff; border-color: #222; }
.btn-primary:hover { background: #111; border-color: #111; }
.btn-outline { background: #fff; color: #222; border-color: #EBEBEB; }
.btn-outline:hover { border-color: #222; }

/* No Results */
.no-results { text-align: center; padding: 64px 24px; color: #717171; }
.no-results i { font-size: 40px; color: #EBEBEB; margin-bottom: 16px; display: block; }
.no-results h3 { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 8px; }
.no-results p { font-size: 15px; }

/* Search Highlight */
.highlight { background: rgba(255,184,0,.25); padding: 1px 3px; border-radius: 3px; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .page-header { padding: 40px 24px 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .category-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .faq-question h3 { font-size: 15px; }
}
