/* SHYRO Hosting - FAQ Page */
/* Totalmente adaptado al ecosistema visual de Docs */

/* ============================================
   CSS RESET & BASE VARIABLES
   ============================================ */
:root {
  --shyro-blue: #2563eb;
  --shyro-blue-light: #3b82f6;
  --shyro-blue-dark: #1d4ed8;
  --shyro-cyan: #06b6d4;
  --shyro-cyan-light: #22d3ee;
  --shyro-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --shyro-glow: 0 0 20px rgba(37, 99, 235, 0.15);
}

/* Light Theme - CLARO Y SUAVE (cambios NOTABLES) */
:root,
body.light {
  --bg-primary: #fafcff;
  --bg-secondary: #f5f7fc;
  --bg-tertiary: #f0f4fa;
  --text-primary: #1a2639;
  --text-secondary: #4a5568;
  --text-muted: #7c8ba0;
  --border-light: #e9edf2;
  --border-medium: #dce2e8;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -8px rgba(0, 0, 0, 0.06);
  --sidebar-bg: #ffffff;
  --card-bg: #ffffff;
  --code-bg: #f8fafd;
  --code-border: #eef2f8;
  --toc-bg: #fafcff;
  --hover-bg: #f0f4fa;
  --selection-bg: rgba(37, 99, 235, 0.08);
}

/* Dark Theme - RICO Y PROFUNDO (sin cambios) */
body.dark {
  --bg-primary: #0a0c10;
  --bg-secondary: #0f1117;
  --bg-tertiary: #1a1d24;
  --text-primary: #edf2f7;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --border-light: #2d3748;
  --border-medium: #4a5568;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
  --sidebar-bg: #0f1117;
  --card-bg: #13161f;
  --code-bg: #0d0f14;
  --code-border: #2d3748;
  --toc-bg: #0f1117;
  --hover-bg: #1a1d24;
  --selection-bg: rgba(37, 99, 235, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--selection-bg);
  color: var(--text-primary);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--shyro-blue);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.docs-app {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* ============================================
   SIDEBAR (mismo que Docs)
   ============================================ */
.docs-sidebar {
  width: 280px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.docs-sidebar::-webkit-scrollbar {
  width: 4px;
}

.docs-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.docs-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: 4px;
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo span:first-of-type {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--shyro-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo .logo-light {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 1.3rem;
}

.sidebar-close-mobile {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

.sidebar-search-mobile {
  display: none;
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-search-mobile input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.sidebar-nav {
  flex: 1;
  padding: 24px 16px;
}

.nav-group {
  margin-bottom: 32px;
}

.nav-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--shyro-blue);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-group ul {
  list-style: none;
}

.nav-group li {
  padding: 8px 12px 8px 32px;
  margin: 2px 0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  position: relative;
}

.nav-group li:hover {
  background: var(--hover-bg);
  color: var(--shyro-blue);
  transform: translateX(4px);
}

.nav-group li.active {
  background: var(--shyro-blue);
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.nav-group li.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: white;
  border-radius: 0 2px 2px 0;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.docs-main {
  flex: 1;
  margin-left: 280px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.docs-header {
  position: sticky;
  top: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 90;
  backdrop-filter: blur(10px);
}

/* Modo claro: header blanco con blur */
body.light .docs-header {
  background: rgba(255, 255, 255, 0.92);
}

body.dark .docs-header {
  background: rgba(10, 12, 16, 0.95);
}

.header-logo {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.header-logo-img {
  height: 28px;
  width: auto;
}

.header-logo span:first-of-type {
  background: var(--shyro-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.header-logo .logo-light {
  font-weight: 400;
  color: var(--text-muted);
}

.header-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

/* Modo claro: input blanco con borde suave */
body.light .header-search input {
  background: #ffffff;
  border-color: #e9edf2;
}

body.light .header-search input:focus {
  border-color: var(--shyro-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.06);
}

.header-search input:focus {
  outline: none;
  border-color: var(--shyro-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.header-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--shyro-blue);
  transform: scale(1.02);
}

.theme-toggle .fa-sun {
  display: none;
  color: #f59e0b;
}

.theme-toggle .fa-moon {
  display: inline;
  color: var(--text-secondary);
}

body.dark .theme-toggle .fa-sun {
  display: inline;
}

body.dark .theme-toggle .fa-moon {
  display: none;
}

body.light .theme-toggle .fa-moon {
  color: #64748b;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--shyro-blue);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.header-link:hover {
  background: var(--shyro-blue-dark);
  transform: translateY(-1px);
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.docs-content {
  display: flex;
  flex: 1;
  padding: 48px 56px;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.content-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 1000px;
}

/* ============================================
   FAQ HERO SECTION
   ============================================ */
.faq-hero {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.faq-hero-container {
  text-align: center;
}

.faq-hero-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--shyro-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.faq-hero-container > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: var(--bg-tertiary);
  border-radius: 40px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  animation: fadeInUp 0.5s ease-out;
}

body.light .faq-hero-info {
  background: #f0f4fa;
}

.faq-hero-info i {
  font-size: 0.75rem;
  color: var(--shyro-blue);
}

.faq-search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-search-container input {
  width: 100%;
  padding: 14px 48px 14px 44px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 48px;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

body.light .faq-search-container input {
  background: #ffffff;
  border-color: #e9edf2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.faq-search-container input:focus {
  outline: none;
  border-color: var(--shyro-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.faq-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: none;
  transition: all 0.2s;
}

.faq-search-clear:hover {
  color: var(--shyro-blue);
  background: var(--hover-bg);
}

.faq-search-results-count {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.faq-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.faq-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-metric-value {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--shyro-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.faq-metric-divider {
  width: 1px;
  height: 30px;
  background: var(--border-light);
}

/* ============================================
   POPULAR QUESTIONS
   ============================================ */
.faq-popular {
  margin-bottom: 48px;
}

.faq-popular-container {
  max-width: 100%;
}

.faq-popular-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--shyro-blue);
}

.faq-popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.faq-popular-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

body.light .faq-popular-item {
  background: #ffffff;
  border-color: #e9edf2;
}

body.light .faq-popular-item:hover {
  background: #fafcff;
  border-color: var(--shyro-blue-light);
}

.faq-popular-item i {
  width: 18px;
  color: var(--shyro-blue);
  font-size: 0.85rem;
}

.faq-popular-item:hover {
  border-color: var(--shyro-blue-light);
  background: var(--hover-bg);
  transform: translateX(4px);
}

/* ============================================
   FAQ CATEGORIES
   ============================================ */
.faq-main {
  flex: 1;
}

.faq-container {
  max-width: 100%;
}

.faq-category {
  margin-bottom: 48px;
  scroll-margin-top: 80px;
}

.faq-category-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.faq-category-header i {
  font-size: 1.4rem;
  color: var(--shyro-blue);
  margin-top: 2px;
}

.faq-category-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.faq-category-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.faq-category-count {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: var(--bg-tertiary);
  border-radius: 20px;
  color: var(--text-muted);
  white-space: nowrap;
}

body.light .faq-category-count {
  background: #f0f4fa;
}

/* Accordion Items */
.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: var(--card-bg);
  transition: all 0.2s ease;
}

body.light .faq-item {
  background: #ffffff;
  border-color: #e9edf2;
}

.faq-item:hover {
  border-color: var(--shyro-blue-light);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s ease;
  border-radius: 12px;
}

.faq-question:hover {
  background: var(--hover-bg);
}

.faq-question-icon {
  flex-shrink: 0;
}

.faq-question-icon i {
  color: var(--shyro-blue);
  font-size: 1rem;
}

.faq-question-text {
  flex: 1;
}

.faq-question-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-question[aria-expanded="true"] .faq-question-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 20px 18px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

body.light .faq-answer p {
  color: #4a5568;
}

.faq-item.highlight {
  animation: highlightPulse 0.6s ease;
  border-color: var(--shyro-blue);
}

@keyframes highlightPulse {
  0% {
    background-color: rgba(37, 99, 235, 0);
    transform: scale(1);
  }
  30% {
    background-color: rgba(37, 99, 235, 0.05);
    transform: scale(1.01);
  }
  100% {
    background-color: rgba(37, 99, 235, 0);
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* No Results */
.faq-no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.faq-no-results.show {
  display: block;
}

.faq-no-results i {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.faq-no-results h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.faq-no-results p {
  color: var(--text-muted);
}

.faq-category.hidden,
.faq-item.hidden {
  display: none;
}

/* ============================================
   SUPPORT CARD
   ============================================ */
.support-card {
  margin: 48px 0 32px;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

body.light .support-card {
  background: #ffffff;
  border-color: #e9edf2;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--shyro-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.support-card:hover {
  border-color: var(--shyro-blue-light);
  box-shadow: var(--shadow-lg);
}

.support-card:hover::before {
  transform: scaleX(1);
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.support-card-header i {
  font-size: 1.6rem;
  color: var(--shyro-blue);
}

.support-card-header span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.support-card-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.support-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.support-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-radius: 14px;
  transition: all 0.2s ease;
}

body.light .support-channel {
  background: #f8fafd;
}

.support-channel:hover {
  transform: translateY(-2px);
  background: var(--hover-bg);
}

.support-channel i {
  font-size: 1.5rem;
  color: var(--shyro-blue);
}

.support-channel strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.support-channel span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.support-btn-discord {
  background: #5865f2;
  color: white;
  border: none;
}

.support-btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.support-btn-ticket {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

body.light .support-btn-ticket {
  background: #f8fafd;
}

.support-btn-ticket:hover {
  border-color: var(--shyro-blue);
  color: var(--shyro-blue);
  transform: translateY(-2px);
  background: var(--hover-bg);
}

/* ============================================
   FOOTER
   ============================================ */
.docs-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-separator {
  color: var(--border-medium);
  opacity: 0.5;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-link i {
  font-size: 0.7rem;
}

.footer-link:hover {
  color: var(--shyro-blue);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--shyro-blue);
  border: none;
  border-radius: 28px;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 300;
  box-shadow: var(--shadow-lg);
  transition: all 0.2s ease;
  align-items: center;
  justify-content: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 95;
  transition: opacity 0.3s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .docs-sidebar {
    transform: translateX(-100%);
  }
  
  .docs-sidebar.open {
    transform: translateX(0);
  }
  
  .sidebar-close-mobile {
    display: block;
  }
  
  .sidebar-search-mobile {
    display: block;
  }
  
  .docs-main {
    margin-left: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-overlay.active {
    display: block;
  }
  
  .docs-content {
    padding: 32px;
    gap: 0;
  }
  
  .header-logo {
    display: flex;
  }
  
  .header-search {
    max-width: none;
  }
  
  .header-link span {
    display: none;
  }
  
  .header-link {
    padding: 8px 12px;
  }
  
  .faq-hero-container h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .docs-header {
    padding: 12px 16px;
  }
  
  .docs-content {
    padding: 24px;
  }
  
  .faq-hero {
    margin-bottom: 32px;
  }
  
  .faq-hero-container h1 {
    font-size: 1.6rem;
  }
  
  .faq-hero-container > p {
    font-size: 0.95rem;
  }
  
  .faq-hero-info {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .faq-metrics {
    gap: 16px;
  }
  
  .faq-metric-value {
    font-size: 1.1rem;
  }
  
  .faq-popular {
    margin-bottom: 32px;
  }
  
  .faq-popular-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-category-header {
    gap: 10px;
  }
  
  .faq-category-header i {
    font-size: 1.2rem;
  }
  
  .faq-category-header h2 {
    font-size: 1rem;
  }
  
  .faq-category-desc {
    font-size: 0.7rem;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 16px 14px 16px;
  }
  
  .support-card {
    padding: 20px;
  }
  
  .support-channels {
    flex-direction: column;
    gap: 12px;
  }
  
  .support-actions {
    flex-direction: column;
  }
  
  .support-btn {
    justify-content: center;
    width: 100%;
  }
  
  .footer-links {
    gap: 6px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .docs-content {
    padding: 16px;
  }
  
  .faq-hero-container h1 {
    font-size: 1.4rem;
  }
  
  .faq-main {
    margin-top: 0;
  }
  
  .faq-category {
    margin-bottom: 32px;
  }
  
  .faq-search-container input {
    font-size: 0.9rem;
    padding: 12px 44px 12px 40px;
  }
  
  .mobile-menu-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-separator {
    display: none;
  }
}

/* Smooth transitions */
body,
.docs-sidebar,
.docs-header,
.nav-group li,
.search-result {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}