body.business-page .business-hero .hero-proof-row .hero-proof-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 9px 13px;
  overflow: hidden;
  color: var(--business-ink);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 255, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(7, 29, 53, 0.08),
    0 12px 32px rgba(7, 29, 53, 0.1);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition:
    transform 180ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

body.business-page .business-hero .hero-proof-row .hero-proof-link::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, transparent 16%, rgba(255, 255, 255, 0.7) 48%, transparent 78%);
  transform: translateX(-120%);
}

body.business-page .business-hero .hero-proof-row .hero-proof-link:hover {
  border-color: rgba(87, 200, 216, 0.62);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(7, 29, 53, 0.08),
    0 16px 34px rgba(7, 29, 53, 0.15);
  transform: translateY(-2px);
}

body.business-page .business-hero .hero-proof-row .hero-proof-link:hover::before {
  opacity: 0.7;
  transform: translateX(120%);
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 140ms ease;
}

body.business-page .business-hero .hero-proof-row .hero-proof-link:active,
body.business-page .business-hero .hero-proof-row .hero-proof-link.is-activating {
  transform: translateY(2px) scale(0.985);
  box-shadow:
    inset 0 3px 7px rgba(7, 29, 53, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.9),
    0 5px 14px rgba(7, 29, 53, 0.1);
}

body.business-page .business-hero .hero-proof-row .hero-proof-link:focus-visible {
  outline: 3px solid rgba(87, 200, 216, 0.72);
  outline-offset: 3px;
}

body.business-page .business-hero .hero-proof-row .hero-proof-link > svg:not(.hero-proof-cue) {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--business-navy);
  transition: transform 180ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

body.business-page .business-hero .hero-proof-row .hero-proof-link:hover > svg:not(.hero-proof-cue) {
  transform: translateY(-1px) scale(1.08);
}

body.business-page .business-hero .hero-proof-row .hero-proof-link b {
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

body.business-page .business-hero .hero-proof-row .hero-proof-link .hero-proof-cue {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: #087f98;
  opacity: 0.72;
  transition: transform 180ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 180ms ease;
}

body.business-page .business-hero .hero-proof-row .hero-proof-link:hover .hero-proof-cue {
  opacity: 1;
  transform: translateY(2px);
}

body.business-page #service-office,
body.business-page #service-building,
body.business-page #quality {
  scroll-margin-top: 116px;
}

body.business-page .business-card--primary,
body.business-page #quality.business-proof-section {
  transition:
    transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 260ms ease,
    outline-color 260ms ease;
}

body.business-page .business-card--primary.is-hero-pill-target,
body.business-page #quality.business-proof-section.is-hero-pill-target {
  z-index: 3;
  outline: 2px solid rgba(87, 200, 216, 0.9);
  outline-offset: 5px;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.72),
    0 24px 58px rgba(7, 29, 53, 0.2);
  transform: translateY(-3px);
}

@media (max-width: 680px) {
  body.business-page .business-hero .hero-proof-row .hero-proof-link {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    gap: 4px;
    padding: 6px 5px;
  }

  body.business-page .business-hero .hero-proof-row .hero-proof-link b {
    overflow: hidden;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
    text-overflow: ellipsis;
  }

  body.business-page .business-hero .hero-proof-row .hero-proof-link > svg:not(.hero-proof-cue) {
    width: 15px;
    height: 15px;
  }

  body.business-page .business-hero .hero-proof-row .hero-proof-link .hero-proof-cue {
    width: 11px;
    height: 11px;
  }

  body.business-page #service-office,
  body.business-page #service-building,
  body.business-page #quality {
    scroll-margin-top: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.business-page .business-hero .hero-proof-row .hero-proof-link,
  body.business-page .business-hero .hero-proof-row .hero-proof-link::before,
  body.business-page .business-hero .hero-proof-row .hero-proof-link svg,
  body.business-page .business-card--primary,
  body.business-page #quality.business-proof-section {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
  }
}
