.r4w-gbp-faq-sticky,
.r4w-gbp-faq-sticky * {
  box-sizing: border-box;
}

.r4w-gbp-faq-sticky {
  --r4w-orange: #f68826;
  --r4w-dark: #151515;
  --r4w-text: #2a2a2a;
  --r4w-muted: #666;
  --r4w-border: #e8e8e8;
  --r4w-soft: #f7f7f7;
  --r4w-bg: #fff;
  --r4w-sticky-offset: 110px;

  width: 100%;
  color: var(--r4w-text);
  font-family: inherit;
  padding: 44px 0;
}

.r4w-gbp-faq-sticky__intro {
  margin: 0 0 32px;
}

.r4w-gbp-faq-sticky__intro h2 {
  margin: 0 0 14px;
  color: var(--r4w-dark) !important;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.r4w-gbp-faq-sticky__intro h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  margin-top: 14px;
  border-radius: 99px;
  background: var(--r4w-orange);
}

.r4w-gbp-faq-sticky__intro p {
  max-width: 900px;
  margin: 0;
  color: var(--r4w-muted);
  font-size: 18px;
  line-height: 1.65;
}

.r4w-gbp-faq-sticky__layout {
  display: grid;
  grid-template-columns: minmax(230px, 285px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.r4w-gbp-faq-sticky__toc {
  position: sticky;
  top: var(--r4w-sticky-offset);
  align-self: start;
}

.r4w-gbp-faq-sticky__toc-card {
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 20px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(246,136,38,.18), transparent 34%),
    linear-gradient(145deg, #111 0%, #1e1e1e 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  color: #fff;
  overflow: hidden;
}

.r4w-gbp-faq-sticky__toc-card > strong {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.r4w-gbp-faq-sticky__toc nav {
  display: grid;
  gap: 8px;
}

.r4w-gbp-faq-sticky__toc a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.045);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.25;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.r4w-gbp-faq-sticky__toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 99px;
  background: transparent;
}

.r4w-gbp-faq-sticky__toc a span {
  min-width: 0;
}

.r4w-gbp-faq-sticky__toc a small {
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 900;
}

.r4w-gbp-faq-sticky__toc a:hover {
  color: #fff;
  border-color: rgba(246,136,38,.5);
  background: rgba(246,136,38,.12);
  transform: translateX(2px);
}

.r4w-gbp-faq-sticky__toc a.is-active {
  color: #fff;
  border-color: rgba(246,136,38,.75);
  background: linear-gradient(90deg, rgba(246,136,38,.22), rgba(255,255,255,.05));
}

.r4w-gbp-faq-sticky__toc a.is-active::before {
  background: var(--r4w-orange);
}

.r4w-gbp-faq-sticky__toc a.is-active small {
  background: var(--r4w-orange);
  color: #111;
}

.r4w-gbp-faq-sticky__content {
  min-width: 0;
}

.r4w-gbp-faq-sticky__section {
  scroll-margin-top: calc(var(--r4w-sticky-offset) + 20px);
  margin: 0 0 46px;
}

.r4w-gbp-faq-sticky__section:last-child {
  margin-bottom: 0;
}

.r4w-gbp-faq-sticky__section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-left: 5px solid var(--r4w-orange);
  border-radius: 0 13px 13px 0;
  background: var(--r4w-soft);
  color: var(--r4w-dark);
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.25;
  font-weight: 900;
}

.r4w-gbp-faq-sticky__items {
  display: grid;
  gap: 13px;
}

.r4w-gbp-faq-sticky__item {
  width: 100%;
  border: 1px solid var(--r4w-border);
  border-radius: 17px;
  background: var(--r4w-bg);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.r4w-gbp-faq-sticky__item[open] {
  border-color: rgba(246, 136, 38, .55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
}

.r4w-gbp-faq-sticky__item summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 19px 58px 19px 20px;
  cursor: pointer;
  list-style: none;
  background: #fff;
}

.r4w-gbp-faq-sticky__item summary::-webkit-details-marker {
  display: none;
}

.r4w-gbp-faq-sticky__item summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--r4w-soft);
  color: var(--r4w-dark);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.r4w-gbp-faq-sticky__item[open] summary::after {
  content: "−";
  background: var(--r4w-orange);
  color: #fff;
  transform: rotate(180deg);
}

.r4w-gbp-faq-sticky__item h3 {
  margin: 0;
  color: var(--r4w-dark) !important;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.r4w-gbp-faq-sticky__answer {
  padding: 0 20px 22px;
  color: var(--r4w-text);
}

.r4w-gbp-faq-sticky__answer p {
  margin: 0 0 12px;
  color: var(--r4w-text);
  font-size: 16px;
  line-height: 1.7;
}

.r4w-gbp-faq-sticky__answer p:last-child {
  margin-bottom: 0;
}

.r4w-gbp-faq-sticky__answer a {
  color: var(--r4w-orange);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.r4w-gbp-faq-sticky__answer strong,
.r4w-gbp-faq-sticky__answer b {
  color: var(--r4w-dark);
  font-weight: 900;
}

.r4w-gbp-faq-sticky__answer ul,
.r4w-gbp-faq-sticky__answer ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.r4w-gbp-faq-sticky__answer li {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .r4w-gbp-faq-sticky {
    padding: 34px 0;
  }

  .r4w-gbp-faq-sticky__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .r4w-gbp-faq-sticky__toc {
    position: relative;
    top: auto;
  }

  .r4w-gbp-faq-sticky__toc-card {
    border-radius: 18px;
    padding: 16px;
  }

  .r4w-gbp-faq-sticky__toc nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .r4w-gbp-faq-sticky__intro h2 {
    font-size: 30px;
  }

  .r4w-gbp-faq-sticky__intro p {
    font-size: 16px;
  }

  .r4w-gbp-faq-sticky__section {
    margin-bottom: 36px;
  }

  .r4w-gbp-faq-sticky__section-label {
    font-size: 20px;
  }

  .r4w-gbp-faq-sticky__item summary {
    padding: 16px 52px 16px 16px;
  }

  .r4w-gbp-faq-sticky__item summary::after {
    top: 14px;
    right: 14px;
  }

  .r4w-gbp-faq-sticky__item h3 {
    font-size: 17px;
  }

  .r4w-gbp-faq-sticky__answer {
    padding: 0 16px 18px;
  }

  .r4w-gbp-faq-sticky__answer p,
  .r4w-gbp-faq-sticky__answer li {
    font-size: 15.5px;
  }
}
