/* --- ZAKŁADKA SUPPORT (FAQ i Feedback) --- */
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 30px;
  align-items: start;
}

/* Formularz w stylu szklanym */
.feedback-form .form-group {
  margin-bottom: 15px;
}
.feedback-form label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.form-input {
  width: 100%;
  background: var(--dark-glass-60);
  border: 1px solid var(--overlay-15);
  color: var(--text-main);
  padding: 10px 15px;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

/* FAQ Akordeon */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--neon-cyan); }
.faq-toggle { font-size: 10px; color: var(--text-muted); transition: transform 0.3s ease; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

/* Kiedy FAQ jest aktywne/otwarte */
.faq-item.active .faq-answer {
  max-height: 200px; /* Wysokość wystarczająca na rozwinięcie tekstu */
  margin-top: 15px;
}
.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--neon-cyan);
}

/* Nagłówki kategorii FAQ - Wersja Premium */
.faq-category-title {
  font-size: 18px;
  color: var(--text-muted); /* Subtelny, wygaszony kolor tekstu zamiast jaskrawego cyjanu */
  margin: 35px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--overlay-05); /* Delikatna, lita linia oddzielająca */
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.faq-category-title:first-of-type {
  margin-top: 5px;
}

/* Ozdobny kwadracik z ikoną */
.faq-category-icon-wrapper {
  background: rgba(0, 212, 255, 0.08); /* Lekko przezroczyste tło */
  border: 1px solid rgba(0, 212, 255, 0.2); /* Subtelna ramka w kolorze marki */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  flex-shrink: 0;

  /* NOWE: Efekt 3D */
  box-shadow:
    0 4px 12px rgba(0, 212, 255, 0.15), /* Zewnętrzna miękka poświata */
    inset 0 1px 1px rgba(255, 255, 255, 0.1); /* Wewnętrzny refleks świetlny od góry */
}

.faq-category-icon {
  width: 30px;
  height: 30px;
  color: var(--neon-cyan); /* Ikona SVG dziedziczy ten spójny kolor */
}
