.elementor-7537 .elementor-element.elementor-element-b0471f1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for container, class: .elementor-element-b0471f1 *//* =========================================================
   Amazon Sellers Appeal — FAQ page
   Pair with Poppins (see HTML). Aligns with premium.css tokens.

   UX patterns applied (industry FAQ / accordion guidance):
   - Findability: sticky search, “Browse topics” label, optional empty-state hook
   - Scanability: numbered category chips, clear open-state + focus rings on <summary>
   - Cognitive load: accordions + max reading width (~65ch) on answers
   - Motion: decorative hero drift only when .hero--motion; respect prefers-reduced-motion
   References: LogRocket accordion UX, Webxloo FAQ UX, 365i FAQ + schema notes

   CTAs: hero .cta-button and .cta-footer a must use homepage contact anchor:
   https://amazonsellersappeal.com/#sa-contact-form-slot
   (not #ContactUs alone — absolute URL ensures correct scroll from /faq and blog posts.)
========================================================= */

:root {
  --faq-accent: #f26c0f;
  --faq-accent-2: #ff9f4d;
  --faq-ink: #1e293b;
  --faq-text: #334155;
  --faq-muted: #64748b;
  --faq-line: rgba(51, 65, 85, 0.1);
  --faq-line-soft: rgba(51, 65, 85, 0.06);
  --faq-surface: #ffffff;
  --faq-surface-2: #f8fafc;
  --faq-surface-warm: #fffbf7;
  --faq-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.06);
  --faq-shadow-lg: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 40px rgba(15, 23, 42, 0.08);
  --faq-shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.1);
  --faq-radius: 16px;
  --faq-radius-sm: 12px;
  --faq-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --faq-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --faq-sticky-top: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero--motion::before,
  .hero--motion::after,
  .faq-hero-mesh {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--faq-text);
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 32%, #fff 100%);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(242, 108, 15, 0.18);
  color: var(--faq-ink);
}

/* ---- Hero (layered mesh + optional slow drift — add class hero--motion on .hero) ---- */
.hero {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 40px) clamp(40px, 6vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(242, 108, 15, 0.14) 0%, transparent 55%),
    linear-gradient(165deg, #fff5ee 0%, #eef2ff 45%, #fff 100%);
  border-bottom: 1px solid var(--faq-line-soft);
}

/* Subtle dot grid: improves depth without hurting readability (FAQ findability best practice) */
.faq-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: radial-gradient(rgba(51, 65, 85, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.hero > *:not(.faq-hero-mesh) {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(242, 108, 15, 0.22) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -35% -25%;
  width: min(420px, 75vw);
  height: min(420px, 75vw);
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, rgba(255, 159, 77, 0.18) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.hero.hero--motion::before {
  animation: faq-hero-float-a 22s ease-in-out infinite;
}

.hero.hero--motion::after {
  animation: faq-hero-float-b 28s ease-in-out infinite;
}

@keyframes faq-hero-float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-12px, 8px) scale(1.03);
    opacity: 0.92;
  }
}

@keyframes faq-hero-float-b {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    transform: translate(16px, -10px);
    opacity: 0.88;
  }
}

/* Optional eyebrow: <p class="hero-kicker">…</p> above h1 */
.hero .hero-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faq-accent);
  background: rgba(242, 108, 15, 0.1);
  border: 1px solid rgba(242, 108, 15, 0.2);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 auto 12px;
  max-width: 22ch;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--faq-ink);
  padding-bottom: 16px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--faq-accent), var(--faq-accent-2)) 1;
  width: fit-content;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--faq-muted);
}

/* href: https://amazonsellersappeal.com/#sa-contact-form-slot */
.hero .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 0.9875rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: 12px 50px 12px 50px;
  cursor: pointer;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--faq-accent) 94%, #1c1006) 0%,
    var(--faq-accent-2) 48%,
    var(--faq-accent) 100%
  );
  box-shadow:
    0 2px 4px rgba(242, 108, 15, 0.2),
    0 8px 20px rgba(242, 108, 15, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s var(--faq-ease), box-shadow 0.2s var(--faq-ease), filter 0.2s var(--faq-ease);
}

.hero .cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 4px 8px rgba(242, 108, 15, 0.25),
    0 14px 28px rgba(242, 108, 15, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero .cta-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(242, 108, 15, 0.42), 0 8px 20px rgba(242, 108, 15, 0.2);
}

/* Dark mode toggle */
#darkModeToggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  border: 1px solid var(--faq-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--faq-accent);
  transition: background 0.2s var(--faq-ease), border-color 0.2s var(--faq-ease), transform 0.15s var(--faq-ease);
}

#darkModeToggle:hover {
  background: #fff;
  border-color: rgba(242, 108, 15, 0.35);
  transform: scale(1.04);
}

#darkModeToggle:focus-visible {
  outline: 2px solid var(--faq-accent);
  outline-offset: 2px;
}

/* ---- Layout ---- */
.content-container {
  width: 100%;
  max-width: min(920px, 92%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 24px) clamp(64px, 10vw, 96px);
  counter-reset: faq-section;
}

/* ---- Table of contents (label + chips: scanability / IA) ---- */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px;
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--faq-surface) 100%);
  border: 1px solid var(--faq-line-soft);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
  backdrop-filter: blur(8px);
}

.toc::before {
  content: "Browse topics";
  flex: 0 0 100%;
  margin: 0 0 6px;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faq-muted);
}

.toc a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--faq-text);
  background: var(--faq-surface-2);
  border: 1px solid var(--faq-line);
  border-radius: 999px;
  transition: color 0.2s var(--faq-ease), background 0.2s var(--faq-ease), border-color 0.2s var(--faq-ease), transform 0.15s var(--faq-ease);
}

.toc a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--faq-accent) 0%, #e85d0a 100%);
  border-color: transparent;
  transform: translateY(-1px);
}

.toc a:focus-visible {
  outline: 2px solid var(--faq-accent);
  outline-offset: 2px;
}

/* ---- Search (sticky = findability on long FAQ pages) ---- */
.search-bar {
  position: sticky;
  top: var(--faq-sticky-top);
  z-index: 30;
  margin: 0 0 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 12px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94) 0%, rgba(248, 250, 252, 0.88) 70%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hook for JS: show “No results” — <p class="faq-search-empty" id="faqSearchEmpty" hidden>…</p> after input */
.faq-search-empty {
  margin: 10px 0 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: var(--faq-muted);
  background: rgba(255, 255, 255, 0.9);
  border: 1px dashed var(--faq-line);
  border-radius: var(--faq-radius-sm);
}

.faq-search-empty[hidden] {
  display: none !important;
}

.search-bar::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  pointer-events: none;
  opacity: 0.85;
}

.search-bar input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--faq-ink);
  background: var(--faq-surface);
  border: 1px solid var(--faq-line);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s var(--faq-ease), box-shadow 0.2s var(--faq-ease);
}

.search-bar input::placeholder {
  color: #94a3b8;
}

.search-bar input:hover {
  border-color: rgba(242, 108, 15, 0.35);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--faq-accent);
  box-shadow: 0 0 0 4px rgba(242, 108, 15, 0.15);
}

/* ---- FAQ sections (numbered categories + lift on hover) ---- */
.faq-section {
  counter-increment: faq-section;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding: clamp(22px, 3vw, 28px);
  background: var(--faq-surface);
  border: 1px solid var(--faq-line-soft);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
  scroll-margin-top: 100px;
  transition: transform 0.35s var(--faq-ease-out), box-shadow 0.35s var(--faq-ease-out), border-color 0.2s var(--faq-ease);
}

@media (hover: hover) and (pointer: fine) {
  .faq-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--faq-shadow-hover);
    border-color: rgba(242, 108, 15, 0.12);
  }
}

.faq-section:nth-of-type(odd) {
  background: linear-gradient(180deg, #fff 0%, var(--faq-surface-warm) 100%);
}

.faq-section h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--faq-ink);
  border-bottom: 1px solid var(--faq-line-soft);
  border-left: 4px solid var(--faq-accent);
  padding-left: 14px;
  margin-left: -4px;
}

.faq-section h3::before {
  content: counter(faq-section, decimal-leading-zero);
  flex-shrink: 0;
  min-width: 2.25rem;
  height: 2.25rem;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--faq-accent), #e85d0a);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(242, 108, 15, 0.35);
}

/* Accordion rows */
.faq-section details {
  margin-bottom: 10px;
  border: 1px solid var(--faq-line);
  border-radius: var(--faq-radius-sm);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  transition: border-color 0.2s var(--faq-ease), box-shadow 0.2s var(--faq-ease), transform 0.2s var(--faq-ease);
}

.faq-section details:last-child {
  margin-bottom: 0;
}

.faq-section details:hover {
  border-color: rgba(242, 108, 15, 0.35);
}

.faq-section details[open] {
  border-color: rgba(242, 108, 15, 0.45);
  box-shadow:
    0 4px 16px rgba(242, 108, 15, 0.08),
    inset 3px 0 0 0 var(--faq-accent);
}

.faq-section summary {
  position: relative;
  padding: 14px 16px 14px 44px;
  font-weight: 600;
  font-size: 0.9875rem;
  line-height: 1.45;
  color: var(--faq-ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--faq-ease), background 0.2s var(--faq-ease);
}

.faq-section summary:focus {
  outline: none;
}

.faq-section summary:focus-visible {
  outline: 2px solid var(--faq-accent);
  outline-offset: 2px;
  border-radius: 8px;
  z-index: 1;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(242, 108, 15, 0.12), rgba(255, 159, 77, 0.18));
  border: 1px solid rgba(242, 108, 15, 0.2);
}

.faq-section summary::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  border-right: 2px solid var(--faq-accent);
  border-bottom: 2px solid var(--faq-accent);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s var(--faq-ease);
}

.faq-section details[open] summary::after {
  transform: translateY(-50%) rotate(225deg);
  margin-top: 2px;
}

.faq-section details[open] summary {
  color: var(--faq-text);
  background: linear-gradient(180deg, rgba(242, 108, 15, 0.06) 0%, transparent 100%);
}

.faq-section summary:hover {
  color: var(--faq-accent);
}

.faq-section details p {
  margin: 0;
  padding: 0 16px 16px 44px;
  max-width: 65ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--faq-text);
  border-top: 1px solid var(--faq-line-soft);
  padding-top: 14px;
}

/* Dim non-matching search results (JS adds .faq-hidden on <details>) */
.faq-section details.faq-hidden {
  display: none !important;
}

.faq-section details p a,
.faq-section p a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s var(--faq-ease);
}

.faq-section details p a:hover,
.faq-section p a:hover {
  color: var(--faq-accent);
}

.faq-section details ul {
  margin: 8px 0 0;
  padding-left: 1.25rem;
}

.faq-section details li {
  margin-bottom: 6px;
}

/* ---- CTA footer ---- */
/* <a> href: https://amazonsellersappeal.com/#sa-contact-form-slot */
.cta-footer {
  margin-top: clamp(32px, 5vw, 48px);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 40px);
  text-align: center;
  color: #fff;
  border-radius: var(--faq-radius);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--faq-shadow-lg);
}

.cta-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(242, 108, 15, 0.35), transparent 50%);
  pointer-events: none;
}

.cta-footer h3,
.cta-footer p,
.cta-footer a {
  position: relative;
  z-index: 1;
}

.cta-footer h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-footer p {
  margin: 0 0 22px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.cta-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--faq-ink) !important;
  text-decoration: none;
  font-family: inherit;
  border-radius: 12px 50px 12px 50px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--faq-ease), box-shadow 0.2s var(--faq-ease);
}

.cta-footer a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta-footer a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ---- Scroll to top ---- */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--faq-accent), #e85d0a);
  box-shadow: 0 4px 16px rgba(242, 108, 15, 0.45);
  transition: transform 0.2s var(--faq-ease), box-shadow 0.2s var(--faq-ease), opacity 0.2s var(--faq-ease);
}

#scrollTopBtn.show {
  display: flex;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(242, 108, 15, 0.42);
}

#scrollTopBtn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(242, 108, 15, 0.45);
}

/* ---- Dark mode ---- */
body.dark-mode {
  color: #e2e8f0;
  background: linear-gradient(180deg, #0f1419 0%, #1a1f26 100%);
}

body.dark-mode .hero {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(242, 108, 15, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #1a1612 0%, #1e2430 50%, #0f1419 100%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .hero h1 {
  color: #f8fafc;
  border-image: linear-gradient(90deg, var(--faq-accent-2), var(--faq-accent)) 1;
}

body.dark-mode .hero p {
  color: #94a3b8;
}

body.dark-mode .hero .hero-kicker {
  color: var(--faq-accent-2);
  background: rgba(242, 108, 15, 0.12);
  border-color: rgba(255, 159, 77, 0.22);
}

body.dark-mode .faq-hero-mesh {
  opacity: 0.22;
  background-image: radial-gradient(rgba(148, 163, 184, 0.2) 1px, transparent 1px);
}

body.dark-mode .hero .cta-button {
  box-shadow: 0 4px 20px rgba(242, 108, 15, 0.35);
}

body.dark-mode #darkModeToggle {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--faq-accent-2);
}

body.dark-mode .toc {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .toc a {
  color: #e2e8f0;
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .toc a:hover {
  color: #0f172a;
  background: linear-gradient(135deg, var(--faq-accent-2) 0%, var(--faq-accent) 100%);
}

body.dark-mode .toc::before {
  color: #94a3b8;
}

body.dark-mode .search-bar {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.88) 65%, transparent 100%);
}

body.dark-mode .faq-search-empty {
  color: #94a3b8;
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .search-bar input {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
}

body.dark-mode .search-bar input::placeholder {
  color: #64748b;
}

body.dark-mode .faq-section {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

body.dark-mode .faq-section:nth-of-type(odd) {
  background: linear-gradient(180deg, #1e293b 0%, #172033 100%);
}

body.dark-mode .faq-section h3 {
  color: #f8fafc;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .faq-section details {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .faq-section details:hover {
  border-color: rgba(242, 108, 15, 0.35);
}

body.dark-mode .faq-section details[open] {
  border-color: rgba(255, 159, 77, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

body.dark-mode .faq-section summary {
  color: #f1f5f9;
}

body.dark-mode .faq-section summary::before {
  background: linear-gradient(145deg, rgba(255, 159, 77, 0.15), rgba(242, 108, 15, 0.12));
  border-color: rgba(255, 159, 77, 0.25);
}

body.dark-mode .faq-section summary::after {
  border-color: var(--faq-accent-2);
}

body.dark-mode .faq-section details[open] summary {
  color: #fff;
  background: linear-gradient(180deg, rgba(242, 108, 15, 0.12) 0%, transparent 100%);
}

body.dark-mode .faq-section details p {
  color: #cbd5e1;
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .faq-section details p a,
body.dark-mode .faq-section p a {
  color: #fdba74;
}

body.dark-mode .faq-section details p a:hover,
body.dark-mode .faq-section p a:hover {
  color: #fff;
}

body.dark-mode .cta-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body.dark-mode .cta-footer a {
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  color: #0f172a !important;
}

body.dark-mode #scrollTopBtn {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 520px) {
  .toc {
    padding: 16px;
    gap: 8px;
  }

  .toc a {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }

  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}/* End custom CSS */