/* FAQ Section Base Styles */
#faq {
  scroll-margin-top: 0 !important;
  background-color: #eeede6;
  color: #111111;
  padding: 100px 5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

.faq-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-title .blue-text {
  color: #244df7;
}

.faq-group-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-group-links .group-label {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  margin-right: 2px;
}

.faq-group-links .group-link {
  color: #111111;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.faq-group-links .group-link[aria-current="page"] {
  border-color: #111111;
  background-color: rgba(0, 0, 0, 0.04);
}

.faq-group-links .group-link:hover {
  color: #244df7;
  border-color: #244df7;
}

.faq-group-links .group-sep {
  color: rgba(0, 0, 0, 0.25);
  margin: 0 4px;
}

.faq-group-links .contact-group-link {
  color: #244df7;
}

/* ==========================================
   01 KLASSISCH (ACCORDION)
   ========================================== */
.faq-v01 .faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.faq-v01 .faq-lead {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
  max-width: 480px;
  margin-bottom: 24px;
}

.faq-v01 .faq-accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-v01 .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
}

.faq-v01 .faq-item[open] {
  background-color: rgba(255, 255, 255, 0.4);
}

.faq-v01 .faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  user-select: none;
}

.faq-v01 .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-v01 .faq-num {
  font-size: 12px;
  font-family: monospace;
  color: #244df7;
  font-weight: 700;
  margin-right: 16px;
  width: 24px;
  flex-shrink: 0;
}

.faq-v01 .faq-q-text {
  flex-grow: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.faq-v01 .faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: #111111;
  margin-left: 16px;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-v01 .faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: #244df7;
}

.faq-v01 .faq-answer {
  padding: 0 16px 22px 56px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}

.faq-v01 .faq-answer p {
  margin: 0;
}

/* ==========================================
   02 THEMEN (CATEGORY TABS)
   ========================================== */
.faq-v02 .faq-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  flex-wrap: wrap;
  gap: 20px;
}

.faq-v02 .faq-tablist {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.faq-v02 .faq-tab {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  color: #111111;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-v02 .faq-tab .tab-num {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  font-family: monospace;
}

.faq-v02 .faq-tab:hover {
  border-color: #244df7;
  color: #244df7;
}

.faq-v02 .faq-tab.active,
.faq-v02 .faq-tab[aria-selected="true"] {
  background-color: #244df7;
  color: #ffffff;
  border-color: #244df7;
}

.faq-v02 .faq-tab.active .tab-num,
.faq-v02 .faq-tab[aria-selected="true"] .tab-num {
  color: rgba(255, 255, 255, 0.7);
}

.faq-v02 .faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.faq-v02 .faq-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-v02 .faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-v02 .faq-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.faq-v02 .faq-card .faq-num {
  font-size: 12px;
  font-weight: 700;
  color: #244df7;
  font-family: monospace;
}

.faq-v02 .faq-card .faq-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  background-color: #eeede6;
  color: #111111;
  border-radius: 3px;
}

.faq-v02 .faq-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.faq-v02 .faq-card-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

/* ==========================================
   03 EDITORIAL (2-COLUMN ALWAYS-VISIBLE)
   ========================================== */
.faq-v03 .faq-editorial-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 2px solid #111111;
  align-items: end;
}

.faq-v03 .faq-editorial-intro p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 16px;
}

.faq-v03 .faq-editorial-list {
  border-top: 1px solid #111111;
}

.faq-v03 .faq-edit-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #111111;
  align-items: start;
}

.faq-v03 .faq-edit-col-q {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.faq-v03 .faq-edit-col-q .faq-num {
  font-size: 14px;
  font-weight: 800;
  color: #244df7;
  font-family: monospace;
  flex-shrink: 0;
}

.faq-v03 .faq-edit-question {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.faq-v03 .faq-edit-col-a p {
  font-size: 15px;
  line-height: 1.6;
  color: #222222;
  margin: 0;
  font-weight: 400;
}
