/**
 * AIDevExpert — Professional FAQ Page
 * Version 1.0.36
 */

.ade-faq-page {
  --faq-ink: #0a0b0d;
  --faq-muted: #5e6878;
  --faq-border: #e7e9ee;
  --faq-soft: #f6f7f9;
  --faq-yellow: #fdc90f;
  --faq-orange: #d26a04;
  --faq-dark: #111214;
  background: #fff;
  color: var(--faq-ink);
  overflow: hidden;
}

.ade-faq-page .container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.ade-faq-hero {
  position: relative;
  isolation: isolate;
  padding: 54px 0 72px;
  background:
    linear-gradient(115deg, rgba(253, 201, 15, .09), transparent 36%),
    radial-gradient(circle at 82% 22%, rgba(210, 106, 4, .08), transparent 32%),
    #fbfbfc;
  border-bottom: 1px solid var(--faq-border);
}

.ade-faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(10, 11, 13, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 11, 13, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.ade-faq-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.ade-faq-hero__glow--one {
  width: 310px;
  height: 310px;
  right: -90px;
  top: -120px;
  background: rgba(253, 201, 15, .14);
}

.ade-faq-hero__glow--two {
  width: 190px;
  height: 190px;
  left: -80px;
  bottom: -70px;
  background: rgba(210, 106, 4, .08);
}

.ade-faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: #747d8b;
  font-size: 13px;
  font-weight: 600;
}

.ade-faq-breadcrumb a {
  color: var(--faq-ink);
  text-decoration: none;
}

.ade-faq-breadcrumb a:hover { color: var(--faq-orange); }

.ade-faq-hero__content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.ade-faq-eyebrow,
.ade-faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #895100;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ade-faq-eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--faq-yellow);
}

.ade-faq-hero h1 {
  max-width: 900px;
  margin: 18px auto 18px;
  color: var(--faq-dark);
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.ade-faq-hero h1 em {
  color: var(--faq-orange);
  font-style: normal;
}

.ade-faq-hero__content > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--faq-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ade-faq-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 760px;
  margin: 32px auto 0;
  padding: 8px 8px 8px 20px;
  background: #fff;
  border: 1px solid #dfe2e8;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(10, 11, 13, .09);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ade-faq-search:focus-within {
  border-color: #c99200;
  box-shadow: 0 22px 65px rgba(10, 11, 13, .12), 0 0 0 4px rgba(253, 201, 15, .15);
  transform: translateY(-1px);
}

.ade-faq-search > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: #6a7280;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.ade-faq-search input {
  min-width: 0;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--faq-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 15px;
}

.ade-faq-search input::placeholder { color: #9299a5; }

.ade-faq-search__clear {
  display: none;
  min-width: 66px;
  height: 40px;
  padding: 0 14px;
  color: #30343a;
  background: #f3f4f6;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.ade-faq-search.has-value .ade-faq-search__clear { display: inline-flex; align-items: center; justify-content: center; }
.ade-faq-search__clear:hover { background: #e9ebef; }

.ade-faq-search__hint {
  margin-top: 13px !important;
  color: #737b87 !important;
  font-size: 13px !important;
}

.ade-faq-search__hint span { color: var(--faq-ink); font-weight: 800; }

.ade-faq-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin: 46px auto 0;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(10, 11, 13, .08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(10, 11, 13, .04);
}

.ade-faq-hero__stats div {
  position: relative;
  padding: 20px 16px;
  text-align: center;
}

.ade-faq-hero__stats div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: var(--faq-border);
}

.ade-faq-hero__stats strong,
.ade-faq-hero__stats span { display: block; }
.ade-faq-hero__stats strong { color: var(--faq-ink); font-size: 18px; line-height: 1.2; }
.ade-faq-hero__stats span { margin-top: 5px; color: #747b86; font-size: 12px; font-weight: 600; }

.ade-faq-category-section { padding: 82px 0 88px; }

.ade-faq-section-heading,
.ade-faq-library__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.ade-faq-section-heading { margin-bottom: 30px; }

.ade-faq-section-heading h2,
.ade-faq-library__header h2,
.ade-faq-cta h2 {
  margin: 8px 0 0;
  color: var(--faq-ink);
  font-size: clamp(29px, 3.6vw, 45px);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.ade-faq-section-heading > a {
  color: var(--faq-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ade-faq-section-heading > a span { color: var(--faq-orange); }
.ade-faq-section-heading > a:hover { color: var(--faq-orange); }

.ade-faq-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ade-faq-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 218px;
  padding: 24px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--faq-border);
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(10, 11, 13, .045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.ade-faq-category-card:hover,
.ade-faq-category-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(210, 106, 4, .38);
  box-shadow: 0 22px 50px rgba(10, 11, 13, .09);
}

.ade-faq-category-card.is-active {
  background: linear-gradient(145deg, #fffdf5, #fff8dc);
}

.ade-faq-category-card__icon,
.ade-faq-help-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #7b4900;
  background: #fff5c4;
  border: 1px solid #f4dc76;
  border-radius: 14px;
}

.ade-faq-category-card__icon svg,
.ade-faq-help-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ade-faq-category-card__text { display: block; margin-top: 28px; padding-right: 24px; }
.ade-faq-category-card__text strong { display: block; color: var(--faq-ink); font-size: 16px; line-height: 1.35; }
.ade-faq-category-card__text small { display: block; margin-top: 8px; color: var(--faq-muted); font-size: 12.5px; line-height: 1.6; }

.ade-faq-category-card__count {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  height: 31px;
  padding: 0 8px;
  color: #5f6671;
  background: #f4f5f7;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
}

.ade-faq-library {
  padding: 88px 0 104px;
  background: var(--faq-soft);
  border-top: 1px solid var(--faq-border);
  border-bottom: 1px solid var(--faq-border);
}

.ade-faq-library__layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.ade-faq-sidebar {
  position: sticky;
  top: calc(var(--header-h, 110px) + 20px);
  display: grid;
  gap: 18px;
}

.ade-faq-sidebar__card,
.ade-faq-help-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--faq-border);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(10, 11, 13, .045);
}

.ade-faq-sidebar__label {
  display: block;
  padding: 6px 10px 12px;
  color: #8a9099;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ade-faq-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  margin: 2px 0;
  padding: 0 11px;
  color: #4d5561;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  transition: background .18s ease, color .18s ease;
}

.ade-faq-filter b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  color: #858b94;
  background: #f3f4f6;
  border-radius: 99px;
  font-size: 10px;
}

.ade-faq-filter:hover { color: var(--faq-ink); background: #f7f7f8; }
.ade-faq-filter.is-active { color: var(--faq-ink); background: #fff4bd; }
.ade-faq-filter.is-active b { color: #593b00; background: #fdc90f; }

.ade-faq-help-card { padding: 22px; background: var(--faq-dark); border-color: var(--faq-dark); }
.ade-faq-help-card__icon { color: #111; background: var(--faq-yellow); border-color: var(--faq-yellow); }
.ade-faq-help-card h3 { margin: 18px 0 8px; color: #fff; font-size: 18px; line-height: 1.3; }
.ade-faq-help-card p { margin: 0 0 18px; color: rgba(255, 255, 255, .65); font-size: 12.5px; line-height: 1.65; }
.ade-faq-help-card a { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 42px; border-radius: 10px; text-decoration: none; font-size: 12px; font-weight: 800; }
.ade-faq-help-card__primary { color: #111; background: var(--faq-yellow); }
.ade-faq-help-card__primary:hover { background: #ffe369; }
.ade-faq-help-card__secondary { margin-top: 8px; color: #fff; border: 1px solid rgba(255, 255, 255, .17); }
.ade-faq-help-card__secondary:hover { border-color: rgba(255, 255, 255, .45); }

.ade-faq-library__header { padding-bottom: 25px; border-bottom: 1px solid #dedfe3; }
.ade-faq-library__header h2 { font-size: clamp(28px, 3.4vw, 42px); }
.ade-faq-library__header p { margin: 8px 0 0; color: var(--faq-muted); font-size: 13px; }
.ade-faq-library__actions { display: flex; gap: 8px; }
.ade-faq-library__actions button {
  min-height: 38px;
  padding: 0 13px;
  color: #555d68;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}
.ade-faq-library__actions button:hover { color: #111; border-color: #bfc3ca; }

.ade-faq-list { margin-top: 18px; }

.ade-faq-item {
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--faq-border);
  border-radius: 15px;
  overflow: clip;
  box-shadow: 0 8px 28px rgba(10, 11, 13, .035);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ade-faq-item:hover { border-color: #d5d8de; }
.ade-faq-item.is-open { border-color: rgba(210, 106, 4, .35); box-shadow: 0 16px 44px rgba(10, 11, 13, .07); }
.ade-faq-item[hidden] { display: none !important; }

.ade-faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 16px 20px;
  color: var(--faq-ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.ade-faq-question:focus-visible { outline: 3px solid rgba(253, 201, 15, .6); outline-offset: -3px; }

.ade-faq-question__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #785100;
  background: #fff5c7;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 850;
}

.ade-faq-question__text small,
.ade-faq-question__text strong { display: block; }
.ade-faq-question__text small { margin-bottom: 5px; color: #a36800; font-size: 9px; font-weight: 850; letter-spacing: .11em; line-height: 1.2; text-transform: uppercase; }
.ade-faq-question__text strong { color: var(--faq-ink); font-size: 15px; font-weight: 760; line-height: 1.45; }

.ade-faq-question__toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #e2e4e8;
  border-radius: 9px;
}

.ade-faq-question__toggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: #34383e;
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}
.ade-faq-question__toggle i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.ade-faq-item.is-open .ade-faq-question__toggle i:last-child { opacity: 0; transform: translate(-50%, -50%) rotate(0); }

.ade-faq-answer { border-top: 1px solid #eceef1; }
.ade-faq-answer__inner { padding: 22px 66px 25px 76px; }
.ade-faq-answer p { margin: 0; color: #555e6b; font-size: 14px; line-height: 1.82; }
.ade-faq-answer p + p { margin-top: 12px; }
.ade-faq-answer a { color: #9b5700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.ade-faq-answer a:hover { color: #6e3e00; }
.ade-faq-answer__link { display: inline-flex; margin-top: 15px; color: #8a9098 !important; text-decoration: none !important; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ade-faq-answer__link span { margin-left: 5px; color: var(--faq-orange); }

.ade-faq-empty {
  margin-top: 18px;
  padding: 55px 24px;
  text-align: center;
  background: #fff;
  border: 1px dashed #cfd3d9;
  border-radius: 16px;
}
.ade-faq-empty > span { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; color: #755000; background: #fff4bd; border-radius: 16px; }
.ade-faq-empty svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.ade-faq-empty h3 { margin: 18px 0 7px; color: var(--faq-ink); font-size: 21px; }
.ade-faq-empty p { max-width: 480px; margin: 0 auto; color: var(--faq-muted); font-size: 14px; }
.ade-faq-empty button { margin-top: 20px; min-height: 42px; padding: 0 18px; color: #111; background: var(--faq-yellow); border: 0; border-radius: 10px; cursor: pointer; font: inherit; font-size: 12px; font-weight: 850; }

.ade-faq-editor-content { margin-top: 30px; padding: 28px; background: #fff; border: 1px solid var(--faq-border); border-radius: 16px; }

.ade-faq-cta { padding: 98px 0; }

.ade-faq-cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 230px;
  gap: 36px;
  align-items: center;
  padding: 50px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 12%, rgba(253, 201, 15, .18), transparent 28%),
    linear-gradient(125deg, #0a0b0d, #18191c);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 11, 13, .18);
}

.ade-faq-cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.ade-faq-cta__visual,
.ade-faq-cta__content,
.ade-faq-cta__contact { position: relative; z-index: 1; }

.ade-faq-cta__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
}

.ade-faq-cta__visual > span {
  position: absolute;
  border: 1px solid rgba(253, 201, 15, .2);
  border-radius: 50%;
}
.ade-faq-cta__visual > span:nth-child(1) { width: 150px; height: 150px; }
.ade-faq-cta__visual > span:nth-child(2) { width: 112px; height: 112px; }
.ade-faq-cta__visual > span:nth-child(3) { width: 76px; height: 76px; background: rgba(253, 201, 15, .08); }
.ade-faq-cta__visual svg { position: relative; z-index: 1; width: 90px; height: 90px; fill: none; stroke: var(--faq-yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.ade-faq-cta .ade-faq-kicker { color: var(--faq-yellow); }
.ade-faq-cta h2 { color: #fff; font-size: clamp(29px, 3.2vw, 43px); }
.ade-faq-cta__content p { max-width: 660px; margin: 14px 0 0; color: rgba(255, 255, 255, .67); font-size: 14px; line-height: 1.75; }
.ade-faq-cta__buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.ade-faq-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 19px; border-radius: 11px; text-decoration: none; font-size: 12px; font-weight: 850; }
.ade-faq-btn--primary { color: #111; background: var(--faq-yellow); }
.ade-faq-btn--primary:hover { color: #111; background: #ffe16b; transform: translateY(-1px); }
.ade-faq-btn--secondary { color: #fff; border: 1px solid rgba(255, 255, 255, .22); }
.ade-faq-btn--secondary:hover { color: #fff; border-color: rgba(255, 255, 255, .55); }

.ade-faq-cta__contact { padding-left: 28px; border-left: 1px solid rgba(255, 255, 255, .14); }
.ade-faq-cta__contact span { display: block; margin-bottom: 13px; color: rgba(255, 255, 255, .42); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ade-faq-cta__contact a { display: block; margin: 8px 0; color: #fff; text-decoration: none; font-size: 13px; font-weight: 750; overflow-wrap: anywhere; }
.ade-faq-cta__contact a:hover { color: var(--faq-yellow); }

@media (max-width: 1080px) {
  .ade-faq-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ade-faq-library__layout { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
  .ade-faq-cta__panel { grid-template-columns: 150px minmax(0, 1fr); }
  .ade-faq-cta__contact { grid-column: 2; padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .14); }
}

@media (max-width: 820px) {
  .ade-faq-page .container { width: min(100% - 28px, 1240px); }
  .ade-faq-hero { padding: 34px 0 52px; }
  .ade-faq-breadcrumb { margin-bottom: 30px; }
  .ade-faq-hero h1 { font-size: clamp(35px, 10vw, 50px); }
  .ade-faq-hero__content > p { font-size: 15px; }
  .ade-faq-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ade-faq-hero__stats div:nth-child(2)::after { display: none; }
  .ade-faq-hero__stats div:nth-child(-n+2) { border-bottom: 1px solid var(--faq-border); }
  .ade-faq-category-section { padding: 64px 0; }
  .ade-faq-library { padding: 64px 0 72px; }
  .ade-faq-library__layout { display: block; }
  .ade-faq-sidebar { position: static; margin-bottom: 28px; }
  .ade-faq-sidebar__card { display: flex; gap: 7px; padding: 10px; overflow-x: auto; scrollbar-width: thin; }
  .ade-faq-sidebar__label { display: none; }
  .ade-faq-filter { flex: 0 0 auto; width: auto; min-height: 38px; padding: 0 12px; white-space: nowrap; background: #f6f7f8; }
  .ade-faq-filter b { margin-left: 8px; }
  .ade-faq-help-card { display: none; }
  .ade-faq-cta { padding: 70px 0; }
  .ade-faq-cta__panel { grid-template-columns: 1fr; padding: 35px; }
  .ade-faq-cta__visual { display: none; }
  .ade-faq-cta__contact { grid-column: auto; }
}

@media (max-width: 620px) {
  .ade-faq-page .container { width: min(100% - 22px, 1240px); }
  .ade-faq-hero h1 { letter-spacing: -.035em; }
  .ade-faq-search { margin-top: 25px; padding-left: 15px; border-radius: 15px; }
  .ade-faq-search input { font-size: 13px; }
  .ade-faq-hero__stats { margin-top: 32px; }
  .ade-faq-hero__stats div { padding: 16px 10px; }
  .ade-faq-section-heading,
  .ade-faq-library__header { display: block; }
  .ade-faq-section-heading > a { display: inline-flex; margin-top: 15px; }
  .ade-faq-category-grid { grid-template-columns: 1fr; gap: 11px; }
  .ade-faq-category-card { min-height: 0; padding: 19px; flex-direction: row; align-items: center; }
  .ade-faq-category-card__icon { width: 44px; height: 44px; flex: 0 0 auto; }
  .ade-faq-category-card__text { margin: 0 38px 0 14px; padding: 0; }
  .ade-faq-category-card__text small { display: none; }
  .ade-faq-category-card__count { top: 50%; right: 18px; transform: translateY(-50%); }
  .ade-faq-category-card:hover,
  .ade-faq-category-card.is-active { transform: none; }
  .ade-faq-library__actions { margin-top: 17px; }
  .ade-faq-question { grid-template-columns: minmax(0, 1fr) 30px; min-height: 78px; padding: 15px 16px; }
  .ade-faq-question__number { display: none; }
  .ade-faq-question__text strong { font-size: 14px; }
  .ade-faq-answer__inner { padding: 19px 18px 22px; }
  .ade-faq-answer p { font-size: 13.5px; }
  .ade-faq-cta__panel { padding: 28px 22px; border-radius: 20px; }
  .ade-faq-cta__buttons { display: grid; }
  .ade-faq-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .ade-faq-page *,
  .ade-faq-page *::before,
  .ade-faq-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
