.vfaq {
  background: var(--vierlot-bg);
  color: var(--vierlot-text);
  font-family: var(--vierlot-font);
  scroll-behavior: smooth;
}
.vfaq__container {
  padding: 80px 40px;
  max-width: var(--vierlot-max-width);
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.vfaq__title {
  font-size: 28px;
  font-weight: 500;
  color: var(--vierlot-text);
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.vfaq__anchors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 50px;
}
.vfaq__anchor {
  font-size: 14px;
  font-weight: 500;
  color: var(--vierlot-text);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.vfaq__anchor:hover {
  color: var(--vierlot-text-light);
}
.vfaq__anchor-sep {
  color: var(--vierlot-text-muted);
  font-size: 12px;
}
.vfaq__section {
  margin-bottom: 40px;
  scroll-margin-top: 80px;
}
.vfaq__heading {
  font-size: 24px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vierlot-line);
}
.vfaq__qa {
  margin-bottom: 32px;
}
.vfaq__q {
  font-size: 18px;
  font-weight: 500;
  color: var(--vierlot-text);
  margin: 0 0 8px;
  line-height: 1.4;
}
.vfaq__a {
  font-size: 16px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.6;
  margin: 0 0 8px;
}
.vfaq__list {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  line-height: 1.8;
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}
.vfaq__list li {
  padding-left: 16px;
  position: relative;
}
.vfaq__list li::before {
  content: '–';
  position: absolute;
  left: 0;
}
.vfaq__inquire-btn {
  display: inline-block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--vierlot-text);
  color: var(--vierlot-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.vfaq__inquire-btn:hover {
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
}
.vfaq__contact-line {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  text-align: center;
  margin: 8px 0;
  position: relative;
}
.vfaq__email {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 500;
  color: var(--vierlot-text);
  cursor: pointer;
  text-decoration: underline;
}
.vfaq__copy-toast {
  position: relative;
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  margin-left: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  vertical-align: middle;
}
.vfaq__copy-toast.is-visible {
  opacity: 1;
}
.vfaq__top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--vierlot-text);
  background: var(--vierlot-bg);
  color: var(--vierlot-text);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9000;
}
.vfaq__top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.vfaq__top:hover {
  color: var(--vierlot-text-light);
}

@media (max-width: 768px) {
  .vfaq__container {
    padding: 60px 16px;
  }
  .vfaq__title {
    font-size: 24px;
  }
  .vfaq__anchors {
    display: none;
  }
  .vfaq__heading {
    font-size: 20px;
  }
  .vfaq__q {
    font-size: 16px;
  }
  .vfaq__a {
    font-size: 15px;
  }
  .vfaq__top {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
