/* Component-level custom styles when Tailwind utilities are not enough. */

.versa-hover-button {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.versa-hover-button:hover,
.versa-hover-button:focus-visible {
  transform: translateY(-2px);
}

.versa-nav a,
.versa-nav-mobile a {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.versa-nav a::after,
.versa-nav-mobile a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background-color: #ff7a00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.versa-nav a:hover,
.versa-nav a:focus-visible,
.versa-nav a.is-active,
.versa-nav-mobile a:hover,
.versa-nav-mobile a:focus-visible,
.versa-nav-mobile a.is-active {
  color: #ff7a00;
}

footer .versa-nav a:hover,
footer .versa-nav a:focus-visible,
footer .versa-nav a.is-active {
  color: #cbd5e1;
}

.versa-nav a:hover::after,
.versa-nav a:focus-visible::after,
.versa-nav a.is-active::after,
.versa-nav-mobile a:hover::after,
.versa-nav-mobile a:focus-visible::after,
.versa-nav-mobile a.is-active::after {
  transform: scaleX(1);
}

[data-anim] {
  --anim-delay: 0ms;
}

.has-motion [data-anim] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-duration: 720ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay);
  will-change: transform, opacity;
}

.has-motion [data-anim="fade-up"] {
  transform: translate3d(0, 26px, 0);
}

.has-motion [data-anim="fade-left"] {
  transform: translate3d(26px, 0, 0);
}

.has-motion [data-anim="zoom-in"] {
  transform: scale(0.96);
  filter: blur(4px);
}

.has-motion [data-anim].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.versa-hero {
  --hero-height: calc(100vh - 88px);
  --hero-visual-ratio: 0.75;
  position: relative;
  min-height: var(--hero-height);
  margin-bottom: 0;
}

.versa-hero__inner {
  display: grid;
  min-height: calc(var(--hero-height) * var(--hero-visual-ratio));
  height: calc(var(--hero-height) * var(--hero-visual-ratio));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
}

.versa-hero__panel {
  background-color: #f4f7f9;
}

.versa-hero__content-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--hero-height) * var(--hero-visual-ratio));
  z-index: 4;
  display: flex;
  align-items: center;
}

.versa-hero__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.versa-hero__content {
  max-width: 40rem;
  padding: 5.5rem 0;
}

.versa-hero__subtitle {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7a00;
}

.versa-hero__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
}

.versa-hero__description {
  margin: 1.5rem 0 2rem;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.65;
  color: #666666;
}

.versa-hero__button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border: 1px solid #ff7a00;
  border-radius: 0;
  background-color: #ff7a00;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 320ms cubic-bezier(0.22, 1, 0.36, 1), color 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.versa-hero__button:hover,
.versa-hero__button:focus-visible {
  background-color: transparent;
  color: #ff7a00;
  border-color: #ff7a00;
  transform: translateY(-2px);
}

.versa-hero__media {
  position: relative;
  overflow: hidden;
  background-color: #dfe6ec;
  min-height: 100%;
}

.versa-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.versa-hero__pixel-grid {
  position: absolute;
  top: 18%;
  left: -1.25rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 7rem);
  grid-auto-rows: 6.5rem;
  gap: 10px;
}

.versa-hero__pixel-grid span {
  display: block;
  background-color: #f4f7f9;
}

.versa-hero__pixel-grid span:nth-child(2),
.versa-hero__pixel-grid span:nth-child(4),
.versa-hero__pixel-grid span:nth-child(5),
.versa-hero__pixel-grid span:nth-child(7),
.versa-hero__pixel-grid span:nth-child(10),
.versa-hero__pixel-grid span:nth-child(11),
.versa-hero__pixel-grid span:nth-child(13),
.versa-hero__pixel-grid span:nth-child(14),
.versa-hero__pixel-grid span:nth-child(16),
.versa-hero__pixel-grid span:nth-child(18),
.versa-hero__pixel-grid span:nth-child(20),
.versa-hero__pixel-grid span:nth-child(21),
.versa-hero__pixel-grid span:nth-child(23),
.versa-hero__pixel-grid span:nth-child(24),
.versa-hero__pixel-grid span:nth-child(27),
.versa-hero__pixel-grid span:nth-child(29) {
  opacity: 0;
}

.versa-hero__cards-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5rem;
  transform: none;
  z-index: 5;
}

.versa-hero__cards {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.versa-about {
  position: relative;
  padding: 4.5rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

.versa-about::before {
  content: "";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  top: clamp(1rem, 3vw, 2.5rem);
  width: clamp(5rem, 11vw, 8.5rem);
  aspect-ratio: 1 / 1;
  background-color: rgba(255, 122, 0, 0.12);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.versa-about__accent-outline {
  position: absolute;
  left: clamp(0.75rem, 4vw, 4rem);
  bottom: clamp(0.75rem, 3vw, 2.5rem);
  width: 0;
  height: 0;
  border-left: clamp(1.2rem, 2.8vw, 2rem) solid transparent;
  border-right: clamp(1.2rem, 2.8vw, 2rem) solid transparent;
  border-bottom: clamp(2.2rem, 5.2vw, 3.2rem) solid rgba(17, 17, 17, 0.24);
  pointer-events: none;
  z-index: 0;
}

.versa-about__accent-outline::after {
  content: "";
  position: absolute;
  left: calc(clamp(1.2rem, 2.8vw, 2rem) * -0.82);
  top: 0.42rem;
  width: 0;
  height: 0;
  border-left: clamp(1rem, 2.3vw, 1.66rem) solid transparent;
  border-right: clamp(1rem, 2.3vw, 1.66rem) solid transparent;
  border-bottom: clamp(1.8rem, 4.3vw, 2.6rem) solid #ffffff;
}

.versa-about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.versa-about__content {
  max-width: 35rem;
}

.versa-about__subtitle {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7a00;
}

.versa-about__title {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
}

.versa-about__description {
  margin: 1.5rem 0 0;
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
}

.versa-about__media {
  aspect-ratio: 1 / 1;
  border: 1px solid #e7ebef;
  overflow: hidden;
  background-color: #e5ebf0;
}

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

.versa-about__stats {
  position: relative;
  z-index: 1;
  margin-top: -5.5rem;
  max-width: 40rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #e7ebef;
  background-color: #ffffff;
}

.versa-about-stat {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid #e7ebef;
}

.versa-about-stat:last-child {
  border-right: 0;
}

.versa-about-stat__value {
  margin: 0;
  font-size: clamp(1.95rem, 3.2vw, 2.45rem);
  line-height: 1;
  font-weight: 800;
  color: #ff7a00;
}

.versa-about-stat__label {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
}

.versa-about__owner {
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
}

.versa-about-owner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.versa-about-owner__media {
  aspect-ratio: 1 / 1;
  border: 1px solid #e7ebef;
  background-color: #e5ebf0;
  overflow: hidden;
}

.versa-about-owner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.versa-about-owner__content {
  position: relative;
  z-index: 1;
  margin-left: -3.75rem;
  padding: 2rem 2.25rem;
  border: 1px solid #e7ebef;
  background-color: #ffffff;
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.versa-about-owner__title {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
}

.versa-about-owner__description {
  margin: 1.2rem 0 0;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
}

.versa-about-owner__description > :first-child {
  margin-top: 0;
}

.versa-about-owner__description > :last-child {
  margin-bottom: 0;
}

.versa-about-owner__description a {
  color: #111111;
  text-decoration: underline;
}

.versa-services {
  position: relative;
  padding: 5.5rem 0;
  background-color: #f5f5f5;
  overflow: hidden;
}

.versa-services::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  top: clamp(1.25rem, 4vw, 3.5rem);
  width: clamp(2.75rem, 7vw, 5.5rem);
  aspect-ratio: 1 / 1;
  background-color: rgba(255, 122, 0, 0.14);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: rotate(65deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}

.versa-services::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1.25rem, 4vw, 3.75rem);
  width: clamp(3rem, 8vw, 6.5rem);
  aspect-ratio: 1 / 1;
  background-color: rgba(17, 17, 17, 0.14);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 0;
}

.versa-services__intro {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.versa-services__subtitle {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7a00;
}

.versa-services__title {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
}

.versa-services__description {
  margin: 1.25rem 0 0;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
}

.versa-services__list {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  display: grid;
  gap: 2.25rem;
}

.versa-services__actions {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  text-align: center;
}

.versa-service-item {
  display: flex;
  align-items: center;
  scroll-margin-top: 7rem;
}

.versa-service-item--reversed {
  flex-direction: row-reverse;
}

.versa-service-item__media {
  flex: 0 0 clamp(18rem, 42%, 34rem);
  border: 1px solid #e7ebef;
  background-color: #ffffff;
  overflow: hidden;
  min-height: 20rem;
}

.versa-service-item__image {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.versa-service-item__card {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  margin-left: -3.75rem;
  padding: 2rem 2.25rem;
  border: 1px solid #e7ebef;
  background-color: #ffffff;
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.versa-service-item--reversed .versa-service-item__card {
  margin-left: 0;
  margin-right: -3.75rem;
}

.versa-service-item__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
}

.versa-service-item__text {
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #666666;
}

.versa-contact {
  position: relative;
  padding: 5.75rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

.versa-contact::before {
  content: "";
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  top: clamp(1rem, 3vw, 2.75rem);
  width: clamp(3.5rem, 8vw, 6.25rem);
  aspect-ratio: 1 / 1;
  background-color: rgba(255, 122, 0, 0.12);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  transform: rotate(45deg);
  transform-origin: center;
  pointer-events: none;
}

.versa-contact::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  width: clamp(2.5rem, 7vw, 5rem);
  aspect-ratio: 1 / 1;
  background-color: rgba(17, 17, 17, 0.08);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: rotate(65deg);
  transform-origin: center;
  pointer-events: none;
}

.versa-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.versa-contact__content {
  max-width: 34rem;
}

.versa-contact__subtitle {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7a00;
}

.versa-hero__subtitle,
.versa-about__subtitle,
.versa-services__subtitle,
.versa-contact__subtitle {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  line-height: 1.2;
  background-color: #111111;
}

.versa-contact__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
}

.versa-contact__description {
  margin: 1.3rem 0 0;
  max-width: 55ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
}

.versa-contact__meta {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.versa-contact__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #111111;
}

.versa-contact__meta-item a {
  color: #111111;
  text-decoration: none;
}

.versa-contact__meta-item a:hover,
.versa-contact__meta-item a:focus-visible {
  color: #ff7a00;
}

.versa-contact__meta-icon {
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid #e7ebef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.versa-contact__meta-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: #ff7a00;
}

.versa-contact__social {
  margin-top: 1.4rem;
}

.versa-contact__facebook-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.versa-contact__facebook-button:hover,
.versa-contact__facebook-button:focus-visible {
  background-color: transparent;
  color: #111111;
}

.versa-contact__facebook-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.versa-contact__facebook-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.versa-contact__form-wrap {
  border: 1px solid #e7ebef;
  background-color: #f5f5f5;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.versa-contact__form-wrap .ff-el-group {
  margin-bottom: 1rem;
}

.versa-contact__form-wrap .ff-el-form-control,
.versa-contact__form-wrap input,
.versa-contact__form-wrap textarea,
.versa-contact__form-wrap select {
  width: 100%;
  border: 1px solid #d8dee4;
  border-radius: 0;
  background-color: #ffffff;
  color: #111111;
  padding: 0.85rem 0.95rem;
}

.versa-contact__form-wrap .ff-el-form-control:focus,
.versa-contact__form-wrap input:focus,
.versa-contact__form-wrap textarea:focus,
.versa-contact__form-wrap select:focus {
  outline: none;
  border-color: #ff7a00;
}

.versa-contact__form-wrap .ff-el-input--label,
.versa-contact__form-wrap .ff-el-form-label {
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111111;
}

.versa-contact__form-wrap .ff-btn-submit,
.versa-contact__form-wrap .ff-btn,
.versa-contact__form-wrap button[type="submit"] {
  border: 1px solid #ff7a00;
  border-radius: 0 !important;
  background-color: #ff7a00 !important;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.65rem;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.versa-contact__form-wrap .ff-btn-submit:hover,
.versa-contact__form-wrap .ff-btn-submit:focus-visible,
.versa-contact__form-wrap .ff-btn:hover,
.versa-contact__form-wrap .ff-btn:focus-visible,
.versa-contact__form-wrap button[type="submit"]:hover,
.versa-contact__form-wrap button[type="submit"]:focus-visible {
  background-color: transparent;
  color: #ff7a00;
  border-color: #ff7a00;
}

.versa-cta {
  padding: 5.5rem 0;
  background-color: #111111;
}

.versa-cta__inner {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(2rem, 4vw, 3.25rem);
}

.versa-cta__title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.versa-cta__button {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border: 1px solid #ff7a00;
  background-color: #ff7a00;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.versa-cta__button:hover,
.versa-cta__button:focus-visible {
  background-color: transparent;
  color: #ff7a00;
  border-color: #ff7a00;
}

.versa-front-content {
  margin-top: 0;
  padding-top: 5rem;
}

.versa-service-card {
  background-color: #ffffff;
  min-height: 170px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 26px rgba(17, 17, 17, 0.08);
  border: 1px solid #edf1f4;
  transition: transform 220ms ease, border-color 220ms ease;
}

.versa-service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.versa-service-card--link:focus-visible {
  outline: 2px solid #ff7a00;
  outline-offset: 2px;
}

.versa-interactive-card:hover,
.versa-interactive-card:focus-within {
  transform: translateY(-8px);
  border-color: #ff7a00;
}

.versa-service-card__icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: brightness(0) saturate(100%) invert(56%) sepia(75%) saturate(2552%) hue-rotate(2deg) brightness(103%) contrast(104%);
}

.versa-service-card__title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
}

.versa-service-card__description {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #666666;
}

@media (max-width: 1024px) {
  .versa-hero__content {
    max-width: 34rem;
    padding: 4rem 0;
  }

  .versa-hero {
    --hero-height: calc(100vh - 80px);
  }

  .versa-hero__inner {
    min-height: calc(var(--hero-height) * var(--hero-visual-ratio));
    height: calc(var(--hero-height) * var(--hero-visual-ratio));
  }

  .versa-hero__cards-wrap {
    bottom: 1.5rem;
  }

  .versa-about {
    padding: 4.5rem 0;
  }

  .versa-about__grid {
    gap: 2.25rem;
  }

  .versa-about__stats {
    margin-top: -4rem;
  }

  .versa-about-owner__content {
    margin-left: -2.75rem;
  }

  .versa-services {
    padding: 4.5rem 0;
  }

  .versa-contact {
    padding: 5rem 0;
  }

  .versa-contact__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .versa-service-item__media {
    flex-basis: clamp(17rem, 45%, 28rem);
  }

  .versa-service-item__card {
    margin-left: -2.75rem;
  }

  .versa-service-item--reversed .versa-service-item__card {
    margin-right: -2.75rem;
  }

  .versa-front-content {
    margin-top: 0;
    padding-top: 4rem;
  }

  .versa-cta {
    padding: 4.5rem 0;
  }
}

@media (max-width: 768px) {
  .versa-hero {
    min-height: auto;
  }

  .versa-hero__content-layer {
    position: relative;
    inset: auto;
    height: auto;
    display: block;
    background-color: #f4f7f9;
  }

  .versa-hero__content-grid {
    grid-template-columns: 1fr;
  }

  .versa-hero__inner {
    display: none;
  }

  .versa-hero__panel {
    display: none;
  }

  .versa-hero__content {
    max-width: none;
    padding: 3.5rem 0 2.75rem;
  }

  .versa-hero__pixel-grid {
    top: -1.25rem;
    left: 0.75rem;
    grid-template-columns: repeat(5, 1.6rem);
    grid-auto-rows: 1.6rem;
  }

  .versa-hero__cards-wrap {
    position: static;
    transform: none;
    margin-top: 1rem;
  }

  .versa-hero__cards {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .versa-about {
    padding: 4rem 0 4.5rem;
  }

  .versa-services {
    padding: 4rem 0;
  }

  .versa-contact {
    padding: 4rem 0;
  }

  .versa-contact__title {
    max-width: none;
  }

  .versa-contact__form-wrap {
    padding: 1.1rem;
  }

  .versa-services::before,
  .versa-services::after {
    opacity: 0.6;
  }

  .versa-services__list {
    gap: 1.5rem;
  }

  .versa-service-item {
    display: block;
  }

  .versa-service-item__media {
    min-height: 16rem;
  }

  .versa-service-item__image {
    min-height: 16rem;
  }

  .versa-service-item__card,
  .versa-service-item--reversed .versa-service-item__card {
    min-height: 0;
    margin: -2rem 1rem 0;
    padding: 1.5rem;
  }

  .versa-about__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .versa-about__content {
    max-width: none;
  }

  .versa-about__title {
    max-width: none;
  }

  .versa-about__stats {
    margin-top: 1rem;
    max-width: none;
    grid-template-columns: 1fr;
  }

  .versa-about-owner {
    display: block;
  }

  .versa-about-owner__media {
    aspect-ratio: auto;
    min-height: 16rem;
  }

  .versa-about-owner__image {
    min-height: 16rem;
  }

  .versa-about-owner__content {
    min-height: 0;
    margin: -2rem 1rem 0;
    padding: 1.5rem;
  }

  .versa-about-owner__title {
    max-width: none;
  }

  .versa-about-stat {
    border-right: 0;
    border-bottom: 1px solid #e7ebef;
  }

  .versa-about-stat:last-child {
    border-bottom: 0;
  }

  .versa-front-content {
    margin-top: 0;
    padding-top: 2.5rem;
  }

  .versa-cta {
    padding: 3.5rem 0;
  }

  .versa-cta__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-motion [data-anim] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .versa-hover-button,
  .versa-service-card,
  .versa-nav a::after,
  .versa-nav-mobile a::after {
    transition: none;
  }
}
