:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --accent: #D97706;
  --border-inactive: rgba(0, 0, 0, 0.05);
  --logo-main: #1f2937; /* Ciemny szary/antracyt */
  --logo-ai: #D97706; /* Amber brand */
}

[data-theme=dark] {
  --bg: #020617;
  --card: #1e293b;
  --text: #f8fafc;
  --accent: #FBBF24;
  --border-inactive: rgba(255, 255, 255, 0.1);
  --logo-main: #f8fafc;
  --logo-ai: #FBBF24;
}

@keyframes helpFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes helpHeroPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes helpItemReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.help-page {
  background: #fff;
  min-height: 100vh;
}

.help-enter {
  animation: helpFadeUp 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

.help-hero {
  position: relative;
  padding: 80px 0 24px;
  text-align: center;
  overflow: hidden;
}
.help-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 20% 50%, rgba(232, 133, 10, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.help-hero__inner {
  position: relative;
  z-index: 1;
}
.help-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8850A;
  background: rgba(232, 133, 10, 0.08);
  border: 1px solid rgba(232, 133, 10, 0.15);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.help-hero__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
}
.help-hero__title-accent {
  font-weight: 600;
  color: #E8850A;
}
.help-hero__subtitle {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

@keyframes helpCursorBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes helpSpinGlow {
  to {
    --glow-angle: 360deg;
  }
}
@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.help-search-bar {
  display: block;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.help-search-bar:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.help-search-bar:hover .help-search-bar__btn {
  background: #111827;
  color: #fff;
}
.help-search-bar:hover .help-search-bar__glow {
  opacity: 1;
}
.help-search-bar__glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: rgba(232, 133, 10, 0.15);
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}
.help-search-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 14px 14px 20px;
  border: 1px solid #E5E2DD;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.help-search-bar__inner i {
  color: #E8850A;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.help-search-bar__placeholder {
  flex: 1;
  text-align: left;
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.4em;
}
.help-search-bar__placeholder::after {
  content: "|";
  color: #E8850A;
  animation: helpCursorBlink 0.8s step-end infinite;
  margin-left: 1px;
  font-weight: 300;
}
.help-search-bar__btn {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 12px;
  background: #E8850A;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.25s ease;
}
@media (max-width: 576px) {
  .help-search-bar__placeholder {
    font-size: 0.82rem;
  }
  .help-search-bar__btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
  .help-search-bar__inner {
    padding: 10px 10px 10px 16px;
  }
}

.help-tabs-nav {
  padding: 8px 0 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.help-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 340px;
  padding: 18px 24px;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
}
@media (max-width: 720px) {
  .help-tab-btn {
    width: 100%;
  }
}
.help-tab-btn:hover {
  border-color: rgba(232, 133, 10, 0.3);
  box-shadow: 0 4px 16px rgba(232, 133, 10, 0.08);
}
.help-tab-btn.is-active {
  border-color: #E8850A;
  background: rgba(232, 133, 10, 0.03);
  box-shadow: 0 4px 20px rgba(232, 133, 10, 0.12);
}
.help-tab-btn.is-active .help-tab-btn__icon {
  background: #E8850A;
  color: #fff;
}
.help-tab-btn__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #6b7280;
  transition: all 0.25s ease;
}
.help-tab-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.help-tab-btn__text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}
.help-tab-btn__text small {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 400;
}

.help-panel {
  display: none;
  padding-bottom: 48px;
}
.help-panel.is-active {
  display: block;
}
.help-panel.is-active .help-enter {
  animation: helpFadeUp 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

.help-faq-search {
  max-width: 704px;
  margin: 0 auto 28px;
  position: relative;
}
.help-faq-search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  font-size: 0.95rem;
}
.help-faq-search__input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  font-size: 1rem;
  color: #111827;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.help-faq-search__input:focus {
  border-color: #E8850A;
  box-shadow: 0 0 0 3px rgba(232, 133, 10, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.help-faq-empty {
  max-width: 704px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 16px;
  color: #6b7280;
  font-size: 0.95rem;
}
.help-faq-empty__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.help-faq-empty__icon i {
  font-size: 1.8rem;
  color: #9ca3af;
}

.help-faq {
  max-width: 704px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-faq__item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  animation: helpItemReveal 0.5s ease both;
  animation-delay: var(--item-delay, 0s);
}
.help-faq__item:hover {
  border-color: rgba(232, 133, 10, 0.2);
}
.help-faq__item.is-open {
  border-color: rgba(232, 133, 10, 0.3);
  box-shadow: 0 4px 20px rgba(232, 133, 10, 0.08);
}

.help-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}
.help-faq__question:hover {
  background: rgba(232, 133, 10, 0.02);
}
.help-faq__question-text {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.help-faq__chevron {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.help-faq__chevron i {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

.help-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.help-faq__answer-inner {
  padding: 0 24px 22px;
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid #f3f4f6;
  padding-top: 16px;
  margin: 0 24px;
  padding-left: 0;
  padding-right: 0;
}

.help-faq__item.is-open .help-faq__chevron {
  background: rgba(232, 133, 10, 0.1);
}
.help-faq__item.is-open .help-faq__chevron i {
  transform: rotate(180deg);
  color: #E8850A;
}
.help-faq__item.is-open .help-faq__answer {
  max-height: 500px;
}

.help-info-box {
  max-width: 704px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
  border: 1px solid #FED7AA;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.help-info-box__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E8850A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}
.help-info-box__body {
  flex: 1;
  min-width: 0;
}
.help-info-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}
.help-info-box__text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}
.help-info-box__text a {
  color: #E8850A;
  text-decoration: none;
  font-weight: 600;
}
.help-info-box__text a:hover {
  text-decoration: underline;
}

.help-form-box {
  max-width: 704px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 30px rgba(0, 0, 0, 0.06);
}
@media (max-width: 576px) {
  .help-form-box {
    padding: 24px 18px;
    border-radius: 16px;
  }
}
.help-form-box__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.help-form-box__subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 28px;
}

.help-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) {
  .help-form__row {
    grid-template-columns: 1fr;
  }
}
.help-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.help-form__group--checkbox {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.help-form__group--checkbox .help-form__field-error {
  width: 100%;
  margin-top: 0;
  margin-left: 28px;
}
.help-form__group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.help-form__input, .help-form__select, .help-form__textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 1rem;
  color: #111827;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.help-form__input:focus, .help-form__select:focus, .help-form__textarea:focus {
  border-color: #E8850A;
  box-shadow: 0 0 0 3px rgba(232, 133, 10, 0.1);
}
.help-form__select {
  background: #f9fafb;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.help-form__textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}
.help-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid #e5e7eb;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  background: #fff;
  transition: all 0.2s ease;
}
.help-form__checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.help-form__checkbox:checked {
  background: #E8850A;
  border-color: #E8850A;
}
.help-form__checkbox:checked::after {
  transform: rotate(45deg) scale(1);
}
.help-form__checkbox:hover:not(:checked) {
  border-color: #E8850A;
}
.help-form__checkbox:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 133, 10, 0.2);
}
.help-form__checkbox-label {
  font-size: 0.82rem;
  font-weight: 400 !important;
  color: #6b7280 !important;
  line-height: 1.5;
  cursor: pointer;
}
.help-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #E8850A;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s ease;
}
.help-form__submit:hover {
  background: #B45309;
  transform: translateY(-1px);
}
.help-form__submit:active {
  transform: translateY(0);
}
.help-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@keyframes helpShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.help-form .form-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 2px;
}

.help-form__group--checkbox .form-error {
  width: 100%;
  margin-left: 28px;
}

.help-form__field-error {
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  animation: helpFieldErrorIn 0.3s ease both;
}
.help-form__field-error::before {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7.2 40.1S489.3 480 475.1 480H36.9c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8.2-40.1l216-368C225.6 39.5 238.7 32 256 32zm0 128c-13.3 0-24 10.7-24 24v112c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0-64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7.2 40.1S489.3 480 475.1 480H36.9c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8.2-40.1l216-368C225.6 39.5 238.7 32 256 32zm0 128c-13.3 0-24 10.7-24 24v112c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0-64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

@keyframes helpFieldErrorIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.help-form__group.has-error .help-form__input,
.help-form__group.has-error .help-form__select,
.help-form__group.has-error .help-form__textarea {
  border-color: #ef4444;
}
.help-form__group.has-error .help-form__input:focus,
.help-form__group.has-error .help-form__select:focus,
.help-form__group.has-error .help-form__textarea:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.help-form__group.has-error > label {
  color: #ef4444;
}
.help-form__group.has-error.help-form__group--checkbox .help-form__checkbox-label {
  color: #ef4444 !important;
}
.help-form__group.has-error.help-form__group--checkbox .help-form__checkbox {
  border-color: #ef4444;
}
.help-form__group.has-error.help-form__group--checkbox .help-form__checkbox:checked {
  background: #ef4444;
  border-color: #ef4444;
}
.help-form__group.has-error.help-form__group--checkbox .help-form__checkbox:hover:not(:checked) {
  border-color: #ef4444;
}
.help-form__group.has-error.help-form__group--checkbox .help-form__checkbox:focus-visible {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.help-form__error-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #DC2626;
  margin-bottom: 12px;
}
.help-form__error-alert i {
  flex-shrink: 0;
}

.help-form-success {
  text-align: center;
  padding: 40px 16px;
}
.help-form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.help-form-success__icon i {
  font-size: 2rem;
  color: #16A34A;
}
.help-form-success__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.help-form-success__text {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

.help-cta {
  position: relative;
  background: #09090B;
  padding: 5rem 0 4rem;
  margin-top: 0;
  overflow: hidden;
}
.help-cta__inner {
  position: relative;
  z-index: 1;
}
.help-cta__header {
  text-align: center;
  margin-bottom: 40px;
}
.help-cta__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.help-cta__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.help-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 992px) {
  .help-cta__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .help-cta__cards {
    grid-template-columns: 1fr;
  }
}
.help-cta__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.help-cta__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.help-cta__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.help-cta__card-icon i {
  font-size: 1.3rem;
}
.help-cta__card-icon--email {
  background: rgba(232, 133, 10, 0.15);
}
.help-cta__card-icon--email i {
  color: #E8850A;
}
.help-cta__card-icon--social {
  background: rgba(59, 130, 246, 0.15);
}
.help-cta__card-icon--social i {
  color: #60A5FA;
}
.help-cta__card-icon--partner {
  background: rgba(34, 197, 94, 0.15);
}
.help-cta__card-icon--partner i {
  color: #4ADE80;
}
.help-cta__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.help-cta__card-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.5;
}
.help-cta__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #E8850A;
  margin-top: auto;
  padding-top: 8px;
  transition: gap 0.2s ease;
}
.help-cta__card-link i {
  font-size: 0.72rem;
}
.help-cta__card:hover .help-cta__card-link {
  gap: 10px;
}

/*# sourceMappingURL=help.output.css.map */
