body.pvs-faq-body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1b2430;
  background: #f6f7f9;
  line-height: 1.55;
}

body.pvs-faq-body .bravo_wrap {
  background: #f6f7f9;
}

body.pvs-faq-body.pvs-faq-drawer-open {
  overflow: hidden;
}

.pvs-faq-page {
  --brand: #dc8c14;
  --brand-2: #f2b44a;
  --ink: #1b2430;
  --muted: #667085;
  --line: #e6e8ec;
  --bg: #f6f7f9;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --radius: 0px;
  --container: 1180px;
  --sticky-header-offset: 91px;
  color: var(--ink);
  background: var(--bg);
}

.pvs-faq-page *,
.pvs-faq-page *::before,
.pvs-faq-page *::after {
  box-sizing: border-box;
}

.pvs-faq-page a {
  color: inherit;
  text-decoration: none;
}

.pvs-faq-container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.pvs-faq-btn {
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 22px rgba(220, 140, 20, 0.22);
}

.pvs-faq-btn:hover {
  background: #c97e10;
}

.pvs-faq-btn:active {
  transform: translateY(1px);
}

.pvs-faq-btn.pvs-faq-btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.pvs-faq-btn.pvs-faq-btn-ghost:hover {
  background: rgba(220, 140, 20, 0.08);
  border-color: rgba(220, 140, 20, 0.22);
}

.pvs-faq-page-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(246, 247, 249, 1)),
    radial-gradient(900px 320px at 20% 0%, rgba(220, 140, 20, 0.18), transparent 60%),
    radial-gradient(900px 320px at 80% 10%, rgba(242, 180, 74, 0.14), transparent 60%);
  border-bottom: 1px solid var(--line);
}

.pvs-faq-hero-inner {
  padding: 34px 0 22px;
  display: grid;
  gap: 10px;
}

.pvs-faq-breadcrumbs {
  font-size: 12px;
  color: var(--muted);
}

.pvs-faq-breadcrumbs a {
  color: var(--muted);
}

.pvs-faq-breadcrumbs a:hover {
  color: var(--ink);
}

.pvs-faq-page h1 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.pvs-faq-hero-sub {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
  font-size: 15px;
}

.pvs-faq-wrap {
  padding: 26px 0 0;
}

.pvs-faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  align-items: start;
}

.pvs-faq-sidebar {
  position: sticky;
  top: calc(var(--sticky-header-offset) + 16px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pvs-faq-sidebar-head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fff);
}

.pvs-faq-sidebar-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pvs-faq-close-btn {
  padding: 8px 10px;
  display: none;
}

.pvs-faq-sidebar-hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.pvs-faq-sidebar-search {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.pvs-faq-sidebar-search input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-family: inherit;
}

.pvs-faq-q-list {
  max-height: calc(100vh - var(--sticky-header-offset) - 16px - 140px);
  overflow: auto;
  padding: 10px;
}

.pvs-faq-q-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #364152;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pvs-faq-q-link:hover {
  background: rgba(220, 140, 20, 0.08);
  border-color: rgba(220, 140, 20, 0.22);
  color: var(--ink);
}

.pvs-faq-q-link[aria-current="true"] {
  background: var(--brand);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 18px rgba(220, 140, 20, 0.22);
}

.pvs-faq-content {
  display: grid;
  gap: 14px;
  padding-bottom: 56px;
}

.pvs-faq-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: calc(var(--sticky-header-offset) + 18px);
}

.pvs-faq-card > header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(220, 140, 20, 0.08), rgba(255, 255, 255, 0));
}

.pvs-faq-card h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.pvs-faq-answer-body {
  padding: 16px 18px 18px;
  color: #344054;
  font-size: 14px;
}

.pvs-faq-answer-body p {
  margin: 0 0 10px;
}

.pvs-faq-answer-body p:last-child {
  margin-bottom: 0;
}

.pvs-faq-callout {
  margin-top: 12px;
  border: 1px solid rgba(220, 140, 20, 0.22);
  background: rgba(220, 140, 20, 0.08);
  padding: 12px 14px;
  color: #5e3a05;
  font-size: 13px;
}

.pvs-faq-mobile-actions {
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pvs-faq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.pvs-faq-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  border: 0;
  background: var(--brand);
  color: #fff;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(220, 140, 20, 0.32);
  transition: background 0.2s ease, transform 0.08s ease;
}

.pvs-faq-scroll-top:hover {
  background: #c97e10;
}

.pvs-faq-scroll-top:active {
  transform: translateY(1px);
}

@media (max-width: 980px) {
  .pvs-faq-grid {
    grid-template-columns: 1fr;
  }

  .pvs-faq-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pvs-faq-sidebar {
    position: fixed;
    top: var(--sticky-header-offset);
    left: 0;
    height: calc(100vh - var(--sticky-header-offset));
    width: min(360px, 92vw);
    transform: translateX(-102%);
    transition: transform 0.22s ease;
    z-index: 90;
    border-radius: 0 18px 18px 0;
  }

  body.pvs-faq-body.pvs-faq-drawer-open .pvs-faq-sidebar {
    transform: translateX(0);
  }

  body.pvs-faq-body.pvs-faq-drawer-open .pvs-faq-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .pvs-faq-mobile-actions {
    display: flex;
  }

  .pvs-faq-q-list {
    max-height: calc(100vh - var(--sticky-header-offset) - 160px);
  }
}
