/*
 * DW Responsive V2
 * A deliberately scoped responsive foundation for dianawalther-action.coach.
 * Layout rules only run while body.dw-responsive-v2 is present and the
 * independent .dw-layout-off kill switch is absent.
 */

body.dw-responsive-v2:not(.dw-layout-off) {
  --dw-black: #202020;
  --dw-white: #ffffff;
  --dw-yellow: #ffe51f;
  --dw-orange: #fd9900;
  --dw-ink: #202020;
  --dw-muted: #646464;
  --dw-line: #deded9;
  --dw-surface: #f6f6f2;
  --dw-content-max: 1200px;
  --dw-reading-max: 720px;
  --dw-gutter: clamp(18px, 4vw, 40px);
  --dw-section-space: clamp(64px, 7vw, 112px);
  --dw-card-gap: 24px;
  --dw-radius: 10px;
  --dw-header-row-height: 84px;
  --dw-header-height: 84px;
  --dw-admin-bar-height: 0px;
  --dw-fixed-header-offset: calc(var(--dw-admin-bar-height) + var(--dw-header-height));
  --dw-shadow-soft: 0 16px 44px rgb(32 32 32 / 8%);
  --dw-shadow-hover: 0 18px 46px rgb(32 32 32 / 13%);
  color: var(--dw-ink);
}

body.admin-bar.dw-responsive-v2:not(.dw-layout-off) {
  --dw-admin-bar-height: 32px;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-shell, .dw-blog-wrap) {
  width: min(calc(100% - (2 * var(--dw-gutter))), var(--dw-content-max));
  margin-inline: auto;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-section {
  padding-block: var(--dw-section-space);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-prose {
  width: 100%;
  max-width: var(--dw-reading-max);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-prose--center {
  margin-inline: auto;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-shell, .dw-section, .dw-prose, .dw-card, .dw-media, .dw-btn) {
  box-sizing: border-box;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(main, .site-main, #content, .dw-blog-shell)
  :where(.e-con, .e-con-inner, .elementor-section, .elementor-column, .elementor-widget-wrap) {
  min-width: 0;
  max-width: 100%;
}

/*
 * Old global CSS assigned a private vertical scrollbar to ordinary Elementor
 * text widgets. Limit the reset to non-interactive content widgets so menus,
 * tables, carousels and explicitly marked scroll regions retain their behavior.
 */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    .elementor-widget-heading,
    .elementor-widget-text-editor,
    .elementor-widget-image,
    .elementor-widget-button,
    .elementor-widget-icon-list,
    .elementor-widget-social-icons,
    .elementor-widget-spacer
  ):not(.dw-scroll-region):not([data-dw-scroll]),
body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    .elementor-widget-heading,
    .elementor-widget-text-editor,
    .elementor-widget-image,
    .elementor-widget-button,
    .elementor-widget-icon-list,
    .elementor-widget-social-icons,
    .elementor-widget-spacer
  ):not(.dw-scroll-region):not([data-dw-scroll])
  > .elementor-widget-container {
  overflow: visible !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(main, .site-main, #content, .dw-blog-shell)
  :where(img, svg, video, canvas) {
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(main, .site-main, #content, .dw-blog-shell)
  :where(img, video) {
  height: auto;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-breakable, a[href^="mailto:"], a[href^="tel:"]) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(h1, h2, h3, h4, h5, h6, p, li, a, span):not(.dw-breakable) {
  word-break: normal;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(h1, h2, h3) {
  text-wrap: balance;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(p, li) {
  text-wrap: pretty;
}

body.dw-responsive-v2:not(.dw-layout-off) :where([id]) {
  scroll-margin-top: calc(var(--dw-header-height) + var(--dw-admin-bar-height) + 20px);
}

body.dw-responsive-v2:not(.dw-layout-off) :where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--dw-orange);
  outline-offset: 3px;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(table) {
  max-width: 100%;
}

.dw-grid--2,
.dw-grid--3,
.dw-grid--4,
.dw-runtime-grid {
  display: grid;
  align-items: stretch;
  gap: var(--dw-card-gap, 24px);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-runtime-grid {
  grid-template-columns: repeat(var(--dw-grid-desktop, 1), minmax(0, 1fr)) !important;
}

.dw-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dw-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dw-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dw-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--dw-line, #deded9);
  border-radius: var(--dw-radius, 10px);
  background: var(--dw-white, #fff);
  box-shadow: 0 0 0 rgb(0 0 0 / 0%);
}

.dw-card > :last-child {
  margin-bottom: 0;
}

.dw-card__actions {
  margin-top: auto;
  padding-top: 24px;
}

.dw-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--dw-radius, 10px);
  background: #111;
}

.dw-media > :where(img, picture, video, iframe, .dw-lite-video) {
  display: block;
  width: 100%;
  height: 100%;
}

.dw-media > :where(img, picture img, video) {
  object-fit: cover;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.elementor-widget-video, .dw-lite-video-widget, .elementor-widget-video .elementor-widget-container) {
  width: 100%;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.elementor-widget-video, .dw-lite-video-widget)
  :where(.dw-lite-video, iframe, video) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.dw-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 11px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--dw-black, #202020);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dw-btn:hover,
.dw-btn:focus-visible {
  color: var(--dw-white, #fff);
  background: var(--dw-orange, #fd9900);
  transform: none;
}

.dw-btn--primary {
  background: var(--dw-yellow, #ffe51f);
}

.dw-btn--secondary {
  border-color: var(--dw-black, #202020);
  background: var(--dw-white, #fff);
}

.dw-btn--dark {
  border-color: var(--dw-white, #fff);
  color: var(--dw-white, #fff);
  background: var(--dw-black, #202020);
}

.dw-btn--secondary:hover,
.dw-btn--secondary:focus-visible {
  border-color: var(--dw-black, #202020);
}

.dw-btn--dark:hover,
.dw-btn--dark:focus-visible {
  border-color: var(--dw-white, #fff);
}

body.dw-responsive-v2:not(.dw-layout-off) a.elementor-button,
body.dw-responsive-v2:not(.dw-layout-off) .dw-btn,
body.dw-responsive-v2:not(.dw-layout-off) form button:not(.elementor-menu-toggle):not(.dw-lite-video__button),
body.dw-responsive-v2:not(.dw-layout-off) form input[type="submit"],
body.dw-responsive-v2:not(.dw-layout-off).dw-type-tool button:not(.elementor-menu-toggle):not(.dw-lite-video__button) {
  min-height: 44px !important;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-results
  :where(.elementor-element-1d87d17, .elementor-element-7788ceb) {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    .elementor-element-6df00da,
    .elementor-element-zert_bafa_text,
    .elementor-element-zert_ac_text,
    .elementor-element-zert_wm_text
  ) {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Header #58 is the single sticky surface; its content row stays in normal flow. */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(.elementor-location-header, [data-elementor-type="header"]):not([data-elementor-id="58"]) {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1100;
  width: 100%;
  height: auto !important;
  min-height: var(--dw-header-row-height);
  margin: 0 !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off) [data-elementor-id="58"] {
  position: sticky !important;
  top: var(--dw-admin-bar-height) !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1100;
  width: 100% !important;
  height: auto !important;
  min-height: var(--dw-header-row-height);
  overflow: visible !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  [data-elementor-id="58"]
  > .e-con:first-child {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1110;
  width: 100%;
  min-height: var(--dw-header-row-height);
  margin: 0 !important;
  background: var(--dw-white);
  border-bottom: 1px solid #d6d6d6 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off) [data-elementor-id="58"] > .elementor-sticky__spacer {
  display: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__inner, [data-elementor-id="58"] > .e-con:first-child > .e-con-inner) {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr) minmax(180px, auto);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  padding-inline: var(--dw-gutter);
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06) {
  min-width: 0;
  justify-self: start;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06)
  img {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 58px;
  object-fit: contain;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-header__nav, .elementor-element-76a7863) {
  min-width: 0;
  justify-self: center;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__nav, .elementor-element-76a7863)
  :where(.elementor-nav-menu--main, .elementor-nav-menu) {
  min-width: 0;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__nav, .elementor-element-76a7863)
  .elementor-item {
  min-height: 44px;
  padding-block: 9px !important;
  padding-inline: 10px !important;
  white-space: nowrap;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__nav, .elementor-element-76a7863)
  .elementor-nav-menu--main
  > .elementor-nav-menu {
  flex-wrap: nowrap !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__cta, .elementor-element-79c5b36b, .elementor-element-c6b1aa7) {
  justify-self: end;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__cta, .elementor-element-79c5b36b, .elementor-element-c6b1aa7)
  .elementor-button {
  display: inline-flex;
  width: min(190px, 100%);
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  white-space: normal;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__nav, .elementor-element-76a7863)
  .elementor-menu-toggle {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin-left: auto;
  padding: 0;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__nav, .elementor-element-76a7863)
  .elementor-nav-menu--dropdown {
  z-index: 1120;
  width: 100%;
  max-width: 100%;
  max-height: calc(100svh - var(--dw-header-height) - var(--dw-admin-bar-height));
  overflow-y: auto;
  background: var(--dw-white);
  box-shadow: var(--dw-shadow-soft);
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-header__nav, .elementor-element-76a7863)
  .elementor-nav-menu--dropdown
  a {
  min-height: 48px;
  align-items: center;
  white-space: normal;
}

/* Footer #81: shared surface, no fixed heights and no separate color band. */
body.dw-responsive-v2:not(.dw-layout-off) :where(.elementor-location-footer, [data-elementor-type="footer"]) {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  background: var(--dw-black);
}

body.dw-responsive-v2:not(.dw-layout-off) [data-elementor-id="81"],
body.dw-responsive-v2:not(.dw-layout-off) .elementor-81 {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  background: var(--dw-black) !important;
  color: var(--dw-white);
}

body.dw-responsive-v2:not(.dw-layout-off) :where([data-elementor-id="81"], .elementor-81) :where(.e-con, .e-con-inner) {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

body.dw-responsive-v2:not(.dw-layout-off) :where([data-elementor-id="81"], .elementor-81) .elementor-widget-container {
  overflow: visible !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-footer-grid, [data-elementor-id="81"] [data-id="8d58b3e"] > .e-con-inner) {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(170px, 1fr));
  align-items: start;
  column-gap: clamp(34px, 4vw, 68px);
  row-gap: 22px;
  width: min(calc(100% - (2 * var(--dw-gutter))), var(--dw-content-max));
  margin-inline: auto;
  padding-block: clamp(44px, 5vw, 64px) 28px;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    .dw-footer-column,
    [data-elementor-id="81"] [data-id="a95a8e1"],
    [data-elementor-id="81"] [data-id="c86f1a0"],
    [data-elementor-id="81"] [data-id="c01d139"],
    [data-elementor-id="81"] [data-id="6072152"]
  ) {
  min-width: 0;
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  gap: 14px !important;
  overflow: visible !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    .dw-footer-column,
    [data-elementor-id="81"] [data-id="a95a8e1"],
    [data-elementor-id="81"] [data-id="c86f1a0"],
    [data-elementor-id="81"] [data-id="c01d139"],
    [data-elementor-id="81"] [data-id="6072152"]
  )
  > .elementor-element {
  width: 100% !important;
  max-width: 100% !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-footer-columns, [data-elementor-id="81"] [data-id="row_wrap1"]) {
  display: contents;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-footer-copyright, [data-elementor-id="81"] [data-id="efd515d"]) {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 14px;
  border: 0;
  color: #bdbdbd;
  text-align: center;
}

body.dw-responsive-v2:not(.dw-layout-off)
  [data-elementor-id="81"]
  .elementor-element-8d58b3e {
  padding: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off) :where([data-elementor-id="81"], .elementor-81) :where(a, p, li, span) {
  word-break: normal;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where([data-elementor-id="81"], .elementor-81)
  :where(a[href^="mailto:"], a[href^="tel:"]) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.dw-responsive-v2:not(.dw-layout-off) :where([data-elementor-id="81"], .elementor-81) a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 0.2em;
  white-space: normal;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where([data-elementor-id="81"], .elementor-81)
  :where(.elementor-social-icon, .elementor-icon-list-item > a) {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

/* Shared page-type adapters. */
body.dw-responsive-v2:not(.dw-layout-off).dw-type-marketing
  main
  :where(.dw-marketing-split, .dw-marketing-grid),
body.dw-responsive-v2:not(.dw-layout-off).dw-type-offer
  main
  :where(.dw-offer-split, .dw-offer-choice-grid),
body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-detail
  main
  :where(.dw-resource-layout, .dw-resource-detail-grid) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-marketing
  main
  :where(.dw-marketing-split, .dw-marketing-grid)
  > *,
body.dw-responsive-v2:not(.dw-layout-off).dw-type-offer
  main
  :where(.dw-offer-split, .dw-offer-choice-grid)
  > *,
body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-detail
  main
  :where(.dw-resource-layout, .dw-resource-detail-grid)
  > * {
  min-width: 0;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-offer
  main
  :where(.dw-offer-choice-card) {
  display: flex;
  height: 100%;
  flex-direction: column;
}

/*
 * Page #34 was authored as seven canonical semantic sections followed by an
 * accidentally retained legacy copy. Keep the editorial data untouched while
 * exposing only the canonical tree and giving that non-Elementor markup the
 * same responsive system as the rest of the offer pages.
 */
body.page-id-34.dw-responsive-v2:not(.dw-layout-off) .page-header,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > :nth-child(n + 9) {
  display: none !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  main#content.site-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off) .page-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section {
  box-sizing: border-box;
  min-width: 0;
  width: min(calc(100% - (2 * var(--dw-gutter))), var(--dw-content-max));
  max-width: var(--dw-content-max);
  margin-inline: auto;
  padding-block: clamp(52px, 6vw, 88px);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  > :where(p, ul) {
  max-width: var(--dw-reading-max);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  :where(p, li) {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  h1 {
  max-width: 920px;
  margin-block: 12px 22px;
  font-size: clamp(2.65rem, 5vw, 4rem) !important;
  line-height: 1.06 !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  h2 {
  max-width: 820px;
  margin-block: 10px 18px;
  font-size: clamp(2rem, 3.5vw, 2.75rem) !important;
  line-height: 1.12 !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--dw-gutter), calc((100% - var(--dw-content-max)) / 2));
  background: var(--dw-black);
  color: var(--dw-white);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > p:last-child {
  width: 100%;
  max-width: 900px;
  margin: 28px auto 0;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  .dw-lite-video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
}

@media (min-width: 1025px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    #hubspot-messages-iframe-container:not(.active) {
    inset: auto max(18px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom)) auto !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
    align-items: center;
    align-content: center;
    column-gap: clamp(40px, 4vw, 56px);
    row-gap: 12px;
    padding-block: clamp(52px, 5vw, 68px);
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    > :not(:last-child) {
    grid-column: 1;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 5;
    margin: 0;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    h1 {
    max-width: 680px;
    font-size: clamp(2.5rem, 3.35vw, 2.9rem) !important;
    line-height: 1.08 !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    > .dw-offer-hero__cta {
    justify-self: start;
    margin-top: 12px;
  }
}

/*
 * Desktop review batch 43 (2026-08-01)
 * These rules are deliberately page- and component-scoped. They correct the
 * audited presentation without changing stored Elementor content or URLs.
 */

/* Header: no shadow/border seam; keep the branded row and sticky behavior. */
body.dw-responsive-v2:not(.dw-layout-off)
  [data-elementor-id="58"]
  .elementor-element.elementor-element-388a7095,
body.dw-responsive-v2:not(.dw-layout-off)
  [data-elementor-id="58"]
  .elementor-element.elementor-element-388a7095.elementor-sticky__spacer {
  border: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

@media (min-width: 1025px) {
  body.dw-responsive-v2:not(.dw-layout-off)
    [data-elementor-id="58"]
    :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06)
    img {
    width: 170px !important;
    max-width: 170px !important;
    height: auto !important;
  }
}

/* Homepage: every alternating story video uses the same visual width. */
@media (min-width: 1025px) {
  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    .dw-lite-video-widget {
    width: 100% !important;
    max-width: 560px !important;
    justify-self: center;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    .dw-lite-video {
    max-width: 560px !important;
  }
}

/* Coaching overview: true-alpha portrait, larger and visually anchored. */
body.page-id-32.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-a423f61 {
  width: min(100%, 460px) !important;
  max-width: 460px !important;
  align-self: center !important;
}

body.page-id-32.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-a423f61
  .dw-coaching-cta-portrait {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  height: min(620px, 70vw) !important;
  margin-inline: auto;
  object-fit: contain;
}

/* 1:1 Coaching: remove the redundant label and turn facts into proper boxes. */
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > p:first-child {
  display: none !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > ul
  > li {
  min-height: 58px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  line-height: 1.45;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-offer-hero__cta, .page-content > section:last-of-type a) {
  border-radius: 8px !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > * {
  margin-inline: auto;
  text-align: center;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  align-items: center !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-inline: max(var(--dw-gutter), calc((100% - var(--dw-content-max)) / 2)) !important;
  text-align: center !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  :where(h2, p) {
  margin-inline: auto !important;
  text-align: center !important;
}

/* GrowthCLUB: balanced proof cards without narrow or clipped copy. */
body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .ow.g2 {
  align-items: stretch;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px;
  align-items: stretch;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > * {
  width: 100%;
  min-width: 0;
  height: 100%;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > .card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px 24px;
  overflow: visible;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > .card :where(h3, p) {
  width: 100%;
  max-width: none;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > .card h3 {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.55vw, 23px);
  line-height: 1.15;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > .card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
}

@media (min-width: 1200px) {
  body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .ow.g2 {
    grid-template-columns: minmax(0, 3fr) minmax(420px, 2fr) !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .ow.g2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > .card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-id-35.dw-responsive-v2:not(.dw-layout-off) .sec.soft .g3 > .card {
    min-height: 0;
    padding: 24px 22px;
  }
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) blockquote.quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  margin: 0;
  padding: clamp(26px, 3vw, 40px);
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) blockquote.quote p {
  margin: 0;
}

body.page-id-35.dw-responsive-v2:not(.dw-layout-off) blockquote.quote footer {
  margin-top: auto;
  font-weight: 700;
}

/* 12-week programmes: equal hero panels, visible facts and a complete 5-grid. */
body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 24px !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero > .ow {
  width: min(calc(100% - (2 * var(--dw-gutter))), var(--dw-content-max));
  max-width: var(--dw-content-max);
  margin-inline: auto;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero h1 {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 920px !important;
  margin: 0 0 clamp(28px, 4vw, 44px) !important;
  translate: none !important;
  transform: none !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel {
  display: flex !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100%;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px) !important;
  overflow: visible;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel > .btn,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel > a:last-child {
  margin-top: auto !important;
  align-self: flex-start;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .facts {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
  margin-block: 26px;
  visibility: visible !important;
  opacity: 1 !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .fact {
  display: flex !important;
  min-height: 92px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 18px !important;
  border: 1px solid #d8d8d2;
  border-top: 4px solid var(--dw-yellow);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(32, 32, 32, 0.07);
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 1025px) {
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child)
    > * {
    grid-column: span 2;
    min-width: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    overflow: visible;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child)
    > :nth-child(4) {
    grid-column: 2 / span 2;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child)
    > :nth-child(5) {
    grid-column: 4 / span 2;
  }
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .g3:has(> :nth-child(5):last-child)
  > *
  :where(h2, h3, h4, p) {
  max-width: 100% !important;
  overflow: visible !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn, .dw-btn, .elementor-button) {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease !important;
  translate: none !important;
  transform: none !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn, .dw-btn, .elementor-button):hover,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn, .dw-btn, .elementor-button):focus-visible {
  background: var(--dw-orange) !important;
  color: var(--dw-white) !important;
  translate: none !important;
  transform: none !important;
}

/* P36 button borders follow the same three variants as the 1:1 page. */
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn, .dw-btn--primary, .dw-button-yellow),
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn, .dw-btn--primary, .dw-button-yellow):hover,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn, .dw-btn--primary, .dw-button-yellow):focus-visible {
  border-color: transparent !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn2.dw-button-on-light, .dw-btn--secondary),
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn2.dw-button-on-light, .dw-btn--secondary):hover,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn2.dw-button-on-light, .dw-btn--secondary):focus-visible {
  border-color: var(--dw-black) !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn2.dw-button-on-dark, .dw-btn--dark),
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn2.dw-button-on-dark, .dw-btn--dark):hover,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  :where(.btn2.dw-button-on-dark, .dw-btn--dark):focus-visible {
  border-color: var(--dw-white) !important;
}

/* Cancel P36's embedded hover/focus outline; it looks like a second border. */
body.page-id-36
  :where(.btn, .btn2, .dw-btn, .elementor-button):hover,
body.page-id-36
  :where(.btn, .btn2, .dw-btn, .elementor-button):focus,
body.page-id-36
  :where(.btn, .btn2, .dw-btn, .elementor-button):focus-visible {
  outline: 0 !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child)
    > :nth-child(5) {
    width: calc(50% - 12px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2,
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child),
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .facts {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child)
    > * {
    width: 100%;
    grid-column: auto !important;
  }
}

/* Prices: white cards must separate clearly from the grey section surface. */
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  :where(.elementor-element-1vx7n1g, .elementor-element-uf1ghn5, .elementor-element-689meak)
  :where(.elementor-element-c29561b, .elementor-element-e77da37, .elementor-element-c223fe6, .elementor-element-13ce3f6, .elementor-element-e14bcee, .elementor-element-e8531fa, .elementor-element-637f7c1, .elementor-element-8b2ea75) {
  border: 1px solid #d9d9d4 !important;
  background: #fff !important;
  box-shadow: 0 16px 36px rgba(32, 32, 32, 0.09) !important;
}

/* Results: contained rounded video and a compact conversion band. */
body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-vc38vid1
  .dw-lite-video {
  width: min(100%, 780px) !important;
  max-width: 780px !important;
  border-radius: 12px !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-vc38vid1
  :where(.dw-lite-video__button, .dw-lite-video__poster, .dw-lite-video__iframe) {
  border-radius: inherit !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-0d34a33 {
  min-height: 0 !important;
  padding-block: clamp(64px, 7vw, 88px) !important;
}

/* Case study: video follows the hero, back navigation is centred, CTA restored. */
body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off) .dw-case-video {
  padding-block: clamp(52px, 6vw, 80px);
}

body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-video__player {
  width: min(100%, 900px);
  margin-inline: auto;
  border-radius: 12px;
}

body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-back
  .dw-shell {
  display: flex;
  justify-content: center;
}

body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off) .dw-case-cta {
  background: var(--dw-black);
  color: #fff;
  text-align: center;
}

body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-cta__inner {
  display: flex;
  max-width: 820px;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-cta__inner
  :where(h2, p) {
  margin: 0;
  color: inherit;
}

/* The four audited black heroes start directly below the real header. */
body.page-id-42.dw-responsive-v2:not(.dw-layout-off) .elementor-element-d3b8a38,
body.page-id-43.dw-responsive-v2:not(.dw-layout-off) .elementor-element-1073508,
body.page-id-45.dw-responsive-v2:not(.dw-layout-off) .elementor-element-948b7da,
body.page-id-46.dw-responsive-v2:not(.dw-layout-off) .elementor-element-4c93fa4 {
  display: none !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-e03efa3 {
  height: auto !important;
  max-height: none !important;
  align-self: start !important;
  overflow: visible !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-7e5816c
  img {
  width: 100% !important;
  height: auto !important;
  max-height: 760px !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-dba3810
  :where(.elementor-widget-button, .elementor-button-wrapper) {
  width: 100%;
  text-align: center !important;
}

/* Learning Center and resources: centred secondary CTAs, no decorative arrows. */
body.page-id-43.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(.dw-button-on-light),
body.page-id-46.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(.dw-button-on-light) {
  width: 100%;
  text-align: center !important;
}

body.page-id-43.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(.dw-button-on-light)
  .elementor-button-wrapper,
body.page-id-46.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(.dw-button-on-light)
  .elementor-button-wrapper {
  display: flex;
  justify-content: center;
}

body.page-id-43.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button
  .elementor-button-icon,
body.page-id-46.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button
  .elementor-button-icon {
  display: none !important;
}

/* Blog CTA centred; Business Tapas reuses the calm grey CTA treatment. */
body.page-id-44.dw-responsive-v2:not(.dw-layout-off) .dw-blog-cta__inner {
  justify-items: center !important;
  text-align: center !important;
}

body.page-id-44.dw-responsive-v2:not(.dw-layout-off)
  .dw-blog-cta__inner
  :where(.dw-btn, .elementor-button) {
  justify-self: center !important;
}

body.page-id-45.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-63081bf {
  background: #f5f5f2 !important;
  color: var(--dw-black) !important;
}

/* Global CTA hover contract: stable geometry, inherited label/icon colour. */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)
  :where(span, i, svg) {
  color: inherit !important;
  fill: currentColor !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.elementor-animation-float, .elementor-animation-bob, .elementor-animation-pulse):is(a, button, .elementor-button, .dw-btn) {
  animation: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark),
body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark):hover,
body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark):focus-visible {
  transform: none !important;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease !important;
}

/* Final flat brand-button reset: remove legacy Elementor hover rings/shadows. */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark) {
  outline-offset: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark):hover {
  outline: 0 !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)::before,
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)::after {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(a, button, input).dw-button-yellow {
  border: 1px solid transparent !important;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(a, button, input).dw-button-on-light {
  border: 1px solid var(--dw-black, #202020) !important;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(a, button, input).dw-button-on-dark {
  border: 1px solid var(--dw-white, #fff) !important;
}

/* Homepage: Elementor leaves its animation transition on the widget wrapper.
 * Reset the complete button stack so hover/focus can only change colour and
 * can never rise, glow or paint a second orange ring. */
body.home.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(
    :is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)
  ),
body.home.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(
    :is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)
  ):is(:hover, :focus, :focus-within),
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(
    :is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)
  ),
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  .elementor-widget-button:has(
    :is(.dw-button-yellow, .dw-button-on-light, .dw-button-on-dark)
  ):is(:hover, :focus, :focus-within) {
  border-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  animation: none !important;
  translate: none !important;
  transform: none !important;
  transition: none !important;
}

body.home.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(
    .dw-button-yellow,
    .dw-button-on-light,
    .dw-button-on-dark
  ):is(:hover, :focus, :focus-visible, :active),
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(
    .dw-button-yellow,
    .dw-button-on-light,
    .dw-button-on-dark
  ):is(:hover, :focus, :focus-visible, :active) {
  outline: 0 !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  animation: none !important;
  translate: none !important;
  transform: none !important;
}

@media (max-width: 1024px) {
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    > ul,
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2,
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .facts,
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
    .g3:has(> :nth-child(5):last-child) {
    grid-template-columns: 1fr !important;
  }

  body.page-id-32.dw-responsive-v2:not(.dw-layout-off)
    .elementor-element-a423f61
    .dw-coaching-cta-portrait {
    width: min(100%, 360px) !important;
    height: auto !important;
  }
}

/*
 * Shared FAQ component (pages 34, 35, 36, 37, 47 and 48).
 * The visual contract mirrors the Erstgespraech reference while adapters in
 * showroom-motion.js keep native details and Elementor Toggle markup intact.
 */
body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-section {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin-inline: 0 !important;
  padding: clamp(72px, 8vw, 112px)
    max(18px, calc((100% - 1200px) / 2)) !important;
  overflow: visible !important;
  background: #f5f5f2 !important;
  color: #202020 !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-section.dw-erst-faq {
  padding-inline: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-section
  > .e-con-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-head {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 36px !important;
  color: #202020 !important;
  font-size: clamp(1.75rem, 3vw, 2.4rem) !important;
  line-height: 1.18 !important;
  text-align: center !important;
  text-wrap: balance;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-list
  > .dw-faq-head {
  margin-bottom: 22px !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-list {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 820px !important;
  margin-inline: auto !important;
  padding: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-widget,
body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-widget
  > .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-item {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 820px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #d6d6d2 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-section
  > .dw-faq-item
  + .dw-faq-item {
  margin-top: 14px !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-question {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 16px 64px 16px 20px !important;
  border: 0 !important;
  background: #fff !important;
  color: #202020 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
  text-align: left !important;
  text-decoration: none !important;
  cursor: pointer !important;
  list-style: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-question::-webkit-details-marker {
  display: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-question::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: #fd9900;
  content: "+";
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  translate: 0 -50%;
  pointer-events: none;
}

body.dw-responsive-v2:not(.dw-layout-off)
  details[open]
  > .dw-faq-question::after,
body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-question.elementor-active::after,
body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-question[aria-expanded="true"]::after {
  content: "\2013";
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-question
  .elementor-toggle-icon {
  display: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-question
  .elementor-toggle-title {
  display: block;
  width: 100%;
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
  outline: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-question:focus-visible {
  z-index: 1;
  outline: 0 !important;
  outline-offset: 0 !important;
  background: #fffaf3 !important;
  box-shadow: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-answer {
  box-sizing: border-box !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 20px 20px !important;
  border: 0 !important;
  background: #fff !important;
  color: #575757 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-faq-answer
  :where(p, ul, ol):last-child {
  margin-bottom: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-legacy-duplicate {
  display: none !important;
}

@media (max-width: 767px) {
  body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-section {
    padding: 64px 18px !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    .dw-faq-section.dw-erst-faq {
    padding-inline: 0 !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-head {
    margin-bottom: 30px !important;
    font-size: clamp(1.75rem, 8vw, 2rem) !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    .dw-faq-list
    > .dw-faq-head {
    margin-bottom: 16px !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-question {
    padding: 15px 56px 15px 18px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-question::after {
    right: 18px;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-faq-answer {
    padding: 0 18px 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-faq-question, .dw-faq-answer) {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > p:first-child {
  color: var(--dw-white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  list-style: none;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  a,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 8px 10px 0 0;
  padding: 11px 22px;
  border: 1px solid var(--dw-yellow);
  background: var(--dw-yellow);
  color: var(--dw-black);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  a:hover,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  a:focus-visible,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  a:hover,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  a:focus-visible {
  border-color: var(--dw-orange);
  background: var(--dw-orange);
  color: var(--dw-white);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(2),
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(3),
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4),
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(5) {
  display: grid;
  align-items: stretch;
  gap: var(--dw-card-gap);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(2) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(3) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4),
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(5) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(n + 2):nth-of-type(-n + 5)
  > :not(article) {
  grid-column: 1 / -1;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  > article {
  min-width: 0;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid var(--dw-line);
  border-radius: var(--dw-radius);
  background: var(--dw-white);
  box-shadow: var(--dw-shadow-soft);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(even):not(:first-of-type):not(:last-of-type) {
  position: relative;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(6)
  details {
  max-width: 900px;
  border-top: 1px solid var(--dw-line);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(6)
  summary {
  min-height: 52px;
  padding-block: 15px;
  cursor: pointer;
  font-weight: 750;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--dw-gutter), calc((100% - var(--dw-content-max)) / 2));
  background: var(--dw-black);
  color: var(--dw-white);
}

/*
 * Page #34 desktop polish: tighter editorial rhythm, restrained typography,
 * a real facts bar and balanced cards instead of oversized generic blocks.
 */
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section {
  padding-block: clamp(54px, 5vw, 72px);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  > p:first-child:not(.dw-offer-hero__media) {
  margin: 0 0 10px;
  color: #6f6f6f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  h2 {
  margin: 0 0 14px;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  > article {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 24px;
  border-color: #dedede;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgb(32 32 32 / 6%);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  > article
  h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem) !important;
  line-height: 1.25 !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section
  > article
  :where(p, ul) {
  margin-bottom: 0;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .dw-offer-facts {
  display: grid;
  max-width: none !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 12px 0 0;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 14px;
  background: #dedede;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .dw-offer-fact {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 16px 18px;
  background: var(--dw-white);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .dw-offer-fact
  b {
  color: #737373;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .dw-offer-fact__value {
  color: var(--dw-black);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:first-of-type::before,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:nth-of-type(2)::before,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:nth-of-type(3)::before,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:nth-of-type(4)::before {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--dw-yellow);
  color: var(--dw-black);
  font-size: 0.88rem;
  font-weight: 850;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:first-of-type::before { content: "01"; }
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:nth-of-type(2)::before { content: "02"; }
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:nth-of-type(3)::before { content: "03"; }
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article:nth-of-type(4)::before { content: "04"; }

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article {
  font-size: 0;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(4)
  > article
  :where(h3, p) {
  font-size: initial;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(6) {
  max-width: 920px;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:nth-of-type(6)
  details {
  margin-top: 10px;
  padding-inline: 20px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: var(--dw-white);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type {
  text-align: center;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > * {
  margin-inline: auto;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > p:last-child
  a:last-child {
  border-color: var(--dw-white);
  background: transparent;
  color: var(--dw-white);
}

@media (min-width: 1025px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type {
    min-height: 0;
    padding-block: 58px;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    h1 {
    margin-block: 8px 18px;
    font-size: clamp(2.45rem, 3.1vw, 2.85rem) !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    ul {
    gap: 7px 18px;
    margin-block: 12px 4px;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:nth-of-type(2) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:nth-of-type(n + 2):nth-of-type(-n + 5) {
    row-gap: 20px;
  }
}

@media (max-width: 1024px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .dw-offer-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .dw-offer-facts {
    grid-template-columns: 1fr;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .dw-offer-fact {
    min-height: 0;
  }
}

/*
 * Global brand-button state. The runtime adds this class only to controls
 * whose computed normal background is the site's yellow. Icon-only controls,
 * navigation, chat and video controls are deliberately never classified.
 */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(
    .dw-button-yellow,
    .dw-button-on-dark,
    .dw-button-on-light
  ) {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease !important;
  animation: none !important;
  translate: none !important;
  transform: none !important;
  border-radius: 8px !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-btn {
  border-radius: 8px !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-yellow {
  border-color: transparent !important;
  background: var(--dw-yellow, #ffed31) !important;
  color: var(--dw-black, #202020) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-yellow:hover,
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-yellow:focus-visible {
  border-color: transparent !important;
  background: var(--dw-orange, #fd9900) !important;
  color: var(--dw-white, #fff) !important;
  box-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-on-dark {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: var(--dw-white, #fff) !important;
  background: var(--dw-black, #202020) !important;
  color: var(--dw-white, #fff) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-on-dark:hover,
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-on-dark:focus-visible {
  border-color: var(--dw-white, #fff) !important;
  background: var(--dw-orange, #fd9900) !important;
  color: var(--dw-white, #fff) !important;
  box-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-on-light {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: var(--dw-black, #202020) !important;
  background: var(--dw-white, #fff) !important;
  color: var(--dw-black, #202020) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-on-light:hover,
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input).dw-button-on-light:focus-visible {
  border-color: var(--dw-black, #202020) !important;
  background: var(--dw-orange, #fd9900) !important;
  color: var(--dw-white, #fff) !important;
  box-shadow: none !important;
  translate: none !important;
  transform: none !important;
}

/* Mouse hover is a colour change only. Legacy page CSS added a second orange
 * outline around GrowthCLUB and similar CTAs. Keyboard focus remains covered
 * by the separate global :focus-visible accessibility rule. */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(a, button, input):is(
    .dw-button-yellow,
    .dw-button-on-dark,
    .dw-button-on-light
  ):hover {
  outline: 0 !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

/*
 * Results hub #38: the original Elementor cards keep a desktop two-column
 * child layout on phones, pushing all useful text outside the viewport. The
 * audited cards do not contain real media yet, so present them as compact,
 * content-first case-study cards at every breakpoint.
 */
body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="d5afbb2"] {
  min-height: 0 !important;
  overflow: visible !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="679b25c"] {
  min-height: 0 !important;
  height: auto !important;
  padding-block: clamp(28px, 4vw, 44px) !important;
  overflow: hidden !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="679b25c"]
  :where(.elementor-widget-html, .logo-band) {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="679b25c"]
  .logo-band {
  padding: 0 !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="679b25c"]
  .logo-band-title {
  margin: 0 0 24px;
  color: #666;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="679b25c"]
  .logo-track {
  display: flex !important;
  width: max-content !important;
  height: 48px !important;
  align-items: center !important;
  gap: 52px !important;
  animation: dw-results-logo-scroll 56s linear infinite !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="679b25c"]
  .logo-track
  img {
  display: block !important;
  width: auto !important;
  max-width: 150px !important;
  height: 42px !important;
  max-height: 42px !important;
  object-fit: contain !important;
  opacity: 0.68;
}

@keyframes dw-results-logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="p38_cases"] {
  padding-block: clamp(58px, 7vw, 88px) !important;
  overflow: visible !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="528b4b2"],
body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="1f30a25"] {
  width: min(100%, 720px);
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="1f30a25"] {
  margin-bottom: clamp(26px, 4vw, 42px);
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="0e051ff"] {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100% !important;
  overflow: visible !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="94807d7"], [data-id="a72eb3b"]) {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #dedede !important;
  border-top: 4px solid var(--dw-yellow) !important;
  border-radius: 16px !important;
  background: var(--dw-white) !important;
  box-shadow: 0 14px 38px rgb(32 32 32 / 8%);
  transform: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="1d87d17"], [data-id="7788ceb"]) {
  display: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="e6fa89a"], [data-id="143b7a1"]) {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 390px !important;
  height: 100% !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  padding: clamp(26px, 3.5vw, 36px) !important;
  overflow: visible !important;
  transform: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="a5e3d41"], [data-id="3c82a59"]) {
  margin-top: auto;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="a5e3d41"], [data-id="3c82a59"])
  a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--dw-black);
  border-radius: 4px;
  background: var(--dw-white);
  color: var(--dw-black);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

/* Results cards had older inline hover/focus effects. Keep the geometry
 * stable and let the shared button contract control only the active CTA. */
body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="94807d7"], [data-id="a72eb3b"]):is(:hover, :focus-within) {
  transform: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="a5e3d41"], [data-id="3c82a59"])
  a.dw-button-on-light:hover {
  outline: 0 !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

/* Elementor's card-link helper stretches each CTA's ::after across the
 * complete two-card row. The later (right) link therefore captures hover and
 * clicks intended for the left card. These are explicit visible buttons, so
 * their interactive area must match their own geometry. */
body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  :where([data-id="a5e3d41"], [data-id="3c82a59"])
  a::after {
  content: none !important;
  display: none !important;
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  pointer-events: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="p38_stats"]
  > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1px !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="p38_stats"]
  > .e-con-inner
  > .e-con {
  min-height: 0 !important;
  padding: clamp(24px, 4vw, 42px) !important;
  overflow: visible !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="0d34a33"] {
  padding-block: clamp(60px, 7vw, 90px) !important;
  background: var(--dw-black) !important;
  color: var(--dw-white) !important;
  text-align: center;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="0d34a33"]
  :where(h2, p) {
  margin-inline: auto;
  color: inherit;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="0d34a33"]
  p {
  max-width: 680px;
  color: #d7d7d7;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="dd685c8"] {
  display: flex !important;
  flex-flow: row wrap !important;
  justify-content: center !important;
  gap: 12px !important;
}

/*
 * Results pages use substantial testimonial content. On phones every section
 * remains immediately readable; scroll-reveal is deliberately disabled there.
 */
@media (max-width: 767px) {
  body.dw-responsive-v2:not(.dw-layout-off):is(
      .dw-type-results,
      .dw-type-case-study
    )
    main
    :where([data-dw-motion], .dw-motion-pending) {
    opacity: 1 !important;
    translate: none !important;
    transform: none !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="679b25c"] {
    padding-block: 28px !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="679b25c"]
    .logo-track {
    height: 36px !important;
    gap: 34px !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="679b25c"]
    .logo-track
    img {
    max-width: 108px !important;
    height: 30px !important;
    max-height: 30px !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="0e051ff"] {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    :where([data-id="e6fa89a"], [data-id="143b7a1"]) {
    min-height: 0 !important;
    padding: 24px !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="p38_stats"]
    > .e-con-inner {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="p38_stats"]
    > .e-con-inner
    > .e-con {
    padding: 22px !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="dd685c8"] {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="dd685c8"]
    .elementor-button {
    display: inline-flex !important;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }

  body.dw-responsive-v2:not(.dw-layout-off):is(
      .dw-type-results,
      .dw-type-case-study
    )
    #hubspot-messages-iframe-container:not(.active) {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off):is(
      .dw-type-results,
      .dw-type-case-study
    )
    .dw-chat-safe-launcher {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  body.dw-responsive-v2:not(.dw-layout-off):is(
      .dw-type-results,
      .dw-type-case-study
    )
    main {
    padding-bottom: 82px;
  }
}

/* Release the audited homepage logo band from its obsolete 120px shell. */
body.page-id-20.dw-responsive-v2:not(.dw-layout-off) [data-id="818430e"],
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="818430e"]
  > .e-con-inner,
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="818430e"]
  > .elementor-widget-html,
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="818430e"]
  > .e-con-inner
  > .elementor-widget-html,
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="818430e"]
  > .elementor-widget-html
  > .elementor-widget-container,
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="818430e"]
  > .e-con-inner
  > .elementor-widget-html
  > .elementor-widget-container,
body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="818430e"]
  .logo-band {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow-y: visible !important;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-detail
  main
  :where(.dw-resource-content, .dw-resource-detail__content) {
  width: 100%;
  max-width: var(--dw-reading-max);
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-detail
  main
  :where(.dw-resource-actions, .dw-resource-detail__actions) {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.dw-responsive-v2:not(.dw-layout-off):is(.dw-type-article, .dw-type-archive)
  .dw-blog-shell {
  min-width: 0;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-article
  .dw-blog-article__content
  > * {
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-archive
  :where(.dw-blog-results, .dw-blog-grid, .dw-blog-card) {
  min-width: 0;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-facts, .dw-offer-facts) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--dw-line);
  border-radius: var(--dw-radius);
  background: var(--dw-line);
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-fact, .dw-offer-fact) {
  min-width: 0;
  padding: 22px;
  background: var(--dw-white);
}

body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-fact, .dw-offer-fact) > :last-child {
  margin-bottom: 0;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-results :where(.dw-results-grid, .dw-testimonial-grid),
body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-hub :where(.dw-resource-grid, .dw-resources-grid) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-results
  :where(.dw-result-card, .dw-testimonial-card),
body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-hub
  :where(.dw-resource-card, .dw-resources-card) {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-results
  :where(.dw-result-card, .dw-testimonial-card)
  :where(.elementor-button-wrapper, .dw-card__actions),
body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-hub
  :where(.dw-resource-card, .dw-resources-card)
  :where(.elementor-button-wrapper, .dw-card__actions) {
  margin-top: auto;
}

/* Case-study pages #39/#40 use a normal document-flow template. */
body.dw-responsive-v2:not(.dw-layout-off).dw-type-case-study main {
  position: relative !important;
  inset: auto !important;
  display: block;
  width: 100%;
  max-width: none !important;
  height: auto !important;
  min-height: 0;
  margin: 0;
  overflow: visible;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-case-study
  :where(.page-header, main > .page-header, main > header .entry-title) {
  display: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-case-study main#content {
  padding: 0;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-shell {
  width: 100%;
  background: var(--dw-white);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero {
  padding-block: clamp(64px, 8vw, 118px);
  background: var(--dw-black);
  color: var(--dw-white);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-eyebrow {
  margin: 0 0 16px;
  color: var(--dw-white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero h1 {
  max-width: 860px;
  margin: 0;
  color: inherit;
  font-size: clamp(2.55rem, 5.6vw, 4.8rem);
  line-height: 1.02;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #dedede;
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  line-height: 1.62;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta {
  display: grid;
  gap: 14px;
  margin: 0;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta > div {
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta dt {
  margin-bottom: 4px;
  color: #bcbcbc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta dd {
  margin: 0;
  font-size: 1rem;
}

/* Editable Elementor variant of the Case Study metadata. */
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta__item {
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta__label,
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta__value {
  margin: 0 !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta__label .elementor-heading-title {
  color: #bcbcbc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta__value .elementor-heading-title {
  color: var(--dw-white);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* Page 40 is a real editable Elementor document. Keep its typography and
   brand colours deterministic in both the public page and editor canvas. */
body.page-id-40 [data-id="p40heye"] .elementor-widget-container,
body.page-id-40 [data-id="p40veye"] .elementor-widget-container,
body.page-id-40 [data-id="p40beye"] .elementor-widget-container,
body.page-id-40 [data-id="p40ceye"] .elementor-widget-container {
  color: #ffdf00 !important;
  font-family: Poppins, sans-serif !important;
}

body.page-id-40 [data-id="p40h1"] .elementor-heading-title,
body.page-id-40 [data-id^="p40met"][data-id$="v"] .elementor-heading-title {
  color: #fff !important;
  font-family: Poppins, sans-serif !important;
}

body.page-id-40 [data-id="p40hlea"] .elementor-widget-container {
  color: #e3e3e3 !important;
  font-family: Poppins, sans-serif !important;
}

body.page-id-40 [data-id^="p40met"][data-id$="l"] .elementor-heading-title {
  color: #bebebe !important;
  font-family: Poppins, sans-serif !important;
}

body.page-id-40 :where(
  [data-id="p40vh2"],
  [data-id="p40bh2"],
  [data-id="p40ph2"],
  [data-id="p40ch2"]
) .elementor-heading-title,
body.page-id-40 :where(
  [data-id="p40bsum"],
  [data-id="p40ptxt"],
  [data-id="p40ctxt"]
) .elementor-widget-container {
  color: #202020 !important;
  font-family: Poppins, sans-serif !important;
}

/* Elementor's generic mobile container padding must not compound at every
   nested level of the editable Page 40 document. Spacing belongs to the
   section and shell only; nested layout containers remain width-neutral. */
body:is(.page-id-40, .elementor-page-40) .dw-case-shell,
body:is(.page-id-40, .elementor-page-40) .dw-case-shell :where(.e-con, .e-con-inner) {
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

/* Exact container contract wins over Elementor's highly specific responsive
   defaults, which otherwise reintroduce 40/20px padding on every nesting
   level. Widgets remain untouched and individually editable. */
html body.page-id-40.elementor-page-40 .dw-case-shell[data-id="p40root"][data-element_type="container"],
html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id^="p40"] {
  padding: 0 !important;
  padding-block: 0 !important;
  padding-inline: 0 !important;
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell :is(
  [data-id="p40heri"],
  [data-id="p40vidi"],
  [data-id="p40bodi"],
  [data-id="p40baki"],
  [data-id="p40ctai"]
)[data-element_type="container"] {
  width: min(calc(100% - (2 * var(--dw-gutter, 30px))), var(--dw-content-max, 1200px)) !important;
  margin-inline: auto !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40hero"] {
  padding-block: clamp(64px, 8vw, 118px) !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40vids"] {
  padding-block: clamp(32px, 4vw, 48px) !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40body"] {
  padding-block: var(--dw-section-space, 88px) !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40back"] {
  padding-block: 40px !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40cta"] {
  padding-block: clamp(64px, 7vw, 88px) !important;
}

html body.page-id-40.elementor-page-40 .dw-case-shell :is(
  [data-id="p40met1"],
  [data-id="p40met2"],
  [data-id="p40met3"]
)[data-element_type="container"] {
  padding-top: 14px !important;
  padding-block-start: 14px !important;
}

/* The legacy optimiser gave small text containers their own Y scrollbar.
   Metadata must grow with its content; only the document itself scrolls. */
html body.page-id-40.elementor-page-40 .dw-case-shell :is(
  [data-id="p40meta"],
  [data-id="p40met1"],
  [data-id="p40met2"],
  [data-id="p40met3"]
),
html body.page-id-40.elementor-page-40 .dw-case-shell .dw-case-meta__item :where(
  .elementor-widget,
  .elementor-widget-container
) {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

/* Page 40 has no legitimate nested scrolling regions. Remove the remaining
   legacy Y-scroll behaviour from section and widget wrappers while leaving
   the native video controls untouched. */
html body.page-id-40.elementor-page-40.dw-responsive-v2 .dw-case-shell :where(
  [data-element_type="container"],
  [data-element_type="widget"],
  .elementor-widget-container
) {
  max-height: none !important;
  overflow-y: visible !important;
}

html body.page-id-40.elementor-page-40.dw-responsive-v2 .dw-case-shell
  [data-element_type="container"][data-id="p40vint"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

/* Metadata is supporting information, not display typography. Keep it
   compact at every breakpoint so the three tablet columns never collide. */
html body.page-id-40.elementor-page-40.dw-responsive-v2 .dw-case-shell
  [data-id^="p40met"][data-id$="l"] .elementor-heading-title {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.12em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

html body.page-id-40.elementor-page-40.dw-responsive-v2 .dw-case-shell
  [data-id^="p40met"][data-id$="v"] .elementor-heading-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  html body.page-id-40.elementor-page-40.dw-responsive-v2 .dw-case-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

body:is(.page-id-40, .elementor-page-40) .dw-case-shell .dw-shell {
  width: min(calc(100% - (2 * var(--dw-gutter, 30px))), var(--dw-content-max, 1200px)) !important;
  margin-inline: auto !important;
}

body:is(.page-id-40, .elementor-page-40) .dw-case-shell .dw-case-hero {
  padding-block: clamp(64px, 8vw, 118px) !important;
  padding-block-start: clamp(64px, 8vw, 118px) !important;
  padding-block-end: clamp(64px, 8vw, 118px) !important;
}

body:is(.page-id-40, .elementor-page-40) .dw-case-shell .dw-case-body {
  padding-block: var(--dw-section-space, 88px) !important;
  padding-block-start: var(--dw-section-space, 88px) !important;
  padding-block-end: var(--dw-section-space, 88px) !important;
}

body:is(.page-id-40, .elementor-page-40) .dw-case-shell .dw-case-meta__item {
  padding-top: 14px !important;
  padding-block-start: 14px !important;
}

@media (max-width: 1024px) {
  body:is(.page-id-40, .elementor-page-40) .dw-case-hero__inner,
  body:is(.page-id-40, .elementor-page-40) .dw-case-body__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body:is(.page-id-40, .elementor-page-40) .dw-case-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body:is(.page-id-40, .elementor-page-40) .dw-case-shell .dw-shell {
    width: calc(100% - 36px) !important;
  }

  body:is(.page-id-40, .elementor-page-40) .dw-case-shell .dw-case-hero {
    padding-block: 52px 58px !important;
    padding-block-start: 52px !important;
    padding-block-end: 58px !important;
  }

  body:is(.page-id-40, .elementor-page-40) .dw-case-meta {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body:is(.page-id-40, .elementor-page-40) .dw-case-panel {
    padding: 24px !important;
    padding-block: 24px !important;
    padding-inline: 24px !important;
    padding-block-start: 24px !important;
    padding-block-end: 24px !important;
    padding-inline-start: 24px !important;
    padding-inline-end: 24px !important;
  }

  html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40hero"] {
    padding-block: 52px 58px !important;
  }

  html body.page-id-40.elementor-page-40 .dw-case-shell [data-element_type="container"][data-id="p40pane"] {
    padding: 24px !important;
  }

  html body.page-id-40.elementor-page-40 .dw-case-shell :is(
    [data-id="p40heri"],
    [data-id="p40vidi"],
    [data-id="p40bodi"],
    [data-id="p40baki"],
    [data-id="p40ctai"]
  )[data-element_type="container"] {
    width: calc(100% - 36px) !important;
  }

  html body.page-id-40.elementor-page-40 [data-id="p40h1"] .elementor-heading-title {
    font-size: clamp(2.25rem, 10.5vw, 2.75rem) !important;
    line-height: 1.04 !important;
  }

  html body.page-id-40.elementor-page-40 [data-id="p40hlea"] .elementor-widget-container {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
  }
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-eyebrow p,
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero__lead p,
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-summary p {
  margin: 0;
  color: inherit;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-panel .elementor-widget-button,
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-cta .elementor-widget-button,
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-back .elementor-widget-button {
  width: auto;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-back .elementor-widget-button {
  margin-inline: auto;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-body {
  padding-block: var(--dw-section-space);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-summary {
  max-width: var(--dw-reading-max);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.6;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-panel {
  padding: 28px;
  border-left: 4px solid var(--dw-yellow);
  background: var(--dw-surface);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-panel h2 {
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-panel > :last-child {
  margin-bottom: 0;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-back {
  padding-block: 0 clamp(64px, 7vw, 96px);
  background: var(--dw-white);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video {
  background: var(--dw-white);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video .dw-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video .dw-shell > * {
  min-width: 0;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video__intro {
  margin-inline: auto;
  text-align: center;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video__intro h2 {
  max-width: 100%;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.12;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video__player {
  display: block;
  width: min(100%, 900px);
  height: auto;
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  border: 0;
  border-radius: 16px;
  background: #111;
  box-shadow: 0 18px 48px rgba(32, 32, 32, 0.14);
  object-fit: cover;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-video__player:focus-visible {
  outline: 3px solid var(--dw-orange);
  outline-offset: 4px;
}

/* Blog runs outside an Elementor page root and therefore gets a direct adapter. */
body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-shell {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: auto;
  margin: 0;
  overflow: visible;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-shell :where(.dw-blog-results, .dw-blog-lead, .dw-blog-grid) {
  min-width: 0;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-card {
  min-width: 0;
  height: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-card__link {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-card__media {
  aspect-ratio: 16 / 9;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-card__cta {
  margin-top: auto;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-filters {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-filter {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-article__content {
  width: min(calc(100% - (2 * var(--dw-gutter))), var(--dw-reading-max));
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.72;
}

/* Legal pages favor calm reading over decorative motion. */
body.dw-responsive-v2:not(.dw-layout-off).dw-type-legal
  main
  :where(.elementor-widget-text-editor, .dw-legal-prose) {
  width: 100%;
  max-width: min(var(--dw-reading-max), calc(100vw - (2 * var(--dw-gutter))));
  margin-inline: auto;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-legal
  main
  :where(.elementor-widget-text-editor, .dw-legal-prose)
  :where(p, li) {
  line-height: 1.72;
}

/* The BWA app and embedded forms remain functional islands. */
body.dw-responsive-v2:not(.dw-layout-off).dw-type-tool
  :where(.dw-tool-app, [data-dw-tool], .bwa-app, #bwa-cockpit) {
  min-width: 0;
  max-width: 100%;
  isolation: isolate;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.hbspt-form, .hs-form, [data-hs-forms-root], .dw-tool-app, [data-dw-tool]) {
  overflow: visible;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-business-tapas :where(.dw-video-grid, .dw-tapas-grid) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/*
 * Wide tables scroll only when their markup explicitly opts in. Add an
 * accessible label and tabindex in the markup; CSS never turns every table
 * into a private scroll region.
 */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-table-scroll, [data-dw-table-scroll]) {
  width: 100%;
  max-width: 100%;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(.dw-table-scroll__hint, [data-dw-table-scroll-hint]),
body.dw-responsive-v2:not(.dw-layout-off)
  [data-dw-table-scroll][data-dw-scroll-label]::before {
  display: none;
}

/* Keep the requested HubSpot greeting, but constrain its outer viewport box. */
body.dw-responsive-v2:not(.dw-layout-off) #hubspot-messages-iframe-container {
  right: max(12px, env(safe-area-inset-right)) !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  z-index: 900 !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: calc(100vw - 24px) !important;
  max-height: calc(100svh - var(--dw-header-height) - var(--dw-admin-bar-height) - 24px) !important;
}

body.dw-responsive-v2:not(.dw-layout-off) #hubspot-messages-iframe-container iframe {
  max-width: 100% !important;
  max-height: 100% !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-greeting-visible:not(.active) {
  top: calc(var(--dw-admin-bar-height) + var(--dw-header-height) + 12px) !important;
  bottom: auto !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-bottom-right:not(.active) {
  inset: auto max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom)) auto !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-top-left:not(.active) {
  inset: calc(var(--dw-admin-bar-height) + var(--dw-header-height) + 12px)
    auto auto max(12px, env(safe-area-inset-left)) !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-bottom-left:not(.active) {
  inset: auto auto max(12px, env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-left)) !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-deferred:not(.active) {
  visibility: hidden !important;
  pointer-events: none !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-chat-safe-launcher {
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 901;
  display: none;
  width: 56px;
  min-width: 56px;
  height: 56px;
  min-height: 56px;
  place-items: center;
  padding: 0;
  border: 2px solid var(--dw-black);
  border-radius: 50%;
  background: var(--dw-yellow);
  color: var(--dw-black);
  box-shadow: 0 10px 28px rgb(32 32 32 / 22%);
  cursor: pointer;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-chat-safe-launcher.is-visible {
  display: grid;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-chat-safe-launcher::before {
  content: "";
  width: 23px;
  height: 18px;
  border: 2px solid currentcolor;
  border-radius: 3px;
  box-shadow: 5px -5px 0 -3px var(--dw-yellow), 5px -5px 0 -1px currentcolor;
}

body.dw-responsive-v2:not(.dw-layout-off)
  .dw-chat-safe-launcher:hover,
body.dw-responsive-v2:not(.dw-layout-off)
  .dw-chat-safe-launcher:focus-visible {
  border-color: var(--dw-orange);
  background: var(--dw-orange);
  color: var(--dw-white);
}

@media (min-width: 1025px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    #hubspot-messages-iframe-container:not(.active) {
    inset: auto max(18px, env(safe-area-inset-right))
      max(18px, env(safe-area-inset-bottom)) auto !important;
  }
}

/*
 * The 12-week hero contains a deliberately long sales headline. Keep its
 * measure controlled so the requested HubSpot greeting can remain visible
 * without sitting on top of the copy.
 */
body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero h1 {
  width: auto;
  max-width: 900px;
  text-wrap: balance;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2 > * {
  min-width: 0;
  max-width: 100%;
}

/* Keep both programme cards visually level and anchor their CTAs to one line. */
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .hero
  .dw-offer-choice-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .hero
  .dw-offer-choice-card
  > .btn {
  width: 100%;
  margin-top: auto;
}

/*
 * The theme adds the modern `translate` property to the video control while
 * the lightweight player already centers it with `transform`. Cancel that
 * duplicate translation so the Business-Tapas play control sits dead centre.
 */
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .dw-lite-video__play {
  top: 50% !important;
  left: 50% !important;
  width: 72px;
  height: 52px;
  border: 2px solid var(--dw-white);
  border-radius: 12px;
  background: var(--dw-black);
  translate: none !important;
  transform: translate(-50%, -50%) !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .dw-lite-video__button:hover
  .dw-lite-video__play,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .dw-lite-video__button:focus-visible
  .dw-lite-video__play {
  border-color: var(--dw-orange);
  background: var(--dw-orange);
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .dw-lite-video__play
  > span {
  position: static !important;
  inset: auto !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  margin-left: 4px;
  border: 0 solid transparent !important;
  border-top-width: 10px !important;
  border-top-color: transparent !important;
  border-bottom-width: 10px !important;
  border-bottom-color: transparent !important;
  border-left-width: 16px !important;
  border-left-color: var(--dw-white) !important;
  translate: none !important;
  transform: none !important;
}

/*
 * Motion is fail-open: content is only hidden after JavaScript has explicitly
 * marked an element as pending. Removing html.dw-motion-ready reveals it all.
 */
html.dw-motion-ready
  body.dw-responsive-v2:not(.dw-motion-off)
  [data-dw-motion="reveal"].dw-motion-pending,
html.dw-motion-ready
  body.dw-responsive-v2:not(.dw-motion-off)
  [data-dw-motion="stagger"]
  [data-dw-motion-item].dw-motion-pending {
  opacity: 0;
  transform: translate3d(0, var(--dw-motion-distance, 16px), 0);
  will-change: opacity, transform;
}

html.dw-motion-ready
  body.dw-responsive-v2:not(.dw-motion-off)
  [data-dw-motion="reveal"].dw-motion-pending,
html.dw-motion-ready
  body.dw-responsive-v2:not(.dw-motion-off)
  [data-dw-motion="stagger"]
  [data-dw-motion-item].dw-motion-pending {
  transition:
    opacity var(--dw-motion-duration, 460ms) cubic-bezier(0.2, 0.7, 0.2, 1),
    transform var(--dw-motion-duration, 460ms) cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--dw-motion-delay, 0ms);
}

html.dw-motion-ready
  body.dw-responsive-v2:not(.dw-motion-off)
  :where([data-dw-motion="reveal"], [data-dw-motion-item]).dw-motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

body.dw-responsive-v2:not(.dw-layout-off).dw-type-legal {
  --dw-motion-distance: 8px;
  --dw-motion-duration: 300ms;
}

@media (max-width: 1024px) {
  body.dw-responsive-v2:not(.dw-layout-off) .dw-runtime-grid {
    grid-template-columns: repeat(var(--dw-grid-tablet, 1), minmax(0, 1fr)) !important;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero h1 {
    max-width: min(640px, calc(100% - 200px));
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .g2 > * {
    min-width: 0;
    max-width: 100%;
  }

  body.dw-responsive-v2:not(.dw-layout-off) {
    --dw-header-row-height: 72px;
    --dw-header-height: 72px;
  }

  body.admin-bar.dw-responsive-v2:not(.dw-layout-off) {
    --dw-admin-bar-height: 32px;
  }

  .dw-grid--3,
  .dw-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__inner, [data-elementor-id="58"] > .e-con:first-child > .e-con-inner) {
    position: relative;
    grid-template-columns: minmax(104px, 1fr) minmax(136px, 150px) 44px;
    height: var(--dw-header-row-height) !important;
    min-height: var(--dw-header-row-height);
    gap: 14px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
  [data-elementor-id="58"]
  > .e-con:first-child {
    height: var(--dw-header-row-height) !important;
    min-height: var(--dw-header-row-height);
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    header.elementor-58
    > .elementor-element.elementor-element-388a7095,
  body.dw-responsive-v2:not(.dw-layout-off)
    header.elementor-58
    > .elementor-element.elementor-element-388a7095
    > .e-con-inner {
    height: var(--dw-header-row-height) !important;
    min-height: var(--dw-header-row-height) !important;
    max-height: var(--dw-header-row-height) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    header.elementor-58
    .elementor-element.elementor-element-76a7863.dw-header__nav
    .elementor-nav-menu--dropdown {
    position: fixed !important;
    top: var(--dw-header-bottom, var(--dw-fixed-header-offset)) !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    max-height: calc(100svh - var(--dw-header-bottom, var(--dw-fixed-header-offset))) !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    [data-elementor-id="58"]
    .elementor-element.dw-header__logo {
    position: static !important;
    inset: auto !important;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    [data-elementor-id="58"]
    .elementor-element.dw-header__cta {
    position: static !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 150px !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    [data-elementor-id="58"]
    .elementor-element.dw-header__nav {
    position: static !important;
    inset: auto !important;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    min-width: 44px !important;
    width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    overflow: visible !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06)
    img {
    max-width: 122px;
    max-height: 50px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__cta, .elementor-element-79c5b36b, .elementor-element-c6b1aa7)
    .elementor-button {
    width: min(150px, 100%);
    padding-inline: 13px;
    font-size: 0.88rem;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-footer-grid, [data-elementor-id="81"] [data-id="8d58b3e"] > .e-con-inner) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 48px;
  }

  body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-facts, .dw-offer-facts) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-marketing
    main
    :where(.dw-marketing-split, .dw-marketing-grid),
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-offer
    main
    :where(.dw-offer-split, .dw-offer-choice-grid),
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-detail
    main
    :where(.dw-resource-layout, .dw-resource-detail-grid),
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-business-tapas
    :where(.dw-video-grid, .dw-tapas-grid) {
    grid-template-columns: 1fr;
  }

  /*
   * Article tables need the full reading width on tablet. The desktop
   * contents rail otherwise leaves a ~398 px text column where ordinary
   * editorial tables can widen the document.
   */
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-article
    .dw-blog-article__layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-article
    .dw-blog-article__content {
    min-width: 0;
    max-width: var(--dw-reading-max);
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-results :where(.dw-results-grid, .dw-testimonial-grid),
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-hub :where(.dw-resource-grid, .dw-resources-grid),
  body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero__inner,
body.dw-responsive-v2:not(.dw-layout-off) .dw-case-body__grid {
  grid-template-columns: 1fr;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-case-body__grid > * {
  min-width: 0;
  max-width: 100%;
}

  body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar.dw-responsive-v2:not(.dw-layout-off) {
    --dw-admin-bar-height: 46px;
  }

  body.admin-bar.dw-responsive-v2:not(.dw-layout-off) #wpadminbar {
    min-width: 0 !important;
    max-width: 100vw;
  }

  body.admin-bar.dw-responsive-v2:not(.dw-layout-off)
    #wp-admin-bar-my-account
    .display-name {
    display: none;
  }
}

@media (max-width: 767px) {
  body.dw-responsive-v2:not(.dw-layout-off) .dw-runtime-grid {
    grid-template-columns: repeat(var(--dw-grid-mobile, 1), minmax(0, 1fr)) !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-article
    .dw-blog-article__header
    h1 {
    hyphens: auto;
    overflow-wrap: break-word;
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-article
    .dw-blog-article__content
    :where(h2, h3) {
    hyphens: auto;
    overflow-wrap: break-word;
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-article
    .dw-blog-article__content
    :where(p, li) {
    hyphens: auto;
    overflow-wrap: break-word;
  }

  body.dw-responsive-v2:not(.dw-layout-off).dw-type-archive
    .dw-blog-hero
    h1 {
    font-size: clamp(2.2rem, 10.2vw, 2.5rem);
    hyphens: auto;
    overflow-wrap: break-word;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero h1 {
    max-width: 350px;
  }

  body.dw-responsive-v2:not(.dw-layout-off) {
    --dw-gutter: 18px;
    --dw-section-space: 64px;
    --dw-card-gap: 18px;
    --dw-header-row-height: 68px;
    --dw-header-height: 68px;
    --dw-motion-distance: 11px;
    --dw-motion-duration: 320ms;
  }

  .dw-grid--2,
  .dw-grid--3,
  .dw-grid--4 {
    grid-template-columns: 1fr;
  }

  .dw-btn {
    min-height: 46px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__inner, [data-elementor-id="58"] > .e-con:first-child > .e-con-inner) {
    grid-template-columns: minmax(88px, 1fr) minmax(112px, auto) 44px;
    gap: 10px;
    padding-inline: 14px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06) {
    position: static !important;
    inset: auto !important;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__cta, .elementor-element-79c5b36b, .elementor-element-c6b1aa7) {
    position: static !important;
    inset: auto !important;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__nav, .elementor-element-76a7863) {
    position: static !important;
    inset: auto !important;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    width: 44px !important;
    height: 44px !important;
    overflow: visible !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06)
    img {
    max-width: 112px;
    max-height: 46px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__cta, .elementor-element-79c5b36b, .elementor-element-c6b1aa7)
    .elementor-button {
    width: 100%;
    max-width: 132px;
    min-height: 44px;
    padding: 7px 10px;
    font-size: 0.78rem;
    line-height: 1.05;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-footer-grid, [data-elementor-id="81"] [data-id="8d58b3e"] > .e-con-inner) {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 14px;
    padding-block: 28px 20px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-footer-copyright, [data-elementor-id="81"] [data-id="efd515d"]) {
    padding-top: 8px;
    text-align: left;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(
      .dw-footer-column,
      [data-elementor-id="81"] [data-id="a95a8e1"],
      [data-elementor-id="81"] [data-id="c86f1a0"],
      [data-elementor-id="81"] [data-id="c01d139"],
      [data-elementor-id="81"] [data-id="6072152"]
    ) {
    gap: 6px !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where([data-elementor-id="81"], .elementor-81)
    :where(.elementor-widget, .elementor-widget-container, .elementor-icon-list-items) {
    margin-block: 0 !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where([data-elementor-id="81"], .elementor-81)
    :where(.elementor-heading-title, p) {
    margin-block: 0 8px;
    line-height: 1.45;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where([data-elementor-id="81"], .elementor-81)
    .elementor-icon-list-item {
    min-height: 44px;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where([data-elementor-id="81"], .elementor-81)
    .elementor-icon-list-item
    > a {
    min-height: 44px;
    padding-block: 0 !important;
    line-height: 1.35;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section {
    display: block !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section
    h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.5rem) !important;
    line-height: 1.08 !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section
    h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
    line-height: 1.14 !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section
    > article {
    margin-top: 16px;
  }

  body.dw-responsive-v2:not(.dw-layout-off) :where(.dw-facts, .dw-offer-facts),
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-results :where(.dw-results-grid, .dw-testimonial-grid),
  body.dw-responsive-v2:not(.dw-layout-off).dw-type-resource-hub :where(.dw-resource-grid, .dw-resources-grid),
  body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-grid {
    grid-template-columns: 1fr;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-table-scroll, [data-dw-table-scroll]) {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-table-scroll, [data-dw-table-scroll])
    > table {
    width: max-content;
    min-width: 100%;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-table-scroll__hint, [data-dw-table-scroll-hint]),
  body.dw-responsive-v2:not(.dw-layout-off)
    [data-dw-table-scroll][data-dw-scroll-label]::before {
    display: block;
    margin: 0 0 8px;
    color: var(--dw-muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    [data-dw-table-scroll][data-dw-scroll-label]::before {
    content: attr(data-dw-scroll-label);
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero {
    padding-block: 58px 64px;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-case-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-case-body h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-case-meta {
    grid-template-columns: 1fr;
  }

  body.dw-responsive-v2:not(.dw-layout-off) .dw-blog-article__content {
    font-size: 1.04rem;
    line-height: 1.68;
  }

  body.dw-responsive-v2:not(.dw-layout-off) #hubspot-messages-iframe-container {
    bottom: max(40px, env(safe-area-inset-bottom)) !important;
    max-width: min(360px, calc(100vw - 24px)) !important;
    max-height: min(58svh, calc(100svh - var(--dw-header-height) - var(--dw-admin-bar-height) - 24px)) !important;
  }

}

@media (max-width: 560px) {
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero h1 {
    max-width: none;
  }

  /*
   * The editorial title uses non-breaking hyphens. Permit a last-resort wrap
   * only in this known card so the complete label remains readable on phones.
   */
  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel h2 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 420px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section
    h1 {
    font-size: clamp(1.75rem, 8vw, 2.1rem) !important;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section
    > article
    h3 {
    font-size: 1.35rem !important;
    line-height: 1.22 !important;
  }

  body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel p:not(.eye) {
    hyphens: auto;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body.dw-responsive-v2:not(.dw-layout-off) {
    --dw-gutter: 16px;
    --dw-section-space: 56px;
    --dw-header-row-height: 66px;
    --dw-header-height: 66px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__inner, [data-elementor-id="58"] > .e-con:first-child > .e-con-inner) {
    grid-template-columns: minmax(78px, 1fr) minmax(102px, auto) 44px;
    gap: 8px;
    padding-inline: 12px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__logo, .elementor-element-2c6650c0, .elementor-element-bf2df06)
    img {
    max-width: 102px;
  }

  body.dw-responsive-v2:not(.dw-layout-off)
    :where(.dw-header__cta, .elementor-element-79c5b36b, .elementor-element-c6b1aa7)
    .elementor-button {
    max-width: 112px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .dw-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.dw-motion-ready
    body.dw-responsive-v2
    :where([data-dw-motion="reveal"], [data-dw-motion-item]) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .dw-btn {
    transition: none;
  }
}

/*
 * Page #34: align the opening and closing brand sections with the other
 * offer pages. Both sections are full-width bands, while their
 * content remains constrained by the shared 1200px shell. The desktop media
 * column is intentionally wider so the 16:9 video is not presented as a
 * thumbnail next to the headline.
 */
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type,
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > .dw-offer-hero__media {
  width: 100%;
  max-width: none;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  .dw-lite-video {
  width: 100%;
  max-width: 640px;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type {
  padding-block: clamp(68px, 7vw, 96px);
  text-align: center;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > p:first-child {
  margin-bottom: 12px;
  color: var(--dw-yellow);
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > h2 {
  max-width: 760px;
  margin-inline: auto;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > p:nth-of-type(2) {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #d7d7d7;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > p:last-child {
  display: flex;
  max-width: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:last-of-type
  > p:last-child
  a {
  min-width: 190px;
  margin: 0;
}

@media (min-width: 1180px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type {
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    column-gap: clamp(40px, 4vw, 56px);
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    > .dw-offer-hero__media {
    max-width: 640px;
    justify-self: end;
  }
}

@media (min-width: 1025px) and (max-width: 1179px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type {
    display: block;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:first-of-type
    > .dw-offer-hero__media {
    max-width: 900px;
    margin: 34px auto 0;
  }
}

@media (max-width: 767px) {
  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:last-of-type
    > p:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
    .page-content
    > section:last-of-type
    > p:last-child
    a {
    width: 100%;
    min-width: 0;
  }
}

/* Homepage: keep each Superpower story and its video visually connected. */
@media (min-width: 1025px) {
  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    > .e-con-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-auto-flow: row;
    align-items: center;
    column-gap: clamp(48px, 6vw, 96px);
    row-gap: 18px;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-0a5b835, .elementor-element-d56c526, .elementor-element-9f6e18c)
    > .e-con-inner > * {
    grid-column: 1;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-0a5b835, .elementor-element-d56c526, .elementor-element-9f6e18c)
    > .e-con-inner > .dw-lite-video-widget {
    grid-column: 2;
    grid-row: 1 / span 6;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-8098267, .elementor-element-4637f0a, .elementor-element-a01e1d5)
    > .e-con-inner > * {
    grid-column: 2;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-8098267, .elementor-element-4637f0a, .elementor-element-a01e1d5)
    > .e-con-inner > .dw-lite-video-widget {
    grid-column: 1;
    grid-row: 1 / span 6;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    .dw-lite-video {
    width: 100%;
    max-width: none;
  }
}

/* Final cascade guard for the audited homepage story pairs. */
@media (min-width: 1025px) {
  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    .dw-lite-video-widget,
  body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
    :where(.elementor-element-ba34d18, .elementor-element-8098267, .elementor-element-0a5b835, .elementor-element-4637f0a, .elementor-element-d56c526, .elementor-element-a01e1d5, .elementor-element-9f6e18c)
    .dw-lite-video {
    width: 100% !important;
    max-width: 560px !important;
    justify-self: center;
  }
}

/* Final review corrections found during published-page QA. */
body.page-id-32.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-a423f61
  .dw-coaching-cta-portrait {
  width: auto !important;
  height: min(620px, 70vw) !important;
  max-height: 620px !important;
}

body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .page-content
  > section:first-of-type
  > ul {
  display: grid !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-0d34a33
  > .e-con-inner {
  min-height: 0 !important;
  padding-block: 0 !important;
}

/* P38 final review: reduce the hero film, remove the obsolete statistics band
 * and let the conversion section follow without a synthetic empty floor. */
@media (min-width: 1025px) {
  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="d5afbb2"]
    > .e-con-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr) !important;
    grid-template-rows: auto auto auto !important;
    column-gap: clamp(48px, 6vw, 84px) !important;
    row-gap: 0 !important;
    align-items: center !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    :where([data-id="0031508"], [data-id="9024c69"], [data-id="bbea3fb"]) {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="0031508"] {
    grid-row: 1 !important;
    align-self: end !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="9024c69"] {
    grid-row: 2 !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="bbea3fb"] {
    grid-row: 3 !important;
    align-self: start !important;
  }

  body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
    [data-id="vc38vid1"] {
    grid-column: 2 !important;
    grid-row: 1 / 4 !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 !important;
    align-self: center !important;
    justify-self: end !important;
  }
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="f64z7dy"] {
  width: 100% !important;
  max-width: 620px !important;
  margin-inline: auto !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="vc38vid1"]
  > .e-con-inner::before {
  content: none !important;
  display: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="vc38vid1"]
  .elementor-widget-text-editor {
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 auto 12px !important;
  color: #d7d7d7 !important;
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="vc38vid1"]
  .elementor-widget-text-editor p {
  margin: 0 !important;
  color: inherit !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="f64z7dy"]
  .dw-lite-video {
  width: 100% !important;
  max-width: 620px !important;
  overflow: hidden !important;
  border: 1px solid rgba(32, 32, 32, 0.16) !important;
  border-radius: 10px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16) !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="f64z7dy"]
  :where(.dw-lite-video__button, .dw-lite-video__poster, .dw-lite-video__iframe) {
  overflow: hidden !important;
  border-radius: inherit !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="p38_stats"] {
  display: none !important;
}

body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="0d34a33"] {
  min-height: 0 !important;
  margin-block: 0 !important;
  padding-block: clamp(56px, 6vw, 76px) !important;
}

/* Podological practice: the testimonial is the first proof directly after
 * the hero. Keep it compact so the case narrative and closing actions remain
 * visible without a video-sized dead zone. */
body.page-id-40.dw-responsive-v2:not(.dw-layout-off) .dw-case-video {
  padding-block: clamp(32px, 4vw, 48px) !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-video
  .dw-shell {
  gap: clamp(16px, 2vw, 24px) !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-video__intro
  :where(p, h2) {
  margin-block: 0 !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-video__player {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  border-radius: 16px !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off) .dw-case-back {
  padding-block: 40px !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-back
  .dw-shell {
  display: flex !important;
  justify-content: center !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off) .dw-case-cta {
  display: block !important;
  padding-block: clamp(64px, 7vw, 88px) !important;
}

body.page-id-40.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-cta__inner {
  margin-inline: auto !important;
}

/* Audited dark heroes: extend the real visible hero behind the sticky header.
 * The preceding Elementor HTML/CSS utility containers are zero-height and are
 * deliberately not used as visual anchors. */
body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="6049966"],
body.page-id-43.dw-responsive-v2:not(.dw-layout-off)
  [data-id="bc867d7"],
body.page-id-45.dw-responsive-v2:not(.dw-layout-off)
  [data-id="3e0abfe"] {
  position: relative !important;
  z-index: 0 !important;
  margin-top: -1px !important;
  box-shadow: 0 -24px 0 var(--dw-black) !important;
  background-color: var(--dw-black) !important;
}

/* P42 portrait: show the full original file at a size its source resolution
 * can support sharply, without cover-cropping or a stretched column. */
body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="e03efa3"] {
  align-items: flex-start !important;
  overflow: visible !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="7e5816c"] {
  width: 100% !important;
  max-width: 440px !important;
  margin-inline: auto !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="7e5816c"]
  .dw-about-portrait {
  display: block !important;
  width: 100% !important;
  max-width: 440px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  image-rendering: auto !important;
}

/* P42 closing action occupies the full shell and centres its button. */
body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="f6e0eb4"] {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  align-items: center !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 12px !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="f6e0eb4"]
  > .elementor-widget-button {
  width: auto !important;
  max-width: 100% !important;
  flex: 0 1 auto !important;
  text-align: center !important;
}

/* Business Tapas uses the same neutral conversion surface as Learning Center. */

/* Business Tapas: dedicated weekly newsletter, independent of contact forms. */
body.page-id-45 .dw-business-tapas-newsletter {
  background: #f5f5f2;
  padding: clamp(64px, 7vw, 104px) 24px;
}

body.page-id-45 .dw-business-tapas-newsletter__shell {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 5vw, 72px);
}

body.page-id-45 .dw-business-tapas-newsletter__copy {
  padding-top: 20px;
}

body.page-id-45 .dw-business-tapas-newsletter__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #d6b800;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

body.page-id-45 .dw-business-tapas-newsletter h2 {
  margin: 0 0 20px;
  color: #202020;
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.page-id-45 .dw-business-tapas-newsletter__copy p {
  max-width: 540px;
  margin: 0;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.65;
}

body.page-id-45 .dw-business-tapas-newsletter__form {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.page-id-45 .dw-business-tapas-newsletter__form .hs-form-frame {
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  margin: 0;
}

body.page-id-45 .dw-business-tapas-newsletter__form iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
}

@media (max-width: 1024px) {
  body.page-id-45 .dw-business-tapas-newsletter__shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.page-id-45 .dw-business-tapas-newsletter__copy {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  body.page-id-45 .dw-business-tapas-newsletter {
    padding: 64px 18px;
  }

  body.page-id-45 .dw-business-tapas-newsletter__form {
    padding: 0;
  }

  body.page-id-45 .dw-business-tapas-newsletter__form .hs-form-frame {
    min-height: 0;
  }
}
body.page-id-45.dw-responsive-v2:not(.dw-layout-off)
  [data-id="63081bf"] {
  background: #f7f4ed !important;
  text-align: center !important;
}

body.page-id-45.dw-responsive-v2:not(.dw-layout-off)
  [data-id="63081bf"]
  > .e-con-inner {
  width: min(100% - 40px, 820px) !important;
  margin-inline: auto !important;
  align-items: center !important;
}

/* Customer-wide closing CTA contract.
 * Only audited closing conversion sections are included; heroes, offer cards,
 * forms, FAQ items and in-content links deliberately remain untouched. */
body.page-id-20.dw-responsive-v2:not(.dw-layout-off) [data-id="8ac80c1"],
body.page-id-32.dw-responsive-v2:not(.dw-layout-off) [data-id="de3d908"],
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .dw-offer-section:last-of-type,
body.page-id-35.dw-responsive-v2:not(.dw-layout-off)
  .oux
  > .sec.dark:last-of-type,
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .oux
  > .sec.dark:last-of-type,
body.page-id-37.dw-responsive-v2:not(.dw-layout-off) [data-id="wa90iwz"],
body.page-id-38.dw-responsive-v2:not(.dw-layout-off) [data-id="0d34a33"],
body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off) .dw-case-cta,
body.page-id-42.dw-responsive-v2:not(.dw-layout-off) [data-id="dba3810"],
body.page-id-43.dw-responsive-v2:not(.dw-layout-off) [data-id="fd0c9a3"],
body.page-id-44.dw-responsive-v2:not(.dw-layout-off) .dw-blog-cta,
body.page-id-45.dw-responsive-v2:not(.dw-layout-off) [data-id="63081bf"],
body.page-id-46.dw-responsive-v2:not(.dw-layout-off) [data-id="eb76319"],
body.page-id-47.dw-responsive-v2:not(.dw-layout-off) .dw-erst-cta,
body.page-id-48.dw-responsive-v2:not(.dw-layout-off) [data-id="24eb176"] {
  background: #f7f4ed !important;
  color: var(--dw-black) !important;
  text-align: center !important;
}

body.page-id-20.dw-responsive-v2:not(.dw-layout-off)
  [data-id="8ac80c1"]
  :where(h2, h3, p),
body.page-id-32.dw-responsive-v2:not(.dw-layout-off)
  [data-id="de3d908"]
  :where(h2, h3, p),
body.page-id-34.dw-responsive-v2:not(.dw-layout-off)
  .dw-offer-section:last-of-type
  :where(h2, h3, p),
body.page-id-35.dw-responsive-v2:not(.dw-layout-off)
  .oux
  > .sec.dark:last-of-type
  :where(h2, h3, p),
body.page-id-36.dw-responsive-v2:not(.dw-layout-off)
  .oux
  > .sec.dark:last-of-type
  :where(h2, h3, p),
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  [data-id="wa90iwz"]
  :where(h2, h3, p),
body.page-id-38.dw-responsive-v2:not(.dw-layout-off)
  [data-id="0d34a33"]
  :where(h2, h3, p),
body.dw-type-case-study.dw-responsive-v2:not(.dw-layout-off)
  .dw-case-cta
  :where(h2, h3, p),
body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  [data-id="dba3810"]
  :where(h2, h3, p),
body.page-id-43.dw-responsive-v2:not(.dw-layout-off)
  [data-id="fd0c9a3"]
  :where(h2, h3, p),
body.page-id-44.dw-responsive-v2:not(.dw-layout-off)
  .dw-blog-cta
  :where(h2, h3, p),
body.page-id-45.dw-responsive-v2:not(.dw-layout-off)
  [data-id="63081bf"]
  :where(h2, h3, p),
body.page-id-46.dw-responsive-v2:not(.dw-layout-off)
  [data-id="eb76319"]
  :where(h2, h3, p),
body.page-id-47.dw-responsive-v2:not(.dw-layout-off)
  .dw-erst-cta
  :where(h2, h3, p),
body.page-id-48.dw-responsive-v2:not(.dw-layout-off)
  [data-id="24eb176"]
  :where(h2, h3, p) {
  color: var(--dw-black) !important;
}

/* Resource CTA retains highly specific white/grey Elementor typography from
 * its former dark background. The neutral shared CTA always uses dark copy. */
html body.page-id-46.dw-responsive-v2:not(.dw-layout-off)
  [data-id="eb76319"]
  h2.elementor-heading-title,
html body.page-id-46.dw-responsive-v2:not(.dw-layout-off)
  [data-id="eb76319"]
  p {
  color: var(--dw-black) !important;
}

/* Secondary actions formerly designed for dark CTA surfaces become the
 * agreed white/black variant on grey; primary yellow actions stay yellow. */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    [data-id="8ac80c1"],
    [data-id="de3d908"],
    .dw-offer-section:last-of-type,
    .oux > .sec.dark:last-of-type,
    [data-id="wa90iwz"],
    [data-id="0d34a33"],
    .dw-case-cta,
    [data-id="dba3810"],
    [data-id="fd0c9a3"],
    .dw-blog-cta,
    [data-id="63081bf"],
    [data-id="eb76319"],
    .dw-erst-cta,
    [data-id="24eb176"]
  )
  :where(.dw-button-on-dark, .dw-btn--secondary, .btn2, .elementor-button-secondary) {
  border-color: var(--dw-black) !important;
  background: var(--dw-white) !important;
  color: var(--dw-black) !important;
  border-radius: 8px !important;
}

/* Every action inside the shared neutral CTA surface uses the same geometry,
 * including generated Case Study actions and legacy Elementor links. */
body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    [data-id="8ac80c1"],
    [data-id="de3d908"],
    .dw-offer-section:last-of-type,
    .oux > .sec.dark:last-of-type,
    [data-id="wa90iwz"],
    [data-id="0d34a33"],
    .dw-case-cta,
    [data-id="dba3810"],
    [data-id="fd0c9a3"],
    .dw-blog-cta,
    [data-id="63081bf"],
    [data-id="eb76319"],
    .dw-erst-cta,
    [data-id="24eb176"]
  )
  :where(a, button, input[type="submit"], .dw-btn, .elementor-button) {
  border-radius: 8px !important;
}

body.dw-responsive-v2:not(.dw-layout-off)
  :where(
    [data-id="8ac80c1"],
    [data-id="de3d908"],
    .dw-offer-section:last-of-type,
    .oux > .sec.dark:last-of-type,
    [data-id="wa90iwz"],
    [data-id="0d34a33"],
    .dw-case-cta,
    [data-id="dba3810"],
    [data-id="fd0c9a3"],
    .dw-blog-cta,
    [data-id="63081bf"],
    [data-id="eb76319"],
    .dw-erst-cta,
    [data-id="24eb176"]
  )
  :where(.dw-button-on-dark, .dw-btn--secondary, .btn2, .elementor-button-secondary):is(
    :hover,
    :focus-visible
  ) {
  border-color: var(--dw-black) !important;
  background: var(--dw-orange) !important;
  color: var(--dw-white) !important;
}

body.page-id-42.dw-responsive-v2:not(.dw-layout-off)
  .elementor-element-7e5816c
  .dw-about-portrait {
  display: block;
  width: 100% !important;
  max-width: 640px !important;
  height: auto !important;
  max-height: 760px !important;
  margin-inline: auto;
  object-fit: contain !important;
  object-position: center top !important;
}

body.page-id-44.dw-responsive-v2:not(.dw-layout-off) .dw-blog-cta__inner {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 820px !important;
  margin-inline: auto;
  justify-items: center !important;
}

body.page-id-44.dw-responsive-v2:not(.dw-layout-off)
  .dw-blog-cta__inner
  .dw-blog-primary-button {
  justify-self: center !important;
}

body.page-id-36.dw-responsive-v2:not(.dw-layout-off) .hero .panel h2 {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
}

/* One native HubSpot launcher, fixed in the same viewport position everywhere. */
body.dw-responsive-v2:not(.dw-layout-off) #hubspot-messages-iframe-container,
body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-greeting-visible,
body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-top-right,
body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-bottom-right,
body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-top-left,
body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-slot-bottom-left,
body.dw-responsive-v2:not(.dw-layout-off)
  #hubspot-messages-iframe-container.dw-chat-deferred {
  position: fixed !important;
  inset: auto max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) auto !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.dw-responsive-v2:not(.dw-layout-off) .dw-chat-safe-launcher {
  display: none !important;
}

@media (max-width: 767px) {
  body.dw-responsive-v2:not(.dw-layout-off) #hubspot-messages-iframe-container {
    inset: auto max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom)) auto !important;
  }
}
/* P37: Newsletter-Hinweis auf heller Flaeche lesbar halten.
 * Elementor setzt hier inline Gelb; die gezielte Regel gewinnt ohne andere Links zu veraendern. */
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  a[href="/business-tapas/"],
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  a[href="https://dianawalther-action.coach/business-tapas/"] {
  color: #202020 !important;
  text-decoration-color: currentColor !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.16em !important;
}

body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  a[href="/business-tapas/"]:hover,
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  a[href="/business-tapas/"]:focus-visible,
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  a[href="https://dianawalther-action.coach/business-tapas/"]:hover,
body.page-id-37.dw-responsive-v2:not(.dw-layout-off)
  a[href="https://dianawalther-action.coach/business-tapas/"]:focus-visible {
  color: #9a5200 !important;
}
body.page-id-32 .dw-selfcheck-privacy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
}

body.page-id-32 .dw-selfcheck-privacy input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: #fd9900;
}

body.page-id-32 .dw-selfcheck-privacy a {
  color: #202020 !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

body.page-id-32 .dw-selfcheck-privacy a:hover,
body.page-id-32 .dw-selfcheck-privacy a:focus-visible {
  color: #9a5200 !important;
}

body.page-id-32 .dw-selfcheck-privacy input:focus-visible {
  outline: 3px solid rgba(253, 153, 0, 0.45);
  outline-offset: 3px;
}

body.page-id-32 .dw-selfcheck-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
