/* Become Partner v3 (responsive)
   Primary: #E63946
   Cream:   #FEF3EB
*/

.bpv3 {
  --bp-red: #E63946;
  --bp-cream: #FEF3EB;
  --bp-text: #111827;
  --bp-muted: rgba(17, 24, 39, 0.70);
  --bp-border: rgba(17, 24, 39, 0.12);
  --bp-shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
  --bp-radius-xl: 34px;
  --bp-radius-lg: 28px;
  --bp-radius-md: 18px;
  --bp-radius-sm: 12px;
  --bp-container: 1240px;

  color: var(--bp-text);
}

.bpv3 * {
  box-sizing: border-box;
}

.bpv3 .bpv3-container {
  max-width: var(--bp-container);
  margin: 0 auto;
  padding: 28px 20px;
}

.bpv3 h1,
.bpv3 h2,
.bpv3 h3 {
  margin: 0;
  color: var(--bp-text);
}

.bpv3 p {
  margin: 0;
}

.bpv3 a {
  text-decoration: none;
}

.bpv3 .bpv3-breadcrumb {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.55);
  padding: 6px 2px 10px;
}

.bpv3 .bpv3-breadcrumb a {
  color: inherit;
}

.bpv3 .bpv3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bpv3 .bpv3-btn:active {
  transform: translateY(1px);
}

.bpv3 .bpv3-btn-primary {
  background: #fff;
  color: var(--bp-red);
  border-color: rgba(255, 255, 255, 0.55);
}

.bpv3 .bpv3-btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.bpv3 .bpv3-btn-red {
  background: var(--bp-red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.25);
}

.bpv3 .bpv3-btn-red:hover {
  background: #d72f3c;
}

.bpv3 .bpv3-btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.bpv3 .bpv3-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.26);
}

.bpv3 .bpv3-section {
  padding: 34px 0;
}

.bpv3 .bpv3-section--cream {
  background: var(--bp-cream);
}

.bpv3 .bpv3-section-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.bpv3 .bpv3-section-sub {
  max-width: 75ch;
  margin: 10px auto 0;
  text-align: center;
  color: var(--bp-muted);
  line-height: 1.7;
}

/* HOW WE HELP (tabs) */
.bpv3 .bpv3-helpTitle {
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.bpv3 .bpv3-helpTabs {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 56px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
}

.bpv3 .bpv3-helpTab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 14px 6px;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.65);
  cursor: pointer;
  position: relative;
  outline: none;
}

.bpv3 .bpv3-helpTab.is-active {
  color: var(--bp-red);
}

.bpv3 .bpv3-helpTab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--bp-red);
  border-radius: 999px;
}

.bpv3 .bpv3-helpPanels {
  margin-top: 26px;
}

.bpv3 .bpv3-helpPanel[hidden] {
  display: none !important;
}

.bpv3 .bpv3-helpGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.bpv3 .bpv3-helpMedia {
  position: relative;
}

.bpv3 .bpv3-helpImg {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 26px;
  background: rgba(17, 24, 39, 0.06);
}

.bpv3 .bpv3-helpOverlay {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.14);
}

.bpv3 .bpv3-helpCopy h3 {
  font-size: 18px;
  font-weight: 900;
}

.bpv3 .bpv3-helpKicker {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(230, 57, 70, 0.85);
}

.bpv3 .bpv3-helpCopy p {
  margin-top: 14px;
  color: rgba(17, 24, 39, 0.70);
  line-height: 1.8;
  max-width: 66ch;
}

.bpv3 .bpv3-helpFeatures {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.bpv3 .bpv3-helpFeature {
  display: flex;
  gap: 14px;
}

.bpv3 .bpv3-helpIcon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  display: grid;
  place-items: center;
  color: rgba(17, 24, 39, 0.80);
  flex: 0 0 auto;
}

.bpv3 .bpv3-helpIcon svg {
  width: 18px;
  height: 18px;
}

.bpv3 .bpv3-helpFeatureTitle {
  font-size: 12px;
  font-weight: 900;
  color: rgba(17, 24, 39, 0.90);
}

.bpv3 .bpv3-helpFeatureText {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(17, 24, 39, 0.58);
}

/* INSIGHTS / SUPPORT (cream collage) */
.bpv3 .bpv3-insights {
  padding: 46px 0;
}

.bpv3 .bpv3-insightsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 34px 48px;
  align-items: start;
}

.bpv3 .bpv3-insightsCopy h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.bpv3 .bpv3-insightsCopy p {
  margin-top: 14px;
  color: rgba(17, 24, 39, 0.66);
  line-height: 1.8;
  max-width: 62ch;
}

.bpv3 .bpv3-insightsCopy--right {
  align-self: center;
}

.bpv3 .bpv3-insightsArt {
  position: relative;
  min-height: 230px;
}

.bpv3 .bpv3-insightsCard {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.05);
}

.bpv3 .bpv3-insightsArt--top .bpv3-insightsCard--lg {
  position: absolute;
  left: 0;
  top: 0;
  width: 78%;
  height: 155px;
}

.bpv3 .bpv3-insightsArt--top .bpv3-insightsCard--md {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 150px;
  transform: translateY(8px);
}

.bpv3 .bpv3-insightsArt--bottom .bpv3-insightsCard--xl {
  position: absolute;
  left: 0;
  top: 0;
  width: 86%;
  height: 210px;
}

.bpv3 .bpv3-insightsArt--bottom .bpv3-insightsCard--pill {
  position: absolute;
  left: 54px;
  bottom: -8px;
  width: 86px;
  height: 190px;
  border-radius: 22px;
}

/* CTA */
.bpv3 .bpv3-cta {
  border-radius: 28px;
  background: rgba(230, 57, 70, 0.88);
  overflow: hidden;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 170px;
}

.bpv3 .bpv3-ctaLeft h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.bpv3 .bpv3-ctaLeft .bpv3-btn {
  margin-top: 16px;
}

.bpv3 .bpv3-ctaRight {
  position: relative;
  height: 160px;
}

.bpv3 .bpv3-ctaImg {
  position: absolute;
  right: 0;
  bottom: -8px;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(17, 24, 39, 0.16));
}

.bpv3 .bpv3-ctaOverlay {
  position: absolute;
  right: 220px;
  top: 10px;
  width: 230px;
  max-width: 55%;
  opacity: 0.95;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
}

/* FAQ */
.bpv3 .bpv3-faqTitle {
  margin-top: 44px;
  text-align: center;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.bpv3 .bpv3-faq {
  margin-top: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.bpv3 .bpv3-faqItem {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.70);
}

.bpv3 .bpv3-faqItem + .bpv3-faqItem {
  margin-top: 14px;
}

.bpv3 .bpv3-faqBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, 0.60);
  border: 0;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.88);
  text-align: left;
}

.bpv3 .bpv3-faqItem.is-open .bpv3-faqBtn {
  background: rgba(230, 57, 70, 0.88);
  color: #fff;
}

.bpv3 .bpv3-faqChevron {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}

.bpv3 .bpv3-faqItem.is-open .bpv3-faqChevron {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
}

.bpv3 .bpv3-faqChevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
}

.bpv3 .bpv3-faqItem.is-open .bpv3-faqChevron::before {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.bpv3 .bpv3-faqPanel {
  padding: 14px 18px 18px;
  background: rgba(255, 255, 255, 0.92);
}

.bpv3 .bpv3-faqPanel p {
  color: rgba(17, 24, 39, 0.70);
  line-height: 1.8;
}

/* HERO (delivery) */
.bpv3 .bpv3-hero {
  border-radius: var(--bp-radius-xl);
  overflow: hidden;
  background: var(--bp-red);
}

.bpv3 .bpv3-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  padding: 58px;
  align-items: center;
}

.bpv3 .bpv3-hero h1 {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  color: #fff;
}

.bpv3 .bpv3-hero p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 62ch;
}

.bpv3 .bpv3-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bpv3 .bpv3-hero-media {
  position: relative;
}

.bpv3 .bpv3-hero-thumb {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: var(--bp-radius-lg);
  background: rgba(255, 255, 255, 0.10);
}

.bpv3 .bpv3-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.bpv3 .bpv3-play span {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.20);
}

.bpv3 .bpv3-play span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--bp-red);
  margin-left: 3px;
}

/* HERO CARD (form) */
.bpv3 .bpv3-heroCard {
  border-radius: var(--bp-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  box-shadow: var(--bp-shadow);
}

.bpv3 .bpv3-heroCard-left {
  background: var(--bp-red);
  padding: 58px;
  position: relative;
}

.bpv3 .bpv3-heroCard-left h2 {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
}

.bpv3 .bpv3-heroCard-left p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.bpv3 .bpv3-formCard {
  margin-top: 26px;
  background: #fff;
  border-radius: var(--bp-radius-lg);
  padding: 26px;
  width: min(520px, 100%);
}

.bpv3 .bpv3-formCard h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}

.bpv3 .bpv3-form {
  display: grid;
  gap: 12px;
}

.bpv3 .bpv3-input {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  padding: 0 18px;
  outline: none;
  font-size: 13px;
}

.bpv3 .bpv3-input:focus {
  border-color: rgba(230, 57, 70, 0.50);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.14);
}

.bpv3 .bpv3-formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bpv3 .bpv3-submit {
  justify-self: start;
  padding: 12px 26px;
}

.bpv3 .bpv3-heroCard-right {
  position: relative;
  background: #f7f7f7;
}

.bpv3 .bpv3-heroCard-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CAROUSEL */
.bpv3 .bpv3-carouselWrap {
  margin-top: 22px;
  position: relative;
}

.bpv3 .bpv3-carousel {
  overflow: hidden;
}

.bpv3 .bpv3-carouselTrack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 14px;
  scrollbar-width: none;
}

.bpv3 .bpv3-carouselTrack::-webkit-scrollbar {
  display: none;
}

.bpv3 .bpv3-slide {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
}

.bpv3 .bpv3-slide img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.bpv3 .bpv3-slideBody {
  padding: 16px 18px 20px;
}

.bpv3 .bpv3-slideBody h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.bpv3 .bpv3-slideBody p {
  color: var(--bp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bpv3 .bpv3-slideBody .bpv3-btn {
  margin-top: 14px;
  padding: 10px 18px;
  font-size: 13px;
}

.bpv3 .bpv3-navBtn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  display: grid;
  place-items: center;
  background: #fff;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

.bpv3 .bpv3-navBtn--prev {
  left: -10px;
}

.bpv3 .bpv3-navBtn--next {
  right: -10px;
  background: rgba(230, 57, 70, 0.85);
  border-color: rgba(230, 57, 70, 0.55);
  color: #fff;
}

.bpv3 .bpv3-navBtn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(135deg);
  margin-left: 2px;
}

.bpv3 .bpv3-navBtn--next::before {
  transform: rotate(-45deg);
  margin-left: 0;
}

.bpv3 .bpv3-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.bpv3 .bpv3-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.28);
  border: 0;
}

.bpv3 .bpv3-dot.is-active {
  width: 28px;
  background: rgba(230, 57, 70, 0.90);
}

/* STEPS */
.bpv3 .bpv3-stepsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 8px 0 0;
}

.bpv3 .bpv3-stepsTitle {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
}

.bpv3 .bpv3-stepList {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 54px;
}

.bpv3 .bpv3-stepList::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(230, 57, 70, 0.22);
}

.bpv3 .bpv3-step {
  position: relative;
}

.bpv3 .bpv3-stepNum {
  position: absolute;
  left: -54px;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.18);
  color: var(--bp-red);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.bpv3 .bpv3-step.is-strong .bpv3-stepNum {
  background: rgba(230, 57, 70, 0.92);
  color: #fff;
}

.bpv3 .bpv3-step h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.bpv3 .bpv3-step p {
  color: var(--bp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bpv3 .bpv3-stepsMedia {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
}

.bpv3 .bpv3-stepsMedia img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* WHY CHOOSE */
.bpv3 .bpv3-whyTitle {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 22px;
}

.bpv3 .bpv3-whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bpv3 .bpv3-whyCard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.bpv3 .bpv3-whyCard h3 {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.bpv3 .bpv3-whyCard p {
  margin-top: 8px;
  text-align: center;
  color: var(--bp-muted);
  line-height: 1.65;
  font-size: 13px;
}

/* LOGOS */
.bpv3 .bpv3-logosTitle {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
}

.bpv3 .bpv3-logosSub {
  text-align: center;
  margin-top: 8px;
  color: rgba(230, 57, 70, 0.85);
}

.bpv3 .bpv3-logoWrap {
  margin-top: 20px;
  position: relative;
}

.bpv3 .bpv3-logoTrack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 160px;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 14px;
  scrollbar-width: none;
}

.bpv3 .bpv3-logoTrack::-webkit-scrollbar {
  display: none;
}

.bpv3 .bpv3-logo {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 18px;
  height: 72px;
  display: grid;
  place-items: center;
}

.bpv3 .bpv3-logo img {
  max-width: 110px;
  max-height: 40px;
  opacity: 0.80;
}

/* Responsive */
@media (max-width: 992px) {
  .bpv3 .bpv3-hero-inner {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .bpv3 .bpv3-hero-thumb {
    height: 260px;
  }

  .bpv3 .bpv3-heroCard {
    grid-template-columns: 1fr;
  }

  .bpv3 .bpv3-heroCard-right {
    min-height: 320px;
  }

  .bpv3 .bpv3-heroCard-left {
    padding: 36px;
  }

  .bpv3 .bpv3-heroCard-left h2 {
    font-size: 34px;
  }

  .bpv3 .bpv3-formRow {
    grid-template-columns: 1fr;
  }

  .bpv3 .bpv3-stepsGrid {
    grid-template-columns: 1fr;
  }

  .bpv3 .bpv3-whyGrid {
    grid-template-columns: 1fr;
  }

  .bpv3 .bpv3-navBtn {
    display: none;
  }

  .bpv3 .bpv3-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .bpv3 .bpv3-ctaRight {
    height: 140px;
  }

  .bpv3 .bpv3-ctaOverlay {
    right: 160px;
    width: 200px;
  }
}

@media (max-width: 900px) {
  .bpv3 .bpv3-helpTabs {
    gap: 22px;
    flex-wrap: wrap;
  }

  .bpv3 .bpv3-helpGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bpv3 .bpv3-helpImg {
    height: 240px;
  }

  .bpv3 .bpv3-helpOverlay {
    width: 92px;
    height: 92px;
    border-width: 5px;
  }

  .bpv3 .bpv3-helpFeatures {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bpv3 .bpv3-insightsGrid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bpv3 .bpv3-insightsArt {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .bpv3 .bpv3-container {
    padding: 18px 14px;
  }

  .bpv3 .bpv3-hero-inner {
    padding: 26px;
  }

  .bpv3 .bpv3-hero h1 {
    font-size: 32px;
  }

  .bpv3 .bpv3-section-title {
    font-size: 28px;
  }

  .bpv3 .bpv3-helpTabs {
    gap: 14px;
  }

  .bpv3 .bpv3-ctaLeft h2 {
    font-size: 28px;
  }

  .bpv3 .bpv3-faqBtn {
    padding: 14px 14px;
  }
}
