/* TextElit FAQ page start */
.te-faq,
.te-faq-content,
.te-faq-cta {
  --te-faq-bg: var(--color-bg, #f9fafb);
  --te-faq-surface: var(--color-surface, #ffffff);
  --te-faq-text: var(--color-text, #1A2633);
  --te-faq-muted: var(--color-secondary, #2d3e50);
  --te-faq-primary: var(--color-primary, #ff7f50);
  --te-faq-border: var(--color-border, #e5e7eb);
  --te-primary: var(--te-faq-primary);
  --te-surface: var(--te-faq-surface);
  --te-border: var(--te-faq-border);
  color: var(--te-faq-text);
  background: var(--te-faq-bg);
  font-family: Inter-Regular, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}
.te-faq *,
.te-faq-content *,
.te-faq-cta * { box-sizing: border-box; }
.te-faq__container {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin-inline: auto;
}
.te-faq-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(132px, 11vw, 166px) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--te-faq-primary) 5%, transparent), transparent 48%),
    var(--te-faq-bg);
}
.te-faq-hero::after,
.te-faq-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 34%, color-mix(in srgb, var(--te-faq-primary) 16%, #fff 8%), transparent 56%),
    color-mix(in srgb, var(--te-faq-primary) 7%, transparent);
  box-shadow: 0 28px 84px color-mix(in srgb, var(--te-faq-primary) 10%, transparent);
  opacity: .78;
}
.te-faq-content::before {
  content: "";
  position: absolute;
  right: clamp(18%, 24vw, 34%);
  top: clamp(120px, 18vw, 220px);
  width: clamp(190px, 18vw, 300px);
  height: clamp(130px, 12vw, 210px);
  border-radius: 999px;
  background: color-mix(in srgb, var(--te-faq-primary) 5%, transparent);
  box-shadow: 0 24px 78px color-mix(in srgb, var(--te-faq-primary) 8%, transparent);
  pointer-events: none;
  transform: rotate(-16deg);
  opacity: .68;
}
.te-faq-hero::after {
  right: clamp(-180px, -10vw, -86px);
  top: 92px;
  width: clamp(260px, 26vw, 420px);
  height: clamp(190px, 19vw, 300px);
  transform: rotate(-12deg);
}
.te-faq-hero .te-faq__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 5.6vw, 72px);
  align-items: center;
}
.te-faq__eyebrow,
.te-faq-group__eyebrow {
  display: block;
  color: var(--te-faq-primary);
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.te-faq-hero__title {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--te-faq-text);
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: var(--font-sizes-h1);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}
.te-faq-hero__text,
.te-faq-side__text,
.te-faq-group__summary,
.te-faq-item__answer,
.te-faq-cta__text {
  color: color-mix(in srgb, var(--te-faq-muted) 86%, var(--te-faq-text));
  font-size: clamp(15px, 1.16vw, 17px);
  line-height: 1.72;
}
.te-faq-hero__text {
  max-width: 720px;
  margin-top: 22px;
  font-size: clamp(16px, 1.35vw, 19px);
}
.te-faq-hero__text p,
.te-faq-side__text p,
.te-faq-group__summary p,
.te-faq-item__answer p,
.te-faq-cta__text p { margin: 0; }
.te-faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.te-faq .te-btn,
.te-faq-cta .te-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--te-faq-border);
  border-radius: 999px;
  font-family: Inter-Bold, Inter, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}
.te-faq .te-btn-primary,
.te-faq-cta .te-btn-primary {
  border-color: color-mix(in srgb, var(--te-faq-primary) 78%, transparent);
  background: linear-gradient(135deg, var(--te-faq-primary), color-mix(in srgb, var(--te-faq-primary) 82%, #d94f25));
  color: #fff;
  box-shadow: 0 14px 28px color-mix(in srgb, var(--te-faq-primary) 28%, transparent);
}
.te-faq .te-btn-secondary {
  background: color-mix(in srgb, var(--te-faq-surface) 92%, transparent);
  color: var(--te-faq-text);
  box-shadow: 0 14px 28px rgba(26, 38, 51, .055);
}
.te-faq .te-btn-primary::after,
.te-faq-cta .te-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.24) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .48s ease;
}
.te-faq .te-btn:hover,
.te-faq .te-btn:focus-visible,
.te-faq-cta .te-btn:hover,
.te-faq-cta .te-btn:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--te-faq-primary) 52%, var(--te-faq-border));
  outline: none;
}
.te-faq .te-btn-primary:hover::after,
.te-faq .te-btn-primary:focus-visible::after,
.te-faq-cta .te-btn-primary:hover::after,
.te-faq-cta .te-btn-primary:focus-visible::after { transform: translateX(120%); }
.te-faq-brand,
.te-faq-group,
.te-faq-item,
.te-faq-side,
.te-faq-cta__panel {
  border: 1px solid var(--te-faq-border);
  border-radius: 8px;
  background: var(--te-faq-surface);
}
.te-faq-brand {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 22px 58px rgba(26, 38, 51, .06);
}
.te-faq-brand::after {
  content: none;
}
.te-faq-brand > * {
  position: relative;
  z-index: 1;
}
.te-faq-brand__mark {
  width: clamp(60px, 6vw, 78px);
  margin: 0;
}
.te-faq-brand__mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.te-faq-brand__mark--dark { display: none; }
.te-faq-brand__text {
  display: grid;
  gap: 5px;
  color: var(--te-faq-text);
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 800;
  line-height: 1.2;
}
.te-faq-brand__text p {
  display: grid;
  gap: 5px;
  margin: 0;
}
.te-faq-brand__text span,
.te-faq-brand__note {
  color: color-mix(in srgb, var(--te-faq-muted) 84%, var(--te-faq-text));
  font-family: Inter-Regular, Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}
.te-faq-brand__note {
  grid-column: 1 / -1;
  margin-top: 6px;
  color: var(--te-faq-primary);
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.te-faq-content {
  position: relative;
  overflow: hidden;
  padding-block: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(
      ellipse 260px 180px at 104% 31%,
      transparent 67.8%,
      color-mix(in srgb, var(--te-faq-primary) 24%, transparent) 68.2%,
      color-mix(in srgb, var(--te-faq-primary) 24%, transparent) 68.7%,
      transparent 69.1%
    ),
    radial-gradient(
      ellipse 230px 160px at -4% 73%,
      transparent 67.8%,
      color-mix(in srgb, var(--te-faq-primary) 20%, transparent) 68.2%,
      color-mix(in srgb, var(--te-faq-primary) 20%, transparent) 68.7%,
      transparent 69.1%
    ),
    var(--te-faq-bg);
}
.te-faq-content::after {
  left: clamp(-160px, -8vw, -82px);
  bottom: -120px;
  width: clamp(250px, 24vw, 380px);
  height: clamp(170px, 16vw, 260px);
  opacity: .62;
  transform: rotate(12deg);
}
.te-faq-content .te-faq__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}
.te-faq-article {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}
.te-faq-group {
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: 0 18px 46px rgba(26, 38, 51, .045);
  scroll-margin-top: 150px;
}
.te-faq-group__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.te-faq-group__title,
.te-faq-side__title,
.te-faq-cta__title {
  margin: 0;
  color: var(--te-faq-text);
  font-family: Inter-Bold, Inter, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.te-faq-group__title {
  font-size: clamp(24px, 2.5vw, 34px);
  scroll-margin-top: 150px;
}
.te-faq-list {
  display: grid;
  gap: 12px;
}
.te-faq-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--te-faq-primary) 5%, transparent), transparent 58%),
    color-mix(in srgb, var(--te-faq-surface) 92%, transparent);
}
.te-faq-item__number {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--te-faq-primary) 12%, transparent);
  color: var(--te-faq-primary);
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.te-faq-item__question {
  margin: 0;
  color: var(--te-faq-text);
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
}
.te-faq-item__answer {
  grid-column: 2;
}
.te-faq-side {
  position: sticky;
  top: 132px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(26, 38, 51, .045);
}
.te-faq-side__title {
  font-size: var(--font-sizes-h4);
}
.te-faq-side__text {
  margin-top: 12px;
  font-size: 15px;
}
.te-faq-side__nav {
  margin-top: 18px;
}
.te-faq-nav {
  display: grid;
  gap: 8px;
}
.te-faq-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid color-mix(in srgb, var(--te-faq-border) 78%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--te-faq-surface) 86%, transparent);
  color: color-mix(in srgb, var(--te-faq-text) 84%, var(--te-faq-muted));
  font-family: Inter-Bold, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.te-faq-nav a::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--te-faq-primary) 42%, transparent);
}
.te-faq-nav a:hover,
.te-faq-nav a:focus-visible {
  transform: translateX(2px);
  border-color: color-mix(in srgb, var(--te-faq-primary) 38%, var(--te-faq-border));
  background: color-mix(in srgb, var(--te-faq-primary) 9%, var(--te-faq-surface));
  color: var(--te-faq-primary);
  outline: none;
}
.te-faq-side__button {
  width: 100%;
  margin-top: 18px;
}
.te-faq-cta {
  padding-block: clamp(32px, 5vw, 60px) clamp(56px, 7vw, 90px);
}
.te-faq-cta__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 30px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--te-faq-primary) 9%, transparent), transparent 58%),
    var(--te-faq-surface);
  box-shadow: 0 20px 54px rgba(26, 38, 51, .055);
}
.te-faq-cta__panel::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -96px;
  width: 220px;
  height: 220px;
  border: 1px solid color-mix(in srgb, var(--te-faq-primary) 28%, transparent);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  transform: none;
}
.te-faq-cta__panel > * {
  position: relative;
  z-index: 1;
}
.te-faq-cta__title {
  font-size: var(--font-sizes-h2);
}
.te-faq-cta__text {
  max-width: 720px;
  margin: 0;
}
.te-faq-cta__button {
  grid-column: 2;
  grid-row: 1 / span 3;
  white-space: nowrap;
}
html[data-theme="dark"] .te-faq,
html[data-theme="dark"] .te-faq-content,
html[data-theme="dark"] .te-faq-cta {
  --te-faq-bg: color-mix(in srgb, var(--color-bg, #1A2633) 96%, #0d1520 4%);
  --te-faq-surface: var(--color-surface, #111827);
  --te-faq-text: var(--color-text, #E5E9F0);
  --te-faq-muted: var(--color-secondary, #9AA4B2);
  --te-faq-border: var(--color-border, rgba(255,255,255,0.08));
}
html[data-theme="dark"] .te-faq-brand,
html[data-theme="dark"] .te-faq-group,
html[data-theme="dark"] .te-faq-item,
html[data-theme="dark"] .te-faq-side,
html[data-theme="dark"] .te-faq-cta__panel {
  box-shadow: none;
}
html[data-theme="dark"] .te-faq .te-btn-secondary {
  background: color-mix(in srgb, var(--te-faq-surface) 88%, #fff 4%);
  color: var(--te-faq-text);
}
html[data-theme="dark"] .te-faq-brand__mark--light { display: none; }
html[data-theme="dark"] .te-faq-brand__mark--dark { display: block; }
@media (max-width: 980px) {
  .te-faq-hero .te-faq__container,
  .te-faq-content .te-faq__container,
  .te-faq-cta__panel {
    grid-template-columns: minmax(0, 1fr);
  }
  .te-faq-side {
    position: static;
    order: -1;
  }
  .te-faq-cta__button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}
@media (max-width: 767px) {
  .te-faq-content {
    background: var(--te-faq-bg);
  }

  .te-faq-content::before {
    box-shadow: 0 24px 78px color-mix(in srgb, var(--te-faq-primary) 8%, transparent);
  }
}

@media (max-width: 640px) {
  .te-faq__container {
    width: min(100% - 28px, 1180px);
  }
  .te-faq-hero {
    padding-block: 54px 34px;
  }
  .te-faq__eyebrow {
    font-size: 14px;
  }
  .te-faq-hero__actions,
  .te-faq .te-btn,
  .te-faq-cta .te-btn,
  .te-faq-cta__button {
    width: 100%;
  }
  .te-faq-brand {
    grid-template-columns: 1fr;
  }
  .te-faq-group,
  .te-faq-side,
  .te-faq-cta__panel {
    padding: 20px;
  }
  .te-faq-item {
    grid-template-columns: 1fr;
  }
  .te-faq-item__number,
  .te-faq-item__answer {
    grid-column: 1;
  }
  .te-faq-group,
  .te-faq-group__title {
    scroll-margin-top: 88px;
  }
}


/* TextElit FAQ accordion start */
.te-faq-item {
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.te-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.te-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;
}

.te-faq-item__trigger-text {
  min-width: 0;
}

.te-faq-item__icon {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid color-mix(in srgb, var(--te-faq-primary) 22%, var(--te-faq-border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--te-faq-surface) 90%, transparent);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.te-faq-item__icon::before,
.te-faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--te-faq-primary);
  transform: translate(-50%, -50%);
  transition: transform .18s ease, opacity .18s ease;
}

.te-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.te-faq-accordion-ready .te-faq-item__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .26s ease, opacity .2s ease, transform .2s ease, margin-top .2s ease;
}

.te-faq-accordion-ready .te-faq-item.is-open .te-faq-item__answer {
  max-height: var(--te-faq-answer-height, 500px);
  opacity: 1;
  transform: translateY(0);
}

.te-faq-item.is-open .te-faq-item__icon {
  border-color: color-mix(in srgb, var(--te-faq-primary) 48%, var(--te-faq-border));
  background: color-mix(in srgb, var(--te-faq-primary) 12%, var(--te-faq-surface));
}

.te-faq-item.is-open .te-faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.te-faq-item.is-read:not(.is-open) {
  border-color: color-mix(in srgb, var(--te-faq-primary) 28%, var(--te-faq-border));
}

.te-faq-item.is-read .te-faq-item__number,
.te-faq-item.is-read .te-faq-item__icon {
  background: color-mix(in srgb, var(--te-faq-primary) 18%, var(--te-faq-surface));
  color: var(--te-faq-primary);
}

.te-faq-item.is-read .te-faq-item__question {
  color: color-mix(in srgb, var(--te-faq-primary) 72%, var(--te-faq-text));
}

.te-faq-item__trigger:hover .te-faq-item__icon,
.te-faq-item__trigger:focus-visible .te-faq-item__icon {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--te-faq-primary) 54%, var(--te-faq-border));
}

.te-faq-item__trigger:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--te-faq-primary) 22%, transparent);
  outline-offset: 4px;
  border-radius: 8px;
}

html[data-theme="dark"] .te-faq-item__icon {
  background: color-mix(in srgb, var(--te-faq-surface) 82%, #fff 4%);
}

@media (prefers-reduced-motion: reduce) {
  .te-faq-item,
  .te-faq-item__answer,
  .te-faq-item__icon,
  .te-faq-item__icon::before,
  .te-faq-item__icon::after {
    transition: none;
  }
}

@media (max-width: 640px) {
  .te-faq-item__question,
  .te-faq-item__trigger {
    gap: 12px;
  }

  .te-faq-item__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }
}
/* TextElit FAQ accordion end */

/* TextElit FAQ question form start */
.te-faq-question-form {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid color-mix(in srgb, var(--te-faq-border) 88%, transparent);
}

.te-faq-question-ready .te-faq-question-form {
  display: none;
}

.te-faq-question-ready.is-question-form-open .te-faq-question-form {
  display: grid;
}

.te-faq-question-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.te-faq-question-form .form-group,
.te-faq-question-form .bricks-form-field {
  min-width: 0;
  margin: 0;
}

.te-faq-question-form .form-group:has(textarea),
.te-faq-question-form .form-group:has(input[type="checkbox"]),
.te-faq-question-form .submit-button-wrapper,
.te-faq-question-form .message {
  grid-column: 1 / -1;
}

.te-faq-question-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--te-faq-text);
  font-family: Inter-Bold, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.te-faq-question-form input:not([type="checkbox"]),
.te-faq-question-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--te-faq-border);
  border-radius: 8px;
  background: var(--te-faq-surface);
  color: var(--te-faq-text);
  font: inherit;
  line-height: 1.45;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.te-faq-question-form textarea {
  min-height: 132px;
  resize: vertical;
}

.te-faq-question-form input:not([type="checkbox"]):focus,
.te-faq-question-form textarea:focus {
  border-color: color-mix(in srgb, var(--te-faq-primary) 62%, var(--te-faq-border));
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--te-faq-primary) 16%, transparent);
}

.te-faq-question-form input::placeholder,
.te-faq-question-form textarea::placeholder {
  color: color-mix(in srgb, var(--te-faq-muted) 72%, transparent);
}

.te-faq-question-form .form-group:has(input[type="checkbox"]) {
  display: block;
}

.te-faq-question-form .options-wrapper,
.te-faq-question-form .options-wrapper li {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.te-faq-question-form .options-wrapper li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.te-faq-question-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--te-faq-primary);
}

.te-faq-question-form input[type="checkbox"] + label {
  width: auto;
  margin: 0;
  color: color-mix(in srgb, var(--te-faq-muted) 88%, var(--te-faq-text));
  font-family: Inter-Regular, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.te-faq-question-form button[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding-inline: 24px;
  border: 1px solid color-mix(in srgb, var(--te-faq-primary) 76%, transparent);
  border-radius: 999px;
  background: var(--te-faq-primary);
  color: #fff;
  font-family: Inter-Bold, Inter, Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.te-faq-question-form button[type="submit"]:hover,
.te-faq-question-form button[type="submit"]:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--te-faq-primary) 24%, transparent);
  outline: none;
}

.te-faq-question-form .message {
  padding: 14px 16px;
  border: 1px solid var(--te-faq-border);
  border-radius: 8px;
}

.te-faq-question-form .message.success {
  border-color: color-mix(in srgb, var(--color-success, #52b788) 42%, var(--te-faq-border));
  background: color-mix(in srgb, var(--color-success, #52b788) 10%, var(--te-faq-surface));
  color: var(--te-faq-text);
}

.te-faq-question-form .message.error {
  border-color: color-mix(in srgb, var(--color-danger, #d2445e) 42%, var(--te-faq-border));
  background: color-mix(in srgb, var(--color-danger, #d2445e) 8%, var(--te-faq-surface));
}

.te-faq-question-status {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--color-success, #52b788) 46%, var(--te-faq-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-success, #52b788) 10%, var(--te-faq-surface));
  color: var(--te-faq-text);
  font-size: 15px;
  line-height: 1.5;
}

.te-faq-question-status[hidden] {
  display: none;
}

.te-faq-question-form__toggle[aria-expanded="true"] {
  border-color: var(--te-faq-border);
  background: color-mix(in srgb, var(--te-faq-surface) 92%, transparent);
  color: var(--te-faq-text);
  box-shadow: 0 14px 28px rgba(26, 38, 51, .055);
}

.te-faq-question-form__toggle[aria-expanded="true"]:hover,
.te-faq-question-form__toggle[aria-expanded="true"]:focus-visible {
  border-color: color-mix(in srgb, var(--te-faq-primary) 46%, var(--te-faq-border));
  color: var(--te-faq-primary);
}

html[data-theme="dark"] .te-faq-question-form input:not([type="checkbox"]),
html[data-theme="dark"] .te-faq-question-form textarea {
  background: color-mix(in srgb, var(--te-faq-surface) 92%, #fff 3%);
}

html[data-theme="dark"] .te-faq-question-form__toggle[aria-expanded="true"] {
  background: color-mix(in srgb, var(--te-faq-surface) 88%, #fff 4%);
  color: var(--te-faq-text);
  box-shadow: none;
}

html[data-theme="dark"] .te-faq-question-form__toggle[aria-expanded="true"]:hover,
html[data-theme="dark"] .te-faq-question-form__toggle[aria-expanded="true"]:focus-visible {
  border-color: color-mix(in srgb, var(--te-faq-primary) 64%, var(--te-faq-border));
  background: color-mix(in srgb, var(--te-faq-primary) 16%, var(--te-faq-surface));
  color: color-mix(in srgb, var(--te-faq-primary) 78%, #fff);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--te-faq-primary) 12%, transparent);
}

@media (max-width: 640px) {
  .te-faq-question-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .te-faq-question-form button[type="submit"] {
    width: 100%;
  }
}
/* TextElit FAQ question form end */

/* TextElit FAQ side scroll controller start */
@media (min-width: 981px) {
  .te-faq-content {
    overflow: visible;
  }

  .te-faq-content .te-faq__container {
    position: relative;
    align-items: start;
  }

  .te-faq-content .te-faq-side {
    position: relative;
    top: auto;
    align-self: start;
    width: 100%;
    max-height: calc(100vh - var(--te-faq-side-top, 132px) - 50px);
    overflow: auto;
    border-color: color-mix(in srgb, var(--te-faq-primary) 18%, var(--te-faq-border));
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--te-faq-primary) 5%, transparent), transparent 56%),
      var(--te-faq-surface);
    box-shadow: 0 20px 54px rgba(26, 38, 51, .075);
    scrollbar-width: thin;
  }

  .te-faq-content .te-faq-side.is-fixed {
    position: fixed;
    top: var(--te-faq-side-top, 132px);
    left: var(--te-faq-side-left, auto);
    width: var(--te-faq-side-width, 340px);
    z-index: 30;
  }

  .te-faq-content .te-faq-side.is-bottom {
    position: absolute;
    top: var(--te-faq-side-bottom-top, auto);
    left: var(--te-faq-side-bottom-left, auto);
    width: var(--te-faq-side-width, 340px);
    z-index: 1;
  }

  .te-faq-content .te-faq-group,
  .te-faq-content .te-faq-group__title {
    scroll-margin-top: 180px;
  }
}
/* TextElit FAQ side scroll controller end */

/* TextElit FAQ final interaction overrides start */
.te-faq .te-faq-item__question {
  font-weight: 500;
}

html[data-theme="dark"] .te-faq-cta .te-faq-question-form__toggle[aria-expanded="true"]:hover,
html[data-theme="dark"] .te-faq-cta .te-faq-question-form__toggle[aria-expanded="true"]:focus-visible {
  border-color: color-mix(in srgb, var(--te-faq-primary) 64%, var(--te-faq-border)) !important;
  background: color-mix(in srgb, var(--te-faq-primary) 16%, var(--te-faq-surface)) !important;
  color: color-mix(in srgb, var(--te-faq-primary) 78%, #fff) !important;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--te-faq-primary) 12%, transparent) !important;
}
/* TextElit FAQ final interaction overrides end */

/* TextElit FAQ page end */

/* TextElit button primary hover parity: faq */
.te-faq .te-btn-primary:hover,
.te-faq .te-btn-primary:focus-visible,
.te-faq-cta .te-btn-primary:hover,
.te-faq-cta .te-btn-primary:focus-visible {
  border-color: color-mix(in srgb, var(--te-faq-muted) 42%, var(--te-faq-border)) !important;
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--te-faq-primary) 22%, transparent),
    inset 0 0 0 1px color-mix(in srgb, var(--te-faq-muted) 28%, transparent) !important;
}

html[data-theme="dark"] .te-faq .te-btn-primary:hover,
html[data-theme="dark"] .te-faq .te-btn-primary:focus-visible,
html[data-theme="dark"] .te-faq-cta .te-btn-primary:hover,
html[data-theme="dark"] .te-faq-cta .te-btn-primary:focus-visible {
  border-color: color-mix(in srgb, #ffffff 34%, var(--te-faq-muted)) !important;
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--te-faq-primary) 18%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, .26) !important;
}
