﻿:root {
      --y:  #ffca05;
      --yd: #d4a900;
      --k:  #1a1a1a;
      --footer-bg: #080808;
      --ease: all .3s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 96px; }
    @media (max-width: 991px) { html { scroll-padding-top: 100px; } }

    body {
      font-family: 'Outfit', system-ui, sans-serif;
      color: var(--k);
      background: #fff;
      overflow-x: hidden;
    }

    .py-section { padding: 96px 0; }
    @media (max-width: 768px) { .py-section { padding: 64px 0; } }

    .text-y  { color: var(--y)  !important; }
    .text-yd { color: var(--yd) !important; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--yd);
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .eyebrow::before { content:''; display:inline-block; width:22px; height:2px; background:var(--y); border-radius:1px; }
    .eyebrow-center { justify-content: center; }

    .sec-title {
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
    }

    /* ── NAVBAR ── */
    .hm-nav {
      background: rgba(18,18,18,.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 14px 0;
      transition: padding .3s, box-shadow .3s;
      z-index: 1050;
    }
    .hm-nav.scrolled { padding: 9px 0; box-shadow: 0 4px 28px rgba(0,0,0,.4); }
    .nav-logo { height: 64px; }
    .hm-nav .nav-link {
      color: rgba(255,255,255,.68);
      font-size: 1rem;
      font-weight: 500;
      padding: 7px 14px !important;
      border-radius: 8px;
      transition: var(--ease);
    }
    .hm-nav .nav-link:hover { color: var(--y); background: rgba(255,202,5,.07); }
    .btn-nav-reg {
      background: var(--y);
      color: var(--k) !important;
      border-radius: 50px;
      padding: 7px 22px;
      font-size: .84rem;
      font-weight: 700;
      border: none;
      transition: var(--ease);
      text-decoration: none;
    }
    .btn-nav-reg:hover { background: var(--yd); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,202,5,.35); }

    /* ── HERO FAQ ── */
    .faq-hero {
      background: linear-gradient(135deg, #0e0e0e 0%, #1c1c1c 100%);
      padding: 110px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .faq-hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 460px; height: 460px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,202,5,.09) 0%, transparent 70%);
      pointer-events: none;
    }
    .faq-hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,202,5,.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .faq-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,202,5,.13);
      border: 1px solid rgba(255,202,5,.28);
      color: var(--y);
      border-radius: 50px;
      padding: 5px 16px;
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .faq-hero-title {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .faq-hero-sub {
      color: rgba(255,255,255,.55);
      font-size: 1rem;
      line-height: 1.75;
      max-width: 500px;
      margin-bottom: 36px;
    }

    /* ── SEARCH BAR ── */
    .faq-search-wrap { position: relative; max-width: 540px; }
    .faq-search-input {
      width: 100%;
      padding: 15px 20px 15px 52px;
      border-radius: 50px;
      border: 2px solid rgba(255,202,5,.3);
      background: rgba(255,255,255,.07);
      color: #fff;
      font-family: inherit;
      font-size: .95rem;
      outline: none;
      transition: border-color .25s, background .25s, box-shadow .25s;
      backdrop-filter: blur(8px);
    }
    .faq-search-input::placeholder { color: rgba(255,255,255,.38); }
    .faq-search-input:focus {
      border-color: var(--y);
      background: rgba(255,255,255,.1);
      box-shadow: 0 0 0 5px rgba(255,202,5,.12);
    }
    .faq-search-icon {
      position: absolute;
      left: 18px; top: 50%;
      transform: translateY(-50%);
      color: rgba(255,202,5,.7);
      font-size: 1.1rem;
      pointer-events: none;
    }
    .faq-search-clear {
      position: absolute;
      right: 16px; top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,.35);
      font-size: 1rem;
      cursor: pointer;
      background: none; border: none; padding: 0;
      display: none;
      transition: color .2s;
    }
    .faq-search-clear:hover { color: rgba(255,255,255,.7); }
    .faq-search-clear.visible { display: block; }
    .faq-search-hint {
      font-size: .78rem;
      color: rgba(255,255,255,.28);
      margin-top: 10px;
      padding-left: 4px;
    }

    /* ── STATS ROW ── */
    .faq-stat-row {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      margin-top: 40px;
    }
    .faq-stat {
      display: flex; align-items: center; gap: 10px;
    }
    .faq-stat-num {
      font-size: 1.5rem; font-weight: 900; color: var(--y); line-height: 1;
    }
    .faq-stat-lbl {
      font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.3;
    }
    .faq-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); }

    /* ── CATEGORY TABS ── */
    .faq-tabs-section { background: #fff; padding: 52px 0 0; }
    .faq-tabs-wrap {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 52px;
    }
    .faq-tab {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 9px 20px;
      border-radius: 50px;
      border: 1.5px solid #e9ecef;
      background: #fff;
      color: #6c757d;
      font-size: .82rem; font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: var(--ease);
      white-space: nowrap;
    }
    .faq-tab i { font-size: .95rem; }
    .faq-tab:hover { border-color: var(--y); color: var(--yd); background: rgba(255,202,5,.05); }
    .faq-tab.active {
      background: var(--k); border-color: var(--k); color: var(--y);
      box-shadow: 0 4px 16px rgba(0,0,0,.15);
    }
    .faq-tab .tab-count {
      display: inline-flex; align-items: center; justify-content: center;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(0,0,0,.07);
      font-size: .7rem; font-weight: 700;
      line-height: 1;
    }
    .faq-tab.active .tab-count { background: rgba(255,202,5,.2); color: var(--y); }

    /* ── ACCORDION ── */
    .faq-section-label {
      font-size: .7rem; font-weight: 700; color: #adb5bd;
      letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 16px; padding-left: 2px;
    }
    .faq-group { margin-bottom: 48px; }
    .faq-group:last-child { margin-bottom: 0; }

    .faq-item {
      border: 1.5px solid #f0f0f0;
      border-radius: 16px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color .25s, box-shadow .25s;
    }
    .faq-item:hover { border-color: #e0e0e0; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
    .faq-item.open {
      border-color: rgba(255,202,5,.4);
      box-shadow: 0 4px 24px rgba(255,202,5,.1);
    }

    .faq-q {
      display: flex; align-items: center; gap: 14px;
      padding: 18px 22px;
      cursor: pointer;
      background: #fff;
      transition: background .2s;
      user-select: none;
    }
    .faq-item.open .faq-q { background: #fffdf0; }

    .faq-q-icon {
      width: 36px; height: 36px; min-width: 36px;
      border-radius: 10px;
      background: rgba(255,202,5,.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--yd); font-size: .95rem;
      transition: background .25s;
    }
    .faq-item.open .faq-q-icon { background: rgba(255,202,5,.22); }

    .faq-q-text {
      flex: 1;
      font-size: .95rem; font-weight: 600; color: var(--k);
      line-height: 1.4;
    }

    .faq-chevron {
      font-size: 1rem; color: #adb5bd;
      transition: transform .3s cubic-bezier(.4,0,.2,1), color .2s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--yd); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .42s cubic-bezier(.4,0,.2,1), padding .3s;
    }
    .faq-a-inner {
      padding: 0 22px 20px 72px;
      font-size: .9rem; line-height: 1.85; color: #555;
    }
    @media (max-width: 576px) {
      .faq-a-inner { padding: 0 16px 18px 16px; }
      .faq-q { padding: 16px; gap: 12px; }
    }
    .faq-a-inner a { color: var(--yd); font-weight: 600; text-decoration: none; }
    .faq-a-inner a:hover { text-decoration: underline; }
    .faq-a-inner ul { padding-left: 18px; margin: 8px 0 0; }
    .faq-a-inner ul li { margin-bottom: 6px; }
    .faq-a-inner .a-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,202,5,.1); border: 1px solid rgba(255,202,5,.25);
      border-radius: 8px; padding: 4px 12px;
      font-size: .78rem; font-weight: 700; color: var(--yd);
      margin-top: 12px;
      text-decoration: none;
    }
    .faq-a-inner .a-badge:hover { background: rgba(255,202,5,.2); text-decoration: none; }
    .faq-item.open .faq-a { max-height: 600px; }

    /* ── NO RESULTS ── */
    .faq-no-results {
      text-align: center;
      padding: 64px 0;
      display: none;
    }
    .faq-no-results i { font-size: 2.5rem; color: #dee2e6; margin-bottom: 16px; }
    .faq-no-results p { color: #adb5bd; font-size: .95rem; }
    .faq-no-results strong { color: var(--yd); }

    /* ── TUTORIALS SECTION ── */
    .tutorials-section {
      background: var(--k);
      padding: 80px 0;
    }
    .tutorial-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 18px;
      padding: 24px 22px;
      display: flex; gap: 16px; align-items: flex-start;
      text-decoration: none;
      transition: var(--ease);
      height: 100%;
    }
    .tutorial-card:hover {
      background: rgba(255,202,5,.08);
      border-color: rgba(255,202,5,.25);
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0,0,0,.3);
    }
    .tutorial-thumb {
      width: 52px; height: 52px; min-width: 52px;
      border-radius: 14px;
      background: rgba(255,202,5,.13);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--y);
      transition: background .2s;
    }
    .tutorial-card:hover .tutorial-thumb { background: rgba(255,202,5,.22); }
    .tutorial-title {
      font-size: .88rem; font-weight: 700; color: #fff;
      margin-bottom: 4px; line-height: 1.35;
    }
    .tutorial-meta {
      font-size: .75rem; color: rgba(255,255,255,.38);
      display: flex; align-items: center; gap: 5px;
    }

    /* ── SUPPORT CTA ── */
    .support-cta {
      background: #f8f9fa;
      padding: 72px 0;
    }
    .support-card {
      background: #fff;
      border-radius: 24px;
      padding: 48px 40px;
      text-align: center;
      box-shadow: 0 4px 40px rgba(0,0,0,.07);
      border: 1px solid #f0f0f0;
    }
    .support-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,202,5,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--yd);
      margin: 0 auto 20px;
    }
    .support-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
    .support-sub { color: #6c757d; font-size: .9rem; line-height: 1.7; max-width: 380px; margin: 0 auto 28px; }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 9px;
      background: #25d366; color: #fff;
      border: none; border-radius: 50px;
      padding: 13px 28px; font-size: .93rem; font-weight: 700;
      text-decoration: none; font-family: inherit;
      transition: var(--ease);
    }
    .btn-wa:hover { background: #1ebe5e; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
    .btn-email {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--k); color: var(--y);
      border: none; border-radius: 50px;
      padding: 13px 28px; font-size: .93rem; font-weight: 700;
      text-decoration: none; font-family: inherit;
      transition: var(--ease);
    }
    .btn-email:hover { background: #111; color: var(--y); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

    /* ── FOOTER ── */
    .site-footer { background: var(--footer-bg); color: rgba(255,255,255,.5); padding: 72px 0 0; }
    .footer-logo { height: 32px; filter: brightness(0) invert(1); opacity: .8; }
    .footer-desc { font-size: .81rem; line-height: 1.75; color: rgba(255,255,255,.4); margin-top: 16px; max-width: 270px; }
    .footer-col-title { color: rgba(255,255,255,.82); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.46); font-size: .84rem; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--y); }
    .footer-social { display: flex; gap: 10px; margin-top: 18px; }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.55); font-size: .95rem;
      text-decoration: none; transition: var(--ease);
    }
    .footer-social a:hover { background: var(--y); border-color: var(--y); color: var(--k); transform: translateY(-2px); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 20px 0; margin-top: 56px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom p, .footer-bottom a { font-size: .76rem; color: rgba(255,255,255,.28); text-decoration: none; margin: 0; }
    .footer-bottom a:hover { color: var(--y); }
    .text-wa { color: #25d366; }
    .footer-promo-box { background: rgba(255,202,5,.08); border: 1px solid rgba(255,202,5,.15); border-radius: 14px; padding: 14px 16px; }
    .footer-promo-title { font-size: .72rem; color: rgba(255,202,5,.7); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
    .footer-promo-text { font-size: .82rem; color: rgba(255,255,255,.55); }

    /* ── FAB + BTT ── */
    .fab-wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 9999;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.45);
      font-size: 1.7rem; color: #fff; text-decoration: none;
      transition: var(--ease);
    }
    .fab-wa:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 32px rgba(37,211,102,.6); }
    #btt {
      position: fixed; bottom: 100px; right: 28px; z-index: 9999;
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(18,18,18,.88);
      border: 1px solid rgba(255,255,255,.1);
      display: none; align-items: center; justify-content: center;
      color: #fff; font-size: .95rem; cursor: pointer;
      backdrop-filter: blur(8px); text-decoration: none; transition: var(--ease);
    }
    #btt.show { display: flex; }
    #btt:hover { background: var(--y); color: var(--k); border-color: var(--y); }

    /* ── HIGHLIGHT SEARCH MATCH ── */
    mark.faq-hl { background: rgba(255,202,5,.35); border-radius: 3px; padding: 0 2px; color: inherit; }

    /* ── HIDDEN ITEMS ── */
    .faq-item.filtered-out { display: none; }
    .faq-group.group-empty { display: none; }
    .faq-group-header.group-empty-label { display: none; }
