:root {
  --faq-text: #2a2230;
  --faq-text-soft: #262626;
  --faq-text-muted: #938694;
  --faq-white: #ffffff;
  --faq-brand: #fa77b9;
  --faq-brand-strong: #f754a5;
  --faq-brand-deep: #df2d8b;
  --faq-brand-soft: #ffe6f2;
  --faq-brand-pale: #fff4fa;
  --faq-mint: #e9fbf4;
  --faq-peach: #fff1ea;
  --faq-wrap: #ffeaf4;
  --faq-row: #ffdceb;
  --faq-row-hover: #ffd3e7;
  --faq-line: rgba(247, 84, 165, 0.12);
  --faq-line-strong: rgba(247, 84, 165, 0.22);
  --faq-shadow: 0 20px 55px rgba(129, 89, 114, 0.08);
  --faq-shadow-soft: 0 10px 26px rgba(129, 89, 114, 0.05);
  --faq-shadow-hover: 0 28px 70px rgba(129, 89, 114, 0.12);
  --faq-radius-xl: 32px;
  --faq-radius-lg: 26px;
  --faq-radius-md: 20px;
  --faq-radius-sm: 14px;
  --faq-transition: 0.32s cubic-bezier(.22,1,.36,1);
  --content-max: 1100px;
  --media-max: 650px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--faq-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.faq-page {
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(250, 119, 185, 0.07), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff9fc 32%, #ffffff 100%);
}

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

.faq-topzone {
  background: #ffffff;
  padding: 44px 0 54px;
}

.faq-header {
  text-align: center;
  margin-bottom: 18px;
}

.faq-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #351f31;
  text-wrap: balance;
}

.faq-title-accent {
  color: var(--faq-brand-strong);
}

.faq-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--faq-brand-deep), var(--faq-brand));
}

.search-shell {
  max-width: 720px;
  margin: 26px auto 0;
}

.search-bar {
  position: relative;
  z-index: 40;
}

.search-input {
  width: 100%;
  min-height: 62px;
  padding: 16px 96px 16px 22px;
  border: 1px solid rgba(247, 84, 165, 0.14);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--faq-text);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--faq-shadow-soft);
  transition: border-color var(--faq-transition), box-shadow var(--faq-transition), background var(--faq-transition);
}

.search-input::placeholder {
  color: var(--faq-text-muted);
  font-weight: 500;
}

.search-input:focus {
  outline: none;
  border-color: rgba(247, 84, 165, 0.34);
  box-shadow: 0 0 0 5px rgba(247, 84, 165, 0.10), var(--faq-shadow);
  background: #ffffff;
}

.search-btn,
.clear-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  cursor: pointer;
  padding: 9px;
  border-radius: 999px;
  transition: background var(--faq-transition), color var(--faq-transition), transform var(--faq-transition);
}

.search-btn:hover,
.clear-btn:hover {
  transform: translateY(-50%) scale(1.04);
}

.clear-btn {
  right: 46px;
  display: none;
  background: transparent;
  color: var(--faq-text-muted);
}

.search-btn {
  right: 12px;
  background: linear-gradient(135deg, var(--faq-brand-strong) 0%, var(--faq-brand) 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(247, 84, 165, 0.22);
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.popular-searches-label {
  font-size: 0.88rem;
  color: var(--faq-text-soft);
  font-weight: 700;
}

.popular-search-chip {
  border: 1px solid var(--faq-line);
  background: rgba(255, 255, 255, 0.98);
  color: #5d5260;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(129, 89, 114, 0.04);
  transition: transform var(--faq-transition), box-shadow var(--faq-transition), background var(--faq-transition), color var(--faq-transition), border-color var(--faq-transition);
}

.popular-search-chip:hover,
.popular-search-chip:focus-visible {
  background: linear-gradient(135deg, var(--faq-brand-strong) 0%, var(--faq-brand) 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  outline: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: var(--faq-shadow);
  max-height: 390px;
  overflow-y: auto;
  display: none;
  z-index: 30;
  border: 1px solid rgba(247, 84, 165, 0.10);
  backdrop-filter: blur(12px);
}

.search-result-item {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(247, 84, 165, 0.07);
  cursor: pointer;
  transition: background var(--faq-transition);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(247, 84, 165, 0.05);
}

.search-result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.search-result-category {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--faq-brand-pale);
  color: var(--faq-brand-strong);
  font-weight: 800;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-result-match {
  padding: 4px 9px;
  border-radius: 999px;
  background: #f8f4f7;
  color: var(--faq-text-soft);
  font-size: 0.7rem;
  font-weight: 500;
}

.search-result-question {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--faq-text);
  margin-bottom: 4px;
}

.search-result-answer {
  font-size: 0.84rem;
  color: var(--faq-text-soft);
  line-height: 1.55;
  font-weight: 500;
}

.search-no-results {
  padding: 18px 16px;
  color: var(--faq-text-soft);
  font-size: 0.9rem;
}

.search-highlight {
  background: rgba(250, 220, 118, 0.58);
  padding: 0 2px;
  border-radius: 4px;
  font-weight: 700;
}

.faq-categories {
  padding-top: 8px;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 12px;
}

.faq-category-card {
  border-radius: 28px;
  min-height: 184px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform var(--faq-transition), box-shadow var(--faq-transition), border-color var(--faq-transition);
  box-shadow: 0 0 0 1px transparent;
  border: 1px solid rgba(247, 84, 165, 0.10);
}

.faq-category-card:hover,
.faq-category-card.is-active {
  transform: translateY(-4px);
  box-shadow: var(--faq-shadow-hover);
}

.faq-category-card:nth-child(3n+1) {
  background: #fdf4fb;
  border-color: rgba(247, 84, 165, 0.18);
}

.faq-category-card:nth-child(3n+2) {
  background: #fff7ef;
  border-color: rgba(255, 179, 97, 0.24);
}

.faq-category-card:nth-child(3n+3) {
  background: #eefaf8;
  border-color: rgba(135, 220, 199, 0.30);
}

.faq-category-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--faq-brand-strong);
  box-shadow: inset 0 0 0 1px rgba(247, 84, 165, 0.08);
  transition: transform var(--faq-transition), box-shadow var(--faq-transition);
}

.faq-category-icon .fa-icon {
  width: 1.8em;
  height: 1.8em;
}

.faq-category-card:hover .faq-category-icon,
.faq-category-card.is-active .faq-category-icon {
  transform: scale(1.05);
  box-shadow: inset 0 0 0 1px rgba(247, 84, 165, 0.14), 0 10px 24px rgba(129, 89, 114, 0.08);
}

.faq-category-name {
  margin: 5 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--faq-text);
}

.faq-category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--faq-text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(247, 84, 165, 0.08);
}

.faq-main {
  padding: 34px 0 60px;
  background: var(--faq-white);
}

.faq-panel {
  display: none;
  background: transparent;
}

.faq-panel.is-visible {
  display: block;
}

.faq-panel-title {
  margin: 15px 0 40px;
  padding-bottom: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--faq-text);
  position: relative;
}

.faq-panel-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--faq-brand-strong), var(--faq-brand));
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-entry {
  background: linear-gradient(180deg, var(--faq-row) 0%, #ffd7e8 100%);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(88, 48, 70, 0.03);
  overflow: hidden;
  border: 1px solid rgba(247, 84, 165, 0.10);
  transition: transform var(--faq-transition), box-shadow var(--faq-transition), border-color var(--faq-transition);
}

.faq-entry:hover {
  box-shadow: 0 8px 22px rgba(88, 48, 70, 0.08);
}

.faq-entry.is-open {
  box-shadow: 0 14px 28px rgba(88, 48, 70, 0.08);
  border-color: rgba(247, 84, 165, 0.18);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background var(--faq-transition), color var(--faq-transition), box-shadow var(--faq-transition);
}

.faq-entry.is-open .faq-trigger {
  background: rgba(247, 84, 165, 0.05);
}

.faq-trigger:hover {
  color: var(--faq-brand-strong);
  background: rgba(247, 84, 165, 0.04);
}

.faq-trigger-text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--faq-text);
}

.faq-trigger-icon {
  flex: 0 0 auto;
  color: var(--faq-text-muted);
  transition: transform 0.28s ease, color 0.28s ease;
}

.faq-entry.is-open .faq-trigger-icon {
  transform: rotate(180deg);
  color: var(--faq-brand-strong);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: #ffffff;
  border-top: 1px solid rgba(247, 84, 165, 0.08);
}

.faq-body-inner {
  padding: 0 22px 20px;
  background: #ffffff;
}

.faq-content {
  padding-top: 16px;
  font-size: 1.02rem;
  color: var(--faq-text-soft);
  line-height: 1.7;
}

.faq-content > *:first-child {
  margin-top: 0;
}

.faq-content p,
.faq-content ul,
.faq-content ol,
.faq-content table,
.faq-content .faq-media,
.faq-content .faq-video-container,
.faq-content .faq-card-list,
.faq-content .shorts-container,
.faq-content .customs-precautions {
  margin: 0 0 14px;
}

.faq-content p:last-child,
.faq-content ul:last-child,
.faq-content ol:last-child,
.faq-content table:last-child,
.faq-content .faq-media:last-child,
.faq-content .faq-video-container:last-child,
.faq-content .faq-card-list:last-child,
.faq-content .shorts-container:last-child,
.faq-content .customs-precautions:last-child {
  margin-bottom: 0;
}

.faq-content a {
  color: var(--faq-brand-strong);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(247, 84, 165, 0.45);
  transition: color var(--faq-transition), border-color var(--faq-transition);
}

.faq-content a:hover {
  color: var(--faq-text);
  border-bottom-color: rgba(247, 84, 165, 0.9);
}

.faq-content ul,
.faq-content ol {
  padding: 0;
  list-style: none;
}

.faq-content ol {
  counter-reset: faq-counter;
}

.faq-content ul li,
.faq-content ol li {
  position: relative;
  display: block;
  margin: 0 0 10px;
  padding-left: 1.55rem;
  line-height: 1.7;
}

.faq-content ul li:last-child,
.faq-content ol li:last-child {
  margin-bottom: 0;
}

.faq-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--faq-brand-strong);
  font-weight: 700;
  line-height: 1.7;
}

.faq-content ol li::before {
  counter-increment: faq-counter;
  content: counter(faq-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--faq-brand-strong);
  font-weight: 700;
  line-height: 1.7;
}

.faq-content strong {
  color: var(--faq-text);
}

.faq-note {
  color: #d9488e;
  font-weight: 800;
}

.faq-muted {
  color: var(--faq-text-soft);
  font-size: 0.93rem;
}

.faq-small {
  font-size: 0.89rem;
  color: var(--faq-text-soft);
}

.faq-center {
  text-align: center;
}

.faq-spacer-sm {
  height: 8px;
}

.faq-spacer-md {
  height: 18px;
}

.faq-media,
.faq-video-container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 14px;
  text-align: center;
}

.faq-content .faq-media:last-child,
.faq-content .faq-video-container:last-child {
  margin-bottom: 0;
}

.faq-image {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(247, 84, 165, 0.14);
  border-radius: 20px;
  box-shadow: var(--faq-shadow-soft);
  background: #fff;
  padding: 8px;
}

.faq-image--plain {
  padding: 0;
  border-width: 1px;
  border-color: rgba(247, 84, 165, 0.08);
}

.faq-image--narrow,
.faq-image--small {
  max-width: 650px;
}

.faq-caption,
.shorts-caption {
  margin-top: 8px;
  color: var(--faq-text-soft);
  font-size: 0.88rem;
  text-align: center;
}

.faq-iframe {
  display: block;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 16 / 9;
  min-height: auto;
  height: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--faq-shadow-soft);
  background: #fff;
}

.faq-iframe--tall {
  max-width: 650px;
}

.youtube-facade {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: var(--faq-shadow);
  background: #000;
  cursor: pointer;
}

.thumbnail-container {
  position: absolute;
  inset: 0;
}

.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.28s ease, transform 0.35s ease;
}

.youtube-facade:hover .thumbnail {
  opacity: 1;
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 84, 165, 0.9);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(247, 84, 165, 0.24);
}

.shorts-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 14px;
  text-align: center;
}

.shorts-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--faq-shadow);
  background: #000;
}

.shorts-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-table {
  width: min(100%, 450px);
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--faq-shadow-soft);
  background: #fff;
}

.faq-table th,
.faq-table td {
  border: 1px solid rgba(247, 84, 165, 0.10);
  padding: 10px 12px;
  text-align: left;
}

.faq-table th {
  background: var(--faq-brand-pale);
  color: var(--faq-text);
  font-weight: 700;
}

.faq-card-list,
.customs-precautions {
  display: grid;
  gap: 12px;
}

.faq-card,
.precaution-item {
  padding: 14px 16px;
  border: 1px solid rgba(247, 84, 165, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8fc 100%);
  box-shadow: 0 6px 16px rgba(129, 89, 114, 0.04);
}

.faq-card-title,
.precaution-title {
  color: var(--faq-brand-strong);
  font-weight: 800;
  margin-bottom: 5px;
}

.precaution-title {
  margin-top: 0;
  font-size: 0.98rem;
}

.precaution-text {
  margin: 0;
}

.fa-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.faq-help {
  padding: 68px 0 84px;
  text-align: center;
  background: linear-gradient(180deg, #1b171b 0%, #050505 100%);
  color: #fff8fb;
  margin-top: 84px;
}

.faq-help-kicker {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e64595;
  margin-bottom: 16px;
}

.faq-help-title {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.faq-help-text {
  font-size: 1.3rem;
  color: #ffffff;
  max-width: 560px;
  margin: 20px auto 30px;
  line-height: 1.84;
}

.faq-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--faq-brand-strong), var(--faq-brand));
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(247, 84, 165, 0.25);
  transition: transform var(--faq-transition), box-shadow var(--faq-transition);
}

.faq-help-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(247, 84, 165, 0.32);
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--faq-brand-strong) 0%, var(--faq-brand) 100%);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 14px 30px rgba(247, 84, 165, 0.22);
  transition: transform var(--faq-transition), opacity var(--faq-transition), visibility var(--faq-transition), box-shadow var(--faq-transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(247, 84, 165, 0.28);
}

@keyframes backToTopPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 14px 30px rgba(247, 84, 165, 0.22);
  }
  40% {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(247, 84, 165, 0.28);
  }
  80% {
    transform: translateY(0);
    box-shadow: 0 14px 30px rgba(247, 84, 165, 0.22);
  }
  100% {
    transform: translateY(0);
  }
}

.back-to-top.animate {
  animation: backToTopPulse 1.8s ease-in-out;
}

.faq-entry.is-highlighted {
  animation: faq-highlight 1.6s ease;
}

@keyframes faq-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 84, 165, 0.30);
  }
  35% {
    box-shadow: 0 0 0 8px rgba(247, 84, 165, 0.12);
  }
  100% {
    box-shadow: var(--faq-shadow);
  }
}

@media (max-width: 1120px) {
  .faq-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .faq-topzone {
    padding: 18px 0 34px;
  }

  .faq-container {
    width: min(calc(100% - 32px), var(--content-max));
  }

  .faq-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-results {
    top: calc(100% + 8px);
    max-height: 320px;
    border-radius: 18px;
  }

  .search-input {
    min-height: 56px;
    padding: 14px 92px 14px 18px;
    font-size: 0.95rem;
  }

  .faq-trigger {
    padding: 16px 18px;
    align-items: flex-start;
  }

  .faq-body-inner {
    padding: 0 18px 18px;
  }

  .faq-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .popular-searches {
    justify-content: flex-start;
  }

  .popular-searches-label {
    width: 100%;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .faq-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .faq-topzone {
    padding: 18px 0 34px;
  }

  .faq-category-card {
    min-height: 170px;
    padding: 18px 12px;
  }

  .faq-category-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
  }

  .faq-category-icon .fa-icon {
    width: 1.8em;
    height: 1.8em;
  }

  .search-input {
    padding: 13px 88px 13px 16px;
    font-size: 0.94rem;
  }

  .faq-trigger-text {
    font-size: 0.96rem;
  }

  .faq-title {
    font-size: clamp(2.2rem, 11vw, 2.8rem);
  }

  .faq-panel-title {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* FAQ page shell with shared landing header/footer */
.qdepot-sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.qdepot-sticky-header + .faq-page .faq-topzone {
  padding-top: 34px;
}

.faq-page + .qdepot-footer {
  margin-top: 0;
}

@media (max-width: 700px) {
  .qdepot-sticky-header + .faq-page .faq-topzone {
    padding-top: 24px;
  }
}
