/* Copyright 2026 Renofy Ltd. All rights reserved. */

/* Dark-background button font + glow */
.lp-hero .button,
.hiw-mid-cta .button,
.lp-closing .button {
  font-family: 'Inter', sans-serif;
  box-shadow: var(--glow-pink);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-hero .button:hover,
.hiw-mid-cta .button:hover,
.lp-closing .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-pink-hover);
}
