:root {
  --beyhla-orange: #ff751f;
  --beyhla-orange-on-light: #a54c14;
  --beyhla-black: #000;
  --beyhla-dark: #1a1a1a;
  --beyhla-brown: #592a0d;
  --beyhla-grey: #676767;
  --beyhla-light: #e5e3e2;
  --beyhla-white: #fff;
  --beyhla-mint: #fcfff5;
  --beyhla-shell: 1650px;
  --beyhla-gutter: 30px;
  --beyhla-header-height: 88px;
  --beyhla-admin-bar-height: 0px;
  --beyhla-body-font: "Open Sans", Arial, sans-serif;
  --beyhla-heading-font: "Open Wellingtons", "Arial Black", "Open Sans", sans-serif;
  --beyhla-script-font: "BlackBones", "Brush Script MT", "Segoe Script", cursive;
}

/* BlackBones contains very narrow distressed cutout contours. Chromium on
 * 1x displays needs precision rasterization to preserve that brush texture. */
:where(
  .beyhla-hero__title,
  .beyhla-stat__suffix,
  .beyhla-script-heading,
  .beyhla-product__caption,
  .beyhla-results__value em,
  .beyhla-social-system__orbit em,
  .beyhla-about__intro > strong,
  .beyhla-collaboration__content h2
) {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--beyhla-header-height) + 20px);
}

body.admin-bar {
  --beyhla-admin-bar-height: 32px;
}

:where(body) {
  background: var(--beyhla-black);
  color: var(--beyhla-white);
  font-family: var(--beyhla-body-font);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

:where(*, *::before, *::after) {
  box-sizing: border-box;
}

:where(a) {
  color: inherit;
}

:where(button, input, textarea, select) {
  font: inherit;
}

:where(img, picture, video, svg) {
  display: block;
  height: auto;
  max-width: 100%;
}

:where(.wp-site-blocks) > * {
  margin-block-start: 0;
}

:where(.wp-block-post-content) {
  margin: 0;
}

/* ACF sections own their vertical rhythm; WordPress flow gaps must not sit
 * between the edge-to-edge frames from the Figma composition. */
.wp-block-post-content > .beyhla-section,
.wp-block-post-content > .beyhla-service-ticker {
  margin-block: 0;
}

.beyhla-shell {
  margin-inline: auto;
  max-width: var(--beyhla-shell);
  width: calc(100% - 48px);
}

.beyhla-main {
  margin: 0;
  overflow: clip;
}

.beyhla-skip-link {
  background: var(--beyhla-white);
  color: var(--beyhla-black);
  left: 24px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  z-index: 10000;
}

.beyhla-skip-link:focus {
  top: calc(var(--beyhla-admin-bar-height) + 16px);
}

.beyhla-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.beyhla-site-header {
  position: sticky;
  top: var(--beyhla-admin-bar-height);
  z-index: 1000;
}

.beyhla-header {
  background: var(--beyhla-black);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  min-height: 88px;
  position: relative;
  z-index: 100;
}

.beyhla-site-header.is-scrolled .beyhla-header {
  background: var(--beyhla-black);
}

.beyhla-header__inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: auto 1fr auto;
  min-height: 88px;
}

.beyhla-logo {
  align-items: center;
  color: var(--beyhla-white);
  display: inline-flex;
  font-family: var(--beyhla-heading-font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.beyhla-logo__accent {
  color: var(--beyhla-orange);
}

.beyhla-logo__image,
.beyhla-logo > .beyhla-picture,
.beyhla-logo > .beyhla-picture > img {
  max-height: 48px;
  max-width: 160px;
  width: auto;
}

.beyhla-logo__image,
.beyhla-logo > .beyhla-picture > img {
  height: auto;
}

.beyhla-header__nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 2.5vw, 48px);
}

.beyhla-header__nav a,
.beyhla-header__phone,
.beyhla-footer__legal a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.beyhla-header__phone {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-height: 44px;
}

.beyhla-header__phone img {
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.beyhla-header__nav a,
.beyhla-footer__legal a {
  position: relative;
}

.beyhla-header__nav a::after,
.beyhla-footer__legal a::after {
  background: var(--beyhla-orange);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.beyhla-header__nav a:hover::after,
.beyhla-header__nav a:focus-visible::after,
.beyhla-footer__legal a:hover::after,
.beyhla-footer__legal a:focus-visible::after {
  transform: scaleX(1);
}

.beyhla-header__actions {
  align-items: center;
  display: flex;
  gap: 28px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.beyhla-header__inner > .beyhla-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.beyhla-header__toggle,
.beyhla-header__nav {
  grid-column: 2;
  grid-row: 1;
}

.beyhla-header__inner.has-no-logo {
  grid-template-columns: 1fr auto;
}

.beyhla-header__inner.has-no-logo > .beyhla-header__toggle,
.beyhla-header__inner.has-no-logo > .beyhla-header__nav {
  grid-column: 1;
}

.beyhla-header__inner.has-no-logo > .beyhla-header__actions {
  grid-column: 2;
}

.beyhla-header__inner.has-no-actions {
  grid-template-columns: auto 1fr;
}

.beyhla-header__inner.has-no-logo.has-no-actions,
.beyhla-header__inner.has-no-navigation.has-no-actions {
  grid-template-columns: 1fr;
}

.beyhla-header__inner.has-no-logo.has-no-actions > .beyhla-header__toggle,
.beyhla-header__inner.has-no-logo.has-no-actions > .beyhla-header__nav {
  grid-column: 1;
}

.beyhla-header__inner.has-no-logo.has-no-navigation {
  grid-template-columns: 1fr auto;
}

.beyhla-header__inner.has-no-logo.has-no-navigation > .beyhla-header__actions {
  grid-column: 2;
}

.beyhla-header__phone::before {
  content: none;
}

.beyhla-header__toggle {
  align-items: center;
  background: transparent;
  border: 2px solid var(--beyhla-orange);
  border-radius: 10px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  color: var(--beyhla-orange);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  justify-self: end;
  min-height: 42px;
  min-width: 42px;
  padding: 0;
  width: 42px;
}

.beyhla-header__toggle-label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.beyhla-header__toggle-icon,
.beyhla-header__toggle-icon::before,
.beyhla-header__toggle-icon::after {
  background: currentcolor;
  border-radius: 999px;
  display: block;
  height: 3.2375px;
  transition: transform 180ms ease;
  width: 25.9px;
}

.beyhla-header__toggle-icon {
  position: relative;
}

.beyhla-header__toggle-icon::before,
.beyhla-header__toggle-icon::after {
  content: "";
  left: 0;
  position: absolute;
}

.beyhla-header__toggle-icon::before {
  top: -8.09375px;
}

.beyhla-header__toggle-icon::after {
  top: 8.09375px;
}

.beyhla-button {
  align-items: center;
  background: transparent;
  border: 2px solid var(--beyhla-orange);
  border-radius: 10px;
  color: var(--beyhla-orange);
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.5;
  min-height: 63px;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.beyhla-button:hover,
.beyhla-button:focus-visible {
  background: linear-gradient(135deg, #363636, #5b5b5b);
  border-color: #777;
  color: var(--beyhla-white);
  transform: translateY(-2px);
}

.beyhla-button--small {
  font-size: 13px;
  min-height: 42px;
  padding: 9px 20px;
}

.beyhla-section {
  position: relative;
}

.beyhla-hero {
  background:
    radial-gradient(circle at 77% 48%, rgb(92 43 13 / 52%), transparent 31%),
    linear-gradient(90deg, #000 0 48%, #090503 66%, #000 100%);
  min-height: 820px;
  overflow: hidden;
}

.beyhla-hero::after {
  background: radial-gradient(circle, rgb(255 117 31 / 12%), transparent 68%);
  content: "";
  height: 680px;
  pointer-events: none;
  position: absolute;
  right: -80px;
  top: 80px;
  width: 850px;
}

.beyhla-hero__layout {
  align-content: center;
  display: grid;
  gap: 54px var(--beyhla-gutter);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 820px;
  padding-block: 76px 58px;
  position: relative;
  z-index: 1;
}

.beyhla-hero__content {
  align-self: center;
  grid-column: 1 / span 5;
  max-width: 650px;
}

.beyhla-hero__content .beyhla-eyebrow {
  color: var(--beyhla-orange);
}

.beyhla-eyebrow {
  align-items: center;
  color: #d68a5a;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 18px;
  letter-spacing: 0.22em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.beyhla-eyebrow::before {
  background: var(--beyhla-orange);
  content: "";
  height: 1px;
  width: 56px;
}

.beyhla-hero__title {
  color: var(--beyhla-white);
  font-family: var(--beyhla-script-font);
  font-size: clamp(64px, 5.6vw, 108px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
}

.beyhla-hero__title-main,
.beyhla-hero__title-accent {
  display: block;
}

.beyhla-hero__title-accent {
  color: var(--beyhla-orange);
  font-size: 1em;
  line-height: 0.94;
  margin-top: 12px;
}

.beyhla-hero__lead {
  font-family: var(--beyhla-heading-font);
  font-size: clamp(20px, 1.6vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin: 26px 0 34px;
}

.beyhla-hero__visual {
  align-self: stretch;
  grid-column: 6 / -1;
  min-height: 490px;
  overflow: hidden;
  position: relative;
}

.beyhla-hero.has-no-media .beyhla-hero__content {
  grid-column: 1 / span 7;
}

.beyhla-hero.has-no-media .beyhla-hero__stats {
  grid-column: 1 / -1;
}

.beyhla-hero__visual.has-image::after,
.beyhla-hero__visual.has-video::after,
.beyhla-hero__visual.has-design-fallback::after {
  background: linear-gradient(90deg, #000 0%, transparent 35%), linear-gradient(0deg, rgb(0 0 0 / 18%), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.beyhla-hero__visual.has-video::after {
  background: rgb(0 0 0 / 50%);
}

.beyhla-hero__visual picture,
.beyhla-hero__video,
.beyhla-hero__image {
  height: 100%;
  width: 100%;
}

.beyhla-hero__poster,
.beyhla-hero__poster picture {
  display: block;
  height: 100%;
  width: 100%;
}

.beyhla-hero__visual.has-video .beyhla-hero__poster,
.beyhla-hero__video {
  inset: 0;
  position: absolute;
}

.beyhla-hero__video {
  opacity: 0.01;
  transition: opacity 240ms ease;
}

.beyhla-hero__video.is-autoplay-pending,
.beyhla-hero__video.is-ready {
  opacity: 1;
}

.beyhla-hero__video,
.beyhla-hero__image {
  object-fit: cover;
  object-position: center 32%;
}

.beyhla-hero__visual-glow {
  background:
    radial-gradient(ellipse at 58% 42%, rgb(112 70 48 / 78%) 0 7%, rgb(62 36 23 / 72%) 22%, transparent 54%),
    radial-gradient(circle at 72% 50%, rgb(255 117 31 / 16%), transparent 40%);
  filter: blur(2px);
  inset: 0;
  position: absolute;
}

.beyhla-hero__stats {
  align-items: start;
  display: grid;
  gap: 0;
  grid-column: 7 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: -8px 0 0;
  padding: 0;
}

.beyhla-stat {
  border-left: 1px solid rgb(255 255 255 / 30%);
  min-height: 104px;
  padding: 0 34px;
}

.beyhla-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.beyhla-stat__number {
  display: block;
  font-size: clamp(48px, 4.4vw, 84px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.beyhla-stat__suffix {
  color: var(--beyhla-orange);
  font-family: var(--beyhla-script-font);
  font-size: 0.46em;
  font-weight: 400;
  margin-left: 5px;
  vertical-align: top;
}

.beyhla-stat__label {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.beyhla-service-ticker {
  background: var(--beyhla-orange);
  color: var(--beyhla-black);
  min-height: 120px;
  overflow: hidden;
}

.beyhla-service-ticker__track {
  animation: beyhla-ticker 34s linear infinite;
  display: flex;
  min-height: 120px;
  width: max-content;
}

.beyhla-service-ticker__list {
  align-items: center;
  display: flex;
  flex: none;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.beyhla-service-ticker__list li {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 230px;
  min-height: 120px;
  padding-inline: 38px;
  white-space: nowrap;
}

.beyhla-service-ticker__rhombus {
  flex: none;
  height: 24px;
  margin-left: 42px;
  position: relative;
  width: 24px;
}

.beyhla-service-ticker__rhombus::before {
  background: #592a0d;
  border-radius: 2px;
  bottom: 33.33%;
  content: "";
  left: 8.33%;
  opacity: 0.2;
  position: absolute;
  right: 33.33%;
  top: 8.33%;
  transform: rotate(45deg);
}

@keyframes beyhla-ticker {
  to {
    transform: translateX(-50%);
  }
}

.beyhla-script-heading,
.beyhla-display-heading {
  font-family: var(--beyhla-heading-font);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}

.beyhla-script-heading {
  font-family: var(--beyhla-script-font);
  font-size: clamp(64px, 5.8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.beyhla-script-heading > span {
  display: block;
}

.beyhla-script-heading .is-accent {
  color: var(--beyhla-orange);
  font-size: 1em;
  line-height: 0.92;
}

.beyhla-display-heading {
  font-size: clamp(48px, 4.5vw, 84px);
}

.beyhla-richtext {
  color: rgb(255 255 255 / 72%);
  max-width: 680px;
}

.beyhla-richtext > :first-child {
  margin-top: 0;
}

.beyhla-richtext > :last-child {
  margin-bottom: 0;
}

.beyhla-eyebrow--dark {
  color: var(--beyhla-brown);
}

.beyhla-product {
  background:
    radial-gradient(circle at 80% 48%, rgb(89 42 13 / 48%), transparent 32%),
    var(--beyhla-black);
  min-height: 1165px;
  overflow: hidden;
}

.beyhla-product__layout {
  align-items: center;
  display: grid;
  gap: 170px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
  min-height: 1165px;
  padding: 104px 140px 104px 0;
}

.beyhla-product__content {
  max-width: 790px;
}

.beyhla-product__text {
  font-size: clamp(18px, 1.35vw, 24px);
  margin-top: 38px;
}

.beyhla-product__benefits {
  display: grid;
  gap: 0 45px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 62px 0 54px;
  padding: 0;
}

.beyhla-product__benefits li {
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  gap: 5px 16px;
  grid-template-columns: 42px 1fr;
  min-height: 126px;
  padding: 22px 0;
}

.beyhla-product__benefits li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 19px);
}

.beyhla-line-icon {
  align-items: center;
  border: 1px solid var(--beyhla-orange);
  border-radius: 50%;
  color: var(--beyhla-orange);
  display: inline-flex;
  font-size: 12px;
  grid-row: 1 / span 2;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.beyhla-line-icon > img {
  display: block;
  height: 100%;
  width: 100%;
}

.beyhla-line-icon--labels {
  display: grid;
  grid-template: 1fr / 1fr;
  overflow: visible;
  position: relative;
}

.beyhla-line-icon--labels > img {
  grid-area: 1 / 1;
  height: auto;
  position: absolute;
  width: auto;
}

.beyhla-line-icon--labels > img:nth-child(1) {
  height: 25px;
  left: 37px;
  top: 25px;
  width: 22px;
}

.beyhla-line-icon--labels > img:nth-child(2) {
  height: 25px;
  left: 0;
  top: 25px;
  width: 22px;
}

.beyhla-line-icon--labels > img:nth-child(3) {
  height: 29px;
  left: 14px;
  top: 0;
  width: 29px;
}

.beyhla-product__benefits strong,
.beyhla-process__steps strong,
.beyhla-results__stats strong {
  font-family: var(--beyhla-heading-font);
  font-size: 18px;
  line-height: 1.25;
}

.beyhla-product__benefits li > span:last-child,
.beyhla-process__steps p,
.beyhla-results__stats li > span:last-child {
  color: rgb(255 255 255 / 55%);
  font-size: 14px;
  line-height: 1.5;
}

.beyhla-product__media {
  justify-self: end;
  max-width: 530px;
  position: relative;
  width: 100%;
}

.beyhla-product__image-frame {
  aspect-ratio: 530 / 794;
  background: linear-gradient(145deg, #ff8438, #9f4210 55%, #351307);
  border-radius: 2px;
  box-shadow: 0 38px 90px rgb(0 0 0 / 48%);
  overflow: hidden;
  padding: 9%;
  position: relative;
  transform: rotate(1.5deg);
}

.beyhla-product__image-frame::before {
  border: 1px solid rgb(255 255 255 / 32%);
  content: "";
  inset: 9%;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.beyhla-product__image,
.beyhla-results__video,
.beyhla-results__image,
.beyhla-process__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.beyhla-product__image-frame picture,
.beyhla-results__media picture {
  height: 100%;
  width: 100%;
}

.beyhla-product__placeholder {
  align-items: center;
  background:
    linear-gradient(165deg, transparent 42%, rgb(0 0 0 / 50%)),
    radial-gradient(circle at 62% 30%, #fbb083, transparent 25%),
    #6a2c0e;
  color: var(--beyhla-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 11%;
  text-align: center;
}

.beyhla-product__placeholder span {
  font-family: var(--beyhla-heading-font);
  font-size: clamp(38px, 4vw, 72px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.beyhla-product__placeholder small {
  color: var(--beyhla-orange);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.beyhla-product__caption {
  color: var(--beyhla-orange);
  font-family: var(--beyhla-script-font);
  font-size: clamp(30px, 2.6vw, 50px);
  line-height: 1.06;
  margin: -18px 0 0 -58px;
  position: relative;
  transform: rotate(-4deg);
  width: 90%;
  z-index: 3;
}

.beyhla-product__cta-arrow {
  display: none;
}

.beyhla-results {
  background: var(--beyhla-light);
  color: var(--beyhla-black);
  min-height: 1370px;
}

.beyhla-results > .beyhla-shell {
  padding-block: 110px 128px;
}

.beyhla-results__header {
  margin: 0 auto 78px;
  max-width: 1040px;
  text-align: center;
}

.beyhla-results__header .beyhla-eyebrow {
  justify-content: center;
}

.beyhla-results__header .beyhla-richtext {
  color: rgb(0 0 0 / 66%);
  font-size: clamp(18px, 1.35vw, 24px);
  margin: 34px auto 0;
}

.beyhla-results__layout {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 610px) minmax(330px, 380px);
  justify-content: center;
  margin-inline: auto;
  max-width: 1088px;
}

.beyhla-results__connector {
  display: none;
  pointer-events: none;
}

.beyhla-results__connector img {
  display: block;
  height: 100%;
  width: 100%;
}

.beyhla-results__media {
  background: linear-gradient(145deg, #7b716e, #d8cec8);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.beyhla-results__placeholder {
  align-items: flex-end;
  background:
    linear-gradient(0deg, rgb(46 21 9 / 72%), transparent 58%),
    radial-gradient(circle at 50% 28%, #e8d1c3 0 9%, transparent 10%),
    linear-gradient(135deg, #8e817a, #cdb9ae 48%, #5e4b40);
  display: flex;
  gap: 5%;
  height: 100%;
  justify-content: center;
  padding: 9%;
}

.beyhla-results__placeholder span {
  background: linear-gradient(#2d231f, #090706);
  border-radius: 45% 45% 8% 8%;
  height: 48%;
  width: 20%;
}

.beyhla-results__placeholder span:nth-child(2) {
  height: 60%;
}

.beyhla-results__stats {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.beyhla-results__stats li {
  background: var(--beyhla-white);
  border: 1px solid var(--beyhla-orange);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  padding: 10px 25px 25px;
}

.beyhla-results__stats li:first-child {
  background: var(--beyhla-white);
}

.beyhla-results__stats strong {
  font-family: var(--beyhla-body-font);
  font-weight: 700;
  line-height: 27px;
}

.beyhla-results__value {
  align-items: center;
  color: var(--beyhla-orange);
  column-gap: 8px;
  display: flex;
  font-family: var(--beyhla-body-font);
  font-size: clamp(52px, 4.4vw, 84px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 100px;
  margin-bottom: 10px;
}

.beyhla-results__value em {
  color: var(--beyhla-black);
  font-family: var(--beyhla-script-font);
  font-size: clamp(30px, 2.5vw, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  margin-left: 0;
}

.beyhla-results__stats li > span:last-child {
  color: var(--beyhla-dark);
  font-size: 16px;
  line-height: 24px;
  margin-top: 12px;
}

.beyhla-process {
  background:
    radial-gradient(circle at 62% 38%, rgb(89 42 13 / 32%), transparent 28%),
    var(--beyhla-dark);
  min-height: 980px;
  overflow: hidden;
}

.beyhla-process__layout {
  display: grid;
  gap: 72px 100px;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  padding-block: 100px;
}

.beyhla-process__content {
  align-self: center;
}

.beyhla-process__content .beyhla-richtext {
  font-size: 18px;
  margin-top: 34px;
}

.beyhla-process__media {
  min-height: 430px;
  overflow: visible;
  padding: 0;
}

.beyhla-process__ui {
  height: 100%;
  position: relative;
}

.beyhla-process__ui::before {
  background: radial-gradient(circle, rgb(255 117 31 / 16%), transparent 68%);
  content: "";
  inset: -20%;
  position: absolute;
}

.beyhla-process__ui picture {
  border: 1px solid rgb(255 117 31 / 32%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 48%);
  height: 88%;
  overflow: hidden;
  position: absolute;
  width: 58%;
}

.beyhla-process__ui picture:first-child {
  left: 0;
  top: 8%;
  z-index: 2;
}

.beyhla-process__ui picture:last-child {
  right: 0;
  top: 0;
  height: 100%;
  z-index: 1;
}

.beyhla-process__ui img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.beyhla-process__steps {
  display: grid;
  gap: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.beyhla-process__steps li {
  border-left: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  gap: 24px;
  grid-template-columns: 48px 1fr;
  min-height: 170px;
  padding: 30px;
}

.beyhla-process__steps li:first-child {
  padding-left: 0;
}

.beyhla-process__steps li.has-no-number {
  grid-template-columns: 1fr;
}

.beyhla-process__steps li.has-no-number > div {
  grid-column: 1 / -1;
}

.beyhla-process__number {
  color: var(--beyhla-orange);
  font-family: var(--beyhla-body-font);
  font-size: 12px;
  height: 38px;
  line-height: 38px;
  position: relative;
  text-align: center;
  width: 38px;
  z-index: 1;
}

.beyhla-process__number::before {
  border: 1px solid var(--beyhla-orange);
  content: "";
  inset: 4px;
  position: absolute;
  transform: rotate(45deg);
  z-index: -1;
}

.beyhla-process__steps p {
  margin: 12px 0 0;
}

.beyhla-eyebrow--centered {
  color: var(--beyhla-black);
  justify-content: center;
}

.beyhla-eyebrow--centered::after {
  background: var(--beyhla-black);
  content: "";
  height: 1px;
  width: 56px;
}

.beyhla-eyebrow--centered::before {
  background: var(--beyhla-black);
}

.beyhla-focus {
  background: var(--beyhla-orange);
  color: var(--beyhla-black);
  min-height: 860px;
}

.beyhla-focus > .beyhla-shell {
  padding-block: 104px;
}

.beyhla-focus__header {
  margin: 0 auto 50px;
  max-width: 1133px;
  text-align: center;
}

.beyhla-focus__heading,
.beyhla-social-system__heading {
  font-family: var(--beyhla-heading-font);
  font-size: clamp(52px, 4.3vw, 75px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.beyhla-focus__heading span {
  display: block;
}

.beyhla-focus__heading span:first-child {
  color: var(--beyhla-black);
}

.beyhla-focus__header .beyhla-richtext {
  color: var(--beyhla-black);
  margin: 36px auto 0;
  max-width: 810px;
}

.beyhla-focus__cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1370px;
  padding: 0;
}

.beyhla-focus__cards li {
  background: var(--beyhla-black);
  border-radius: 10px;
  color: var(--beyhla-white);
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 25px;
}

.beyhla-focus__icon {
  flex: 0 0 58px;
  height: 58px;
  margin-bottom: 19px;
  position: relative;
  width: 58px;
}

.beyhla-focus__icon::before,
.beyhla-focus__icon::after {
  display: none;
}

.beyhla-focus__icon img {
  display: block;
  height: 58px;
  width: 58px;
}

.beyhla-focus__cards strong {
  font-size: 18px;
  line-height: 1.5;
}

.beyhla-focus__cards li > span:not(.beyhla-focus__icon):last-child {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 12px;
}

.beyhla-social-system {
  background:
    radial-gradient(circle at 77% 50%, rgb(89 42 13 / 28%), transparent 30%),
    var(--beyhla-black);
  min-height: 948px;
  overflow: hidden;
}

.beyhla-social-system__layout {
  display: grid;
  gap: 8%;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  min-height: 948px;
  padding-block: 104px;
}

.beyhla-social-system__content {
  align-self: center;
  max-width: 812px;
}

.beyhla-social-system__heading span {
  display: block;
}

.beyhla-social-system__heading span:last-child {
  color: var(--beyhla-orange);
}

.beyhla-social-system__content .beyhla-richtext {
  margin-top: 18px;
}

.beyhla-social-system__statement {
  color: var(--beyhla-orange);
  font-family: var(--beyhla-heading-font);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.5;
  margin: 54px 0 54px 34%;
  max-width: 530px;
}

.beyhla-social-system__media {
  align-self: center;
  aspect-ratio: 0.93;
  max-width: 670px;
  position: relative;
}

.beyhla-social-system__image {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.beyhla-social-system__orbit {
  align-items: center;
  border: 1px solid var(--beyhla-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  inset: 9% 4%;
  justify-content: center;
  position: absolute;
}

.beyhla-social-system__orbit strong {
  color: rgb(255 255 255 / 12%);
  font-size: clamp(180px, 18vw, 300px);
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.beyhla-social-system__orbit em {
  color: var(--beyhla-orange);
  font-family: var(--beyhla-script-font);
  font-size: clamp(70px, 7vw, 128px);
  font-style: normal;
  margin: -30% -40% 0 0;
  transform: rotate(-10deg);
  z-index: 2;
}

.beyhla-social-system__orbit > span {
  color: var(--beyhla-light);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-top: 5%;
  text-transform: uppercase;
}

.beyhla-social-system__orbit i {
  background: #333;
  border: 1px solid #666;
  border-radius: 12px;
  height: 30%;
  position: absolute;
  width: 18%;
}

.beyhla-social-system__orbit i::before,
.beyhla-social-system__orbit i::after {
  background: var(--beyhla-orange);
  content: "";
  height: 3px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 14%;
}

.beyhla-social-system__orbit i::after {
  top: 70%;
}

.beyhla-social-system__orbit i:nth-of-type(1) {
  left: -5%;
  top: 2%;
}

.beyhla-social-system__orbit i:nth-of-type(2) {
  right: -2%;
  top: -7%;
}

.beyhla-social-system__orbit i:nth-of-type(3) {
  bottom: -2%;
  left: 5%;
}

.beyhla-google {
  background: var(--beyhla-light);
  color: var(--beyhla-black);
  min-height: 437px;
  overflow: hidden;
}

.beyhla-google__layout {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(460px, 0.85fr);
  min-height: 437px;
}

.beyhla-google__carousel,
.beyhla-google__viewport {
  min-width: 0;
}

.beyhla-google__carousel {
  grid-column: 1;
  grid-row: 1;
}

.beyhla-google__header {
  grid-column: 2;
  grid-row: 1;
}

.beyhla-google__viewport {
  overflow: hidden;
}

.beyhla-google__cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.beyhla-google__controls {
  display: none;
}

.beyhla-google__cards li {
  background: var(--beyhla-orange);
  border-radius: 10px;
  color: var(--beyhla-black);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px 22px;
}

.beyhla-google__icon {
  filter: brightness(0);
  flex: 0 0 60px;
  height: 60px;
  margin-bottom: 28px;
  position: relative;
  width: 60px;
}

.beyhla-google__icon::before {
  display: none;
}

.beyhla-google__icon img {
  display: block;
  height: 100%;
  width: 100%;
}

.beyhla-google__card-title {
  font-family: var(--beyhla-heading-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin: 0;
}

.beyhla-google__card-text {
  color: var(--beyhla-black);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}

.beyhla-google__header h2,
.beyhla-about__header h2,
.beyhla-contact-cta h2 {
  font-family: var(--beyhla-heading-font);
  font-size: clamp(52px, 4.3vw, 75px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.beyhla-google__header h2 {
  letter-spacing: 0;
}

.beyhla-google__header h2 .is-accent,
.beyhla-results__header h2 .is-accent {
  color: var(--beyhla-orange);
}

.beyhla-results__desktop-break {
  display: none;
}

.beyhla-google__header h2 .is-accent {
  color: var(--beyhla-black);
  display: block;
}

.beyhla-google__header .beyhla-eyebrow {
  color: var(--beyhla-black);
}

.beyhla-google__header .beyhla-eyebrow::before {
  background: var(--beyhla-black);
}

.beyhla-about {
  background:
    radial-gradient(circle at 25% 67%, rgb(89 42 13 / 42%), transparent 28%),
    var(--beyhla-black);
  min-height: 1101px;
  overflow: hidden;
}

.beyhla-about > .beyhla-shell {
  padding-block: 104px;
}

.beyhla-about__header {
  margin: 0 auto 64px;
  max-width: 1133px;
  text-align: center;
}

.beyhla-eyebrow--center-light {
  justify-content: center;
}

.beyhla-eyebrow--center-light::after {
  background: var(--beyhla-orange);
  content: "";
  height: 1px;
  width: 56px;
}

.beyhla-about__layout {
  display: grid;
  gap: 110px;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
}

.beyhla-about__media {
  background: linear-gradient(145deg, #7e3e1b, #1f100a 70%);
  min-height: 560px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.beyhla-about__media picture {
  height: 100%;
  width: 100%;
}

.beyhla-about__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.beyhla-about__content {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.beyhla-about__intro > strong {
  color: var(--beyhla-orange);
  display: block;
  font-family: var(--beyhla-script-font);
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  margin: -10px 0 20px 40%;
  transform: rotate(-8deg);
}

.beyhla-about .beyhla-brand-word {
  font-weight: 700;
}

.beyhla-about .beyhla-brand-word__accent {
  color: var(--beyhla-orange);
}

.beyhla-about blockquote {
  align-self: end;
  border-top: 1px solid rgb(255 255 255 / 22%);
  font-family: var(--beyhla-heading-font);
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  padding-top: 36px;
}

.beyhla-about__values {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.beyhla-about__values-heading {
  color: var(--beyhla-orange);
  font-size: 18px;
  font-weight: 700;
  grid-column: 1 / -1;
  line-height: 27px;
  margin: 0;
}

.beyhla-about__values li {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 22%);
  display: grid;
  gap: 30px;
  grid-template-columns: 58px 1fr;
  min-height: 105px;
}

.beyhla-about__value-icon {
  border: 0;
  border-radius: 0;
  height: 58px;
  position: relative;
  width: 58px;
}

.beyhla-about__value-icon::before {
  display: none;
}

.beyhla-about__value-icon img {
  height: 58px;
  width: 58px;
}

.beyhla-about__value-copy strong {
  display: block;
}

.beyhla-about__value-copy p {
  color: var(--beyhla-white);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.beyhla-collaboration {
  background: var(--beyhla-light);
  color: var(--beyhla-black);
  min-height: 871px;
  overflow: hidden;
}

.beyhla-collaboration__layout {
  display: grid;
  gap: 46px 30px;
  grid-template-columns: minmax(470px, 0.78fr) minmax(680px, 1.22fr);
  padding-block: 104px;
}

.beyhla-collaboration__content h2 {
  font-family: var(--beyhla-script-font);
  font-size: clamp(64px, 5.6vw, 108px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
  text-transform: none;
}

.beyhla-collaboration__content h2 span {
  display: block;
}

.beyhla-collaboration__content h2 span:last-child {
  color: inherit;
}

.beyhla-collaboration__content h2 .is-accent {
  color: var(--beyhla-orange);
  font-style: normal;
}

.beyhla-collaboration__content .beyhla-richtext {
  color: rgb(0 0 0 / 70%);
  margin-top: 40px;
}

.beyhla-collaboration .beyhla-eyebrow {
  color: var(--beyhla-brown);
}

.beyhla-collaboration__media {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 360px;
  position: relative;
}

.beyhla-collaboration__media > div {
  aspect-ratio: 1.78;
  background: linear-gradient(145deg, #7f3f1a, #1e1612);
  overflow: hidden;
}

.beyhla-collaboration__media > .beyhla-collaboration__media-side.is-right {
  transform: translateY(70px);
}

.beyhla-collaboration__media::after {
  display: none;
}

.beyhla-collaboration__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.beyhla-collaboration__media picture {
  height: 100%;
  width: 100%;
}

.beyhla-collaboration__values {
  display: grid;
  gap: 24px 42px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.beyhla-collaboration__values li {
  border-top: 1px solid rgb(0 0 0 / 20%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
}

.beyhla-collaboration__values strong {
  color: var(--beyhla-orange);
}

.beyhla-collaboration__values span {
  color: rgb(0 0 0 / 70%);
}

.beyhla-contact-cta {
  background:
    radial-gradient(circle at 50% 130%, rgb(89 42 13 / 70%), transparent 42%),
    var(--beyhla-black);
  min-height: 664px;
}

.beyhla-contact-cta__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 664px;
  padding-block: 104px;
  text-align: center;
}

@media (min-width: 1700px) {
  /* The 1920px Figma frame presents all seven services as one stable,
   * two-line row. Keeping the duplicated marquee only below this breakpoint
   * prevents partial words from entering the wide desktop composition. */
  .beyhla-service-ticker__track {
    animation: none;
    width: 100%;
  }

  .beyhla-service-ticker__list:first-child {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 1fr);
    grid-template-columns: 263px 275px 244px 255px 244px 252px 117px;
    padding-inline: calc((100vw - 1650px) / 2);
    width: 100%;
  }

  .beyhla-service-ticker__list[aria-hidden="true"] {
    display: none;
  }

  .beyhla-service-ticker__list li {
    --beyhla-ticker-label-width: 121px;

    column-gap: 59px;
    display: grid;
    font-size: 18px;
    grid-template-columns: var(--beyhla-ticker-label-width) 24px;
    line-height: 27px;
    max-width: none;
    min-width: 0;
    padding: 0;
    white-space: normal;
  }

  .beyhla-service-ticker__label {
    display: block;
  }

  .beyhla-service-ticker__list li:nth-child(2) {
    --beyhla-ticker-label-width: 133px;
  }

  .beyhla-service-ticker__list li:nth-child(3),
  .beyhla-service-ticker__list li:nth-child(5) {
    --beyhla-ticker-label-width: 102px;
  }

  .beyhla-service-ticker__list li:nth-child(4) {
    --beyhla-ticker-label-width: 113px;
  }

  .beyhla-service-ticker__list li:nth-child(6) {
    --beyhla-ticker-label-width: 110px;
  }

  .beyhla-service-ticker__list li:nth-child(7) {
    --beyhla-ticker-label-width: 115px;
  }

  .beyhla-service-ticker__list li:last-child {
    grid-template-columns: var(--beyhla-ticker-label-width);
    padding-right: 0;
  }

  .beyhla-service-ticker__list li:last-child .beyhla-service-ticker__rhombus {
    display: none;
  }

  .beyhla-service-ticker__rhombus {
    margin-left: 0;
  }

  /* BEYHLA v2 desktop: the 80px sticky header overlays the 1080px hero.
   * Keeping the header out of the page flow lets the right-hand media run
   * behind it exactly as it does in the selected Figma frame. */
  :root {
    --beyhla-header-height: 80px;
  }

  .beyhla-site-header {
    margin-bottom: -80px;
  }

  .beyhla-header {
    /* Match the hero media's sixth-column start on the centered 1650px grid.
     * A percentage only aligned at 1920px and drifted at other wide widths. */
    background: linear-gradient(
      90deg,
      #000 0 calc(50% - 125px),
      rgb(0 0 0 / 58%) calc(50% - 125px) 100%
    );
    border-bottom: 0;
    box-shadow: inset 0 -1px rgb(255 255 255 / 8%);
    height: 80px;
  }

  .beyhla-header,
  .beyhla-header__inner {
    min-height: 80px;
  }

  .beyhla-header__inner {
    gap: 48px;
  }

  .beyhla-header__nav {
    padding-left: 28px;
    transform: translateY(9px);
  }

  .beyhla-logo {
    font-size: 32px;
    line-height: 48px;
  }

  .beyhla-header__inner > .beyhla-logo {
    margin-right: -11.5px;
    transform: scaleX(1.0723);
    transform-origin: left center;
  }

  .beyhla-header__inner > .beyhla-logo--image {
    margin-right: 0;
    transform: none;
  }

  .beyhla-header__nav a,
  .beyhla-header__phone {
    font-size: 20px;
    line-height: 30px;
  }

  .beyhla-header__actions {
    gap: 46px;
    position: relative;
    right: 2px;
    width: 544px;
  }

  .beyhla-header__phone {
    justify-content: center;
    width: 250px;
  }

  .beyhla-hero,
  .beyhla-hero__layout {
    height: 1080px;
    min-height: 1080px;
  }

  .beyhla-hero::after {
    display: none;
  }

  .beyhla-hero__content {
    align-items: flex-start;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-row: 1;
    height: 573px;
    margin-left: 1px;
    margin-top: 148.5px;
    max-width: 670px;
    position: relative;
    z-index: 2;
  }

  .beyhla-hero__content .beyhla-eyebrow,
  .beyhla-hero__lead {
    margin: 0;
  }

  .beyhla-hero__content .beyhla-eyebrow {
    font-size: 18px;
    gap: 20px;
    letter-spacing: 4px;
    line-height: 27px;
  }

  .beyhla-hero__content .beyhla-eyebrow::before {
    height: 2px;
    width: 70px;
  }

  .beyhla-hero__title {
    font-size: 128px;
    line-height: 160px;
  }

  .beyhla-hero__title-main,
  .beyhla-hero__title-accent {
    line-height: inherit;
  }

  .beyhla-hero__title-accent {
    color: var(--beyhla-white);
    margin-top: 0;
  }

  .beyhla-hero__title-accent .is-accent {
    color: var(--beyhla-orange);
  }

  .beyhla-hero__lead {
    font-size: 32px;
    line-height: 48px;
  }

  .beyhla-hero__content .beyhla-button {
    box-sizing: border-box;
    box-shadow: 6px 6px 8px rgb(0 0 0 / 25%);
    height: 59px;
    left: 0;
    letter-spacing: 0;
    margin: 0;
    min-height: 59px;
    min-width: 196px;
    padding: 14px 22px;
    position: absolute;
    top: 514px;
    white-space: nowrap;
    width: 196px;
  }

  .beyhla-header .beyhla-button--small {
    background: var(--beyhla-dark);
    box-shadow: 6px 6px 4px rgb(0 0 0 / 25%);
    font-size: 18px;
    height: 50px;
    letter-spacing: 0;
    min-height: 50px;
    min-width: 248px;
    padding: 9px 24px;
    position: relative;
    top: 1px;
    width: 248px;
  }

  .beyhla-product__layout {
    align-items: flex-start;
  }

  .beyhla-product,
  .beyhla-product__layout {
    height: 1165px;
  }

  .beyhla-product__content {
    height: 969px;
    max-width: 810px;
    position: relative;
    width: 810px;
  }

  .beyhla-product__content .beyhla-script-heading {
    font-size: 128px;
    line-height: 160px;
  }

  .beyhla-product__content .beyhla-script-heading > span {
    line-height: inherit;
  }

  .beyhla-product__title-second {
    color: var(--beyhla-white);
  }

  .beyhla-product__title-second .is-accent {
    color: var(--beyhla-orange);
  }

  .beyhla-product__text {
    font-size: 18px;
    line-height: 27px;
    max-width: 810px;
  }

  .beyhla-product__benefits {
    gap: 54px 45px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .beyhla-product__benefits li,
  .beyhla-product__benefits li:last-child:nth-child(odd) {
    align-items: flex-start;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-column: auto;
    max-width: none;
    min-height: 0;
    padding: 0;
  }

  .beyhla-product__benefits .beyhla-line-icon {
    border: 0;
    border-radius: 0;
    color: var(--beyhla-grey);
    height: 50px;
    margin-bottom: 24px;
    width: 58px;
  }

  .beyhla-product__benefits .beyhla-line-icon > img {
    height: 100%;
    width: 100%;
  }

  .beyhla-product__benefits .beyhla-line-icon--labels > img:nth-child(1) {
    height: 25px;
    left: 37px;
    top: 25px;
    width: 22px;
  }

  .beyhla-product__benefits .beyhla-line-icon--labels > img:nth-child(2) {
    height: 25px;
    left: 0;
    top: 25px;
    width: 22px;
  }

  .beyhla-product__benefits .beyhla-line-icon--labels > img:nth-child(3) {
    height: 29px;
    left: 14px;
    top: 0;
    width: 29px;
  }

  .beyhla-product__benefits li > span:last-child {
    margin-top: 12px;
  }

  .beyhla-product__content > .beyhla-button {
    left: 570px;
    position: absolute;
    top: 770px;
  }

  .beyhla-product__cta-arrow {
    display: block;
    fill: none;
    height: 148px;
    left: 760px;
    pointer-events: none;
    position: absolute;
    stroke: var(--beyhla-orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    top: 570px;
    width: 148px;
  }

  .beyhla-product__media {
    align-items: flex-start;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 80px;
    height: 970px;
  }

  .beyhla-product__image-frame {
    aspect-ratio: 530 / 794;
    border-radius: 10px;
    flex: 0 0 794px;
    padding: 0;
    transform: none;
  }

  .beyhla-product__image-frame::before {
    display: none;
  }

  .beyhla-product__caption {
    font-family: var(--beyhla-heading-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
    transform: none;
    width: 530px;
  }

  .beyhla-hero__layout {
    align-content: start;
    grid-template-rows: 1080px;
    padding-block: 0;
    row-gap: 0;
  }

  .beyhla-hero__visual {
    grid-row: 1;
    height: 1080px;
    margin-right: calc(-1 * max(24px, (100vw - var(--beyhla-shell)) / 2));
    min-height: 0;
    z-index: 1;
  }

  .beyhla-hero__stats {
    align-self: start;
    grid-column: 1 / span 4;
    grid-row: 1;
    grid-template-columns: 167px 217px 167px;
    height: 131px;
    justify-self: start;
    margin-left: 1px;
    margin-top: 800.5px;
    position: relative;
    width: 551px;
    z-index: 2;
  }

  .beyhla-hero__stats .beyhla-stat__number {
    font-size: 84px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 100px;
    transform: none;
    white-space: nowrap;
  }

  .beyhla-hero__stats .beyhla-stat__suffix {
    display: inline-block;
    font-size: 46px;
    letter-spacing: 0;
    line-height: 69px;
    margin-left: 8px;
    position: relative;
    top: 20px;
    vertical-align: top;
  }

  .beyhla-hero__stats .beyhla-stat__label {
    font-size: 16px;
    line-height: 24px;
    margin-top: 2px;
  }

  .beyhla-hero__stats .beyhla-stat {
    min-height: 131px;
    padding: 0 38px 0 37px;
  }

  .beyhla-hero__stats .beyhla-stat:first-child {
    padding: 0 38px 0 0;
  }

  .beyhla-hero__stats .beyhla-stat:last-child {
    padding: 0 0 0 37px;
  }

  /* The light results panel is inset by the 135px desktop frame. Its portrait
   * deliberately overlaps the panel by 72px in the source design. */
  .beyhla-results {
    background: var(--beyhla-black);
    height: 1373px;
    min-height: 1373px;
    overflow: visible;
  }

  .beyhla-results > .beyhla-shell {
    background: var(--beyhla-light);
    border-radius: 10px;
    height: 1373px;
    padding-block: 104px 0;
    position: relative;
  }

  .beyhla-results__header {
    margin-bottom: 42px;
    max-width: 1133px;
  }

  .beyhla-results__header .beyhla-eyebrow {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 39px;
  }

  .beyhla-results__header .beyhla-eyebrow::before,
  .beyhla-results__header .beyhla-eyebrow::after {
    width: 70px;
  }

  .beyhla-results__header h2 {
    font-size: 75px;
    line-height: 90px;
    text-transform: uppercase;
  }

  .beyhla-results__desktop-break {
    display: inline;
  }

  .beyhla-results__final-line {
    white-space: nowrap;
  }

  .beyhla-results__header .beyhla-richtext {
    font-size: 18px;
    line-height: 27px;
    margin-top: 36px;
    max-width: 809px;
  }

  .beyhla-results__layout {
    gap: 307px;
    grid-template-columns: 530px 390px;
    left: 144px;
    margin: 0;
    max-width: none;
    position: absolute;
    top: 503px;
  }

  .beyhla-results__media {
    border-radius: 10px;
    height: 942px;
    min-height: 942px;
  }

  .beyhla-results__stats {
    align-self: start;
    gap: 47px;
    grid-template-rows: 232px 232px 208px;
    height: 766px;
  }

  .beyhla-results__stats li {
    min-height: 0;
  }

  .beyhla-results__stats li:nth-child(even) {
    transform: translateX(-141px);
  }

  .beyhla-results__connector {
    display: block;
    height: 85px;
    position: absolute;
    width: 85px;
    z-index: 2;
  }

  .beyhla-results__connector--first {
    left: 858px;
    top: 577px;
  }

  .beyhla-results__connector--second {
    left: 1265px;
    top: 856px;
    transform: rotate(180deg) scaleY(-1);
  }

  .beyhla-results + .beyhla-process {
    margin-block-start: 72px;
  }

  /* The process composition uses the same 1650px/12-column desktop grid as
   * the Figma frame: 810px copy, 170px gutter, and a 670px media stage. */
  .beyhla-process {
    background:
      radial-gradient(circle at 24% 33%, rgb(91 38 10 / 18%), transparent 27%),
      radial-gradient(circle at 72% 34%, rgb(91 38 10 / 16%), transparent 30%),
      var(--beyhla-black);
    height: 981px;
    min-height: 981px;
  }

  .beyhla-process__layout {
    column-gap: 170px;
    grid-template-columns: 810px 670px;
    grid-template-rows: 512px 203px;
    height: 981px;
    padding-block: 100px;
    row-gap: 65px;
  }

  .beyhla-process__content {
    align-self: center;
    width: 810px;
  }

  .beyhla-process__content .beyhla-script-heading {
    font-size: 128px;
    line-height: 160px;
  }

  .beyhla-process__content .beyhla-script-heading > span {
    line-height: inherit;
    transform: scale(1.02, 1.25);
    transform-origin: left top;
  }

  .beyhla-process__content .beyhla-script-heading > .is-accent {
    transform: translateX(16px) scale(1.11, 1.25);
  }

  .beyhla-process__content .beyhla-eyebrow {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 13px;
  }

  .beyhla-process__content .beyhla-eyebrow::before {
    width: 70px;
  }

  .beyhla-process__content .beyhla-richtext {
    line-height: 27px;
    margin-top: 58px;
    max-width: 810px;
    width: 810px;
  }

  .beyhla-process__media {
    height: 512px;
    min-height: 512px;
    width: 670px;
  }

  .beyhla-process__ui picture {
    height: 300px;
    width: 530px;
  }

  .beyhla-process__ui picture:first-child {
    left: 0;
    top: 197px;
  }

  .beyhla-process__ui picture:last-child {
    height: 300px;
    left: 280px;
    right: auto;
    top: 32px;
  }

  .beyhla-process__steps {
    grid-template-columns: repeat(4, 420px);
    height: 203px;
    overflow: visible;
    width: 1680px;
  }

  .beyhla-process__steps li,
  .beyhla-process__steps li:first-child {
    border-top: 0;
    column-gap: 32px;
    grid-template-columns: 110px 1fr;
    height: 203px;
    min-height: 203px;
    padding: 0;
    position: relative;
  }

  .beyhla-process__steps li.has-no-number {
    grid-template-columns: 1fr;
  }

  .beyhla-process__steps li::after {
    background: var(--beyhla-orange);
    content: "";
    height: 1px;
    left: 142px;
    opacity: 0.82;
    position: absolute;
    right: 28px;
    top: 55px;
  }

  .beyhla-process__steps li > div {
    padding-top: 100px;
  }

  .beyhla-process__number {
    font-size: 16px;
    height: 110px;
    line-height: 110px;
    width: 110px;
  }

  .beyhla-process__number::before {
    background: rgb(255 117 31 / 14%);
    inset: 16px;
  }

  .beyhla-process__steps p {
    color: rgb(255 255 255 / 68%);
    font-size: 18px;
    line-height: 27px;
  }

  .beyhla-focus__header .beyhla-eyebrow {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 37.5px;
  }

  .beyhla-focus__header .beyhla-eyebrow::before,
  .beyhla-focus__header .beyhla-eyebrow::after {
    width: 70px;
  }

  .beyhla-focus__heading > span {
    transform: translateY(-8px) scale(0.95, 1.08);
    transform-origin: center top;
  }

  .beyhla-focus__cards li {
    height: 238px;
    min-height: 238px;
  }

  .beyhla-social-system,
  .beyhla-social-system__layout {
    height: 948px;
    min-height: 948px;
  }

  .beyhla-social-system__layout {
    column-gap: 170px;
    grid-template-columns: 810px 670px;
    padding-block: 104px;
  }

  .beyhla-social-system__content {
    align-self: start;
    max-width: 810px;
    width: 810px;
  }

  .beyhla-social-system__content .beyhla-eyebrow {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 29px;
  }

  .beyhla-social-system__content .beyhla-eyebrow::before {
    width: 70px;
  }

  .beyhla-social-system__heading span:last-child {
    transform: scaleX(0.95);
    transform-origin: left center;
  }

  .beyhla-social-system__content .beyhla-richtext {
    margin-top: 24px;
    max-width: 810px;
    width: 810px;
  }

  .beyhla-social-system__statement {
    font-size: 30px;
    line-height: 48px;
    margin: 63px 0 67px 280px;
  }

  .beyhla-social-system__content > .beyhla-button {
    font-size: 17px;
    justify-content: center;
    letter-spacing: 0;
    min-height: 63px;
    padding: 16px 20px;
    white-space: nowrap;
    width: 330px;
  }

  .beyhla-social-system__media {
    align-self: start;
    aspect-ratio: auto;
    height: 720px;
    max-width: none;
    width: 670px;
  }

  .beyhla-social-system__orbit {
    display: block;
    height: 670px;
    inset: 33px 0 17px;
    width: 670px;
  }

  .beyhla-social-system__orbit strong {
    font-size: 300px;
    left: 145px;
    line-height: 0.8;
    position: absolute;
    top: 205px;
    transform: translateY(-19px);
  }

  .beyhla-social-system__orbit em {
    font-size: 128px;
    left: 370px;
    margin: 0;
    position: absolute;
    top: 290px;
  }

  .beyhla-social-system__orbit > span {
    font-size: 16px;
    line-height: 24px;
    left: 213px;
    margin: 0;
    position: absolute;
    top: 477px;
    white-space: nowrap;
  }

  .beyhla-social-system__orbit i {
    --beyhla-social-card-bar-y: 7%;

    background:
      linear-gradient(var(--beyhla-orange), var(--beyhla-orange)) 10% var(--beyhla-social-card-bar-y) / 80% 4px no-repeat,
      linear-gradient(var(--beyhla-orange), var(--beyhla-orange)) 13% 84% / 30% 4px no-repeat,
      linear-gradient(#252525, #252525) 10% 8% / 80% 42% no-repeat,
      linear-gradient(#1f1f1f, #1f1f1f) 13% 62% / 72% 4px no-repeat,
      linear-gradient(#252525, #252525) 13% 70% / 48% 4px no-repeat,
      linear-gradient(#252525, #252525) 13% 78% / 68% 4px no-repeat,
      #333;
    border-radius: 16px;
    height: 240px;
    width: 120px;
  }

  .beyhla-social-system__orbit i::before,
  .beyhla-social-system__orbit i::after {
    background: transparent;
    border: 2px solid var(--beyhla-orange);
    height: 15px;
    left: calc(50% - 9px);
    right: auto;
    top: calc(27% - 9px);
    transform: rotate(45deg);
    width: 15px;
  }

  .beyhla-social-system__orbit i::after {
    height: 7px;
    left: calc(50% - 5px);
    top: calc(27% - 5px);
    width: 7px;
  }

  .beyhla-social-system__orbit i:nth-of-type(1) {
    left: 0;
    top: 6px;
  }

  .beyhla-social-system__orbit i:nth-of-type(2) {
    --beyhla-social-card-bar-y: 42%;

    height: 290px;
    right: 43px;
    top: -35px;
  }

  .beyhla-social-system__orbit i:nth-of-type(3) {
    bottom: -15px;
    height: 238px;
    left: 58px;
  }

  .beyhla-google {
    height: 437px;
    min-height: 437px;
    overflow: visible;
    z-index: 2;
  }

  .beyhla-google__layout {
    display: block;
    height: 437px;
    min-height: 437px;
    position: relative;
  }

  .beyhla-google__carousel {
    /* Preserve the 5px left overhang from Figma while keeping the first
     * 250px card usable at the lower edge of the wide breakpoint. */
    left: max(-140px, calc((1640px - 100vw) / 2));
    position: absolute;
    top: 97px;
    width: 810px;
    z-index: 3;
  }

  .beyhla-google__viewport {
    width: 810px;
  }

  .beyhla-google__cards {
    gap: 30px;
    grid-auto-columns: 250px;
    grid-auto-flow: column;
    grid-template-columns: none;
    width: max-content;
    will-change: transform;
  }

  .beyhla-google__controls {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    gap: 14px;
    height: 32px;
    left: 840px;
    padding-left: 32px;
    position: absolute;
    top: 398px;
    width: 110px;
  }

  .beyhla-google__controls button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--beyhla-orange);
    cursor: pointer;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
    width: 32px;
  }

  .beyhla-google__controls button:hover,
  .beyhla-google__controls button:focus-visible {
    color: var(--beyhla-white);
    transform: scale(1.08);
  }

  .beyhla-google__controls button:disabled {
    cursor: wait;
    opacity: 0.45;
  }

  .beyhla-google__controls svg {
    fill: none;
    height: 32px;
    stroke: currentcolor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 5px;
    width: 32px;
  }

  .beyhla-google__cards li {
    height: 430px;
    min-height: 430px;
    padding: 131px 21px 55px;
  }

  .beyhla-google__icon {
    flex-basis: 78px;
    height: 78px;
    margin-bottom: 20px;
    width: 78px;
  }

  .beyhla-google__icon.is-like {
    width: 69px;
  }

  .beyhla-google__card-title {
    font-size: 24px;
    line-height: 36px;
    transform: none;
  }

  .beyhla-google__card-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }

  .beyhla-google__icon img {
    transform: none;
  }

  .beyhla-google__header {
    left: 839px;
    position: absolute;
    top: 60px;
    width: 810px;
  }

  .beyhla-google__header .beyhla-eyebrow {
    font-size: 18px;
    letter-spacing: 4px;
    line-height: 27px;
    margin-bottom: 20px;
  }

  .beyhla-google__header .beyhla-eyebrow::before {
    background: var(--beyhla-black);
    width: 70px;
  }

  .beyhla-google__header h2 {
    font-size: clamp(66px, 3.90625vw, 75px);
    line-height: 1.2;
  }

  .beyhla-google__header h2 > span {
    display: block;
    transform: translateY(-20px);
    transform-origin: left center;
  }

  .beyhla-google__header h2 > span:nth-child(1) {
    transform: translateY(-20px) scaleX(1.06);
    /* At 1700px the centered shell leaves 836px to the viewport edge. The
     * span width contracts only until its 1.06 Figma stretch fits; from
     * 1746px upward the original 810px geometry remains unchanged. */
    width: min(810px, calc(47.16981132vw - 13.20754717px));
  }

  .beyhla-google__header h2 > span:nth-child(2) {
    transform: translateY(-20px) scaleX(0.96);
  }

  .beyhla-google__header h2 > span:nth-child(3) {
    transform: translateY(-20px) scaleX(1.12);
    /* The wider third-line stretch needs a little more runway. This reaches
     * the original 810px width before 1920px, preserving that exact frame. */
    width: min(810px, calc(44.64285714vw - 12.5px));
  }

  .beyhla-google + .beyhla-about {
    margin-block-start: 0;
  }

  /* The About frame uses a deliberately offset 530px portrait and a 670px
   * values rail. Keep those coordinates independent from fluid tablet rules. */
  .beyhla-about {
    background:
      radial-gradient(circle at 78% 0%, rgb(111 53 18 / 58%), transparent 31%),
      radial-gradient(circle at 28% 72%, rgb(89 42 13 / 66%), transparent 30%),
      var(--beyhla-black);
    height: 1191px;
    min-height: 1191px;
    padding-top: 90px;
  }

  .beyhla-about > .beyhla-shell {
    box-sizing: border-box;
    height: 1101px;
    padding-block: 104px;
    position: relative;
  }

  .beyhla-about__header {
    margin-bottom: 0;
  }

  .beyhla-about__header .beyhla-eyebrow {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px;
  }

  .beyhla-about__header .beyhla-eyebrow::before,
  .beyhla-about__header .beyhla-eyebrow::after {
    width: 70px;
  }

  .beyhla-about__header h2 {
    font-size: 75px;
    line-height: 90px;
    transform: none;
  }

  .beyhla-about__layout {
    display: block;
    height: 670px;
    left: 140px;
    position: absolute;
    top: 411px;
    width: 1370px;
  }

  .beyhla-about__media {
    height: 331px;
    left: 0;
    min-height: 331px;
    position: absolute;
    top: 57px;
    width: 530px;
  }

  .beyhla-about__media.has-design-fallback .beyhla-about__image {
    height: 270.63%;
    left: -25.31%;
    max-width: none;
    object-fit: fill;
    position: absolute;
    top: -0.06%;
    width: 139.63%;
  }

  .beyhla-about__content {
    display: block;
    height: 670px;
    left: 700px;
    position: absolute;
    top: 0;
    width: 670px;
  }

  .beyhla-about__intro {
    height: 670px;
    left: -700px;
    position: absolute;
    top: 0;
    width: 530px;
  }

  .beyhla-about__intro .beyhla-eyebrow {
    font-size: 18px;
    gap: 20px;
    line-height: 27px;
    margin: 0;
    white-space: nowrap;
  }

  .beyhla-about__intro .beyhla-eyebrow::before {
    width: 70px;
  }

  .beyhla-about__intro > strong {
    font-size: 128px;
    left: 380px;
    line-height: 90px;
    margin: 0;
    position: absolute;
    top: 317px;
    transform: rotate(-8deg);
    transform-origin: left center;
    white-space: nowrap;
  }

  .beyhla-about__intro .beyhla-richtext {
    font-family: var(--beyhla-heading-font);
    font-size: 24px;
    font-weight: 500;
    left: 0;
    line-height: 36px;
    max-width: 440px;
    position: absolute;
    top: 476px;
    width: 440px;
  }

  .beyhla-about blockquote {
    align-items: center;
    background: rgb(255 117 31 / 30%);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    font-family: var(--beyhla-body-font);
    font-size: 18px;
    font-weight: 400;
    left: 0;
    line-height: 27px;
    height: 100px;
    min-height: 100px;
    padding: 23px 34px;
    position: absolute;
    top: 486px;
    width: 670px;
  }

  .beyhla-about blockquote p {
    margin: 0;
  }

  .beyhla-about blockquote p > strong:last-child {
    display: block;
  }

  .beyhla-about__values-heading {
    left: 0;
    position: absolute;
    top: 0;
    width: 670px;
  }

  .beyhla-about__values {
    left: 0;
    position: absolute;
    top: 73px;
    width: 670px;
  }

  .beyhla-about__values li {
    border-top: 0;
    align-items: start;
    column-gap: 30px;
    grid-template-columns: 110px 1fr;
    min-height: 0;
  }

  .beyhla-about__values li:nth-child(1) {
    border-bottom: 1px solid rgb(255 255 255 / 22%);
    height: 91px;
  }

  .beyhla-about__values li:nth-child(2) {
    border-bottom: 1px solid rgb(255 255 255 / 22%);
    height: 124px;
  }

  .beyhla-about__values li:nth-child(3) {
    height: 132px;
  }

  .beyhla-about__value-icon {
    border: 0;
    border-radius: 0;
    height: 60px;
    justify-self: center;
    transform: none;
    width: 58px;
  }

  .beyhla-about__value-icon::before {
    display: none;
  }

  .beyhla-about__value-icon img,
  .beyhla-about__value-icon svg {
    fill: none;
    height: 58px;
    stroke: var(--beyhla-orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 58px;
  }

  .beyhla-about__value-copy {
    width: 530px;
  }

  .beyhla-about__values li:nth-child(2) .beyhla-about__value-icon {
    transform: translateX(140px);
  }

  .beyhla-about__values li:nth-child(2) .beyhla-about__value-copy {
    margin-left: 140px;
    width: 390px;
  }

  .beyhla-about__values li.has-no-icon .beyhla-about__value-copy {
    grid-column: 2;
    margin-left: 140px;
    width: 390px;
  }

  .beyhla-about__values li:nth-child(2) .beyhla-about__value-copy,
  .beyhla-about__values li:nth-child(3) .beyhla-about__value-copy {
    margin-top: 33px;
  }

  .beyhla-about__values strong {
    font-size: 18px;
    line-height: 27px;
    transform: none;
  }

  .beyhla-about__value-copy p {
    line-height: 24px;
  }

  /* Block 03 is a 2088px-wide clipped composition in Figma: 135px outer
   * padding, an 1818px content row, and 168px of intentional right overflow. */
  .beyhla-collaboration {
    height: 871px;
    min-height: 871px;
  }

  .beyhla-collaboration__layout {
    box-sizing: border-box;
    column-gap: 30px;
    grid-template-columns: 807px 981px;
    grid-template-rows: 663px;
    height: 871px;
    margin-inline: 0;
    max-width: none;
    padding: 104px 135px;
    row-gap: 0;
    position: relative;
    width: 2088px;
  }

  .beyhla-collaboration__content {
    align-self: start;
    grid-column: 1;
    grid-row: 1;
  }

  .beyhla-collaboration .beyhla-eyebrow {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 24px;
  }

  .beyhla-collaboration .beyhla-eyebrow::before {
    width: 70px;
  }

  .beyhla-collaboration__content h2 {
    font-size: 148px;
    letter-spacing: -0.04em;
    line-height: 160px;
  }

  .beyhla-collaboration__content h2 span {
    transform: scaleX(0.92);
    transform-origin: left center;
    white-space: nowrap;
  }

  .beyhla-collaboration__content h2 span:nth-child(1) {
    transform: translateY(-6px) scaleX(0.92);
  }

  .beyhla-collaboration__content h2 span:nth-child(3) {
    transform: translateY(-10px) scaleX(0.92);
  }

  .beyhla-collaboration__content h2 .is-accent {
    margin-left: 12px;
  }

  .beyhla-collaboration__content .beyhla-richtext {
    font-size: 16px;
    line-height: 27px;
    margin-top: 47px;
    max-width: 735px;
  }

  .beyhla-collaboration__content .beyhla-richtext p:first-child::before {
    content: "...";
  }

  .beyhla-collaboration__media {
    align-self: start;
    display: block;
    grid-column: 2;
    grid-row: 1;
    height: 448px;
    min-height: 448px;
    overflow: visible;
    top: 45px;
    width: 1340px;
  }

.beyhla-collaboration__media > div {
    aspect-ratio: auto;
    border-radius: 10px;
    height: 300px;
    position: absolute;
    top: 70px;
    width: 530px;
  }

  .beyhla-collaboration__media-side {
    filter: brightness(0.38);
    z-index: 1;
  }

  .beyhla-collaboration__media-side.is-left {
    left: 3px;
  }

  .beyhla-collaboration__media-side.is-right {
    left: 813px;
    transform: none;
  }

  .beyhla-collaboration__media > .beyhla-collaboration__media-active {
    box-shadow: 0 26px 70px rgb(0 0 0 / 24%);
    height: 378px;
    left: 143px;
    top: 0;
    transform: none;
    width: 670px;
    z-index: 2;
  }

  .beyhla-collaboration__values {
    display: block;
    left: 980px;
    position: absolute;
    top: 596px;
    width: 670px;
  }

  .beyhla-collaboration__values li {
    border: 0;
    display: block;
    font-size: 18px;
    line-height: 27px;
    min-height: 47px;
    padding: 0;
  }

  .beyhla-collaboration__values strong {
    color: var(--beyhla-black);
  }

  .beyhla-collaboration__values span {
    color: rgb(0 0 0 / 70%);
  }
}

.beyhla-collaboration__media > .beyhla-collaboration__media-active {
  background: var(--beyhla-black);
}

.beyhla-contact-cta h2 {
  letter-spacing: 0;
  max-width: 1050px;
}

.beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow,
.beyhla-contact-cta h2,
.beyhla-contact-cta .beyhla-richtext,
.beyhla-contact-cta__actions .beyhla-button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow {
  color: var(--beyhla-orange);
  gap: 20px;
  letter-spacing: 4px;
}

.beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow::before,
.beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow::after {
  height: 2px;
}

.beyhla-contact-cta h2 > span {
  display: block;
}

.beyhla-contact-cta h2 .is-accent {
  color: var(--beyhla-orange);
}

.beyhla-contact-cta .beyhla-richtext {
  color: var(--beyhla-white);
  font-size: 18px;
  line-height: 27px;
  margin: 36px auto 0;
  max-width: 810px;
}

.beyhla-contact-cta .beyhla-richtext:first-child {
  margin-top: 0;
}

.beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow + .beyhla-richtext {
  margin-top: 0;
}

.beyhla-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 64px;
}

.beyhla-contact-cta__actions:first-child {
  margin-top: 0;
}

.beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow + .beyhla-contact-cta__actions {
  margin-top: 0;
}

.beyhla-contact-cta__actions .beyhla-button {
  box-shadow: 6px 6px 8px rgb(0 0 0 / 25%);
  letter-spacing: 0;
  min-height: 59px;
  padding: 14px 24px;
}

.beyhla-footer {
  background:
    radial-gradient(circle at 78% 100%, rgb(92 43 13 / 36%), transparent 28%),
    var(--beyhla-black);
  min-height: 174px;
}

.beyhla-footer__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 174px;
  position: relative;
}

.beyhla-footer__inner::before {
  background-color: rgb(229 227 226 / 20%);
  background-image: linear-gradient(rgb(0 0 0 / 20%) 0 0);
  content: "";
  height: 2px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -1px;
  width: 100%;
}

.beyhla-logo--footer {
  font-size: 20px;
}

.beyhla-footer p {
  color: rgb(255 255 255 / 38%);
  font-size: 11px;
  margin: 12px 0 0;
}

.beyhla-footer__legal {
  display: flex;
  gap: 72px;
}

.beyhla-footer__legal a {
  font-size: 12px;
  text-transform: uppercase;
}

.beyhla-legal-page {
  margin-inline: auto;
  max-width: 980px;
  padding: clamp(72px, 8vw, 132px) 24px clamp(96px, 10vw, 160px);
  width: 100%;
}

.beyhla-legal-page h1 {
  color: var(--beyhla-white);
  font-family: var(--beyhla-heading-font);
  font-size: clamp(42px, 6vw, 72px);
  hyphens: auto;
  line-height: 1.08;
  margin: 0 0 clamp(52px, 7vw, 84px);
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.beyhla-legal-page h1::after {
  background: var(--beyhla-orange);
  content: "";
  display: block;
  height: 4px;
  margin-top: 24px;
  width: 88px;
}

.beyhla-legal-page h2 {
  color: var(--beyhla-orange);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.3;
  margin: clamp(44px, 6vw, 64px) 0 16px;
}

.beyhla-legal-page :where(p, li) {
  color: rgb(255 255 255 / 78%);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
}

.beyhla-legal-page p {
  margin: 0 0 18px;
}

.beyhla-legal-page ul {
  margin: 12px 0 24px;
  padding-left: 1.4em;
}

.beyhla-legal-page li + li {
  margin-top: 8px;
}

.beyhla-legal-page a {
  color: var(--beyhla-orange);
  overflow-wrap: anywhere;
  text-underline-offset: 0.18em;
}

.beyhla-legal-page a:hover,
.beyhla-legal-page a:focus-visible {
  color: var(--beyhla-white);
}

@media (min-width: 1700px) {
  .beyhla-contact-cta {
    background: var(--beyhla-black);
    min-height: 664px;
  }

  .beyhla-contact-cta__inner {
    min-height: 664px;
    padding-block: 104px;
  }

  .beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow {
    color: var(--beyhla-orange);
    font-size: 18px;
    gap: 20px;
    letter-spacing: 4px;
    line-height: 27px;
    margin-bottom: 40px;
    max-width: 100%;
    white-space: nowrap;
    width: 618px;
  }

  .beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow::before,
  .beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow::after {
    height: 2px;
    width: 70px;
  }

  .beyhla-contact-cta h2 {
    font-size: 75px;
    line-height: 90px;
    max-width: 1049px;
    transform: none;
    width: 1049px;
  }

  .beyhla-contact-cta h2 .is-accent {
    transform: none;
  }

  .beyhla-contact-cta .beyhla-richtext {
    margin-top: 36px;
    max-width: 761px;
    width: 761px;
  }

  .beyhla-contact-cta__actions {
    margin-top: 60px;
  }

  .beyhla-contact-cta__actions .beyhla-button {
    min-height: 59px;
    padding: 14px 24px;
    width: 250px;
  }

  .beyhla-footer {
    background:
      radial-gradient(circle at 90% 100%, rgb(92 43 13 / 36%), transparent 28%),
      var(--beyhla-black);
    height: 174px;
    min-height: 174px;
  }

  .beyhla-footer__inner {
    display: block;
    height: 174px;
    min-height: 174px;
  }

  .beyhla-footer__inner > div:not(.beyhla-footer__legal) {
    left: 140px;
    position: absolute;
    text-align: center;
    top: 43px;
    width: 530px;
  }

  .beyhla-logo--footer {
    font-size: 32px;
    letter-spacing: 0;
    transform: scaleX(1.0723);
    transform-origin: center;
  }

  .beyhla-footer p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
    transform: none;
  }

  .beyhla-footer__legal {
    display: block;
    height: 41px;
    left: 1120px;
    position: absolute;
    text-align: left;
    top: 39px;
    width: 390px;
  }

  .beyhla-footer__legal a {
    font-size: 18px;
    font-weight: 600;
    left: 0;
    line-height: 27px;
    position: absolute;
    top: 14px;
  }

  .beyhla-footer__legal a:last-child {
    left: 261px;
  }
}

.beyhla-editor-empty {
  background: #fff4ed;
  border: 1px dashed var(--beyhla-orange);
  color: var(--beyhla-black);
  margin: 16px;
  padding: 16px;
}

.beyhla-editor-hidden {
  align-items: center;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 3%) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(315deg, rgb(255 255 255 / 3%) 25%, transparent 25%) 0 0 / 28px 28px,
    #292929;
  border: 2px dashed #666;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 4%);
  color: var(--beyhla-white);
  display: grid;
  gap: 24px;
  grid-template-columns: 56px minmax(0, 1fr);
  isolation: isolate;
  margin: 0;
  min-height: 210px;
  opacity: 0.72;
  overflow: hidden;
  padding: 44px clamp(24px, 5vw, 72px);
  position: relative;
  width: 100%;
}

.beyhla-editor-hidden__badge {
  background: #4d4d4d;
  border: 1px solid #777;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 18px;
}

.beyhla-editor-hidden__icon {
  border: 2px solid #aaa;
  border-radius: 50% 0;
  display: block;
  height: 34px;
  position: relative;
  transform: rotate(45deg);
  width: 54px;
}

.beyhla-editor-hidden__icon::before {
  border: 2px solid #aaa;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 19px;
  position: absolute;
  top: 9px;
  width: 12px;
}

.beyhla-editor-hidden__icon::after {
  background: var(--beyhla-orange);
  content: "";
  height: 2px;
  left: -7px;
  position: absolute;
  top: 15px;
  transform: rotate(-45deg);
  width: 68px;
}

.beyhla-editor-hidden__content {
  max-width: 760px;
}

.beyhla-editor-hidden__content strong {
  color: #fff;
  display: block;
  font-family: var(--beyhla-heading-font);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  margin: 0 0 10px;
}

.beyhla-editor-hidden__content p {
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
  margin: 0;
  max-width: 680px;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--beyhla-orange);
  outline-offset: 4px;
}

@media (max-width: 1699px) {
  .beyhla-hero,
  .beyhla-hero__layout {
    min-height: 0;
  }

  .beyhla-hero__layout {
    align-content: start;
  }

  .beyhla-header__inner {
    gap: 22px;
  }

  .beyhla-header__actions {
    gap: 16px;
  }

  .beyhla-header__nav {
    padding-left: clamp(12px, 2vw, 28px);
    transform: translateY(1px);
  }

  .beyhla-hero__content {
    grid-column: 1 / span 6;
  }

  .beyhla-hero__visual {
    grid-column: 7 / -1;
    margin-top: -76px;
  }

  .beyhla-hero__stats {
    grid-column: 6 / -1;
  }

  .beyhla-product__layout {
    gap: 80px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
    padding-right: 0;
  }

  .beyhla-collaboration__layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }
}

/* The supplied 1024px comparison keeps one compact Hero stage: copy and
 * statistics occupy two rows on the left while the media spans both rows.
 * The small negative media margins consume this layout's vertical padding so
 * its image remains flush with the Hero edges. The 1700px Figma composition
 * and the stacked <=900px layout stay isolated. */
@media (min-width: 901px) and (max-width: 1699px) {
  .beyhla-hero__layout {
    grid-template-rows: auto minmax(104px, auto);
    padding-block: 20px 16px;
    row-gap: 20px;
  }

  .beyhla-hero__content {
    align-self: start;
    grid-row: 1;
    margin-left: 12px;
  }

  .beyhla-hero__visual {
    grid-row: 1 / 3;
    margin-block: -20px -16px;
  }

  .beyhla-hero__stats {
    align-self: start;
    grid-column: 1 / span 6;
    grid-row: 2;
    grid-template-columns: minmax(0, 167fr) minmax(0, 217fr) minmax(0, 167fr);
    margin: 0 0 0 12px;
  }

  .beyhla-hero__stats .beyhla-stat {
    padding-inline: clamp(10px, 3.4vw, 34px);
  }

  .beyhla-hero__stats .beyhla-stat:first-child {
    padding-left: 0;
  }

  .beyhla-hero__stats .beyhla-stat:last-child {
    padding-right: 0;
  }

  .beyhla-hero__stats .beyhla-stat__label {
    font-size: clamp(11px, 1.27vw, 13px);
    white-space: nowrap;
  }

  .beyhla-hero__content .beyhla-button {
    font-size: 16px;
    min-height: 52px;
    padding: 12px 18px;
  }
}

/* The wide Figma frame uses a horizontal Google-card rail. Keep that same
 * interaction on tablets and small laptops so an editor-added fourth card
 * never drops into an isolated second row. The approved 250px card width is
 * retained; the viewport exposes two cards beside the heading and three once
 * the heading stacks above the rail. */
@media (min-width: 641px) and (max-width: 1699px) {
  .beyhla-google__viewport,
  .beyhla-google__controls {
    width: min(100%, 530px);
  }

  .beyhla-google__cards {
    grid-auto-columns: 250px;
    grid-auto-flow: column;
    grid-template-columns: none;
    width: max-content;
    will-change: transform;
  }

  .beyhla-google__controls {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .beyhla-google__controls button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--beyhla-orange-on-light);
    cursor: pointer;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
    width: 44px;
  }

  .beyhla-google__controls button:hover,
  .beyhla-google__controls button:focus-visible {
    color: var(--beyhla-black);
    transform: scale(1.08);
  }

  .beyhla-google__controls button:disabled {
    cursor: wait;
    opacity: 0.45;
  }

  .beyhla-google__controls svg {
    fill: none;
    height: 32px;
    stroke: currentcolor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 5px;
    width: 32px;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .beyhla-google__viewport,
  .beyhla-google__controls {
    width: min(100%, 810px);
  }
}

@media (max-width: 1200px) {
  .beyhla-google,
  .beyhla-google__layout {
    min-height: 0;
  }

  .beyhla-google__layout {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 80px;
  }

  .beyhla-google__header {
    grid-column: 1;
    grid-row: 1;
  }

  .beyhla-google__carousel {
    grid-column: 1;
    grid-row: 2;
  }

  .beyhla-google__carousel:only-child {
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  .beyhla-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .beyhla-header__inner.has-no-logo:not(.has-no-navigation):not(.has-no-actions) {
    grid-template-columns: 1fr auto auto;
  }

  .has-js .beyhla-header__toggle {
    display: inline-flex;
  }

  .beyhla-header__actions {
    justify-self: end;
  }

  .beyhla-header__inner:not(.has-no-navigation):not(.has-no-actions) > .beyhla-header__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .beyhla-header__inner:not(.has-no-navigation):not(.has-no-actions) > .beyhla-header__toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .beyhla-header__actions .beyhla-button {
    display: none;
  }

  .beyhla-header__inner.is-actions-only .beyhla-header__actions .beyhla-button {
    display: inline-flex;
  }

  .beyhla-header__nav {
    background: var(--beyhla-dark);
    border-top: 1px solid rgb(255 255 255 / 9%);
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    left: 0;
    padding: 10px 24px 24px;
    position: absolute;
    right: 0;
    top: 88px;
    transform: none;
  }

  .beyhla-header__nav a {
    border-bottom: 1px solid rgb(255 255 255 / 9%);
    padding: 16px 0;
    width: 100%;
  }

  .has-js .beyhla-header__nav {
    display: none;
  }

  .has-js .beyhla-header__nav.is-open {
    display: flex;
  }

  .has-js .beyhla-header__toggle[aria-expanded="true"] .beyhla-header__toggle-icon {
    background: transparent;
  }

  .has-js .beyhla-header__toggle[aria-expanded="true"] .beyhla-header__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .has-js .beyhla-header__toggle[aria-expanded="true"] .beyhla-header__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .beyhla-hero {
    min-height: auto;
  }

  .beyhla-hero__layout {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-block: 64px 0;
  }

  .beyhla-hero__content {
    align-self: flex-start;
    max-width: 720px;
    min-width: 0;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  .beyhla-hero__visual {
    margin: -40px -24px 0;
    min-height: 400px;
    order: 2;
  }

  .beyhla-hero__stats {
    align-items: stretch;
    margin-top: -54px;
    order: 3;
    padding-block: 22px;
    position: relative;
    width: 100%;
    z-index: 3;
  }

  .beyhla-stat {
    background: rgb(0 0 0 / 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
  }

  .beyhla-product,
  .beyhla-product__layout,
  .beyhla-results,
  .beyhla-process,
  .beyhla-focus,
  .beyhla-social-system,
  .beyhla-google,
  .beyhla-about,
  .beyhla-collaboration,
  .beyhla-contact-cta {
    min-height: auto;
  }

  .beyhla-product__layout,
  .beyhla-results__layout,
  .beyhla-process__layout,
  .beyhla-social-system__layout {
    grid-template-columns: 1fr;
  }

  .beyhla-product__layout,
  .beyhla-process__layout {
    padding-inline: 0;
    padding-block: 80px;
  }

  .beyhla-product__media {
    justify-self: center;
    max-width: 580px;
  }

  .beyhla-results > .beyhla-shell {
    padding-block: 80px;
  }

  .beyhla-results__media {
    min-height: 580px;
  }

  .beyhla-process__media {
    min-height: 420px;
  }

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

  .beyhla-process__steps li:nth-child(3) {
    border-left: 0;
  }

  .beyhla-focus > .beyhla-shell,
  .beyhla-social-system__layout {
    padding-block: 80px;
  }

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

  .beyhla-social-system__media {
    justify-self: center;
    max-width: 620px;
    width: 100%;
  }

  .beyhla-google__layout,
  .beyhla-about__layout,
  .beyhla-collaboration__layout {
    grid-template-columns: 1fr;
  }

  .beyhla-google__layout,
  .beyhla-about > .beyhla-shell,
  .beyhla-collaboration__layout,
  .beyhla-contact-cta__inner {
    padding-block: 80px;
  }

  .beyhla-google__header {
    grid-row: 1;
  }

  .beyhla-about__media {
    min-height: 620px;
  }

  .beyhla-collaboration__media > div:nth-child(2) {
    transform: translateY(40px);
  }

  .beyhla-contact-cta__inner {
    min-height: 600px;
  }
}

@media (max-width: 782px) {
  body.admin-bar {
    --beyhla-admin-bar-height: 46px;
  }
}

@media (max-width: 700px) {
  .beyhla-product__caption {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  body.admin-bar {
    --beyhla-admin-bar-height: 0px;
  }
}

@media (max-width: 640px) {
  .beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow {
    align-items: center;
    gap: 8px;
    letter-spacing: 0.16em;
    width: 100%;
  }

  .beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow::before,
  .beyhla-contact-cta > .beyhla-shell > .beyhla-eyebrow::after {
    flex: 1 1 32px;
    margin-top: 0;
    max-width: 56px;
    min-width: 16px;
    width: auto;
  }

  :root {
    --beyhla-gutter: 16px;
    --beyhla-header-height: 76px;
  }

  :where(body) {
    font-size: 16px;
  }

  .beyhla-shell {
    width: calc(100% - 32px);
  }

  .beyhla-editor-hidden {
    gap: 18px;
    grid-template-columns: 1fr;
    min-height: 230px;
    padding: 58px 24px 28px;
  }

  .beyhla-header,
  .beyhla-header__inner {
    min-height: 76px;
  }

  .beyhla-header__nav {
    left: 0;
    right: 0;
    top: 76px;
  }

  .beyhla-header__phone {
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
  }

  .beyhla-header__phone.has-icon .beyhla-header__phone-label {
    display: none;
  }

  .beyhla-hero__layout {
    padding-block: 48px 0;
  }

  .beyhla-hero__content {
    min-width: 0;
    width: 100%;
  }

  .beyhla-hero__visual {
    margin-inline: -16px;
  }

  .beyhla-eyebrow {
    align-items: flex-start;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .beyhla-eyebrow::before {
    margin-top: 8px;
    width: 32px;
  }

  .beyhla-hero__title {
    font-size: clamp(46px, 14vw, 64px);
  }

  .beyhla-hero__lead {
    font-size: 19px;
    margin-block: 22px 28px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .beyhla-hero__visual {
    min-height: 310px;
  }

  .beyhla-hero__stats {
    align-items: stretch;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .beyhla-stat,
  .beyhla-stat:first-child {
    border: 0;
    display: flex;
    min-height: 112px;
    min-width: 0;
    padding: 0 clamp(8px, 3vw, 16px);
  }

  .beyhla-stat + .beyhla-stat {
    border-left: 1px solid rgb(255 255 255 / 30%);
  }

  .beyhla-stat__number {
    font-size: clamp(32px, 11vw, 46px);
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  .beyhla-stat__label {
    font-size: clamp(10px, 3.2vw, 13px);
    line-height: 1.45;
    margin-top: 9px;
  }

  .beyhla-service-ticker,
  .beyhla-service-ticker__track,
  .beyhla-service-ticker__list li {
    min-height: 88px;
  }

  .beyhla-service-ticker__list li {
    font-size: 13px;
    padding-inline: 24px;
  }

  .beyhla-service-ticker__rhombus {
    margin-left: 28px;
  }

  .beyhla-script-heading,
  .beyhla-display-heading {
    font-size: clamp(42px, 13vw, 62px);
  }

  .beyhla-product__layout,
  .beyhla-process__layout {
    gap: 50px;
    padding-block: 62px;
  }

  .beyhla-product__benefits,
  .beyhla-results__stats,
  .beyhla-process__steps {
    grid-template-columns: 1fr;
  }

  .beyhla-product__benefits li:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .beyhla-product__image-frame {
    padding: 7%;
  }

  .beyhla-product__image-frame::before {
    inset: 7%;
  }

  .beyhla-product__caption {
    margin-left: 0;
    width: 100%;
  }

  .beyhla-results > .beyhla-shell {
    padding-block: 62px;
  }

  .beyhla-results__header {
    margin-bottom: 44px;
  }

  .beyhla-results__media {
    min-height: 430px;
  }

  .beyhla-results__stats li,
  .beyhla-results__stats li:first-child {
    grid-column: auto;
    min-height: 270px;
    padding: 30px;
  }

  .beyhla-process__media {
    min-height: 340px;
    padding: 22px;
  }

  .beyhla-process__ui {
    gap: 12px;
  }

  .beyhla-process__steps li,
  .beyhla-process__steps li:first-child,
  .beyhla-process__steps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 18%);
    min-height: 0;
    padding: 24px 0;
  }

  .beyhla-focus > .beyhla-shell,
  .beyhla-social-system__layout {
    padding-block: 62px;
  }

  .beyhla-focus__heading,
  .beyhla-social-system__heading {
    font-size: clamp(40px, 10.5vw, 52px);
  }

  .beyhla-eyebrow--centered::after {
    display: none;
  }

  .beyhla-focus__cards {
    grid-template-columns: 1fr;
  }

  .beyhla-focus__cards li {
    min-height: 210px;
  }

  .beyhla-social-system__statement {
    margin-left: 0;
  }

  .beyhla-social-system__media {
    min-height: 400px;
  }

  .beyhla-google__layout,
  .beyhla-about > .beyhla-shell,
  .beyhla-collaboration__layout,
  .beyhla-contact-cta__inner {
    padding-block: 62px;
  }

  .beyhla-google__cards,
  .beyhla-about__content,
  .beyhla-collaboration__media,
  .beyhla-collaboration__values {
    grid-template-columns: 1fr;
  }

  .beyhla-google__layout,
  .beyhla-google__cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .beyhla-google__layout {
    gap: 40px;
  }

  .beyhla-google__cards {
    gap: 18px;
    grid-auto-columns: auto;
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
    margin-inline: auto;
    max-width: 340px;
    transform: none !important;
    transition: none !important;
    width: 100%;
    will-change: auto;
  }

  .beyhla-google__controls {
    display: none;
  }

  .beyhla-google__header h2,
  .beyhla-about__header h2,
  .beyhla-collaboration__content h2,
  .beyhla-contact-cta h2 {
    font-size: clamp(40px, 10.5vw, 52px);
  }

  .beyhla-google__cards .beyhla-google__card {
    align-content: center;
    column-gap: 16px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    min-height: 94px;
    min-width: 0;
    padding: 20px;
    row-gap: 0;
    width: 100%;
  }

  .beyhla-google__card:not(.has-icon) {
    grid-template-columns: minmax(0, 1fr);
  }

  .beyhla-google__card.has-icon .beyhla-google__icon {
    align-self: center;
    flex-basis: 54px;
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 54px;
    margin-bottom: 0;
    width: 54px;
  }

  .beyhla-google__card.has-icon .beyhla-google__card-title,
  .beyhla-google__card.has-icon .beyhla-google__card-text {
    grid-column: 2;
  }

  .beyhla-google__card.has-icon:not(.has-text) .beyhla-google__card-title,
  .beyhla-google__card.has-icon:not(.has-title) .beyhla-google__card-text {
    align-self: center;
    grid-row: 1 / span 2;
  }

  .beyhla-google__card.has-icon .beyhla-google__icon:only-child {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .beyhla-google__icon img {
    object-fit: contain;
  }

  .beyhla-google__card-title {
    font-family: var(--beyhla-body-font);
    font-size: 16px;
    line-height: 24px;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .beyhla-google__card-text {
    font-size: 14px;
    line-height: 21px;
    margin-top: 0;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .beyhla-google__card-title br,
  .beyhla-google__card-text br {
    display: none;
  }

  .beyhla-about__media {
    min-height: 450px;
  }

  .beyhla-about__intro > strong {
    font-size: 70px;
  }

  .beyhla-about blockquote,
  .beyhla-about__values {
    grid-column: auto;
  }

  .beyhla-collaboration__media > div:nth-child(2) {
    transform: none;
  }

  .beyhla-collaboration__media::after {
    display: none;
  }

  .beyhla-contact-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .beyhla-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
    padding-block: 36px;
  }

  .beyhla-footer__legal {
    gap: 28px;
  }
}

@media (max-width: 380px) {
  .beyhla-social-system__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .beyhla-social-system__content,
  .beyhla-social-system__media {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .beyhla-social-system__statement {
    overflow-wrap: anywhere;
  }

  .beyhla-social-system__content > .beyhla-button {
    font-size: 16px;
    letter-spacing: 0;
    padding-inline: 12px;
    text-align: center;
    white-space: normal;
    width: 100%;
  }
}

@media (max-width: 340px) {
  .beyhla-google__header h2 {
    font-size: clamp(36px, 11.5vw, 38px);
    min-width: 0;
    overflow-wrap: break-word;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .beyhla-service-ticker__list[aria-hidden="true"] {
    display: none;
  }
}
