html {
  scroll-behavior: smooth;
}
.service-card,
.considerations article,
.review-cards article,
.trust-inner > div,
.steps li,
.button,
.proof img {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
}
.service-card:hover,
.considerations article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(21, 21, 21, 0.1);
  position: relative;
  z-index: 1;
}
.service-card:hover {
  background: #ffffff;
}
.service-card a,
.top nav a:not(.cta) {
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
  padding: 5px 10px;
}
.service-card a:hover,
.top nav a:not(.cta):hover {
  color: #a9471a;
}
.button:hover,
.top .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(21, 21, 21, 0.2);
  background: #e06223;
}
.button.ghost:hover {
  background: #ffffff;
  color: var(--ink);
}
.proof img:hover {
  transform: scale(1.015);
  filter: contrast(1.04) saturate(1.04);
}
.review-cards article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(21, 21, 21, 0.12);
}
.trust-inner > div:hover {
  background: rgba(255, 255, 255, 0.16);
}
.steps li:hover {
  transform: translateX(7px);
  border-color: var(--gold);
}
.effects-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
}
.effects-ready .reveal-item.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.effects-ready .reveal-item:nth-child(2) {
  transition-delay: 0.06s;
}
.effects-ready .reveal-item:nth-child(3) {
  transition-delay: 0.12s;
}
.effects-ready .reveal-item:nth-child(4) {
  transition-delay: 0.18s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .service-card,
  .considerations article,
  .review-cards article,
  .trust-inner > div,
  .steps li,
  .button,
  .proof img,
  .effects-ready .reveal-item {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
