 :root {
     --red: #e53935;
     --black: #0d0d0d;
     --white: #ffffff;
     --gray: #f4f5f7;
     --border: #e5e7eb;
     --text-muted: #6b7280;
 }

 body {
     font-family: 'DM Sans', sans-serif;
     background: var(--gray);
     color: var(--black);
 }

 /* HERO */
 .hero {
     background: var(--black);
     padding: 80px 40px 50px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: 'FAQ';
     position: absolute;
     font-family: 'Bebas Neue', sans-serif;
     font-size: 260px;
     color: rgba(255, 255, 255, 0.03);
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     white-space: nowrap;
     pointer-events: none;
 }

 .hero-tag {
     display: inline-block;
     background: var(--red);
     color: #fff;
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 3px;
     text-transform: uppercase;
     padding: 4px 14px;
     border-radius: 2px;
     margin-bottom: 20px;
 }

 .hero h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(52px, 8vw, 90px);
     color: var(--white);
     line-height: 1;
     letter-spacing: 2px;
 }

 .hero h1 span {
     color: var(--red);
 }

 .hero p {
     color: rgba(255, 255, 255, 0.5);
     font-size: 15px;
     margin-top: 14px;
     max-width: 440px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.7;
 }

 /* SEARCH */
 .search-wrap {
     max-width: 560px;
     margin: 32px auto 0;
     position: relative;
 }

 .search-wrap input {
     width: 100%;
     padding: 14px 20px 14px 48px;
     border-radius: 10px;
     border: none;
     font-family: 'DM Sans', sans-serif;
     font-size: 15px;
     outline: none;
     background: rgba(255, 255, 255, 0.08);
     color: #fff;
     border: 1.5px solid rgba(255, 255, 255, 0.1);
     transition: border-color 0.2s, background 0.2s;
 }

 .search-wrap input::placeholder {
     color: rgba(255, 255, 255, 0.3);
 }

 .search-wrap input:focus {
     background: rgba(255, 255, 255, 0.13);
     border-color: rgba(255, 255, 255, 0.25);
 }

 .search-icon {
     position: absolute;
     left: 16px;
     top: 50%;
     transform: translateY(-50%);
     width: 18px;
     height: 18px;
     stroke: rgba(255, 255, 255, 0.35);
     fill: none;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
     pointer-events: none;
 }

 /* MAIN */
 .main {
     max-width: 1100px;
     margin: 0 auto;
     padding: 60px 24px;
     display: grid;
     grid-template-columns: 220px 1fr;
     gap: 40px;
     align-items: start;
 }

 @media (max-width: 768px) {
     .main {
         grid-template-columns: 1fr;
     }
 }

 /* CATEGORY NAV */
 .cat-nav {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 20px;
     position: sticky;
     top: 24px;
 }

 .cat-nav h3 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 17px;
     letter-spacing: 1px;
     margin-bottom: 14px;
     padding-bottom: 10px;
     border-bottom: 2px solid var(--red);
     display: inline-block;
 }

 .cat-btn {
     display: flex;
     align-items: center;
     gap: 10px;
     width: 100%;
     background: none;
     border: none;
     padding: 9px 10px;
     border-radius: 8px;
     cursor: pointer;
     font-family: 'DM Sans', sans-serif;
     font-size: 13px;
     font-weight: 500;
     color: var(--text-muted);
     text-align: left;
     transition: background 0.15s, color 0.15s;
     margin-bottom: 2px;
 }

 .cat-btn:hover {
     background: var(--gray);
     color: var(--black);
 }

 .cat-btn.active {
     background: var(--black);
     color: var(--white);
 }

 .cat-btn .cat-icon {
     font-size: 15px;
     flex-shrink: 0;
 }

 .cat-btn .cat-count {
     margin-left: auto;
     font-size: 11px;
     background: rgba(0, 0, 0, 0.08);
     padding: 2px 7px;
     border-radius: 10px;
 }

 .cat-btn.active .cat-count {
     background: rgba(255, 255, 255, 0.15);
 }

 /* FAQ CONTENT */
 .faq-content {
     min-width: 0;
 }

 .no-results {
     text-align: center;
     padding: 60px 20px;
     color: var(--text-muted);
     display: none;
 }

 .no-results svg {
     width: 48px;
     height: 48px;
     margin-bottom: 14px;
     stroke: var(--border);
     fill: none;
     stroke-width: 1.5;
 }

 .no-results p {
     font-size: 15px;
 }

 .faq-section {
     margin-bottom: 44px;
 }

 .faq-section[data-hidden="true"] {
     display: none;
 }

 .section-label {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 16px;
 }

 .section-label .icon {
     font-size: 22px;
 }

 .section-label h2 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 26px;
     letter-spacing: 1px;
 }

 .section-label .count {
     margin-left: auto;
     font-size: 12px;
     color: var(--text-muted);
     background: var(--white);
     border: 1px solid var(--border);
     padding: 3px 10px;
     border-radius: 20px;
 }

 /* ACCORDION */
 .accordion {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .acc-item {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 12px;
     overflow: hidden;
     transition: border-color 0.2s, box-shadow 0.2s;
 }

 .acc-item.open {
     border-color: var(--black);
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
 }

 .acc-item[data-hidden="true"] {
     display: none;
 }

 .acc-trigger {
     width: 100%;
     background: none;
     border: none;
     padding: 18px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     cursor: pointer;
     text-align: left;
     font-family: 'DM Sans', sans-serif;
 }

 .acc-trigger span {
     font-size: 15px;
     font-weight: 600;
     color: var(--black);
     line-height: 1.4;
 }

 .acc-icon {
     width: 28px;
     height: 28px;
     background: var(--gray);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     transition: background 0.2s, transform 0.3s;
 }

 .acc-icon svg {
     width: 14px;
     height: 14px;
     stroke: var(--black);
     fill: none;
     stroke-width: 2.5;
     stroke-linecap: round;
     transition: transform 0.3s;
 }

 .acc-item.open .acc-icon {
     background: var(--black);
 }

 .acc-item.open .acc-icon svg {
     stroke: var(--white);
     transform: rotate(45deg);
 }

 .acc-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease;
 }

 .acc-body-inner {
     padding: 0 20px 20px;
     font-size: 14px;
     color: #374151;
     line-height: 1.8;
     border-top: 1px solid var(--border);
     padding-top: 16px;
 }

 .acc-body-inner a {
     color: var(--red);
     text-decoration: none;
 }

 .acc-body-inner a:hover {
     text-decoration: underline;
 }

 .acc-body-inner ul {
     padding-left: 18px;
     margin-top: 8px;
 }

 .acc-body-inner ul li {
     margin-bottom: 5px;
 }

 .acc-body-inner .note {
     background: #fff8f8;
     border-left: 3px solid var(--red);
     padding: 10px 14px;
     border-radius: 0 6px 6px 0;
     margin-top: 10px;
     font-size: 13px;
 }

 /* STILL NEED HELP */
 .help-card {
     background: var(--black);
     border-radius: 16px;
     padding: 40px;
     text-align: center;
     margin-top: 20px;
 }

 .help-card h3 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 32px;
     color: var(--white);
     letter-spacing: 1px;
     margin-bottom: 8px;
 }

 .help-card h3 span {
     color: var(--red);
 }

 .help-card p {
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
     margin-bottom: 24px;
 }

 .help-btns {
     display: flex;
     gap: 12px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .help-btn {
     padding: 11px 24px;
     border-radius: 8px;
     font-family: 'DM Sans', sans-serif;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .help-btn:hover {
     opacity: 0.85;
 }

 .help-btn-primary {
     background: var(--red);
     color: #fff;
     border: none;
 }

 .help-btn-outline {
     background: transparent;
     color: #fff;
     border: 1.5px solid rgba(255, 255, 255, 0.2);
 }