/* ══════════════════════════════════════════════════════
   FAQ OVERLAY — full-screen panel, redesigned on-brand
   ══════════════════════════════════════════════════════ */
#faq-overlay {
  position:fixed; top:74px; left:0; right:0; bottom:0; z-index:9800;
  display:none; flex-direction:column;
  background:var(--dark);
  animation:overlayIn .3s ease;
}
#faq-overlay.open { display:flex; }

/* ── Header ── */
.faq-ov-hdr {
  display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 5%;
  background:rgba(2,11,24,.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(24px);
  flex-shrink:0;
  position:sticky; top:0; z-index:10;
}
.faq-ov-logo { display:flex; align-items:center; gap:12px; }
.faq-ov-lmark {
  width:38px; height:38px; border-radius:10px;
  background:linear-gradient(135deg,var(--teal),var(--teal-2));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--fh); font-weight:800; font-size:13px; color:var(--dark);
  position:relative; overflow:hidden; flex-shrink:0;
}
.faq-ov-lmark::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,transparent 40%,rgba(255,255,255,.2)); }
.faq-ov-title {
  font-family:var(--fh); font-size:.95rem; font-weight:700;
  background:linear-gradient(135deg,var(--white),var(--teal));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  line-height:1.2; letter-spacing:.02em;
}
.faq-ov-sub { font-size:.58rem; color:var(--muted); letter-spacing:.15em; text-transform:uppercase; }
.faq-ov-close {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  color:var(--muted); cursor:pointer; font-size:.9rem;
  display:flex; align-items:center; justify-content:center;
  transition:all .25s;
}
.faq-ov-close:hover { background:rgba(255,60,60,.2); color:#ff5050; border-color:rgba(255,60,60,.3); }

/* ── Hero Banner ── */
.faq-ov-hero {
  padding:1.1rem 5% 1rem; text-align:center; flex-shrink:0;
  background:radial-gradient(ellipse at 50% -10%, rgba(0,212,170,.09) 0%, transparent 65%);
  border-bottom:1px solid var(--border);
}
.faq-ov-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(0,212,170,.08); border:1px solid rgba(0,212,170,.22);
  border-radius:50px; padding:.25rem .9rem; font-size:.68rem; font-weight:700;
  color:var(--teal); letter-spacing:.14em; text-transform:uppercase; margin-bottom:.55rem;
}
.faq-ov-h1 {
  font-family:var(--fh); font-size:clamp(1.4rem,3vw,2rem); font-weight:800;
  letter-spacing:-.02em; line-height:1.1; margin-bottom:.4rem; color:var(--white);
}
.faq-ov-h1 span {
  background:linear-gradient(135deg,var(--teal),var(--teal-2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.faq-ov-desc {
  color:var(--muted); font-size:.82rem; max-width:500px; margin:0 auto .75rem; line-height:1.6;
}
.faq-ov-search-wrap { max-width:580px; margin:0 auto; position:relative; }
.faq-ov-search {
  width:100%; padding:.78rem 3rem .78rem 3rem;
  background:rgba(255,255,255,.04); border:1.5px solid rgba(0,212,170,.18);
  border-radius:50px; color:var(--white); font-family:var(--fb); font-size:.87rem;
  outline:none; transition:all .3s;
}
.faq-ov-search:focus { border-color:var(--teal); background:rgba(0,212,170,.05); box-shadow:0 0 0 4px rgba(0,212,170,.07); }
.faq-ov-search::placeholder { color:var(--muted); }
.faq-ov-s-ico { position:absolute; left:1rem; top:50%; transform:translateY(-50%); font-size:.9rem; color:var(--muted); pointer-events:none; }
.faq-ov-s-cnt { position:absolute; right:1rem; top:50%; transform:translateY(-50%); font-size:.65rem; color:var(--teal); font-weight:700; background:rgba(0,212,170,.1); border:1px solid rgba(0,212,170,.2); padding:.1rem .5rem; border-radius:50px; }

/* ── Stats Row ── */
.faq-ov-stats {
  display:flex; justify-content:center; gap:0; flex-wrap:wrap; flex-shrink:0;
  background:rgba(6,21,48,.6); border-bottom:1px solid var(--border);
}
.faq-ov-stat {
  text-align:center; padding:.5rem 2rem;
  border-right:1px solid var(--border);
}
.faq-ov-stat:last-child { border-right:none; }
.faq-ov-stat-n {
  font-family:var(--fh); font-size:1.05rem; font-weight:800; line-height:1;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.faq-ov-stat-l { font-size:.58rem; color:var(--muted); margin-top:2px; letter-spacing:.1em; text-transform:uppercase; }

/* ── Body: sidebar + content ── */
.faq-ov-body {
  display:grid; grid-template-columns:240px 1fr; gap:0;
  flex:1; overflow:hidden; min-height:0;
}

/* ── Sidebar ── */
.faq-ov-sidebar {
  background:rgba(6,21,48,.5);
  border-right:1px solid var(--border);
  overflow-y:auto; padding:1.4rem .9rem; flex-shrink:0;
}
.faq-ov-sidebar::-webkit-scrollbar { width:3px; }
.faq-ov-sidebar::-webkit-scrollbar-thumb { background:rgba(0,212,170,.2); border-radius:3px; }
.faq-sb-title {
  font-family:var(--fh); font-size:.62rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--muted); margin-bottom:.85rem; padding:.2rem .6rem;
}
.faq-cat-nav { display:flex; flex-direction:column; gap:.25rem; }
.faq-cnb {
  display:flex; align-items:center; gap:.6rem; padding:.55rem .8rem;
  border-radius:10px; cursor:pointer; background:transparent;
  border:1px solid transparent;
  color:var(--muted); font-family:var(--fb); font-size:.78rem; font-weight:500;
  transition:all .22s; text-align:left; width:100%; white-space:nowrap;
}
.faq-cnb:hover { background:rgba(0,212,170,.07); color:var(--white); border-color:rgba(0,212,170,.1); }
.faq-cnb.faq-act {
  background:linear-gradient(135deg,rgba(0,212,170,.14),rgba(0,184,245,.07));
  color:var(--teal); border-color:rgba(0,212,170,.25);
  box-shadow:0 2px 12px rgba(0,212,170,.08);
}
.faq-cnb .fci { font-size:.9rem; flex-shrink:0; }
.faq-cnb .fcc {
  margin-left:auto; font-size:.58rem; font-weight:700;
  background:rgba(0,212,170,.12); color:var(--teal);
  padding:.08rem .42rem; border-radius:50px;
  border:1px solid rgba(0,212,170,.18);
}

/* ── Content area ── */
.faq-ov-content { overflow-y:auto; padding:1.8rem 2.2rem 3rem; }
.faq-ov-content::-webkit-scrollbar { width:4px; }
.faq-ov-content::-webkit-scrollbar-thumb { background:rgba(0,212,170,.18); border-radius:4px; }

/* ── Section header ── */
.faq-section-hdr {
  display:flex; align-items:center; gap:.85rem; margin-bottom:1.2rem;
  padding-bottom:.85rem; border-bottom:1px solid var(--border);
}
.faq-sec-ico {
  width:40px; height:40px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg,rgba(0,212,170,.1),rgba(0,184,245,.06));
  border:1px solid rgba(0,212,170,.2);
  display:flex; align-items:center; justify-content:center; font-size:1.15rem;
}
.faq-sec-title { font-family:var(--fh); font-size:1.05rem; font-weight:800; color:var(--white); }
.faq-sec-count { font-size:.63rem; color:var(--muted); margin-top:3px; letter-spacing:.04em; }
.faq-section-block { margin-bottom:2.8rem; }
.faq-acc-list { display:flex; flex-direction:column; gap:.55rem; }

/* ── Accordion ── */
.faq-acc-item {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px; overflow:hidden; transition:border-color .3s, box-shadow .3s;
  position:relative;
}
.faq-acc-item::after {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--teal),var(--teal-2));
  transform:scaleX(0); transform-origin:left; transition:transform .35s;
}
.faq-acc-item.faq-open::after { transform:scaleX(1); }
.faq-acc-item:hover { border-color:rgba(0,212,170,.22); }
.faq-acc-item.faq-open {
  border-color:rgba(0,212,170,.3);
  box-shadow:0 4px 24px rgba(0,212,170,.07);
}
.faq-acc-q {
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:1rem; padding:1rem 1.2rem; cursor:pointer;
  transition:background .22s; user-select:none;
}
.faq-acc-q:hover { background:rgba(0,212,170,.04); }
.faq-acc-qt { font-family:var(--fh); font-size:.88rem; font-weight:700; line-height:1.4; flex:1; color:var(--white); }
.faq-acc-arr {
  width:24px; height:24px; border-radius:50%; flex-shrink:0;
  background:rgba(0,212,170,.08); border:1px solid rgba(0,212,170,.18);
  display:flex; align-items:center; justify-content:center;
  font-size:.62rem; color:var(--teal); transition:all .3s; margin-top:2px;
}
.faq-acc-item.faq-open .faq-acc-arr {
  background:linear-gradient(135deg,var(--teal),var(--teal-2));
  color:var(--dark); transform:rotate(180deg); border-color:transparent;
  box-shadow:0 0 12px rgba(0,212,170,.35);
}
.faq-acc-body { max-height:0; overflow:hidden; transition:max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-acc-item.faq-open .faq-acc-body { max-height:900px; }
.faq-acc-inner {
  padding:.5rem 1.2rem 1.1rem; border-top:1px solid rgba(0,212,170,.08);
  color:var(--muted); font-size:.84rem; line-height:1.75;
}
.faq-acc-inner p { margin-top:.7rem; }
.faq-acc-inner ul { padding-left:1.1rem; margin:.5rem 0; }
.faq-acc-inner li { margin-bottom:.32rem; }
.faq-acc-inner strong { color:var(--teal); font-weight:700; }
.faq-acc-inner a { color:var(--teal-2); text-decoration:none; }
.faq-acc-inner a:hover { text-decoration:underline; }
.faq-acc-tags { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:1rem; padding-top:.8rem; border-top:1px solid rgba(255,255,255,.05); }
.faq-acc-tag {
  padding:.18rem .65rem; background:rgba(0,212,170,.07);
  border:1px solid rgba(0,212,170,.18); border-radius:50px;
  font-size:.64rem; color:var(--teal); cursor:pointer; transition:all .22s; font-weight:600;
}
.faq-acc-tag:hover { background:rgba(0,212,170,.18); border-color:rgba(0,212,170,.4); }

/* ── No Results ── */
.faq-no-res { text-align:center; padding:5rem 2rem; color:var(--muted); }
.faq-no-res .fnr-ico { font-size:3rem; margin-bottom:1rem; }
.faq-no-res h3 { font-family:var(--fh); font-size:1.15rem; color:var(--white); margin-bottom:.5rem; }

/* ── CTA Footer Zone (hover to reveal) ── */
.faq-footer-zone {
  flex-shrink: 0;
  position: relative;
}
/* Hint strip — always visible, invites hover */
.faq-cta-hint {
  height: 36px;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  background: rgba(6,21,48,.85);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .76rem; font-weight: 500; letter-spacing: .03em;
  cursor: default;
  transition: color .25s, background .25s;
  user-select: none;
}
.faq-cta-hint .hint-icon { font-size: .82rem; }
.faq-cta-hint .hint-arr {
  font-size: .6rem; color: rgba(0,212,170,.5);
  transition: transform .3s ease, color .25s;
}
.faq-footer-zone:hover .faq-cta-hint {
  color: var(--teal);
  background: rgba(0,212,170,.06);
}
.faq-footer-zone:hover .faq-cta-hint .hint-arr {
  transform: translateY(2px);
  color: var(--teal);
}

/* CTA bar itself — hidden by default, slides in on hover */
.faq-ov-cta {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  opacity: 0;
  background: rgba(6,21,48,.7);
  backdrop-filter: blur(16px);
}
.faq-footer-zone:hover .faq-ov-cta {
  max-height: 140px;
  opacity: 1;
}
/* Inner layout (restored from original, triggered by hover) */
.faq-ov-cta-inner {
  padding: 1.1rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid var(--border);
}
.faq-ov-cta p { color:var(--muted); font-size:.83rem; }
.faq-ov-cta p strong { color:var(--white); }
.faq-cta-btns { display:flex; gap:.75rem; flex-wrap:wrap; }
.faq-cta-btn {
  padding:.55rem 1.3rem; border-radius:50px; font-weight:700; font-size:.8rem;
  cursor:pointer; display:inline-flex; align-items:center; gap:.5rem;
  transition:all .3s; font-family:var(--fb); border:none; text-decoration:none;
}
.faq-btn-p { background:linear-gradient(135deg,var(--teal),var(--teal-2)); color:var(--dark); box-shadow:0 0 20px rgba(0,212,170,.2); }
.faq-btn-p:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(0,212,170,.45); }
.faq-btn-wa { background:linear-gradient(135deg,#25D366,#128C7E); color:#fff; box-shadow:0 0 20px rgba(37,211,102,.15); }
.faq-btn-wa:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(37,211,102,.4); }

/* ── Mobile ── */
@media(max-width:700px) {
  .faq-ov-body { grid-template-columns:1fr; }
  .faq-ov-sidebar { border-right:none; border-bottom:1px solid var(--border); overflow-x:auto; overflow-y:visible; padding:.7rem .8rem; }
  .faq-cat-nav { flex-direction:row; flex-wrap:nowrap; gap:.3rem; }
  .faq-cnb { white-space:nowrap; }
  .faq-ov-content { padding:1.2rem 1rem 3rem; }
  .faq-ov-cta-inner { flex-direction:column; align-items:flex-start; }
  .faq-ov-stat { padding:.5rem 1rem; }
}

/* ── NAV FAQ-MODE: shows a close indicator when FAQ overlay is open ── */
nav.faq-mode {
  border-bottom-color: rgba(0,212,170,.35);
  box-shadow: 0 2px 20px rgba(0,212,170,.08);
}
.nav-faq-close {
  display: none;
  align-items: center; gap: .5rem;
  padding: .38rem 1rem; border-radius: 50px;
  background: rgba(0,212,170,.1); border: 1px solid rgba(0,212,170,.3);
  color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; transition: all .25s; white-space: nowrap;
}
.nav-faq-close:hover { background: rgba(255,60,60,.15); color:#ff6060; border-color:rgba(255,60,60,.35); }
nav.faq-mode .nav-faq-close { display: flex; }
/* Also highlight the FAQs nav link when FAQ is open */
nav.faq-mode .nav-faq-link { color: var(--teal) !important; }
nav.faq-mode .nav-faq-link::after { width: 100% !important; }
/* Widget hide/show handled per-button below */
/* ── PER-WIDGET MINIMIZE BUTTONS ───────────────────────────── */
.widget-min-btn {
  position:absolute; top:-6px; right:-6px;
  width:18px; height:18px; border-radius:50%;
  background:rgba(2,11,24,.92); border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.6); font-size:.55rem; cursor:pointer;
  display:none; align-items:center; justify-content:center;
  z-index:10; transition:all .25s; line-height:1;
  box-shadow:0 2px 6px rgba(0,0,0,.4);
}
#wa-float:hover .widget-min-btn,
#chat-toggle:hover .widget-min-btn { display:flex; }
.widget-min-btn:hover { background:rgba(255,60,60,.85); color:#fff; border-color:rgba(255,60,60,.6); }
/* position:relative removed — fixed positioning applies */
/* Hidden state when minimised */
#wa-float.minimised   { opacity:.25; transform:scale(.82) translateY(4px); }
#wa-float.minimised:hover { opacity:.7; transform:scale(.9) translateY(0); }
#chat-toggle.minimised { opacity:.25; transform:scale(.82); }
#chat-toggle.minimised:hover { opacity:.7; transform:scale(.9); }
/* Bottom-right stack layout */
.bottom-right-stack {
  position:fixed; bottom:2rem; right:2rem; z-index:950;
  display:flex; flex-direction:column-reverse; align-items:center;
  gap:.7rem;
}


@keyframes ripple{to{width:300px;height:300px;opacity:0}}